@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Thin.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Thin.woff') format('woff'), url('fonts/subset-LeagueSpartan-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Bold.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Bold.woff') format('woff'), url('fonts/subset-LeagueSpartan-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Black.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Black.woff') format('woff'), url('fonts/subset-LeagueSpartan-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-ExtraBold.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-ExtraBold.woff') format('woff'), url('fonts/subset-LeagueSpartan-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Medium.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Medium.woff') format('woff'), url('fonts/subset-LeagueSpartan-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-ExtraLight.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-ExtraLight.woff') format('woff'), url('fonts/subset-LeagueSpartan-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Light.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Light.woff') format('woff'), url('fonts/subset-LeagueSpartan-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-SemiBold.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-SemiBold.woff') format('woff'), url('fonts/subset-LeagueSpartan-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Thin_1.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Thin_1.woff') format('woff'), url('fonts/subset-LeagueSpartan-Thin_1.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/subset-LeagueSpartan-Regular.woff2') format('woff2'), url('fonts/subset-LeagueSpartan-Regular.woff') format('woff'), url('fonts/subset-LeagueSpartan-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

 

/* General Bootstrap */

html {
    font-size: 5.208vw;
    font-weight: 400;
    font-family: 'League Spartan';
    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: white;
}

* {
    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;
}

/* 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: #3585C2;
            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.96rem;
    max-width: 100%;
    padding-left: .3rem;
    padding-right: .3rem;
    margin-left: auto;
    margin-right: auto;
}

button {
    cursor: pointer;
}

.text-general {
    line-height: 1.2em;
}

/*  Font Family */

 

/*  Colors */

.font-color-blue {
    color: #3585C2;
}

.font-color-black {
    color: #000;
}

.font-color-white {
    color: #fff;
}

.font-color-light-grey {
    color: #C4C4C4;
}

.font-color-dark-grey {
    color: #4F4F4F;
}

.font-color-grey-blue {
    color: #5B6771;
}

/*  Font weighth */

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

/*  Line Height */

.lh-12 {
    line-height: 1.2em;
}

.lh-14 {
    line-height: 1.4em;
}

.lh-16 {
    line-height: 1.6em;
}

/*  Buttons */

.btn {
    font-weight: 700;
    font-size: 0.16rem;
    display: inline-block;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    padding-top: .2rem;
    padding-bottom: .2rem;
    padding-left: .4rem;
    padding-right: .4rem;
    border: 2px solid transparent;
    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;
}

    .btn.small {
        padding-top: .14rem;
        padding-bottom: .14rem;
        font-size: .14rem;
    }

    .btn span {
        font-size: inherit;
        font-weight: inherit;
    }

    .btn.primary {
        background-color: #3585C2;
        color: #ffffff;
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .btn.secondary {
        background-color: transparent;
        color: black;
        border: 2px solid #2270AC;
        padding-left: .4rem;
        padding-right: .4rem;
    }

button.btn {
    background-color: transparent;
}

/*  Form */

form.general {
    display: inline-block;
    width: calc(100% + .16rem);
    margin: -.04rem -.08rem;
}

    form.general .form-item {
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: calc(100% - .16rem);
        margin: .04rem .08rem;
    }

        form.general .form-item.half-w {
            width: calc(50% - .16rem);
        }
        form.general .form-item.half-t {
            width: calc(33.3% - .16rem);
        }

        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 {
            height: .6rem;
            width: 100%;
            padding: 0 .25rem;
            background-color: white;
            font-size: .16rem;
            font-weight: 400;
            color: #4F4F4F;
            border: 1px solid #C4C4C4;
            border-radius: .08rem;
            -webkit-border-radius: .08rem;
            -moz-border-radius: .08rem;
            -ms-border-radius: .08rem;
            -o-border-radius: .08rem;
            resize: none;
            font-family: inherit;
        }

        form.general .form-item textarea {
            height: 1.12rem;
            padding: .2rem .25rem;
        }

        form.general .form-item[a-error=true] input[type=text],
        form.general .form-item[a-error=true] input[type=email],
        form.general .form-item[a-error=true] input[type=password],
        form.general .form-item[a-error=true] textarea,
        form.general .form-item[a-error=true] .select2-container--default .select2-selection--single {
            border: 1px solid #C5203F;
        }

        form.general .form-item[a-error=true] .input-error {
            font-size: .1rem;
            color: #C5203F;
            margin-top: .05rem;
            line-height: 1.6em;
            text-align: right;
        }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #C4C4C4;
    -webkit-text-fill-color: #4F4F4F;
    box-shadow: 0 0 0px 10rem #fff inset;
    -webkit-box-shadow: 0 0 0px 10rem #fff inset;
}

form.general .form-item ::placeholder {
    color: #C4C4C4;
    opacity: 1;
}

form.general .form-item :-ms-input-placeholder {
    color: #C4C4C4;
}

form.general .form-item ::-ms-input-placeholder {
    color: #C4C4C4;
}

form.general * + button.btn {
    margin-top: .28rem;
}

/*  Select */

form.general .form-item .select2-container--default .select2-selection--single {
    height: .6rem;
    color: #4F4F4F;
    border: 1px solid #C4C4C4;
    border-radius: .08rem;
    -webkit-border-radius: .08rem;
    -moz-border-radius: .08rem;
    -ms-border-radius: .08rem;
    -o-border-radius: .08rem;
    text-align: left;
}

form.general .form-item .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
form.general .form-item .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

form.general .form-item .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
form.general .form-item .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

form.general .form-item .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: .56rem;
    padding-left: .25rem;
    line-height: .6rem;
    font-size: .16rem;
    color: black;
}

form.general .form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: .4rem;
    margin-top: -.05rem;
    background-image: url(Icons/arrow-bottom.svg);
    width: .1rem;
    height: .1rem;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

    form.general .form-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border: none;
    }

/*  Vehicle Select */

.select2-dropdown {
    overflow: hidden;
    border-radius: .08rem;
    -webkit-border-radius: .08rem;
    -moz-border-radius: .08rem;
    -ms-border-radius: .08rem;
    -o-border-radius: .08rem;
}

.vehicle-select .select2-dropdown {
    border: none;
    border-radius: .4rem;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
}

.select2-dropdown .select2-search .select2-search__field {
    padding: .12rem .2rem;
    font-size: .14rem;
    border: 1px solid #d4d4d4 !important;
    border-radius: .04rem;
    -webkit-border-radius: .04rem;
    -moz-border-radius: .04rem;
    -ms-border-radius: .04rem;
    -o-border-radius: .04rem;
}

.select2-dropdown--above {
    border-bottom: 0;
}

.vehicle-select .select2-dropdown--above {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .vehicle-select .select2-dropdown--above .select2-results .select2-results__options {
        padding-top: .2rem;
    }

.select2-dropdown--below {
    border-top: 0;
}

.select2-dropdown--above .select2-search {
    padding-top: .04rem;
}

.vehicle-select .select2-dropdown--below {
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .vehicle-select .select2-dropdown--below .select2-results .select2-results__options {
        padding-bottom: .2rem;
    }

.select2-dropdown .select2-results__option {
    font-size: .14rem;
    padding: .16rem .2rem;
    font-weight: 400;
}

.vehicle-select .select2-dropdown .select2-results__option {
    padding: .23rem .32rem;
    font-weight: 700;
}

    .vehicle-select .select2-dropdown .select2-results__option[aria-disabled="true"] {
        display: none;
    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E1E6EA;
    color: black;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #4F4F4F;
    color: white;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 3.6rem;
}

/*  Radio Button */

form.general .radio-item {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: calc(100% - .16rem);
    margin: .04rem .08rem;
}

    form.general .radio-item .title {
        display: inline-block;
        width: 1.05rem;
        vertical-align: middle;
    }

    form.general .radio-item .form-item.radio {
        width: calc(100% - 1.05rem);
        vertical-align: top;
        padding-bottom: .32rem;
        margin: 0;
    }

        form.general .radio-item .form-item.radio label {
            position: relative;
            display: inline-block;
            width: 100%;
        }

            form.general .radio-item .form-item.radio label .text {
                position: relative;
                display: inline-block;
                line-height: 1.3em;
                font-size: .16rem;
                color: black;
                padding-left: .36rem;
                cursor: pointer;
            }

        form.general .radio-item .form-item.radio * + label {
            margin-top: .16rem;
        }

        form.general .radio-item .form-item.radio label .text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            border: 1px solid #C4C4C4;
            box-shadow: 0 1px .04rem 0 rgba(0, 0, 0, .25) inset;
            background-color: white;
            width: .2rem;
            height: .2rem;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            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;
        }

        form.general .radio-item .form-item.radio[a-error=true] label .text::before {
            border-color: #3585C2;
        }

        form.general .radio-item .form-item.radio input {
            position: absolute;
            z-index: -100;
            opacity: 0;
        }

            form.general .radio-item .form-item.radio input:checked + .text::before {
                background-color: #3585C2;
                border-color: transparent;
                box-shadow: 2px 1px .04rem 0 rgba(0, 0, 0, .25) inset;
            }

        form.general .radio-item .form-item.radio label .text::after {
            content: '';
            position: absolute;
            top: .11rem;
            left: .11rem;
            margin-left: -.04rem;
            margin-top: -.04rem;
            background-color: white;
            width: .08rem;
            height: .08rem;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            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;
        }

/*  Checkbox */

form.general .form-item.check-item {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: calc(100% - .16rem);
    margin: .04rem .08rem;
}

form.general * + .form-item.check-item {
    margin-top: .3rem;
}

form.general .form-item.check-item label {
    position: relative;
    display: inline-block;
    width: 100%;
}


    form.general .form-item.check-item label input {
        position: absolute;
        z-index: -100;
        opacity: 0;
    }


    form.general .form-item.check-item label .text {
        position: relative;
        display: inline-block;
        line-height: 1.3em;
        font-size: .16rem;
        color: black;
        padding-left: .36rem;
        cursor: pointer;
    }


        form.general .form-item.check-item label .text a {
            color: #3585C2;
        }

        form.general .form-item.check-item label .text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            border: 1px solid #C4C4C4;
            box-shadow: 0 1px .04rem 0 rgba(0, 0, 0, .25) inset;
            background-color: white;
            width: .2rem;
            height: .2rem;
            border-radius: .04rem;
            -webkit-border-radius: .04rem;
            -moz-border-radius: .04rem;
            -ms-border-radius: .04rem;
            -o-border-radius: .04rem;
            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;
        }


        form.general .form-item.check-item label .text::after {
            content: '';
            display: inline-block;
            position: absolute;
            width: 0.15rem;
            height: 0.15rem;
            background-image: url('Icons/checkmark.svg');
            left: .04rem;
            top: .04rem;
            background-size: contain;
            opacity: 0;
        }

    form.general .form-item.check-item label input:checked + .text::before {
        background-color: #3585C2;
        border-color: transparent;
        box-shadow: 2px 1px .04rem 0 rgba(0, 0, 0, .25) inset;
    }


    form.general .form-item.check-item label input:checked + .text::after {
        opacity: 1;
    }



form.general .form-item.check-item[a-error=true] label .text::before {
    border-color: #C5203F;
}

/*  Main Header */
header {
    position: absolute;
    display: inline-block;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

    header .wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: .48rem;
        padding-bottom: .2rem;
        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 .wrapper::before {
            content: '';
            position: absolute;
            height: 125%;
            width: 100%;
            z-index: 0;
            left: 0;
            top: 0;
            pointer-events: none;
            background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
            background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
        }

        header .wrapper .logo {
            display: inline-block;
            vertical-align: middle;
            width: 1.87rem;
            height: .48rem;
            position: relative;
        }

            header .wrapper .logo img {
                position: absolute;
                width: 100%;
                height: 100%;
                transition: all .3s ease;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
            }

                header .wrapper .logo img.main {
                    opacity: 0;
                }

        header .wrapper .menu-wrapper {
            display: inline-block;
            vertical-align: middle;
            text-align: left;
            padding-left: 1.12rem;
            padding-right: .28rem;
            line-height: 1.4em;
        }

            header .wrapper .menu-wrapper .menu-item {
                display: inline-block;
                vertical-align: middle;
                position: relative;
            }

                header .wrapper .menu-wrapper .menu-item.menu-active:before {
                    content: '';
                    position: absolute;
                    height: 2px;
                    bottom: -.05rem;
                    width: 100%;
                    background-color: #3585C2;
                    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 .wrapper .menu-wrapper .menu-item + .menu-item {
                    margin-left: .28rem;
                }

                header .wrapper .menu-wrapper .menu-item > a {
                    line-height: 1.4em;
                    letter-spacing: -.02em;
                    font-weight: 700;
                    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 .wrapper .menu-wrapper .menu-item.parent > a {
                    padding-right: .17rem;
                    position: relative;
                }

                    header .wrapper .menu-wrapper .menu-item.parent > a::before {
                        content: '';
                        position: absolute;
                        background-image: url(Icons/chevron-bottom-blue.svg);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        right: 0;
                        top: 50%;
                        width: .11rem;
                        height: .08rem;
                        margin-top: -.04rem;
                        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 .wrapper .contact-item {
            display: inline-block;
            width: 2rem;
            vertical-align: middle;
            border-left: 1px solid rgba(255, 255, 255, .3);
            padding-left: .32rem;
        }

            header .wrapper .contact-item .content {
                display: inline-block;
                position: relative;
            }

                header .wrapper .contact-item .content .icon {
                    display: inline-block;
                    vertical-align: middle;
                    position: relative;
                    width: .25rem;
                    height: .25rem;
                }

                    header .wrapper .contact-item .content .icon img {
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: .25rem;
                        height: .25rem;
                        transition: all .3s ease;
                        -webkit-transition: all .3s ease;
                        -moz-transition: all .3s ease;
                        -ms-transition: all .3s ease;
                        -o-transition: all .3s ease;
                    }

                        header .wrapper .contact-item .content .icon img.red {
                            opacity: 0;
                        }

                header .wrapper .contact-item .content .text {
                    display: inline-block;
                    vertical-align: middle;
                    padding-left: .16rem;
                }

    header > .submenu-items {
        position: relative;
        background-color: white;
        z-index: 2;
        opacity: 1;
        transform: translateY(-.28rem);
        -webkit-transform: translateY(-.28rem);
        -moz-transform: translateY(-.28rem);
        -ms-transform: translateY(-.28rem);
        -o-transform: translateY(-.28rem);
        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 > .submenu-items .submenu {
            display: none;
            width: 100%;
            position: relative;
            padding-top: .08rem;
            padding-bottom: .42rem;
        }

            header > .submenu-items .submenu::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 50%;
                height: .08rem;
                background-color: #3585C2;
            }

            header > .submenu-items .submenu::after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 50%;
                height: .08rem;
                background-color: #5B6771;
            }

            header > .submenu-items .submenu .left {
                display: inline-block;
                vertical-align: top;
                width: 33.33%;
                padding-right: .6rem;
                padding-top: .2rem;
            }

                header > .submenu-items .submenu .left * + .text {
                    margin-top: .16rem;
                }

                header > .submenu-items .submenu .left * + .subtext {
                    margin-top: .16rem;
                }

                header > .submenu-items .submenu .left .subtext {
                    display: inline-block;
                    border-bottom: 1px solid #3585C2;
                    padding-bottom: .02rem;
                }

            header > .submenu-items .submenu .right {
                display: inline-block;
                vertical-align: top;
                width: 66.66%;
            }

                header > .submenu-items .submenu .right .items {
                    display: inline-block;
                    width: calc(100% + .16rem);
                    margin: -.08rem;
                }

                    header > .submenu-items .submenu .right .items .item {
                        display: inline-block;
                        vertical-align: top;
                        width: calc(50% - .16rem);
                        margin: .08rem;
                    }

                        header > .submenu-items .submenu .right .items .item .image {
                            display: table-cell;
                            vertical-align: middle;
                            width: 1.6rem;
                            position: relative;
                        }

                            header > .submenu-items .submenu .right .items .item .image img {
                                max-width: 100%;
                                max-height: 100%;
                            }

                        header > .submenu-items .submenu .right .items .item .content {
                            display: table-cell;
                            vertical-align: middle;
                            width: calc(100% - 1.6rem);
                            position: relative;
                            padding: .24rem .24rem .24rem 0;
                        }

                            header > .submenu-items .submenu .right .items .item .content * + .text {
                                margin-top: .08rem;
                            }

                            header > .submenu-items .submenu .right .items .item .content * + .btn {
                                margin-top: .24rem;
                            }

    header.menu-active {
        z-index: 14;
        background-color: white;
    }

        header.menu-active .wrapper {
            padding-bottom: .48rem;
        }

            header.menu-active .wrapper::before {
                content: none;
            }

            header.menu-active .wrapper .contact-item .content .text .text-general {
                color: #5B6771;
            }

            header.menu-active .wrapper .menu-wrapper .menu-item > a {
                color: #5B6771;
            }

            header.menu-active .wrapper .logo img.light {
                opacity: 0;
            }

            header.menu-active .wrapper .logo img.main {
                opacity: 1;
            }

            header.menu-active .wrapper .contact-item .content .icon img.white {
                opacity: 0;
            }

            header.menu-active .wrapper .contact-item .content .icon img.red {
                opacity: 1;
            }

    header .wrapper .menu-wrapper .menu-item.parent.active > a {
        color: #3585C2;
    }

        header .wrapper .menu-wrapper .menu-item.parent.active > a::before {
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
        }

    header.menu-active > .submenu-items {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

/*  Footer */

footer {
    position: relative;
    background-color: #252E35;
    padding-top: .8rem;
    padding-bottom: .55rem;
}

    footer .menu-groups {
        display: inline-block;
        width: 100%;
    }

        footer .menu-groups .item-group {
            display: inline-block;
            width: 25%;
            vertical-align: top;
        }

            footer .menu-groups .item-group .items {
                display: inline-block;
                width: 100%;
            }

            footer .menu-groups .item-group * + .items {
                margin-top: .24rem;
            }

            footer .menu-groups .item-group .items .item {
                display: inline-block;
                width: 100%;
            }

            footer .menu-groups .item-group .items * + .item {
                margin-top: .16rem;
            }

    footer .middle {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-top: .65rem;
        margin-bottom: .3rem;
        text-align: center;
    }

        footer .middle::before {
            content: '';
            position: absolute;
            width: 100%;
            left: 0;
            top: 50%;
            height: 1px;
            background-color: #0093C9;
        }

        footer .middle .logo {
            display: inline-block;
            position: relative;
            z-index: 2;
            width: 2.56rem;
            background-color: #252E35;
            text-align: center;
        }

            footer .middle .logo a {
                display: inline-block;
                width: 1.87rem;
            }

            footer .middle .logo img {
                display: inline-block;
                width: 100%;
            }

    footer .bottom {
        display: inline-block;
        width: 100%;
    }

        footer .bottom .left {
            display: inline-block;
            width: 40%;
            vertical-align: middle;
        }

            footer .bottom .left .item {
                display: inline-block;
                vertical-align: middle;
            }

            footer .bottom .left * + .item {
                margin-left: .4rem;
            }

        footer .bottom .center {
            display: inline-block;
            width: 20%;
            vertical-align: middle;
            text-align: center;
        }

        footer .bottom .right {
            display: inline-block;
            width: 40%;
            vertical-align: middle;
            text-align: right;
        }

            footer .bottom .right .social-items {
                display: inline-block;
                width: 100%;
            }

                footer .bottom .right .social-items .item {
                    display: inline-block;
                    vertical-align: middle;
                    max-height: .24rem;
                    opacity: .4;
                    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;
                }

                footer .bottom .right .social-items * + .item {
                    margin-left: .4rem;
                }

/*  Popup */

.popup-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    z-index: 100;
}

    .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;
        max-width: calc(100% - 0.8rem);
        height: 7.45rem;
        margin-left: 0.4rem;
        margin-right: 0.4rem;
        background-color: #F1F4F6;
        overflow: hidden;
        border-radius: 0.24rem;
        -webkit-border-radius: 0.24rem;
        -moz-border-radius: 0.24rem;
        -ms-border-radius: 0.24rem;
        -o-border-radius: 0.24rem;
    }

    .popup-wrapper.solution-form .popup-container {
        width: 14.2rem;
        min-height: 50vh;
    }

        .popup-wrapper.solution-form .popup-container .close {
            position: absolute;
            background-color: #3585C2;
            top: .3rem;
            right: .3rem;
            width: .64rem;
            height: .64rem;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            cursor: pointer;
        }

        .popup-wrapper.solution-form .popup-container .wrapper {
            display: inline-block;
            margin: auto;
            width: 9.37rem;
            max-width: 100%;
            padding: .2rem;
            text-align: left;
        }

            .popup-wrapper.solution-form .popup-container .wrapper .head {
                display: inline-block;
                width: 100%;
            }

                .popup-wrapper.solution-form .popup-container .wrapper .head .title {
                    display: inline-block;
                    vertical-align: middle;
                    text-align: left;
                    width: 50%;
                }

                .popup-wrapper.solution-form .popup-container .wrapper .head .tabs {
                    display: inline-block;
                    width: 50%;
                    vertical-align: middle;
                    text-align: right;
                }

                    .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab {
                        display: inline-block;
                        cursor: pointer;
                        border: 1px solid #3585C2;
                        padding: .12rem .16rem;
                    }

                        .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab span {
                            font-size: .12rem;
                            color: #3585C2;
                        }

                        .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab:first-child {
                            border-top-left-radius: .04rem;
                            border-bottom-left-radius: .04rem;
                        }

                        .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab:last-child {
                            border-top-right-radius: .04rem;
                            border-bottom-right-radius: .04rem;
                        }

                        .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab.active {
                            background-color: #3585C2;
                        }

                            .popup-wrapper.solution-form .popup-container .wrapper .head .tabs .tab.active span {
                                color: white;
                            }

                    .popup-wrapper.solution-form .popup-container .wrapper .head .tabs * + .tab {
                        border-left: 0;
                    }

            .popup-wrapper.solution-form .popup-container .wrapper .body {
                display: inline-block;
                width: 100%;
                text-align: center;
            }

            .popup-wrapper.solution-form .popup-container .wrapper * + .body {
                margin-top: .32rem;
            }

            .popup-wrapper.solution-form .popup-container .wrapper .body .content {
                display: block;
                width: 100%;
                text-align: center;
                position: relative;
            }

                .popup-wrapper.solution-form .popup-container .wrapper .body .content[a-tab-item] {
                    display: none;
                }

                .popup-wrapper.solution-form .popup-container .wrapper .body .content.active {
                    display: block;
                }

            .popup-wrapper.solution-form .popup-container .wrapper .body .btn {
                color: #3585C2;
                border-color: #3585C2;
            }

    /* Agreement Popup */

    .popup-wrapper.form-agreement .popup-container {
        width: 10.2rem;
        height: auto;
        max-height: 60vh;
        overflow: auto;
    }

        .popup-wrapper.form-agreement .popup-container .close-btn {
            position: absolute;
            background-color: #3585C2;
            top: 0.2rem;
            right: 0.2rem;
            width: 0.64rem;
            height: 0.64rem;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            cursor: pointer;
        }

        .popup-wrapper.form-agreement .popup-container .content {
            padding: .4rem;
        }

            .popup-wrapper.form-agreement .popup-container .content * + .text {
                margin-top: .25rem;
            }

            .popup-wrapper.form-agreement .popup-container .content * + .btn {
                margin-top: .45rem;
            }

    /*  Video Popup */
    .popup-wrapper.video .popup-container {
        width: 15.82rem;
        height: 82vh;
        min-height: 7rem;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .popup-wrapper.video .close {
        position: absolute;
        background-color: #3585C2;
        top: 0;
        right: 0;
        width: .8rem;
        height: .8rem;
        cursor: pointer;
    }

        .popup-wrapper.video .close img {
            width: .16rem;
            height: .16rem;
        }

    .popup-wrapper.video .popup-container iframe {
        width: 100%;
        height: 100%;
    }

    /*  Custom Alert */

    .popup-wrapper.custom-alert .popup-container {
        width: 5.68rem;
        max-width: calc(100% - 0.8rem);
        height: auto;
        padding: .42rem .72rem;
        text-align: center;
    }

        .popup-wrapper.custom-alert .popup-container .icon {
            width: .96rem;
            display: inline-block;
        }

            .popup-wrapper.custom-alert .popup-container .icon img.cross {
                display: none;
            }

        .popup-wrapper.custom-alert .popup-container.error .icon img {
            display: none;
        }

            .popup-wrapper.custom-alert .popup-container.error .icon img.cross {
                display: inline;
            }

        .popup-wrapper.custom-alert .popup-container .icon img {
            width: 100%;
        }

        .popup-wrapper.custom-alert .popup-container * + .title {
            margin-top: .24rem;
        }

        .popup-wrapper.custom-alert .popup-container * + .text {
            margin-top: .16rem;
        }

        .popup-wrapper.custom-alert .popup-container * + .btn {
            margin-top: .24rem;
        }

/*  Overlay */

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    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;
}

    .overlay.active {
        z-index: 13;
        opacity: 1;
        pointer-events: all;
    }

/*  Sticky Menu */

section.sidebar {
    position: fixed;
    height: 100%;
    width: 0;
    top: 0;
    right: 0;
    z-index: 10;
    background-color: white;
    transition: width .4s ease-in-out .8s;
    -webkit-transition: width .4s ease-in-out .8s;
    -moz-transition: width .4s ease-in-out .8s;
    -ms-transition: width .4s ease-in-out .8s;
    -o-transition: width .4s ease-in-out .8s;
}

    section.sidebar .logo {
        position: absolute;
        z-index: 1;
        width: 1.87rem;
        height: .48rem;
        left: .48rem;
        top: .48rem;
    }

        section.sidebar .logo img {
            width: 100%;
            height: 100%;
        }

    section.sidebar .menu-wrapper {
        position: absolute;
        z-index: 2;
        top: .16rem;
        bottom: .16rem;
        right: .16rem;
        width: .72rem;
        min-width: .72rem;
        background-color: #3585C2;
        border-radius: .12rem;
        -webkit-border-radius: .12rem;
        -moz-border-radius: .12rem;
        -ms-border-radius: .12rem;
        -o-border-radius: .12rem;
        transition: all .4s ease-in-out .4s;
        -webkit-transition: all .4s ease-in-out .4s;
        -moz-transition: all .4s ease-in-out .4s;
        -ms-transition: all .4s ease-in-out .4s;
        -o-transition: all .4s ease-in-out .4s;
    }

        section.sidebar .menu-wrapper .menu-toggler {
            position: absolute;
            width: .32rem;
            top: .27rem;
            right: .2rem;
            text-align: center;
            cursor: pointer;
        }

        section.sidebar .menu-wrapper .language-toggler {
            position: absolute;
            width: auto;
            bottom: -.08rem;
            cursor: pointer;
            right: .36rem;
            padding: .16rem;
            background-color: rgba(0, 0, 0, .2);
            border-radius: .08rem;
            -webkit-border-radius: .08rem;
            -moz-border-radius: .08rem;
            -ms-border-radius: .08rem;
            -o-border-radius: .08rem;
            transform-origin: right center;
            white-space: nowrap;
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }

            section.sidebar .menu-wrapper .language-toggler .text {
                display: inline-block;
                vertical-align: middle;
                margin-left: .08rem;
                transform-origin: left;
            }

            section.sidebar .menu-wrapper .language-toggler .icon {
                display: inline-block;
                vertical-align: middle;
                width: .16rem;
            }

                section.sidebar .menu-wrapper .language-toggler .icon img {
                    width: 100%;
                }

        section.sidebar .menu-wrapper .menu-toggler .icon {
            position: absolute;
            width: .32rem;
            height: .18rem;
            top: 0;
            left: 0;
        }

            section.sidebar .menu-wrapper .menu-toggler .icon span {
                position: absolute;
                width: 100%;
                height: 2px;
                left: 0;
                background-color: white;
                border-radius: 2px;
                -webkit-border-radius: 2px;
                -moz-border-radius: 2px;
                -ms-border-radius: 2px;
                -o-border-radius: 2px;
                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.sidebar .menu-wrapper .menu-toggler .icon span:nth-child(1) {
                    top: 0;
                }

                section.sidebar .menu-wrapper .menu-toggler .icon span:nth-child(2) {
                    top: 50%;
                }

                section.sidebar .menu-wrapper .menu-toggler .icon span:nth-child(3) {
                    top: 100%;
                }

        section.sidebar .menu-wrapper .menu-toggler .text {
            position: absolute;
            top: .5rem;
            left: 0;
            height: auto;
            width: 100%;
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform-origin: center;
            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.sidebar .menu-wrapper .items {
            width: 100%;
            padding: .4rem .9rem .4rem 1.29rem;
        }

            section.sidebar .menu-wrapper .items .item {
                opacity: .4;
                position: relative;
                max-width: 0;
                white-space: nowrap;
                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.sidebar .menu-wrapper .items .item::before {
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 0;
                    height: 100%;
                    width: 1rem;
                    background: -moz-linear-gradient(90deg, rgba(53, 133, 194, 0) 0%, rgba(53, 133, 194, 1) 100%);
                    background: -webkit-linear-gradient(90deg, rgba(53, 133, 194, 0) 0%, rgba(53, 133, 194, 1) 100%);
                    background: linear-gradient(90deg, rgba(53, 133, 194, 0) 0%, rgba(53, 133, 194, 1) 100%);
                }

                section.sidebar .menu-wrapper .items .item.active {
                    opacity: 1;
                }

                section.sidebar .menu-wrapper .items .item:hover {
                    opacity: 1;
                    transition: none !important;
                    -webkit-transition: none !important;
                    -moz-transition: none !important;
                    -ms-transition: none !important;
                    -o-transition: none !important;
                }

            section.sidebar .menu-wrapper .items * + .item {
                margin-top: .41rem;
            }

            section.sidebar .menu-wrapper .items * + .social-items {
                margin-top: .96rem;
            }

            section.sidebar .menu-wrapper .items .item .title {
                line-height: 1.6em;
            }

            section.sidebar .menu-wrapper .items .item * + .text {
                margin-top: .08rem;
            }

            section.sidebar .menu-wrapper .items .social-items {
                opacity: 1;
            }

                section.sidebar .menu-wrapper .items .social-items .social-item {
                    display: inline-block;
                    vertical-align: middle;
                    max-height: .24rem;
                    filter: opacity(0.5);
                }

                section.sidebar .menu-wrapper .items .social-items * + .social-item {
                    margin-left: .24rem;
                }

                section.sidebar .menu-wrapper .items .social-items .social-item img {
                    display: inline-block;
                    width: 100%;
                    max-height: .24rem;
                }

    section.sidebar .menu-image {
        position: absolute;
        left: 0;
        top: 0;
        width: calc(50vw + .32rem);
        height: 100%;
        z-index: 1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        transition: all .2s ease-in-out .6s;
        -webkit-transition: all .2s ease-in-out .6s;
        -moz-transition: all .2s ease-in-out .6s;
        -ms-transition: all .2s ease-in-out .6s;
        -o-transition: all .2s ease-in-out .6s;
    }

    section.sidebar.active {
        width: 100%;
        transition: width .4s ease-in-out;
        -webkit-transition: width .4s ease-in-out;
        -moz-transition: width .4s ease-in-out;
        -ms-transition: width .4s ease-in-out;
        -o-transition: width .4s ease-in-out;
    }

        section.sidebar.active .menu-wrapper {
            width: calc(50% - .32rem);
            background-color: #3585C2;
            transition: all .4s ease-in-out .2s;
            -webkit-transition: all .4s ease-in-out .2s;
            -moz-transition: all .4s ease-in-out .2s;
            -ms-transition: all .4s ease-in-out .2s;
            -o-transition: all .4s ease-in-out .2s;
        }

            section.sidebar.active .menu-wrapper .menu-toggler .icon span:nth-child(1) {
                top: 50%;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
            }

            section.sidebar.active .menu-wrapper .menu-toggler .icon span:nth-child(3) {
                top: 50%;
                transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
            }

            section.sidebar.active .menu-wrapper .menu-toggler .icon span:nth-child(2) {
                opacity: 0;
                transform: translateX(-100%);
                -webkit-transform: translateX(-100%);
                -moz-transform: translateX(-100%);
                -ms-transform: translateX(-100%);
                -o-transform: translateX(-100%);
            }

            section.sidebar.active .menu-wrapper .menu-toggler .text {
                opacity: 0;
                visibility: hidden;
            }

            section.sidebar.active .menu-wrapper .items .item {
                max-width: 100%;
                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.sidebar.active .menu-image {
            transition: all .4s ease-in-out .4s;
            -webkit-transition: all .4s ease-in-out .4s;
            -moz-transition: all .4s ease-in-out .4s;
            -ms-transition: all .4s ease-in-out .4s;
            -o-transition: all .4s ease-in-out .4s;
        }

/* Language Selector */

.language-selector {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 11;
    background-color: rgba(0,0,0,0.6);
    display: none;
}

    .language-selector.active {
        display: block;
        text-align: right;
    }

    .language-selector .content {
        width: 4.84rem;
        height: 100%;
        background-color: white;
        text-align: left;
        display: inline-block;
    }

        .language-selector .content .top {
            position: relative;
            height: .96rem;
            padding-right: .8rem;
            padding-left: .8rem;
            border-bottom: 1px solid #C4C4C4;
        }

            .language-selector .content .top .close {
                position: absolute;
                width: .56rem;
                height: .56rem;
                right: .2rem;
                top: .2rem;
            }

            .language-selector .content .top .title {
                width: 100%;
                text-align: center;
            }

            .language-selector .content .top .close img {
                width: 100%;
                height: 100%;
            }

        .language-selector .content .bottom {
            padding: .4rem;
            height: calc(100% - .98rem);
        }

            .language-selector .content .bottom .menu {
                max-height: 100%;
                overflow: auto;
            }

                .language-selector .content .bottom .menu::-webkit-scrollbar {
                    width: .08rem;
                }

                .language-selector .content .bottom .menu::-webkit-scrollbar-track {
                    background: transparent;
                }

                .language-selector .content .bottom .menu::-webkit-scrollbar-thumb {
                    background: #C4C4C4;
                    border-radius: .08rem;
                }

                    .language-selector .content .bottom .menu::-webkit-scrollbar-thumb:hover {
                        background: #C4C4C4;
                    }

                .language-selector .content .bottom .menu * + .title {
                    margin-top: .24rem;
                }

                .language-selector .content .bottom .menu * + .sub-title {
                    margin-top: .24rem;
                }

                .language-selector .content .bottom .menu * + .items {
                    margin-top: .08rem;
                }

                .language-selector .content .bottom .menu .items * + .item {
                    margin-left: .16rem;
                }

/*  Main Slider */

section.main-slider {
    position: relative;
}

    section.main-slider .items {
        display: inline-block;
        height: 100vh;
        min-height: 6rem;
        z-index: 1;
    }

        section.main-slider .items .owl-stage,
        section.main-slider .items .owl-stage-outer,
        section.main-slider .items .owl-item {
            height: 100%;
        }

        section.main-slider .items .item {
            width: 100%;
            height: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        section.main-slider .items .img-item {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        section.main-slider .items .img-item-mobile {
            visibility:hidden;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

            section.main-slider .items .item::after {
                content: '';
                position: absolute;
                z-index: 1;
                background-color: #000;
                opacity: .35;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            section.main-slider .items .item .content {
                display: none;
                position: absolute;
                bottom: 4.12rem;
                left: 2.4rem;
                width: 50%;
                z-index: 2;
            }

            section.main-slider .items.owl-loaded .item .content {
                display: block;
            }

                section.main-slider .items .item .content .text {
                    position: relative;
                    padding-left: 1.38rem;
                }

                section.main-slider .items .item .content * + .text {
                    margin-top: .32rem;
                }

                section.main-slider .items .item .content .text .index {
                    position: absolute;
                    width: 1.38rem;
                    left: 0;
                    top: 0;
                    margin-top: .08rem;
                    font-size: .12rem !important;
                    font-weight: 700 !important;
                    line-height: 1.4em !important;
                }

                    section.main-slider .items .item .content .text .index::before {
                        content: '';
                        position: absolute;
                        top: 50%;
                        right: .28rem;
                        width: .64rem;
                        height: 1px;
                        background-color: #3585C2;
                    }

    section.main-slider  .btn {
        display: none;
        position: absolute;
        bottom: 3rem;
        left: 3.78rem;
        z-index: 3;
    }

    section.main-slider .items.owl-loaded + .btn {
        display: inline-block;
    }

    section.main-slider .owl-nav {
        position: absolute;
        padding: .22rem .11rem;
        bottom: 3rem;
        left: 2.42rem;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: .5rem;
        -webkit-border-radius: .5rem;
        -moz-border-radius: .5rem;
        -ms-border-radius: .5rem;
        -o-border-radius: .5rem;
        overflow: hidden;
    }

        section.main-slider .owl-nav > * {
            margin: 0 .1rem;
            opacity: .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;
        }

        section.main-slider .owl-nav .owl-prev {
            display: inline-block;
            position: relative;
            vertical-align: middle;
            width: .21rem;
            height: .15rem;
            background-image: url(Icons/chevron-left-white.svg);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: left center;
            transform-origin: left;
        }

        section.main-slider .owl-nav .owl-next {
            display: inline-block;
            position: relative;
            vertical-align: middle;
            width: .21rem;
            height: .15rem;
            background-image: url(Icons/chevron-right-white.svg);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: right center;
            transform-origin: right;
        }

    section.main-slider .locations {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
    }

        section.main-slider .locations .text {
            display: inline-block;
            vertical-align: bottom;
            width: 7.1rem;
            height: 1.52rem;
            padding: .5rem .6rem;
            text-align: center;
            background-color: white;
        }

            section.main-slider .locations .text .content {
                text-align: left;
            }

                section.main-slider .locations .text .content .title span {
                    border-bottom: 2px solid #3585C2;
                    padding-bottom: .07rem;
                }

                section.main-slider .locations .text .content * + .title {
                    margin-top: .08rem
                }

        section.main-slider .locations form.general {
            width: auto;
            margin: 0;
        }

            section.main-slider .locations form.general .form-item {
                width: 100%;
                margin: 0;
            }

        section.main-slider .locations .select-location {
            display: inline-block;
            vertical-align: bottom;
            text-align: center;
        }

            section.main-slider .locations .select-location .form-item input {
                display: inline-block;
                width: 4.84rem;
                height: 1.2rem;
                padding: .2rem 1.35rem .2rem.8rem;
                background-image: url(Icons/pin-blue.svg);
                background-size: .18rem auto;
                background-position: .45rem center;
                background-repeat: no-repeat;
                border: none;
                background-color: #EDEDED;
                border-radius: 0;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                -ms-border-radius: 0;
                -o-border-radius: 0;
            }

            section.main-slider .locations .select-location .form-item label.placeholder {
                display: inline;
                position: absolute;
                z-index: 1;
                left: .8rem;
                top: 50%;
                opacity: 1;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transition: all .15s ease-in-out;
                -webkit-transition: all .15s ease-in-out;
                -moz-transition: all .15s ease-in-out;
                -ms-transition: all .15s ease-in-out;
                -o-transition: all .15s ease-in-out;
            }

            section.main-slider .locations .select-location .form-item input:focus ~ label.placeholder,
            section.main-slider .locations .select-location .form-item input.active ~ label.placeholder {
                opacity: 0;
                visibility: hidden;
            }

            section.main-slider .locations .select-location .form-item span {
                display: inline;
                position: absolute;
                z-index: 1;
                right: 0;
                top: 50%;
                width: 1.4rem;
                text-align: right;
                padding-right: .32rem;
                padding-left: .12rem;
                color: #ADADAD;
                touch-action: none;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

        section.main-slider .locations .approve {
            display: inline-block;
            vertical-align: bottom;
            width: 3.2rem;
            height: 1.2rem;
            padding: .2rem;
            border: none;
            text-align: center;
            background-color: #3585C2;
        }

    section.main-slider .scroll {
        position: absolute;
        bottom: .32rem;
        right: 2.4rem;
        z-index: 3;
        cursor: pointer;
        height: .58rem;
        width: .23rem;
    }

        section.main-slider .scroll img {
            display: inline-block;
            width: 100%;
            height: 100%;
        }

/*  Round Text Box */

section.round-text-box {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: .8rem;
    padding-bottom: .6rem;
}

    section.round-text-box .items {
        width: 100%;
        padding: 0 1.2rem;
        text-align: center;
    }

        section.round-text-box .items .item {
            display: inline-block;
            position: relative;
            width: 3.47rem;
            height: 3.47rem;
            margin: .38rem;
            margin-top: .87rem;
            border: 2px solid #3585C2;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }

            section.round-text-box .items .item .icon {
                position: absolute;
                z-index: 2;
                top: 0;
                left: 50%;
                width: .94rem;
                height: .94rem;
                margin-left: -.47rem;
                margin-top: -.47rem;
                background-color: white;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                box-shadow: 0 .08rem .24rem 0 rgba(53, 133, 194, 0.32);
                border: 2px solid white;
            }

            section.round-text-box .items .item::after {
                content: '';
                position: absolute;
                z-index: 1;
                top: 0;
                left: 50%;
                width: .94rem;
                height: .94rem;
                margin-left: -.47rem;
                margin-top: -.47rem;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                box-shadow: 0 .08rem .24rem .32rem rgba(255, 255, 255, 1);
            }

/*  Slider */

section.slider {
    display: inline-block;
    padding-top: .6rem;
    padding-bottom: .6rem;
    width: 100%;
}

    section.slider .title {
        display: block;
        text-align: center;
    }

    section.slider .items {
        position: relative;
    }

    section.slider * + .items {
        margin-top: .5rem;
    }

    section.slider .items .item {
        display: block;
    }

        section.slider .items .item .img-box {
            display: block;
            position: relative;
            height: 0;
            padding-bottom: 56.17%;
            overflow: hidden;
        }

        section.slider .items .item[data-video-url] .img-box::before {
            content: '';
            position: absolute;
            background-color: rgba(0, 0, 0, 0.2);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-position: center;
            background-size: .8rem auto;
            background-repeat: no-repeat;
            z-index: 2;
        }

        section.slider .items .item[data-video-url] .img-box::before {
            background-image: url(Icons/play-icon.svg);
        }

        section.slider .items .item .img-box img {
            position: absolute;
        }

        section.slider .items .item .content {
            display: block;
            width: 100%;
        }

            section.slider .items .item .content .text {
                display: block;
                text-align: center;
            }

        section.slider .items .item * + .content {
            margin-top: .15rem;
        }

    section.slider .items .owl-nav {
        position: absolute;
        top: 1.1rem;
        left: 0;
        width: calc(100% + 1.92rem);
        margin-left: -.96rem;
        height: 0;
    }

        section.slider .items .owl-nav > * {
            position: absolute;
            top: -.32rem;
            width: .64rem;
            height: .64rem;
            background-color: white;
            background-position: center;
            background-size: .2rem auto;
            background-repeat: no-repeat;
            box-shadow: 0 .04rem .16rem 0 rgba(53, 133, 194, 0.23);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            z-index: 4;
            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.slider .items .owl-nav .owl-prev {
            left: 0;
            background-image: url(Icons/arrow-left-blue.svg);
        }

        section.slider .items .owl-nav .owl-next {
            right: 0;
            background-image: url(Icons/arrow-right-blue.svg);
        }

/*  Text Image Block */

section.text-image-block {
    display: inline-block;
    width: 100%;
    padding-top: .2rem;
}

    section.text-image-block + section.solution-specs {
        padding-top: .8rem;
    }

    section.text-image-block .items .item .head {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: .64rem;
        margin-bottom: .64rem;
    }

    section.text-image-block .items {
        display: inline-block;
        width: 100%;
    }

    section.text-image-block * + .items {
        margin-top: .64rem;
    }

    section.text-image-block .items .item {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    section.text-image-block .items.pattern .item::before,
    section.text-image-block .items.pattern .item::after {
        z-index: 2;
    }

    section.text-image-block .items.pattern .item:nth-child(4n+1)::after {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 1.5rem;
        height: 1.5rem;
        left: calc(50% + .12rem);
        bottom: -.14rem;
        border-radius: 1.5rem;
        -webkit-border-radius: 1.5rem;
        -moz-border-radius: 1.5rem;
        -ms-border-radius: 1.5rem;
        -o-border-radius: 1.5rem;
        clip-path: polygon(0 0, 1.5rem 0, 1.5rem 1.36rem, 0 1.36rem);
    }

    section.text-image-block .items.pattern .item:nth-child(4n+3)::after {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 2.4rem;
        height: 2.4rem;
        right: -1.2rem;
        top: -1.2rem;
        border-radius: 2.4rem;
        -webkit-border-radius: 2.4rem;
        -moz-border-radius: 2.4rem;
        -ms-border-radius: 2.4rem;
        -o-border-radius: 2.4rem;
        clip-path: polygon(0 1.2rem, 1.2rem 1.2rem, 1.2rem 2.4rem, 0 2.4rem);
    }

    section.text-image-block .items.pattern .item:nth-child(4n+4)::after {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 2rem;
        height: 1.2rem;
        left: 0;
        top: 0;
    }

    section.text-image-block .items.pattern .item:nth-child(4n+1)::before {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 2rem;
        height: 1.2rem;
        right: calc(50% + .8rem);
        bottom: 0;
    }

    section.text-image-block .items.pattern .item:nth-child(4n+2)::before {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 2.4rem;
        height: 2.4rem;
        right: -1.2rem;
        bottom: -1.2rem;
        border-radius: 2.4rem;
        -webkit-border-radius: 2.4rem;
        -moz-border-radius: 2.4rem;
        -ms-border-radius: 2.4rem;
        -o-border-radius: 2.4rem;
        clip-path: polygon(0 0, 1.2rem 0, 1.2rem 1.2rem, 0 1.2rem);
    }

    section.text-image-block .items.pattern .item:nth-child(4n+4)::before {
        content: '';
        position: absolute;
        background-color: #2270AC;
        width: 1.5rem;
        height: 1.5rem;
        left: 2.47rem;
        top: -.14rem;
        border-radius: 1.5rem;
        -webkit-border-radius: 1.5rem;
        -moz-border-radius: 1.5rem;
        -ms-border-radius: 1.5rem;
        -o-border-radius: 1.5rem;
        clip-path: polygon(0 .14rem, 1.5rem .14rem, 1.5rem 1.5rem, 0 1.5rem);
    }

    section.text-image-block .items.item-spaces .item {
        margin-top: .96rem;
    }

        section.text-image-block .items.item-spaces .item:first-child {
            margin-top: 0;
        }

    section.text-image-block .items .item:nth-child(even) {
        direction: rtl;
    }

    section.text-image-block .items.right-start .item:nth-child(even) {
        direction: ltr;
    }

    section.text-image-block .items.right-start .item:nth-child(odd) {
        direction: rtl;
    }

    section.text-image-block .items .item .img-box {
        position: relative;
        display: inline-block;
        width: 50%;
        vertical-align: middle;
    }

        section.text-image-block .items .item .img-box img {
            width: 100%;
        }

    section.text-image-block .items .item .text-content {
        position: relative;
        display: inline-block;
        width: 50%;
        vertical-align: middle;
        padding: .4rem .8rem;
        direction: ltr;
    }

        section.text-image-block .items .item .text-content .content {
            display: inline-block;
            width: 100%;
        }

            section.text-image-block .items .item .text-content .content.small {
                padding-left: .6rem;
                padding-right: .6rem;
            }

        section.text-image-block .items .item .text-content .title {
            display: block;
        }

        section.text-image-block .items .item .text-content .text {
            display: block;
        }

        section.text-image-block .items .item .text-content * + .buttons {
            margin-top: .56rem;
        }

        section.text-image-block .items .item .text-content .buttons .btn.small {
            font-size: .16rem;
        }

        section.text-image-block .items .item .text-content .substances + .buttons {
            margin-left: .54rem;
        }

        section.text-image-block .items .item .text-content .buttons + .buttons {
            margin-left: .54rem;
            margin-top: .2rem;
        }

        section.text-image-block .items .item .text-content .buttons .btn + .btn {
            margin-left: .16rem;
        }

        section.text-image-block .items .item .text-content .buttons .btn {
            vertical-align: middle;
            margin-bottom: .16rem;
        }

        section.text-image-block .items .item .text-content .buttons .logo {
            display: inline-block;
            vertical-align: middle;
            height: .48rem;
            margin-bottom: .16rem;
        }

        section.text-image-block .items .item .text-content .buttons .btn + .logo {
            margin-left: .55rem;
        }

        section.text-image-block .items .item .text-content .buttons .logo + .logo {
            margin-left: .16rem;
        }

        section.text-image-block .items .item .text-content .buttons .logo img {
            height: .48rem;
            width: 100%;
        }

    section.text-image-block .items .item:nth-child(odd) .text-content {
        padding-right: 2.42rem;
    }

    section.text-image-block .items .item:nth-child(even) .text-content {
        padding-left: 2.42rem;
    }

    section.text-image-block .items.items.right-start .item:nth-child(odd) .text-content {
        padding-left: 2.42rem;
        padding-right: .4rem;
    }

    section.text-image-block .items.items.right-start .item:nth-child(even) .text-content {
        padding-right: 2.42rem;
        padding-left: .4rem;
    }

    section.text-image-block .items .item .text-content .substances {
        display: inline-block;
        width: 100%;
    }

    section.text-image-block .items .item .text-content * + .substances {
        margin-top: .48rem;
    }

    section.text-image-block .items .item .text-content .substances .substance {
        position: relative;
        display: inline-block;
        width: 100%;
        padding-left: .54rem;
    }

        section.text-image-block .items .item .text-content .substances .substance:before {
            content: '';
            position: absolute;
            width: .4rem;
            height: .01rem;
            left: 0;
            top: 0.13rem;
            background-color: #3585C2;
        }

    section.text-image-block .items .item .text-content .substances * + .substance {
        margin-top: .32rem;
    }

    section.text-image-block .items .item .text-content .substances .substance * + .text {
        margin-top: .08rem;
    }

    section.text-image-block .items .item .text-content * + .text {
        margin-top: .16rem;
    }

/*  Mobile App */

section.mobile-app {
    display: inline-block;
    width: 100%;
    direction: rtl;
}

    section.mobile-app .text-section {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        direction: ltr;
    }

        section.mobile-app .text-section .content {
            padding: .4rem .38rem .4rem 2.42rem;
        }

            section.mobile-app .text-section .content .stores .title {
                display: block;
            }

            section.mobile-app .text-section .content .stores .text {
                display: block;
            }

            section.mobile-app .text-section .content * + .text {
                margin-top: .24rem;
            }

            section.mobile-app .text-section .content .stores {
                display: block;
            }

            section.mobile-app .text-section .content * + .stores {
                margin-top: .5rem;
            }

            section.mobile-app .text-section .content .stores a {
                display: inline-block;
                width: 2.16rem;
            }

            section.mobile-app .text-section .content .stores * + a {
                margin-left: .16rem;
            }

            section.mobile-app .text-section .content .stores a img {
                width: 100%;
            }

    section.mobile-app .img-box {
        display: table-cell;
        width: 50%;
        vertical-align: middle;
    }

        section.mobile-app .img-box img {
            width: 100%;
        }

/*  Vehicles */

section.vehicles {
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: .64rem;
    padding-bottom: .84rem;
}

    section.vehicles .bg {
        content: '';
        width: 100%;
        height: 6.4rem;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background-color: #5B6771;
    }

    section.vehicles .wrapper {
        position: relative;
        display: block;
        margin: auto;
        width: 13.46rem;
        max-width: 100%;
        z-index: 2;
        text-align: center;
    }

        section.vehicles .wrapper .content {
            display: inline-block;
            width: 100%;
        }

        section.vehicles .wrapper .header {
            display: inline-block;
            width: 100%;
            padding: 0 1rem;
        }

            section.vehicles .wrapper .header .filter .select2-container--default .select2-selection--single {
                height: .8rem;
                border-radius: .4rem;
                -webkit-border-radius: .4rem;
                -moz-border-radius: .4rem;
                -ms-border-radius: .4rem;
                -o-border-radius: .4rem;
                text-align: left;
                box-shadow: 0 .04rem .16rem 0 rgba(0, 0, 0, .2);
                border: none;
            }

            section.vehicles .wrapper .header .filter .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
            section.vehicles .wrapper .header .filter .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }

            section.vehicles .wrapper .header .filter .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
            section.vehicles .wrapper .header .filter .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            section.vehicles .wrapper .header .filter .select2-container .select2-selection--single .select2-selection__rendered {
                padding-right: .52rem;
                padding-left: .32rem;
                line-height: .8rem;
                font-size: .16rem;
                color: black;
                font-weight: 700;
            }

            section.vehicles .wrapper .header .filter .select2-container--default .select2-selection--single .select2-selection__placeholder {
                color: black;
            }

            section.vehicles .wrapper .header .filter .select2-container--default .select2-selection--single .select2-selection__arrow {
                position: absolute;
                top: 50%;
                right: .4rem;
                margin-top: -.05rem;
                background-image: url(Icons/chevron-bottom-blue.svg);
                width: .1rem;
                height: .1rem;
                position: absolute;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
            }

                section.vehicles .wrapper .header .filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
                    border: none;
                }

            section.vehicles .wrapper .header .filter {
                padding: 0 2.25rem;
            }

            section.vehicles .wrapper .header * + .text {
                margin-top: .24rem;
            }

            section.vehicles .wrapper .header * + .filter {
                margin-top: .8rem;
            }

        section.vehicles .wrapper .items {
            display: inline-block;
            width: 100%;
        }

        section.vehicles .wrapper * + .items {
            margin-top: 1.05rem;
        }

        section.vehicles .wrapper .items .item {
            width: 3.36rem;
            display: inline-block;
            transition: all .3s ease;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
        }

        section.vehicles .wrapper .items.owl-carousel .item {
            width: 100%;
        }

        section.vehicles .wrapper .items .item .img-box {
            width: 100%;
            height: 2.5rem;
            position: relative;
            padding: .4rem;
            transition: all .3s ease;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
        }

            section.vehicles .wrapper .items .item .img-box::after {
                content: '';
                position: absolute;
                width: 0;
                height: 0;
                left: 50%;
                top: 40%;
                background-color: white;
                z-index: 1;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                box-shadow: 0 0 .45rem .2rem rgba(255, 255, 255, 1);
                opacity: 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;
            }

            section.vehicles .wrapper .items .item .img-box img {
                position: relative;
                display: inline-block;
                max-width: 100%;
                max-height: 100%;
                z-index: 2;
            }

        section.vehicles .wrapper .items .item .title {
            position: relative;
            padding: 0 .2rem;
        }

        section.vehicles .wrapper .items .item * + .title {
            margin-top: .15rem;
        }

        section.vehicles .wrapper .items .item * + .btn {
            margin-top: .24rem;
        }

        section.vehicles .wrapper .items .item .title::before {
            content: '';
            width: .32rem;
            height: .04rem;
            position: absolute;
            left: 50%;
            margin-left: -.16rem;
            top: -.2rem;
            background-color: #3585C2;
            border-radius: .04rem;
            -webkit-border-radius: .04rem;
            -moz-border-radius: .04rem;
            -ms-border-radius: .04rem;
            -o-border-radius: .04rem;
        }

        section.vehicles .wrapper .items .item .text {
            padding: 0 .2rem;
        }

        section.vehicles .wrapper .items .owl-nav {
            position: absolute;
            top: 1.5rem;
            left: 0;
            width: calc(100% + 2.88rem);
            margin-left: -1.44rem;
            height: 0;
        }

            section.vehicles .wrapper .items .owl-nav > * {
                position: absolute;
                width: .64rem;
                height: .64rem;
                top: -.32rem;
                background-color: white;
                background-position: center;
                background-size: .2rem auto;
                background-repeat: no-repeat;
                box-shadow: 0 .04rem .16rem 0 rgba(53, 133, 194, 0.23);
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                z-index: 4;
            }

            section.vehicles .wrapper .items .owl-nav .owl-prev {
                left: 0;
                background-image: url(Icons/arrow-left-blue.svg);
            }

            section.vehicles .wrapper .items .owl-nav .owl-next {
                right: 0;
                background-image: url(Icons/arrow-right-blue.svg);
            }

        section.vehicles .wrapper * + .all-products {
            margin-top: 1.04rem;
        }

    section.vehicles .detail-popup {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.6);
        backdrop-filter: blur(.48rem);
        text-align: center;
        z-index: 2;
        display: none;
    }

        section.vehicles .detail-popup .content {
            display: inline-block;
            width: 5.92rem;
            padding: .42rem .36rem .32rem .36rem;
            background-color: white;
            position: relative;
            border-radius: .36rem;
            -webkit-border-radius: .36rem;
            -moz-border-radius: .36rem;
            -ms-border-radius: .36rem;
            -o-border-radius: .36rem;
        }

            section.vehicles .detail-popup .content .img-box {
                display: block;
                width: 2.56rem;
                margin: auto;
            }

                section.vehicles .detail-popup .content .img-box img {
                    width: 100%;
                }

            section.vehicles .detail-popup .content .title {
                position: relative;
            }

            section.vehicles .detail-popup .content .img-box + .title::before {
                content: '';
                width: .32rem;
                height: .04rem;
                position: absolute;
                left: 50%;
                margin-left: -.16rem;
                top: -.2rem;
                background-color: #3585C2;
                border-radius: .04rem;
                -webkit-border-radius: .04rem;
                -moz-border-radius: .04rem;
                -ms-border-radius: .04rem;
                -o-border-radius: .04rem;
            }

            section.vehicles .detail-popup .content .img-box + .title {
                margin-top: .4rem;
            }

            section.vehicles .detail-popup .content * + .text {
                margin-top: .08rem;
            }

            section.vehicles .detail-popup .content .specifications {
                display: inline-block;
                width: calc(100% + .32rem);
                margin-left: -.16rem;
                margin-right: -.16rem;
            }

            section.vehicles .detail-popup .content * + .specifications {
                margin-top: .54rem;
            }

            section.vehicles .detail-popup .content .specifications .cols {
                display: inline-block;
                width: 100%;
            }

            section.vehicles .detail-popup .content .specifications .col {
                display: inline-block;
                position: relative;
                vertical-align: top;
                width: calc(50% - .32rem);
                margin-left: .16rem;
                margin-right: .16rem;
                background-color: #F4F8FB;
                padding: .48rem .32rem .32rem;
                border-radius: .38rem;
                -webkit-border-radius: .38rem;
                -moz-border-radius: .38rem;
                -ms-border-radius: .38rem;
                -o-border-radius: .38rem;
            }

                section.vehicles .detail-popup .content .specifications .col .head {
                    position: absolute;
                    display: inline-block;
                    top: 0;
                    left: 50%;
                    margin-left: -.32rem;
                    top: -.31rem;
                    width: .64rem;
                    height: .62rem;
                    padding: .03rem;
                    background-color: #F4F8FB;
                    border: .05rem solid white;
                    border-radius: .16rem;
                    -webkit-border-radius: .16rem;
                    -moz-border-radius: .16rem;
                    -ms-border-radius: .16rem;
                    -o-border-radius: .16rem;
                }

                    section.vehicles .detail-popup .content .specifications .col .head .icon {
                        display: inline-block;
                        width: .24rem;
                    }

                        section.vehicles .detail-popup .content .specifications .col .head .icon img {
                            width: 100%;
                        }

                    section.vehicles .detail-popup .content .specifications .col .head * + .title {
                    }

                section.vehicles .detail-popup .content .specifications .col .body * + .item {
                    margin-top: .3rem;
                }

                section.vehicles .detail-popup .content .specifications .col .body .item {
                    display: inline-block;
                    position: relative;
                    width: 100%;
                    padding-bottom: .08rem;
                }

                    section.vehicles .detail-popup .content .specifications .col .body .item:before {
                        content: '';
                        width: .32rem;
                        height: 1px;
                        position: absolute;
                        left: 50%;
                        margin-left: -.16rem;
                        bottom: 0;
                        background-color: #3585C2;
                    }

            section.vehicles .detail-popup .content * + .btn {
                margin-top: .32rem;
            }

            section.vehicles .detail-popup .content .close {
                position: absolute;
                display: inline-block;
                z-index: 2;
                width: .32rem;
                right: .32rem;
                top: .32rem;
                cursor: pointer;
            }

                section.vehicles .detail-popup .content .close img {
                    width: 100%;
                }

/*  Footer Banner */
section.footer-banner {
    display: inline-block;
    width: 100%;
    padding-top: .64rem;
    padding-bottom: .64rem;
    height: 8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    section.footer-banner .content {
        text-align: center;
    }

        section.footer-banner .content * + .text {
            margin-top: .24rem;
        }

        section.footer-banner .content * + .buttons {
            margin-top: .48rem;
        }

        section.footer-banner .content .buttons * + .btn {
            margin-left: .16rem;
        }

/*  Main Banner */

section.main-banner {
    display: inline-block;
    width: 100%;
    position: relative;
    height: 4.8rem;
}

    section.main-banner .bg {
        width: 100%;
        position: absolute;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

        section.main-banner .bg::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background-color: #000000;
            opacity: .4;
        }

    section.main-banner .container {
        height: 100%;
        z-index: 2;
        padding-top: .2rem;
        padding-top: .8rem;
    }

        section.main-banner .container > .btn {
            position: absolute;
            bottom: 0;
            left: .3rem;
            transform: translateY(50%);
            -webkit-transform: translateY(50%);
            -moz-transform: translateY(50%);
            -ms-transform: translateY(50%);
            -o-transform: translateY(50%);
        }

        section.main-banner .container .content .tab-menu {
            display: inline-block;
            width: 100%;
        }

            section.main-banner .container .content .tab-menu .menu-item {
                display: inline-block;
            }

                section.main-banner .container .content .tab-menu .menu-item .btn {
                    display: inline-block;
                    font-weight: 700;
                    font-size: 0.14rem;
                    color: white;
                    display: inline-block;
                    border-radius: 1rem;
                    -webkit-border-radius: 1rem;
                    -moz-border-radius: 1rem;
                    -ms-border-radius: 1rem;
                    -o-border-radius: 1rem;
                    border: 2px solid transparent;
                    padding: .1rem .24rem;
                    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;
                    opacity: .4;
                }

                section.main-banner .container .content .tab-menu .menu-item.active .btn {
                    border: 2px solid #3585C2;
                    opacity: 1;
                }

        section.main-banner .container .content {
            display: inline-block;
            width: 100%;
        }

            section.main-banner .container .content .text-content {
                display: inline-block;
                width: 100%;
                padding-right: 50%;
            }

            section.main-banner .container .content * + .text-content {
                margin-top: .16rem;
            }

            section.main-banner .container .content * + .text {
                margin-top: .16rem;
            }

/*  Main Banner */

section.banner {
    display: inline-block;
    width: 100%;
    position: relative;
    height: 5.2rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

* + section.banner {
    margin-top: .8rem;
}

section.banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: .4;
}

section.banner .container {
    height: 100%;
    z-index: 2;
}

    section.banner .container .content {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

        section.banner .container .content * + .text {
            margin-top: .16rem;
        }

/*  Features  */

section.features {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    padding-top: .64rem;
    padding-bottom: .64rem;
}

    section.features .items {
        display: inline-block;
        width: calc(100% + .16rem);
        margin: -.08rem;
    }

    section.features .items {
        margin-top: .16rem;
    }

        section.features .items .item {
            display: inline-block;
            vertical-align: top;
            width: calc(20% - .16rem);
            margin: .08rem;
        }

            section.features .items .item .image {
                display: inline-block;
                width: 100%;
                padding: .25rem;
            }

                section.features .items .item .image img {
                    display: inline-block;
                    max-width: 100%;
                    height: .96rem;
                }

            section.features .items .item * + .text {
                margin-top: .22rem;
            }

/*  Box Image */

section.box-image {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: .9rem;
    padding-bottom: .9rem;
}

    section.box-image .items {
        display: inline-block;
        vertical-align: top;
        width: calc(100% + .16rem);
        margin: -.08rem;
    }

        section.box-image .items .item {
            display: inline-block;
            vertical-align: top;
            width: calc(50% - .16rem);
            margin: .08rem;
        }

        section.box-image .items.one-columns .item {
            width: calc(100% - .16rem);
        }

        section.box-image .items.three-columns .item {
            width: calc(33.33% - .16rem);
        }

        section.box-image .items.four-columns .item {
            width: calc(25% - .16rem);
        }

        section.box-image .items .item .image {
            position: relative;
            overflow: hidden;
            height: 0;
            padding-bottom: 56%;
        }

            section.box-image .items .item .image img {
                position: absolute;
            }

        section.box-image .items .item * + .title {
            margin-top: .32rem;
        }

        section.box-image .items .item * + .text {
            margin-top: .14rem;
        }

        section.box-image .items .item .subtext {
            display: inline-block;
            padding-bottom: 2px;
            border-bottom: 1px solid #3585C2;
        }

        section.box-image .items .item * + .subtext {
            margin-top: .24rem;
        }

/*  Useful Infos */

section.usefult-infos {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

    section.usefult-infos::before {
        content: '';
        position: absolute;
        background-color: #3585C2;
        top: 0;
        left: 0;
        height: 100%;
        width: 40%;
    }

    section.usefult-infos::after {
        content: '';
        position: absolute;
        background-color: #3585C2;
        top: 0;
        left: 30%;
        height: 100%;
        width: 20%;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    section.usefult-infos .left {
        display: inline-block;
        width: 33.33%;
        vertical-align: middle;
        position: relative;
        z-index: 1;
    }

    section.usefult-infos .right {
        display: inline-block;
        width: 66.66%;
        vertical-align: middle;
        position: relative;
        z-index: 1;
    }

        section.usefult-infos .right .items {
            display: inline-block;
            vertical-align: top;
            width: calc(100% + .16rem);
            margin: -.08rem;
        }

            section.usefult-infos .right .items .item {
                position: relative;
                display: inline-block;
                z-index: 2;
                vertical-align: top;
                width: calc(50% - .16rem);
                margin: .08rem;
                padding: .4rem;
                background-color: white;
                border: 1px solid #C4C4C4;
                box-shadow: 0 .12rem .2rem 0 rgba(0, 0, 0, 0);
                border-radius: .24rem;
                -webkit-border-radius: .24rem;
                -moz-border-radius: .24rem;
                -ms-border-radius: .24rem;
                -o-border-radius: .24rem;
                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.usefult-infos .right .items .item * + .title {
                    margin-top: .16rem;
                }

                section.usefult-infos .right .items .item * + .btn {
                    margin-top: .4rem;
                }

/*  Icon Slider */

section.icon-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: .64rem;
    padding-bottom: 1.3rem;
    text-align: center;
}

    section.icon-slider .container {
        width: 12.7rem;
        overflow: hidden;
    }

    section.icon-slider .head * + .text {
        margin-top: .16rem;
    }

    section.icon-slider .items {
        overflow: visible;
        width: 5.7rem;
        margin-left: auto;
        margin-right: auto;
        counter-reset: ruler;
    }

    section.icon-slider * + .items {
        margin-top: .35rem;
    }

    section.icon-slider .items .owl-stage-outer {
        overflow: visible;
    }

    section.icon-slider .items .owl-item .item {
        width: 1.8rem;
        height: 1.2rem;
        margin-left: .2rem;
        margin-right: .2rem;
        margin-top: .6rem;
    }

        section.icon-slider .items .owl-item .item .content {
            opacity: 0;
        }

    section.icon-slider .items .owl-item.focused .item {
        width: 4.7rem;
        height: 100%;
        margin-left: .5rem;
        margin-right: .5rem;
        margin-top: 0;
    }

        section.icon-slider .items .owl-item.focused .item .content {
            opacity: 1;
        }

    section.icon-slider .items .owl-item .item .image {
        width: 1.8rem;
        height: 1.2rem;
        position: relative;
        background: rgb(196, 196, 196, .4);
        background: -moz-linear-gradient(180deg, rgba(196, 196, 196, 0.1) 0%, rgba(91, 103, 113, 0.04) 100%);
        background: -webkit-linear-gradient(180deg, rgba(196, 196, 196, 0.1) 0%, rgba(91, 103, 113, 0.04) 100%);
        background: linear-gradient(180deg, rgba(196, 196, 196, 0.1) 0%, rgba(91, 103, 113, 0.04) 100%);
        border-radius: 1.2rem;
        -webkit-border-radius: 1.2rem;
        -moz-border-radius: 1.2rem;
        -ms-border-radius: 1.2rem;
        -o-border-radius: 1.2rem;
        transition: width .4s ease-in-out;
        -webkit-transition: width .4s ease-in-out;
        -moz-transition: width .4s ease-in-out;
        -ms-transition: width .4s ease-in-out;
        -o-transition: width .4s ease-in-out;
    }

    section.icon-slider .items .owl-item.focused .item .image {
        display: inline-block;
        width: 100%;
        height: 2.4rem;
        background: rgb(197, 32, 63, .4);
        background: -moz-linear-gradient(180deg, rgba(53, 133, 194, .1) 0%, rgba(53, 133, 194, 0.04) 100%);
        background: -webkit-linear-gradient(180deg, rgba(53, 133, 194, .1) 0%, rgba(53, 133, 194, 0.04) 100%);
        background: linear-gradient(180deg, rgba(53, 133, 194, .1) 0%, rgba(53, 133, 194, 0.04) 100%);
        border-radius: 1.27rem;
        -webkit-border-radius: 1.27rem;
        -moz-border-radius: 1.27rem;
        -ms-border-radius: 1.27rem;
        -o-border-radius: 1.27rem;
    }

    section.icon-slider .items .owl-item .item .image .icon-img {
        display: block;
        z-index: 2;
        position: relative;
        margin: auto;
        width: 1.2rem;
        height: 90%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 2;
    }

    section.icon-slider .items .owl-item.focused .item .image .icon-img {
        width: 100%;
        transition: width .3s ease-in-out .15s;
        -webkit-transition: width .3s ease-in-out .15s;
        -moz-transition: width .3s ease-in-out .15s;
        -ms-transition: width .3s ease-in-out .15s;
        -o-transition: width .3s ease-in-out .15s;
    }

    section.icon-slider .items .item .image:after {
        position: absolute;
        top: 0;
        left: 50%;
        counter-increment: ruler;
        content: counter(ruler, decimal-leading-zero);
        font-size: .96rem;
        color: white;
        top: 0;
        font-weight: 700;
        opacity: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        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.icon-slider .items .owl-item.focused.active .item .image:after {
        opacity: 1;
    }

    section.icon-slider .items .owl-nav {
        position: absolute;
        top: 1.2rem;
        left: 0;
        width: calc(100% + .64rem);
        margin: 0 -.32rem;
        height: 0;
    }

        section.icon-slider .items .owl-nav > * {
            position: absolute;
            top: -.32rem;
            width: .64rem;
            height: .64rem;
            background-color: white;
            background-position: center;
            background-size: .2rem auto;
            background-repeat: no-repeat;
            box-shadow: 0 .04rem .16rem 0 rgba(53, 133, 194, 0.23);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            z-index: 4;
            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.icon-slider .items .owl-nav .owl-prev {
            left: .48rem;
            background-image: url(Icons/arrow-left-blue.svg);
        }

        section.icon-slider .items .owl-nav .owl-next {
            right: .48rem;
            background-image: url(Icons/arrow-right-blue.svg);
        }

/*  Spot Text */

section.spot-text {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: .8rem;
    margin-bottom: .4rem;
    padding-bottom: .8rem;
}

section.services + section.spot-text {
    margin-top: 0;
}

section.spot-text::before {
    content: '';
    position: absolute;
    width: 65%;
    background-color: #5B6771;
    top: 0;
    bottom: .8rem;
}

section.spot-text.left-align::before {
    left: 0;
}

section.spot-text.right-align::before {
    right: 0;
}

section.spot-text::after {
    content: '';
    position: absolute;
    width: 35%;
    background-color: #3585C2;
    top: 2.2rem;
    bottom: .8rem;
}

section.spot-text.left-align::after {
    right: 0;
}

section.spot-text.right-align::after {
    left: 0;
}

section.spot-text .container {
    z-index: 2;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

    section.spot-text .container .content {
        position: relative;
        z-index: 2;
    }

section.spot-text.right-align .container .content {
    padding-left: 50%;
    padding-right: .3rem;
}

section.spot-text.left-align .container .content {
    padding-right: 50%;
    padding-left: .3rem;
}

section.spot-text .container .image {
    position: absolute;
    width: 67%;
    top: .8rem;
    bottom: -.8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    box-shadow: 0 .24rem .64rem 0 rgba(0, 0, 0, .25);
}

section.spot-text.right-align .container .image {
    left: 0;
}

section.spot-text.left-align .container .image {
    right: 0;
}

section.spot-text .container .image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
}

section.spot-text .container .content * + .btn {
    margin-top: .32rem;
}

/* Solution Specs */

section.solution-specs {
    padding-top: .5rem;
}

    section.solution-specs + section.solution-specs {
        padding-top: 0 !important;
    }

    section.solution-specs .container {
        padding-bottom: .8rem;
        border-radius: .4rem;
        -webkit-border-radius: .4rem;
        -moz-border-radius: .4rem;
        -ms-border-radius: .4rem;
        -o-border-radius: .4rem;
    }

        section.solution-specs .container.border {
            border: 1px solid #C4C4C4;
        }

        section.solution-specs .container .image {
            display: table-cell;
            width: 50%;
            vertical-align: middle;
        }

        section.solution-specs .container .wrapper {
            display: table-cell;
            width: 50%;
            vertical-align: middle;
            padding-right: .4rem;
        }

            section.solution-specs .container .wrapper * + .text {
                margin-top: .16rem;
            }

            section.solution-specs .container .wrapper .btn {
                margin-top: .48rem;
            }

        section.solution-specs .container .items {
            display: inline-block;
            width: calc(100% + 1.9rem);
            margin: -.2rem -.95rem;
            text-align: center;
        }

        section.solution-specs .container * + .items {
            margin-top: .64rem;
        }

        section.solution-specs .container .items .item {
            display: inline-block;
            width: calc(33.33% - 1.9rem);
            margin: .2rem .95rem;
        }

            section.solution-specs .container .items .item .image {
                display: inline-block;
                width: .96rem;
                height: .96rem;
            }

                section.solution-specs .container .items .item .image img {
                    max-width: 100%;
                    max-height: 100%;
                }

            section.solution-specs .container .items .item * + .title {
                margin-top: .21rem;
            }

            section.solution-specs .container .items .item * + .text {
                margin-top: .24rem;
            }

        section.solution-specs .container .calculator-desc {
            padding-top: .16rem;
            text-align: center;
        }

    section.solution-specs .calculator {
        display: inline-block;
        width: 100%;
        padding: .2rem;
        box-shadow: 0 .08rem .24rem 0 rgba(0, 0, 0, .08);
        border-radius: .32rem;
        -webkit-border-radius: .32rem;
        -moz-border-radius: .32rem;
        -ms-border-radius: .32rem;
        -o-border-radius: .32rem;
    }

        section.solution-specs .calculator .left {
            display: inline-block;
            width: 50%;
            vertical-align: middle;
            padding: .2rem .8rem;
        }

            section.solution-specs .calculator .left * + .subtext {
                margin-top: .16rem;
            }

        section.solution-specs .calculator .right {
            display: inline-block;
            width: 50%;
            vertical-align: middle;
        }

            section.solution-specs .calculator .right .compare {
                display: inline-block;
                width: 100%;
                background-color: #F1F4F6;
                padding-left: .61rem;
                padding-right: .61rem;
                padding-top: .48rem;
                padding-bottom: .13rem;
                box-shadow: inset 0 .02rem .06rem 0 rgba(0, 0, 0, .1);
                border-radius: .2rem;
                -webkit-border-radius: .2rem;
                -moz-border-radius: .2rem;
                -ms-border-radius: .2rem;
                -o-border-radius: .2rem;
            }

                section.solution-specs .calculator .right .compare .range {
                    display: inline-block;
                    width: calc(100% - .24rem);
                    margin: 0 .12rem;
                    position: relative;
                    height: .06rem;
                    background-color: #C4C4C4;
                    border-radius: .03rem;
                    -webkit-border-radius: .03rem;
                    -moz-border-radius: .03rem;
                    -ms-border-radius: .03rem;
                    -o-border-radius: .03rem;
                }

                    section.solution-specs .calculator .right .compare .range input {
                        position: absolute;
                        left: -.24rem;
                        right: -.24rem;
                        width: calc(100% + .48rem);
                        top: -.24rem;
                        height: .48rem;
                        z-index: 5;
                        opacity: 0;
                        cursor: pointer;
                    }

                        section.solution-specs .calculator .right .compare .range input[type=range]::-ms-tooltip {
                            display: none;
                        }

                section.solution-specs .calculator .right .compare .dots {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    z-index: 4;
                    pointer-events: none;
                }

                    section.solution-specs .calculator .right .compare .dots .bar {
                        position: absolute;
                        left: 0;
                        top: 0;
                        height: .06rem;
                        background-color: #3585C2;
                        z-index: 4;
                        pointer-events: none;
                        width: 0;
                        border-radius: .03rem;
                        -webkit-border-radius: .03rem;
                        -moz-border-radius: .03rem;
                        -ms-border-radius: .03rem;
                        -o-border-radius: .03rem;
                        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;
                        z-index: 3;
                    }

                    section.solution-specs .calculator .right .compare .dots .button {
                        position: absolute;
                        left: 0;
                        width: .48rem;
                        height: .48rem;
                        background-image: url(Icons/range-slider-thumb.svg);
                        top: 50%;
                        margin-top: -.24rem;
                        margin-left: -.24rem;
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                        z-index: 5;
                        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.solution-specs .calculator .right .compare .range .dots .steps {
                    display: inline-block;
                    width: 100%;
                    position: relative;
                    z-index: 4;
                }

                    section.solution-specs .calculator .right .compare .range .dots .steps .step {
                        position: relative;
                        display: inline-block;
                        width: 33.33%;
                        vertical-align: middle;
                        height: .06rem;
                    }

                        section.solution-specs .calculator .right .compare .range .dots .steps .step .dot {
                            position: absolute;
                            width: .24rem;
                            height: .24rem;
                            top: 50%;
                            left: 50%;
                            z-index: 2;
                            margin-top: -.12rem;
                            margin-left: -.12rem;
                            background-color: #3585C2;
                            box-shadow: inset 0 .01rem .04rem 0 rgba(0, 0, 0, .15);
                            border-radius: 50%;
                            -webkit-border-radius: 50%;
                            -moz-border-radius: 50%;
                            -ms-border-radius: 50%;
                            -o-border-radius: 50%;
                        }

                            section.solution-specs .calculator .right .compare .range .dots .steps .step .dot::before {
                                content: '';
                                position: absolute;
                                width: .08rem;
                                height: .08rem;
                                left: 50%;
                                top: 50%;
                                margin-left: -.04rem;
                                margin-top: -.04rem;
                                background-color: white;
                                box-shadow: 0 .01rem .02rem 0 rgba(0, 0, 0, .25);
                                border-radius: 50%;
                                -webkit-border-radius: 50%;
                                -moz-border-radius: 50%;
                                -ms-border-radius: 50%;
                                -o-border-radius: 50%;
                            }

                        section.solution-specs .calculator .right .compare .range .dots .steps .step:first-child .dot {
                            left: 0;
                        }

                        section.solution-specs .calculator .right .compare .range .dots .steps .step:last-child .dot {
                            right: -.12rem;
                            left: auto;
                        }

                section.solution-specs .calculator .right .compare .descriptions {
                    display: inline-block;
                    width: 100%;
                }

                section.solution-specs .calculator .right .compare * + .descriptions {
                    margin-top: .21rem;
                }

                section.solution-specs .calculator .right .compare .descriptions .item {
                    display: inline-block;
                    vertical-align: middle;
                    width: 33.33%;
                    text-align: center;
                }

                    section.solution-specs .calculator .right .compare .descriptions .item:first-child {
                        text-align: left;
                    }

                    section.solution-specs .calculator .right .compare .descriptions .item:last-child {
                        text-align: right;
                    }

/*  Services */

section.services {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: .64rem;
    padding-bottom: .8rem;
}

    section.services .head {
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    section.services .items {
        display: inline-block;
        width: calc(100% + .16rem);
        margin: -.08rem;
    }

    section.services * + .items {
        margin-top: .58rem;
    }

    section.services .items .item {
        display: inline-block;
        width: calc(25% - .16rem);
        margin: .08rem;
        border: 1px solid #C4C4C4;
        padding: .32rem .36rem;
        border-radius: .24rem;
        -webkit-border-radius: .24rem;
        -moz-border-radius: .24rem;
        -ms-border-radius: .24rem;
        -o-border-radius: .24rem;
    }

        section.services .items .item .icon {
            display: inline-block;
            vertical-align: middle;
            width: .56rem;
            height: .56rem;
        }

            section.services .items .item .icon img {
                max-width: 100%;
                max-height: 100%;
            }

        section.services .items .item .content {
            display: inline-block;
            vertical-align: middle;
            width: calc(100% - .56rem);
            padding-left: .3rem;
        }

            section.services .items .item .content .text {
                display: block;
            }

            section.services .items .item .content .subtext {
                display: block;
            }

            section.services .items .item .content * + .subtext {
                margin-top: .16rem;
            }

    section.services .items.vertical .item {
        border: 0;
        text-align: center;
        padding: .56rem .25rem .41rem .25rem;
    }

        section.services .items.vertical .item .content {
            width: 100%;
            padding: 0;
        }

        section.services .items.vertical .item * + .content {
            margin-top: .46rem;
        }

    section.services .items.vertical .icon {
        padding-top: 0;
        padding-bottom: 0;
    }

/*  Faq */

section.faq {
    display: inline-block;
    position: relative;
    padding-bottom: 1.36rem;
    width: 100%;
}

    section.faq .container {
        width: 12.6rem;
    }

    section.faq .tab-menu {
        display: block;
        width: 100%;
        margin: auto;
        padding-top: .24rem;
        padding-bottom: .24rem;
        text-align: center;
        background-color: #F1F4F6;
    }

        section.faq .tab-menu .tab-menu-item {
            display: inline-block;
            vertical-align: middle;
        }

        section.faq .tab-menu * + .tab-menu-item {
            margin-left: .16rem;
        }

        section.faq .tab-menu .tab-menu-item .btn {
            color: black;
            padding: .18rem .32rem;
            background-color: transparent;
            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.faq .tab-menu .tab-menu-item.active .btn {
            background-color: #3585C2;
            color: white;
        }

        section.faq .tab-menu .tab-menu-item .btn .icon {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            width: .32rem;
            height: .32rem;
        }

            section.faq .tab-menu .tab-menu-item .btn .icon img {
                position: absolute;
                left: 0;
                top: 0;
                width: .32rem;
                height: .32rem;
                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.faq .tab-menu .tab-menu-item .btn .icon img.white {
                    opacity: 0;
                }

        section.faq .tab-menu .tab-menu-item.active .btn .icon img.red {
            opacity: 0;
        }

        section.faq .tab-menu .tab-menu-item.active .btn .icon img.white {
            opacity: 1;
        }

        section.faq .tab-menu .tab-menu-item .btn span {
            display: inline-block;
            color: inherit;
        }

        section.faq .tab-menu .tab-menu-item .btn * + span {
            margin-left: .24rem;
        }

    section.faq .tab-contents {
        display: block;
        width: 100%;
        margin: auto;
    }

    section.faq * + .tab-contents {
        margin-top: .4rem;
    }

    section.faq .tab-contents .item {
        display: none;
        width: 100%;
    }

        section.faq .tab-contents .item.active {
            display: block;
        }

        section.faq .tab-contents .item .accordion-items {
            display: inline-block;
            width: 100%;
        }

            section.faq .tab-contents .item .accordion-items .accordion-item {
                display: inline-block;
                width: 100%;
                border: 1px solid #C4C4C4;
                padding: .29rem .4rem;
                cursor: pointer;
                border-radius: .12rem;
                -webkit-border-radius: .12rem;
                -moz-border-radius: .12rem;
                -ms-border-radius: .12rem;
                -o-border-radius: .12rem;
                background-color: transparent;
                box-shadow: 0px .04rem .08rem rgba(0, 0, 0, 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;
            }

                section.faq .tab-contents .item .accordion-items .accordion-item.active {
                    background: #F1F4F6;
                    box-shadow: 0px .08rem .16rem rgba(0, 0, 0, 0.05);
                }

            section.faq .tab-contents .item .accordion-items * + .accordion-item {
                margin-top: .24rem;
            }

            section.faq .tab-contents .item .accordion-items .accordion-item .head {
                display: block;
                position: relative;
                padding-right: .46rem;
                padding-top: .06rem;
                padding-bottom: .06rem;
            }

                section.faq .tab-contents .item .accordion-items .accordion-item .head .title {
                    display: inline-block;
                    font-size: .18rem;
                    line-height: 1.6em;
                    color: black;
                    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.faq .tab-contents .item .accordion-items .accordion-item.active {
                padding-top: .4rem;
                padding-bottom: .4rem;
            }

                section.faq .tab-contents .item .accordion-items .accordion-item.active .head .title {
                    font-size: .24rem;
                    color: #3585C2;
                }

            section.faq .tab-contents .item .accordion-items .accordion-item .head .icon {
                position: absolute;
                right: 0;
                top: 50%;
                margin-top: -.16rem;
                width: .32rem;
                height: .32rem;
            }

                section.faq .tab-contents .item .accordion-items .accordion-item .head .icon::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    margin-top: -1px;
                    background-color: #3585C2;
                    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.faq .tab-contents .item .accordion-items .accordion-item .head .icon::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 50%;
                    width: 2px;
                    height: 100%;
                    margin-left: -1px;
                    background-color: #3585C2;
                    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.faq .tab-contents .item .accordion-items .accordion-item.active .head .icon::after {
                transform: rotate(-270deg);
                -webkit-transform: rotate(-270deg);
                -moz-transform: rotate(-270deg);
                -ms-transform: rotate(-270deg);
                -o-transform: rotate(-270deg);
            }

            section.faq .tab-contents .item .accordion-items .accordion-item.active .head .icon::before {
                transform: rotate(-180deg);
                -webkit-transform: rotate(-180deg);
                -moz-transform: rotate(-180deg);
                -ms-transform: rotate(-180deg);
                -o-transform: rotate(-180deg);
            }

            section.faq .tab-contents .item .accordion-items .accordion-item .content {
                display: none;
                position: relative;
                padding-top: .24rem;
                cursor: initial;
            }

        section.faq .tab-contents .item .personel-card {
            padding: .4rem;
            border-radius: .12rem;
            border: 1px solid rgba(196, 196, 196, 1);
            background-color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            -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.faq .tab-contents .item .personel-card:hover {
                background-color: rgba(241, 244, 246, 1);
            }
            section.faq .tab-contents .item .personel-card img {
                object-fit: cover;
                width: 1.84rem;
                height: 1.84rem;
                border-radius: 50%;
                background-color: #3585c2;
                border: 1px solid #000;
            }
            section.faq .tab-contents .item .personel-card .content {
                margin-left:.4rem;
            }
                section.faq .tab-contents .item .personel-card .content .title {
                    color: rgba(53, 133, 194, 1);
                    font-size: .28rem;
                    font-weight: 800;
                    line-height: 1.5em;
                }
                section.faq .tab-contents .item .personel-card .content .sub-title {
                    color: rgba(79, 79, 79, 1);
                    font-weight:600;
                    font-size:.18rem;
                    line-height:1.5em;
                }
                section.faq .tab-contents .item .personel-card .content .text {
                    padding-top: .12rem;
                    color: rgba(79, 79, 79, 1);
                    font-size: .16rem;
                    font-weight: 400;
                    line-height: 1.5em;
                }
        section.faq .tab-contents .item .personel-card + .personel-card {
            margin-top:.24rem;
        }

/*  Contact Info */

section.contact-info {
    display: inline-block;
    width: 100%;
    position: relative;
}

    section.contact-info .wrapper {
        display: table;
        width: 100%;
    }

    section.contact-info .address {
        position: relative;
        width: 50%;
        display: table-cell;
        vertical-align: middle;
    }

        section.contact-info .address .content {
            width: calc(14.96rem / 2);
            margin-left: auto;
            padding-left: .3rem;
            padding-right: 3.5rem;
        }

            section.contact-info .address .content .items {
                display: block;
            }

            section.contact-info .address .content * + .items {
                margin-top: .4rem;
            }

            section.contact-info .address .content .items * + .item {
                margin-top: .32rem;
            }

            section.contact-info .address .content .items .item .icon {
                display: block;
                width: .24rem;
                height: .24rem;
            }

                section.contact-info .address .content .items .item .icon img {
                    width: 100%;
                    height: 100%;
                }

            section.contact-info .address .content .items .item * + .text {
                margin-top: .16rem;
            }

            section.contact-info .address .content * + .btn {
                margin-top: .64rem;
            }

    section.contact-info .map {
        position: relative;
        width: 50%;
        display: table-cell;
        vertical-align: middle;
    }

        section.contact-info .map img {
            width: 100%;
        }

    section.contact-info .center-image {
        position: absolute;
        top: .66rem;
        bottom: .66rem;
        left: 50%;
        width: 4.68rem;
        margin-left: -2.34rem;
        box-shadow: 0 .24rem .64rem 0 rgba(0, 0, 0, .25);
        z-index: 2;
    }

        section.contact-info .center-image::before {
            content: '';
            position: absolute;
            background-color: rgba(0, 0, 0, .25);
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }

        section.contact-info .center-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/*  Contact Form */

section.contact-form {
    position: relative;
    display: inline-block;
    width: 100%;
}

    section.contact-form .left {
        display: inline-block;
        vertical-align: middle;
        width: 45%;
    }

        section.contact-form .left .wrapper {
            width: calc((14.96rem / 2) - 5vw);
            padding-left: .3rem;
            padding-right: .3rem;
            padding-top: .77rem;
            padding-bottom: .77rem;
            margin-left: auto;
        }

            section.contact-form .left .wrapper * + .text {
                margin-top: .16rem;
            }

    section.contact-form .right {
        display: inline-block;
        vertical-align: middle;
        width: 55%;
        background-color: #F1F4F6;
    }

        section.contact-form .right .wrapper {
            width: calc((14.96rem / 2) + 5vw);
            padding-left: 1.21rem;
            padding-right: .3rem;
            padding-top: .77rem;
            padding-bottom: .77rem;
            margin-right: auto;
        }
    section.contact-form .check-item p {
        color: #3585C2;
    }

/*  Text Block*/
section.text-block {
    display: inline-block;
    width: 100%;
    padding-top: .64rem;
    padding-bottom: .4rem;
}

    section.text-block .title {
        display: block;
        width: 50%;
    }

    section.text-block .subtitle {
        display: block;
        width: 50%;
    }

    section.text-block * + .subtitle {
        margin-top: .24rem;
        margin-bottom: .64rem;
    }

    section.text-block .content {
        width: calc(100% + .32rem);
        margin: -.2rem -.16rem;
        display: inline-block;
    }

    section.text-block * + .content {
        margin-top: .16rem;
    }

    section.text-block .content .text {
        display: inline-block;
        vertical-align: top;
        width: calc(100% - .32rem);
        margin: .2rem .16rem;
    }

    section.text-block .content .col-50 {
        width: calc(50% - .32rem);
        margin: .2rem .16rem;
    }

    section.text-block .image {
        display: inline-block;
        width: 100%;
        margin-top: .8rem;
        margin-bottom: .64rem;
    }

        section.text-block .image img {
            width: 100%;
        }

/*  Tab Slider */

section.tab-slider {
    position: relative;
    width: 100%;
    display: inline-block;
    background-color: #3585C2;
    padding-top: .64rem;
    padding-bottom: 1.15rem;
}

    section.tab-slider .tab-menu {
        text-align: center;
    }

        section.tab-slider .tab-menu .tab-menu-item {
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
        }

        section.tab-slider .tab-menu * + .tab-menu-item {
            margin-left: .64rem;
        }

        section.tab-slider .tab-menu .tab-menu-item .item {
            display: inline-block;
            font-size: .48rem;
            font-weight: 700;
            color: white;
            -webkit-text-fill-color: #3585C2;
            -webkit-text-stroke: 1px white;
            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.tab-slider .tab-menu .tab-menu-item.active .item {
            -webkit-text-fill-color: white;
        }

    section.tab-slider .contents {
        display: inline-block;
        width: 100%;
    }

    section.tab-slider * + .contents {
        margin-top: .64rem;
    }

    section.tab-slider .contents .content-item {
        display: none;
        width: 100%;
    }

        section.tab-slider .contents .content-item.active {
            display: block;
        }

        section.tab-slider .contents .content-item .main-carousel {
            position: relative;
            display: inline-block;
            width: 100%;
        }

            section.tab-slider .contents .content-item .main-carousel .owl-item {
                opacity: .35;
                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.tab-slider .contents .content-item .main-carousel .owl-item.focused {
                    opacity: 1;
                }

            section.tab-slider .contents .content-item .main-carousel .item {
                display: block;
                height: 6.65rem;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
            }

                section.tab-slider .contents .content-item .main-carousel .item::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, .2);
                    z-index: 1;
                }

                section.tab-slider .contents .content-item .main-carousel .item .title {
                    position: absolute;
                    z-index: 2;
                    width: 50%;
                    left: .8rem;
                    bottom: .51rem;
                    color: white;
                }

            section.tab-slider .contents .content-item .main-carousel .owl-nav {
                position: absolute;
                bottom: -.32rem;
                left: 4.3rem;
                height: .64rem;
                width: 1.44rem;
            }

                section.tab-slider .contents .content-item .main-carousel .owl-nav > * {
                    position: absolute;
                    width: .64rem;
                    height: .64rem;
                    background-color: white;
                    background-position: center;
                    background-size: .2rem auto;
                    background-repeat: no-repeat;
                    box-shadow: 0 .04rem .16rem 0 rgba(53, 133, 194, 0.23);
                    background-size: .21rem auto;
                    border-radius: 50%;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                    z-index: 4;
                    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.tab-slider .contents .content-item .main-carousel .owl-nav .owl-prev {
                    left: 0;
                    background-image: url(Icons/arrow-left-blue.svg);
                }

                section.tab-slider .contents .content-item .main-carousel .owl-nav .owl-next {
                    right: 0;
                    background-image: url(Icons/arrow-right-blue.svg);
                }

        section.tab-slider .contents .content-item .text-carousel {
            position: absolute;
            width: 45%;
            padding-top: .48rem;
            padding-bottom: .8rem;
            padding-left: .8rem;
            padding-right: 3.63rem;
            background-color: white;
            right: 0;
            /* bottom: -1.15rem; */
            bottom: 0;
        }

            section.tab-slider .contents .content-item .text-carousel * + .btn {
                margin-top: .26rem;
            }

/*  Solutiion Boxes */

section.solution-boxes {
    position: relative;
    width: 100%;
    display: inline-block;
    background-color: #3585C2;
    padding-top: .34rem;
    padding-bottom: .94rem;
}

    section.solution-boxes::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 50%;
        right: 0;
        top: 0;
        background-color: white;
    }

    section.solution-boxes .wrapper {
        display: inline-block;
        width: 100%;
        padding-left: .6rem;
        padding-right: .6rem;
    }

        section.solution-boxes .wrapper .head {
            display: block;
            width: 50%;
            padding-left: 1.82rem;
            padding-right: .8rem;
        }

            section.solution-boxes .wrapper .head * + .title {
                margin-top: .08rem;
            }

            section.solution-boxes .wrapper .head * + .text {
                margin-top: .16rem;
            }

            section.solution-boxes .wrapper .head * + .btn {
                margin-top: .36rem;
            }

            section.solution-boxes .wrapper .head .btn {
                color: white;
                border-color: white;
            }

        section.solution-boxes .wrapper .boxes {
            display: inline-block;
            width: calc(100% + .32rem);
            margin: -.4rem -.16rem;
        }

        section.solution-boxes .wrapper * + .boxes {
            margin-top: .7rem;
        }

        section.solution-boxes .wrapper .boxes .box {
            display: inline-block;
            position: relative;
            vertical-align: middle;
            width: calc(33.33% - .32rem);
            padding-bottom: 31.56%;
            margin: .4rem .16rem;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            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.solution-boxes .wrapper .boxes .box:nth-child(3n +2) {
                width: calc(33.33% + .32rem);
                margin: -.16rem;
                padding-bottom: 35.25%;
                box-shadow: 0 .24rem .48rem 0 rgba(0, 0, 0, .4);
            }*/

            /*                section.solution-boxes .wrapper .boxes .box:nth-child(3n +2)::before {
                    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
                    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
                }
*/
            section.solution-boxes .wrapper .boxes .box::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, .24);
                z-index: 1;
                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.solution-boxes .wrapper .boxes .box .content {
                position: absolute;
                z-index: 2;
                text-align: center;
                bottom: .64rem;
                width: 5.2rem;
                left: 50%;
                margin-left: -2.6rem;
            }

            section.solution-boxes .wrapper .boxes .box .url {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            section.solution-boxes .wrapper .boxes .box .content .title {
                display: block;
            }

            section.solution-boxes .wrapper .boxes .box .content .text {
                display: block;
            }

            section.solution-boxes .wrapper .boxes .box .content * + .text {
                margin-top: .16rem;
            }

            section.solution-boxes .wrapper .boxes .box .content .buttons {
                display: inline-block;
                width: 100%;
            }

            section.solution-boxes .wrapper .boxes .box .content * + .buttons {
                margin-top: .4rem;
            }

            section.solution-boxes .wrapper .boxes .box .content * + .btn {
                margin-left: .16rem;
            }

/* Wizard */

section.wizard {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: .64rem;
    padding-bottom: .45rem;
}

    section.wizard .head {
        text-align: center;
    }

        section.wizard .head * + .text {
            margin-top: .24rem;
        }

    section.wizard .items {
        display: inline-flex;
        width: calc(100% + .5rem);
        margin: 0 -.25rem;
        justify-content: center;
    }

    section.wizard * + .items {
        margin-top: .71rem;
    }

    section.wizard .items .item {
        display: inline-block;
        vertical-align: top;
        width: calc(33.33% - .5rem);
        margin: 0 .25rem;
    }

        section.wizard .items .item .content {
            display: inline-block;
            position: relative;
            width: 100%;
            text-align: center;
            border: 1px solid #C4C4C4;
            padding: .52rem .32rem 1rem .32rem;
            border-radius: .24rem;
            -webkit-border-radius: .24rem;
            -moz-border-radius: .24rem;
            -ms-border-radius: .24rem;
            -o-border-radius: .24rem;
            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.wizard .items .item .content::before {
                content: '';
                position: absolute;
                left: -1px;
                right: -1px;
                top: -1px;
                bottom: -1px;
                opacity: 0;
                border: 4px solid #3585C2;
                pointer-events: none;
                border-radius: .24rem;
                -webkit-border-radius: .24rem;
                -moz-border-radius: .24rem;
                -ms-border-radius: .24rem;
                -o-border-radius: .24rem;
                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.wizard .items .item input[type="radio"]:checked + .content {
            box-shadow: 0 .24rem .4rem 0 rgba(53, 133, 194, .25);
            border-color: #3585C2;
        }

            section.wizard .items .item input[type="radio"]:checked + .content::before {
                opacity: 1;
            }

        section.wizard .items .item .content .icon {
            display: block;
            margin: auto;
            width: 2.77rem;
        }

            section.wizard .items .item .content .icon img {
                width: 100%;
            }

        section.wizard .items .item .content .title {
            display: block;
            width: 100%;
        }

        section.wizard .items .item .content * + .title {
            margin-top: .4rem;
        }

        section.wizard .items .item .content .text {
            display: block;
            width: 100%;
        }

        section.wizard .items .item .content * + .text {
            margin-top: .08rem;
        }

        section.wizard .items .item .content .detail {
            display: inline-block;
            font-weight: 700;
            color: black;
            font-size: .14rem;
            border-bottom: 1px solid #3585C2;
            padding-bottom: .03rem;
        }

        section.wizard .items .item .content * + .detail {
            margin-top: .24rem;
        }

/* Locations */

section.locations {
    display: inline-block;
    width: 100%;
    position: relative;
}

    section.locations .list {
        display: inline-block;
        position: relative;
        width: 6.05rem;
        background-color: #F4F8FB;
    }

        section.locations .list .head {
            display: inline-block;
            position: relative;
            z-index: 2;
            width: 100%;
            padding: .45rem .4rem .3rem;
            background-color: white;
        }

            section.locations .list .head * + form.general {
                margin-top: .38rem;
            }

            section.locations .list .head form.general input[type='text'] {
                height: .8rem;
                padding-left: .64rem;
                font-size: .2rem;
                border: 1px solid #EDEDED;
                box-shadow: 0 .04rem .08rem rgba(0, 0, 0, 0.1);
                border-radius: .12rem;
                background-image: url(Icons/search.svg);
                background-size: .24rem;
                background-position: .2rem center;
                background-repeat: no-repeat;
            }

                section.locations .list .head form.general input[type='text']::-webkit-input-placeholder {
                    color: #4F4F4F;
                }

                section.locations .list .head form.general input[type='text']::-moz-placeholder {
                    color: #4F4F4F;
                }

                section.locations .list .head form.general input[type='text']:-ms-input-placeholder {
                    color: #4F4F4F;
                }

                section.locations .list .head form.general input[type='text']:-moz-placeholder {
                    color: #4F4F4F;
                }

            section.locations .list .head form.general .check-item {
                display: inline-block;
                vertical-align: top;
                position: relative;
                width: calc(100% - .16rem);
                margin: .04rem .08rem;
                color: #3585C2;
            }
       

                section.locations .list .head form.general .check-item .form-item.check {
                    width: calc(100% - .3rem);
                    vertical-align: middle;
                    margin: 0;
                    white-space: nowrap;
                    overflow: auto;
                    padding-top: .08rem;
                    padding-bottom: .02rem;
                }

            section.locations .list .head form.general * + .check-item {
                margin-top: .24rem;
            }

            section.locations .list .head form.general .check-item .form-item.check label {
                position: relative;
                display: inline-block;
            }

                section.locations .list .head form.general .check-item .form-item.check label .text {
                    position: relative;
                    display: inline-block;
                    line-height: 1.3em;
                    font-size: .16rem;
                    cursor: pointer;
                    padding: .12rem .2rem;
                    border: 1px solid #ededed;
                    border-radius: .48rem;
                    -webkit-border-radius: .48rem;
                    -moz-border-radius: .48rem;
                    -ms-border-radius: .48rem;
                    -o-border-radius: .48rem;
                }

                    section.locations .list .head form.general .check-item .form-item.check label .text span {
                        display: inline-block;
                        vertical-align: middle;
                    }

                    section.locations .list .head form.general .check-item .form-item.check label .text * + span {
                        margin-left: .05rem;
                    }

                    section.locations .list .head form.general .check-item .form-item.check label .text svg {
                        display: inline-block;
                        vertical-align: middle;
                        width: .24rem;
                        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.locations .list .head form.general .check-item .form-item.check input {
                position: absolute;
                z-index: -1000;
                opacity: 0;
            }

                section.locations .list .head form.general .check-item .form-item.check input:checked + .text {
                    background-color: #3585C2;
                    color: white;
                }

                section.locations .list .head form.general .check-item .form-item.check input[value='0']:checked + .text {
                    background-color: #00A3FF;
                }

                section.locations .list .head form.general .check-item .form-item.check input[value='10']:checked + .text {
                    background-color: #FF9900;
                }

                section.locations .list .head form.general .check-item .form-item.check input[value='20']:checked + .text {
                    background-color: #B5B5B5;
                }

                section.locations .list .head form.general .check-item .form-item.check input:checked + .text svg path {
                    fill: white;
                }

            section.locations .list .head form.general .check-item .form-item.check * + label {
                margin-left: .08rem;
            }

            section.locations .list .head form.general .check-item .clear {
                display: inline-block;
                width: .24rem;
                vertical-align: middle;
                cursor: pointer;
                margin-left: .06rem;
            }

                section.locations .list .head form.general .check-item .clear img {
                    width: 100%;
                }

        section.locations .list .items-wrapper {
            display: inline-block;
            position: relative;
            z-index: 2;
            background-color: #F4F8FB;
            width: 100%;
            padding-right: .24rem;
            padding-top: .2rem;
            padding-bottom: .2rem;
        }

            section.locations .list .items-wrapper .items {
                display: inline-block;
                width: 100%;
                height: 7.7rem;
                padding: 0 .4rem;
                overflow: auto;
            }

                section.locations .list .items-wrapper .items .item {
                    display: inline-block;
                    width: 100%;
                    border: 2px solid transparent;
                    padding: .18rem;
                    border-radius: .2rem;
                    -webkit-border-radius: .2rem;
                    -moz-border-radius: .2rem;
                    -ms-border-radius: .2rem;
                    -o-border-radius: .2rem;
                    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;
                    cursor: pointer;
                }

                section.locations .list .items-wrapper .items .item.no-result {
                    padding: 0;
                }

                    section.locations .list .items-wrapper .items .item.no-result .title {
                        color: #3585C2;
                    }

                    section.locations .list .items-wrapper .items .item.hidden {
                        display: none;
                    }

                section.locations .list .items-wrapper .items * + .item {
                    margin-top: .08rem;
                }

                section.locations .list .items-wrapper .items .item .icon {
                    display: inline-block;
                    width: .64rem;
                    height: .64rem;
                    vertical-align: middle;
                    text-align: center;
                    background-color: white;
                    border-radius: .16rem;
                    -webkit-border-radius: .16rem;
                    -moz-border-radius: .16rem;
                    -ms-border-radius: .16rem;
                    -o-border-radius: .16rem;
                    box-shadow: 0 .04rem .08rem rgba(0,0,0,.15);
                    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.locations .list .items-wrapper .items .item .icon svg {
                        width: .32rem;
                    }

                section.locations .list .items-wrapper .items .item .content {
                    display: inline-block;
                    width: calc(100% - .64rem);
                    vertical-align: middle;
                    padding-left: .24rem;
                }

                section.locations .list .items-wrapper .items .item.no-result .content {
                    width: 100%;
                    padding-left: 0;
                }

                section.locations .list .items-wrapper .items .item.active {
                    border-color: #3585C2;
                    background-color: white;
                }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='0'] {
                        border-color: #00A3FF;
                    }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='10'] {
                        border-color: #FF9900;
                    }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='20'] {
                        border-color: #B5B5B5;
                    }

                    section.locations .list .items-wrapper .items .item.active .icon {
                        background-color: #3585C2;
                    }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='0'] .icon {
                        background-color: #00A3FF;
                    }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='10'] .icon {
                        background-color: #FF9900;
                    }

                    section.locations .list .items-wrapper .items .item.active[data-charge-type='20'] .icon {
                        background-color: #B5B5B5;
                    }

                    section.locations .list .items-wrapper .items .item.active .icon svg path {
                        fill: white;
                    }

        section.locations .list .detail {
            position: absolute;
            display: inline-block;
            width: 5.45rem;
            height: 100%;
            background-color: #E1E6EA;
            top: 0;
            left: 0;
            opacity: 0;
            pointer-events: none;
            z-index: 1;
            padding: .88rem 0 1.2rem .4rem;
            box-shadow: .08rem 0 .16rem rgba(0,0,0,.25),inset .08rem 0 .16rem rgba(0,0,0,.25);
            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.locations .list .detail.active {
                left: 100%;
                opacity: 1;
                pointer-events: all;
            }

            section.locations .list .detail .wrapper {
                width: calc(100% - .2rem);
                margin-right: .2rem;
                height: 100%;
                padding-right: .2rem;
                overflow-y: auto;
                overflow-x: hidden;
                position: relative;
            }

                section.locations .list .detail .wrapper .type {
                    display: inline-block;
                    background-color: white;
                    padding: .04rem .16rem .04rem .04rem;
                    border-radius: .4rem;
                    -webkit-border-radius: .4rem;
                    -moz-border-radius: .4rem;
                    -ms-border-radius: .4rem;
                    -o-border-radius: .4rem;
                    box-shadow: 0 .02rem .04rem rgba(0,0,0,.1);
                }

                    section.locations .list .detail .wrapper .type .icon {
                        display: inline-block;
                        vertical-align: middle;
                        width: .32rem;
                        height: .32rem;
                        text-align: center;
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        -ms-border-radius: 50%;
                        -o-border-radius: 50%;
                    }

                        section.locations .list .detail .wrapper .type .icon svg {
                            width: .24rem;
                        }

                    section.locations .list .detail .wrapper .type span {
                        display: inline-block;
                        vertical-align: middle;
                        width: calc(100% - .32rem);
                        font-size: .14rem;
                        line-height: 1.6em;
                        padding-left: .08rem;
                    }

                section.locations .list .detail .wrapper .image {
                    display: inline-block;
                    position: relative;
                    width: 100%;
                    height: 1.28rem;
                    overflow: hidden;
                    border-radius: .08rem;
                    -webkit-border-radius: .08rem;
                    -moz-border-radius: .08rem;
                    -ms-border-radius: .08rem;
                    -o-border-radius: .08rem;
                }

                section.locations .list .detail .wrapper * + .image {
                    margin-top: .24rem;
                }

                section.locations .list .detail .wrapper .image img {
                    position: absolute;
                }

                section.locations .list .detail .wrapper .address {
                    display: inline-block;
                    width: 100%;
                }

                section.locations .list .detail .wrapper * + .address {
                    margin-top: .24rem;
                }

                section.locations .list .detail .wrapper .infos {
                    display: inline-block;
                    width: 100%;
                }

                section.locations .list .detail .wrapper * + .infos {
                    margin-top: .32rem;
                }

                section.locations .list .detail .wrapper .infos .items {
                    display: inline-block;
                    width: calc(100% + .16rem);
                    margin: -.08rem;
                }

                section.locations .list .detail .wrapper .infos * + .items {
                    margin-top: .08rem;
                }

                section.locations .list .detail .wrapper .infos .items .item {
                    display: inline-block;
                    vertical-align: middle;
                    width: calc(50% - .16rem);
                    margin: .08rem;
                    padding: .16rem;
                    background-color: white;
                    border: 1px solid #c4c4c4;
                    border-radius: .08rem;
                    -webkit-border-radius: .08rem;
                    -moz-border-radius: .08rem;
                    -ms-border-radius: .08rem;
                    -o-border-radius: .08rem;
                }

                    section.locations .list .detail .wrapper .infos .items .item > div {
                        width: 100%;
                    }

                    section.locations .list .detail .wrapper .infos .items .item .icon {
                        display: inline-block;
                        vertical-align: middle;
                        width: .24rem;
                        height: .24rem;
                    }

                        section.locations .list .detail .wrapper .infos .items .item .icon img {
                            width: 100%;
                        }

                    section.locations .list .detail .wrapper .infos .items .item .content {
                        display: inline-block;
                        vertical-align: middle;
                        width: calc(100% - .24rem);
                        padding-left: .15rem;
                    }

                section.locations .list .detail .wrapper .power-specs {
                    display: inline-block;
                    width: 100%;
                }

                section.locations .list .detail .wrapper * + .power-specs {
                    margin-top: .32rem;
                }

                section.locations .list .detail .wrapper .power-specs .items {
                    display: inline-block;
                    width: 100%;
                    padding: .16rem .08rem .16rem .16rem;
                    background-color: white;
                    border: 1px solid #c4c4c4;
                    border-radius: .08rem;
                    -webkit-border-radius: .08rem;
                    -moz-border-radius: .08rem;
                    -ms-border-radius: .08rem;
                    -o-border-radius: .08rem;
                }

                section.locations .list .detail .wrapper .power-specs * + .items {
                    margin-top: .16rem;
                }

                section.locations .list .detail .wrapper .power-specs .items .item {
                    display: inline-block;
                    width: 100%;
                }

                section.locations .list .detail .wrapper .power-specs .items * + .item {
                    margin-top: .16rem;
                }

                section.locations .list .detail .wrapper .power-specs .items .item .icon {
                    display: inline-block;
                    vertical-align: middle;
                    width: .24rem;
                    height: .24rem;
                }

                    section.locations .list .detail .wrapper .power-specs .items .item .icon img {
                        width: 100%;
                    }

                section.locations .list .detail .wrapper .power-specs .items .item .contents {
                    display: inline-block;
                    vertical-align: middle;
                    width: calc(100% - .24rem);
                    padding-left: .15rem;
                }

                    section.locations .list .detail .wrapper .power-specs .items .item .contents .content {
                        display: inline-block;
                        vertical-align: middle;
                        width: 33.33%;
                    }

                        section.locations .list .detail .wrapper .power-specs .items .item .contents .content.passive {
                            opacity: .5;
                        }

                    section.locations .list .detail .wrapper .power-specs .items .item .contents * + .content {
                        padding-left: .1rem;
                    }

            section.locations .list .detail .route {
                position: absolute;
                bottom: .4rem;
                width: calc(100% - .8rem);
                left: .4rem;
                right: .4rem;
                text-align: center;
            }

            section.locations .list .detail .close {
                position: absolute;
                right: .2rem;
                top: .16rem;
                width: .22rem;
                height: .22rem;
                cursor: pointer;
            }

                section.locations .list .detail .close img {
                    width: 100%;
                }

    section.locations .map {
        position: absolute;
        top: 0;
        right: 0;
        left: 6.05rem;
        width: calc(100% - 6.05rem);
        height: 100%;
    }

        section.locations .map #charge-map {
            width: 100%;
            height: 100%;
        }

            section.locations .map #charge-map .cluster div span {
                font-size: .16rem;
                font-weight: 500;
                color: white;
            }

            section.locations .map #charge-map .gmnoprint.gm-bundled-control {
                right: auto;
                left: 0;
            }

                section.locations .map #charge-map .gmnoprint.gm-bundled-control .gm-svpc {
                    display: none;
                }

/* Prices */

section.prices {
    position: relative;
    background-color: #F1F4F6;
    padding-top: .8rem;
    padding-bottom: 1.72rem;
}

    section.prices .head .title {
        color: #3585C2;
    }


    section.prices .cols {
        display: flex;
        width: calc(100% + 1rem);
        margin: -.5rem;
    }

    section.prices * + .cols {
        margin-top: .5rem;
    }

    section.prices .cols .col {
        display: inline-block;
        width: calc(50% - 1rem);
        margin: .5rem;
    }

        section.prices .cols .col * + .items {
            margin-top: .42rem;
        }

        section.prices .cols .col .items > * + * {
            margin-top: .12rem;
        }

        section.prices .cols .col .items .item {
            background-color: white;
            border-radius: .2rem;
            padding: .15rem;
        }

        section.prices .cols .col .items .header .text {
            color: #3585C2;
        }

        section.prices .cols .col .items .desc {
            display: inline-block;
            width: 50%;
            vertical-align: middle;
        }

            section.prices .cols .col .items .desc.right {
                direction: rtl;
            }

            section.prices .cols .col .items .desc .icon {
                display: inline-block;
                vertical-align: middle;
                width:.5rem;
            }

            section.prices .cols .col .items .desc .icon svg {
                width:100%;
            }

            section.prices .cols .col .items .desc .text {
                display: inline-block;
                vertical-align: middle;
                padding-left: .15rem;
                padding-right: .15rem;
            }

    section.prices * + .details{
        margin-top:1rem;
    }

    /* 404 */
    section.not-found {
        padding: 3rem 1rem 3rem 0;
        text-align: center;
    }

    section.not-found .image {
        width: 9.3rem;
    }

    section.not-found .content {
        position: absolute;
        width: 3.5rem;
        text-align: left;
        left: 6.8rem;
        top: 1.5rem;
    }

    section.not-found * + .text {
        margin-top: .32rem;
    }

    section.not-found * + .btn {
        margin-top: .32rem;
    }

/* Select Area */

section.select-area {
    background-color: #3585C2;
    height: 100vh;
    position: relative;
}
section.select-area .main {
    padding: .48rem .24rem;
    display: flex;
    height: 100vh;
}

        section.select-area .main .item {
            width: calc((100% - .24rem)/ 2);
            padding: 0.48rem;
            display: flex;
            justify-content: flex-end;
            flex-direction: column;
            margin: 0 0.24rem;
            background-repeat: no-repeat;
            background-size: cover;
            transition: all 0.3s ease;
            position:relative;
        }
            section.select-area .main .item::before{
                position: absolute;
                content: "";
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
            }


            section.select-area .main .item:hover {
                -webkit-box-shadow: inset 0px 0px 77px 30px rgba(0,0,0,0.75);
                -moz-box-shadow: inset 0px 0px 77px 30px rgba(0,0,0,0.75);
                box-shadow: inset 0px 0px 90px 35px rgba(0,0,0,0.75);
            }

            section.select-area .main .item .title {
                font-family: League Spartan;
                font-weight: 700;
                font-size: 0.56rem;
                line-height: 1.4em;
                color: #ffffff;
                display: flex;
                justify-content: space-between;
                align-items: center;
                z-index:10;
            }

                section.select-area .main .item .title .link {
                    width: .64rem;
                    height: .64rem;
                    border-radius: 50%;
                    background-color: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-shrink: 0;
                }

            section.select-area .main .item .text {
                font-weight: 400;
                font-size: 0.18rem;
                line-height: 1.6em;
                color: #ffffff;
                z-index: 10;
            }

/*Solar Coming Soon*/
.solar-main {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
    .solar-main::before {
        position: absolute;
        content: "";
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .solar-main .container {
        padding: .64rem;
    }

        .solar-main .container .logo img {
            object-fit: contain;
            height: 1.22rem;
        }

        .solar-main .container .title {
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.4em;
            color: #ffffff;
            padding-top: .4rem;
        }

/* The End */
