/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */
:root {
    --font-family-roboto: var(--font-family-defalut, 'Roboto', sans-serif);
    --font-family-oswald: var(--font-family-defalut, 'Oswald', sans-serif);
    --font-family-raleway: var(--font-family-defalut, 'Raleway', sans-serif);
}

html:lang(ja) {
    --font-family-defalut: 'Noto Sans Japanese';
}

html:lang(zh-TW),
html:lang(zh-tw),
html:lang(zh-Hant),
html:lang(zh-Hant-TW) {
    --font-family-defalut: 'Noto Sans TC';
}

html:lang(zh-CN),
html:lang(zh-cn),
html:lang(zh-Hans),
html:lang(zh-Hans-CN) {
    --font-family-defalut: 'Noto Sans SC';
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;

    /* vertical-align: baseline; */
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

/*ol,
ul {
  list-style: none;
}*/

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: '';
    content: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*----------cssresetend--------- */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family-roboto);
    overflow-x: hidden;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-century {
    font-family: 'Century Gothic', sans-serif;
}

#rl-topnavarea {
    min-height: 50px;
}

#product-topnavarea {
    min-height: 60px;
}

#product-topnavarea.affix-top {
    min-height: unset;
}

/*-----Link Style-----*/

a {
    color: #82be0f;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    color: #82be0f;
    font-weight: 400;
    text-decoration: underline;
}

a.none-underline:hover{
    text-decoration: none;
}

a:focus,
a:active,
a:active:focus {
    color: #82be0f;
    font-weight: 400;
    outline: none;
    text-decoration: none;
}

.nav > li > a:hover {
    text-decoration: none;
    font-weight: 400;
    background-color: inherit;
}

.label-paragraph {
    color: #82be0f;
    font-style: italic;
    font-weight: 500;
}

/*----------Layout--------- */

.rl-container {
    padding-right: 15px;
    padding-left: 15px;
}

.rl-row-1440 {
    max-width: 1440px;
    margin: 0 12.1%;
    padding-right: 15px;
    padding-left: 15px;
}

.rl-row-1024 {
    max-width: 1024px;
    margin: 0 23%;
    padding-right: 15px;
    padding-left: 15px;
}

.rl-row-1100 {
    max-width: 1100px;
    margin: 0 21%;
    padding-right: 15px;
    padding-left: 15px;
}

.rl-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rl-flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-space-around {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
}

.flex-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*--------section------ */

.rl-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 21vw;
    min-height: 285px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    display: -webkit-flex;
}

.rl-banner-other {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 21vw;
    min-height: 400px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

.rl-banner-other.low {
    height: 13vw;
    min-height: 100px;
    max-height: 230px;
}

.rl-hidden {
    display: none !important;
}

.rl-hide {
    display: none !important;
}

/*------------banner-align------------ */

/*------------Left------------ */

.rl-banner-lefttop {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rl-banner-leftcenter {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rl-banner-leftbot {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/*------------Center------------ */

.rl-banner-centertop {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rl-banner-centercenter {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rl-banner-centerbot {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/*------------Right------------ */

.rl-banner-righttop {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rl-banner-rightcenter {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rl-banner-rightbot {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.rl-banner-but {
    font-size: calc(0.8750000000000001vw + 13.2px);

    /*30(1920px)-16(320px)*/
    border: #82be0f 1px solid;
    background-color: transparent;
    color: #82be0f;
    padding-top: calc(4px + 0.3125vw);
    padding-bottom: calc(4px + 0.3125vw);
    padding-right: calc(12px + 0.9375vw);
    padding-left: calc(12px + 0.9375vw);
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rl-banner-but:hover {
    background-color: #82be0f;
    color: #ffffff;
}

.rl-banner-but-black {
    font-size: calc(0.8750000000000001vw + 13.2px);

    /*30(1920px)-16(320px)*/
    border: #82be0f 1px solid;
    background-color: #82be0f;
    color: #ffffff;
    padding-top: calc(4px + 0.3125vw);
    padding-bottom: calc(4px + 0.3125vw);
    padding-right: calc(12px + 0.9375vw);
    padding-left: calc(12px + 0.9375vw);
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rl-banner-but-black svg {
    fill: #fff;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

.rl-banner-but-black:hover {
    background-color: transparent;
    color: #82be0f;
}

.rl-banner-but-black:hover svg {
    fill: #82be0f;
}

/*--------text-size------ */

.rl-text-lg {
    font-size: calc(2.3125vw + 42.6px);

    /*1920-87 ,320-50*/
    line-height: 1.1;
    font-weight: 600;
}

.rl-text-md {
    font-size: calc(0.625vw + 48px);

    /*1920-60 320-50*/
    font-weight: 300;
    line-height: 1.1;
}

.rl-text-md2 {
    font-size: calc(0.8750000000000001vw + 27.2px);

    /*1920:44, 320-30*/
    font-weight: 300;
    line-height: 1.1;
}

.rl-text-sm {
    font-size: calc( 26.4px + 0.5vw);

    /*36*/
    font-weight: 300;
    line-height: 1.1;
}

.rl-text-xs {
    font-size: calc( 22.8px + 0.375vw);

    /*30*/
    font-weight: 300;
    line-height: 1.1;
}

.rl-text-xxs{
    font-size: calc(0.375vw + 16.8px);
}

.rl-text-xxxs{
    font-size: calc(0.25vw + 17.2px);
}

.rl-text-desc {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
}

/*------- declareBoard-header --------*/

.rl-declareBoard-header-common {
    background-size: cover;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
    background-image: url(../../images/3d-facial-expression/title_bg.jpg);
    background-repeat: no-repeat;
}

.rl-declareBoard-header .title {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: calc(1.3888888888888888vw + 33.333333333333336px);
    line-height: 1.1;
}

/* ----- title font size -------*/
.rl-text-title-xxl,
.rl-text-60 {
    font-size: calc(1.3888888888888888vw + 33.333333333333336px);
}

.rl-text-title-xl,
.rl-text-48 {
    /* 48 -> 28 */
    font-size: calc(1.25vw + 24px);
}

.rl-text-title-lg,
.rl-text-42 {
    /* 42 -> 26 */
    font-size: calc(1vw + 22.8px);
}

.rl-text-title-md,
.rl-text-36 {
    /* 36 -> 24 */
    font-size: calc(0.75vw + 21.6px);
}

.rl-text-title-sm,
.rl-text-30 {
    /* 30 -> 22 */
    font-size: calc(0.5vw + 20.4px);
}

.rl-text-title-xs,
.rl-text-28 {
    /* 28 -> 20 */
    font-size: calc(0.5vw + 18.4px);
}

/* ------ desc font size ----- */
.rl-text-desc-lg {
    font-size: calc(0.25vw + 19.2px);
    /* 24 -> 20 */
}

.rl-text-desc-md {
    font-size: calc(0.125vw + 17.6px);
    /* 20 -> 18 */
}

.rl-text-desc-sm{
    font-size: calc(0.125vw + 15.6px);
    /* 18 -> 16 */
}

.rl-text-desc-xs{
    font-size: calc(0.125vw + 13.6px);
    /* 16 -> 14 */
}

.rl-text-desc-xs1 {
    font-size: calc(0.125vw + 10.6px); /* 1920~320 13~11px */
}

/* ----- default font end ---- */

.rl-announcement-text {
    font-size: 20px;
}

.rl-lineheight-15,
.rl-lh-15 {
    line-height: 1.5;
}

.rl-lineheight-12,
.rl-lh-12 {
    line-height: 1.2;
}

.rl-lineheight-13,
.rl-lh-13 {
    line-height: 1.3;
}

.rl-lineheight-14,
.rl-lh-14 {
    line-height: 1.4;
}

.rl-lineheight-11,
.rl-lh-11 {
    line-height: 1.1;
}

/*--- text weight ---*/
.rl-text-bold {
    font-weight: bold;
}

.rl-text-medium {
    font-weight: 500;
}

.rl-text-regular {
    font-weight: 400;
}

.rl-text-light {
    font-weight: 300;
}

.rl-text-thin {
    font-weight: 100;
}

/*--------text-align------ */

.rl-text-center {
    text-align: center;
}

.rl-text-left {
    text-align: left;
}

.rl-text-right {
    text-align: right;
}

/* space */
/*----- 90px ----- */

.rl-row-90 {
    padding-top: calc( 30px + 3.125vw);
    padding-bottom: calc( 30px + 3.125vw);
}

.rl-row-top-90 {
    padding-top: calc( 30px + 3.125vw);
}

.rl-row-bottom-90 {
    padding-bottom: calc( 30px + 3.125vw);
}

/*----- 80px ----- */

.rl-row-80 {
    padding-top: calc( 32px + 2.5vw);
    padding-bottom: calc( 32px + 2.5vw);
}

.rl-row-top-80 {
    padding-top: calc( 32px + 2.5vw);
}

.rl-row-bottom-80 {
    padding-top: 0;
    padding-bottom: calc( 32px + 2.5vw);
}

/*----- 70px ----- */

.rl-row-70 {
    padding-top: calc(2.1875vw + 28px);
    padding-bottom: calc(2.1875vw + 28px);
}

.rl-row-top-70 {
    padding-top: calc(2.1875vw + 28px);
    padding-bottom: 0;
}

.rl-row-bottom-70 {
    padding-top: 0;
    padding-bottom: calc(2.1875vw + 28px);
}

/*----- 60px ----- */

.rl-row-60 {
    padding-top: calc( 24px + 1.875vw);
    padding-bottom: calc( 24px + 1.875vw);
}

.rl-row-top-60 {
    padding-top: calc( 24px + 1.875vw);
}

.rl-row-bottom-60 {
    padding-bottom: calc( 24px + 1.875vw);
}

/*----- 50 px ----- */

.rl-row-50 {
    padding-top: calc( 14px + 1.875vw);
    padding-bottom: calc( 14px + 1.875vw);
}

.rl-row-top-50 {
    padding-top: calc( 14px + 1.875vw);
}

.rl-row-bottom-50 {
    padding-bottom: calc( 14px + 1.875vw);
}

/*----- 40 px ----- */

.rl-row-40 {
    padding-top: calc( 16px + 1.25vw);
    padding-bottom: calc( 16px + 1.25vw);
}

.rl-row-top-40 {
    padding-top: calc( 16px + 1.25vw);
}

.rl-row-bottom-40 {
    padding-bottom: calc( 16px + 1.25vw);
}

/*----- 30 px ----- */

.rl-row-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.rl-row-top-30 {
    padding-top: 30px;
}

.rl-row-bottom-30 {
    padding-bottom: 30px;
}

/*----- 25 px ----- */

.rl-row-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.rl-row-top-25 {
    padding-top: 25px;
}

.rl-row-bottom-25 {
    padding-bottom: 25px;
}

/*----- 20 px ----- */

.rl-row-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.rl-row-top-20 {
    padding-top: 20px;
}

.rl-row-bottom-20 {
    padding-bottom: 20px;
}

/*----- 15 px ----- */

.rl-row-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.rl-row-top-15 {
    padding-top: 15px;
}

.rl-row-bottom-15 {
    padding-bottom: 15px;
}

/*----- 10 px ----- */

.rl-row-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.rl-row-top-10 {
    padding-top: 10px;
}

.rl-row-bottom-10 {
    padding-bottom: 10px;
}


/*-----img------ */

.rl-img-response {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*-----bg-color------ */

.rl-bg-black1 {
    background-color: #1e1e1e;
}

.rl-bg-black2 {
    background-color: #080808;
}

.rl-bg-black3 {
    background-color: #000000;
}

.rl-bg-lightblack {
    background-color: #242424;
}

.rl-bg-lightblack2 {
    background-color: #3b3b3b;
}

.rl-bg-white {
    background-color: #f0f0f0;
}

.rl-bg-pure-white {
    background-color: #ffffff;
}

.rl-bg-gray {
    background-color: #d2d2d2;
}

.rl-bg-gray2 {
    background-color: #e6e6e6;
}

.rl-bg-main-black1 {
    background-color: #1b1b1b;
}

.rl-color-pure-white {
    color: #fff;
}

.rl-color-white {
    color: #e4e4e4;
}

.rl-color-gray {
    color: #bbbbbb;
}

.rl-color-black1 {
    color: #080808;
}

.rl-color-black2 {
    color: #434343;
}

.rl-color-black3 {
    color: #010101;
}

.rl-color-black4 {
    color: #313131;
}

.rl-color-green {
    color: #82be0f;
}

.rl-tutorial-theme-color{
    color: #82be0f;
}

.rl-banner-text {
    /*font-family: 'Roboto Condensed', sans-serif;*/
    font-weight: 600;
    text-transform: uppercase;
}

.rl-uppercase {
    text-transform: uppercase;
}

.rl-title {
    font-family: var(--font-family-oswald);
    font-weight: 600;
}

.rl-title2 {
    font-weight: bold;
}

/*------------------------------------$Play button------------------------------------ */

.rl-rel {
    position: relative;
    display: block;
}

.rl-play-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(55px + 2.5vw);
    height: calc(55px + 2.5vw);
    border-radius: 50%;
    margin: calc( (( 55px + 2.5vw) / 2) * (-1)) 0 0 calc( (( 55px + 2.5vw) / 2) * (-1));
    border: 3px solid #e4e4e4;
    background: #0009;
    -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.rl-rel:hover .rl-play-wrapper {
    /* background: rgba(255, 255, 255, 0.6); */
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.rl-play {
    width: 0;
    height: 0;

    /* border-style: solid;
    border-width: calc(0.625vw + 8px) 0 calc(0.625vw + 8px) calc(0.9375vw + 12px);
    border-color: #0000 #0000 #0000 #fff; */
    margin-left: calc( 2.8px + 0.375vw);
    border-top: solid calc(0.625vw + 8px) transparent;
    border-right: solid 0px transparent;
    border-bottom: solid calc(0.625vw + 8px) transparent;
    border-left: solid calc(0.9375vw + 12px) #fff;
    margin-left: 7px;
}

/* mutiple column */

.rl-text-center {
    text-align: center;
}

.rl-text-left {
    text-align: left;
}

.rl-text-right {
    text-align: right;
}

/*cols */

.rl-cards {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

.rl-cards > div {
    width: 100%;
}

.rl-column-2 > div {
    width: calc(100% / 2);
}

.rl-column-3 > div {
    width: calc(100% / 3);
}

.rl-column-4 > div {
    width: calc(100% / 4);
}

.rl-column-5 > div {
    width: calc(100% / 5);
}

.rl-column-6 > div {
    width: calc(100% / 6);
}

.rl-column-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* two-col */

.rl-column-space-7dot5 > div {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.rl-column-space-15 > div {
    /*15, 7.5*/
    padding-left: calc(0.5vw + 5.4px);
    padding-right: calc(0.5vw + 5.4px);
}

.rl-column-space-20 > div {
    /*20, 7.5*/
    padding-left: calc(0.8125vw + 4.4px);
    padding-right: calc(0.8125vw + 4.4px);
}

.rl-column-space-25 > div {
    /*25, 7.5*/
    padding-left: calc(1.125vw + 3.4px);
    padding-right: calc(1.125vw + 3.4px);
}

.rl-column-space-30 > div {
    /*30, 7.5*/
    padding-left: calc(1.4375vw + 2.4px);
    padding-right: calc(1.4375vw + 2.4px);
}

.rl-column-space-45 > div {
    /*45, 7.5*/
    padding-left: calc(2.375vw - 0.6px);
    padding-right: calc(2.375vw - 0.6px);
}

.rl-column-space2-wrapper {
    overflow: hidden;
}

.rl-column-space2-7dot5 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.rl-column-space2-15 {
    margin-left: calc((0.5vw + 5.4px) * (-1));
    margin-right: calc((0.5vw + 5.4px) * (-1));
}

.rl-column-space2-20 {
    margin-left: calc((0.8125vw + 4.4px) * (-1));
    margin-right: calc((0.8125vw + 4.4px) * (-1));
}

.rl-column-space2-25 {
    margin-left: calc((1.125vw + 3.4px) * (-1));
    margin-right: calc((1.125vw + 3.4px) * (-1));
}

.rl-column-space2-30 {
    margin-left: calc((1.4375vw + 2.4px) * (-1));
    margin-right: calc((1.4375vw + 2.4px) * (-1));
}

.rl-column-space2-45 {
    margin-left: calc((2.375vw - 0.6px) * (-1));
    margin-right: calc((2.375vw - 0.6px) * (-1));
}

.rl-column-space2-7dot5 > div {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.rl-column-space2-15 > div {
    padding-left: calc(0.5vw + 5.4px);
    padding-right: calc(0.5vw + 5.4px);
}

.rl-column-space2-20 > div {
    padding-left: calc(0.8125vw + 4.4px);
    padding-right: calc(0.8125vw + 4.4px);
}

.rl-column-space2-25 > div {
    padding-left: calc(1.125vw + 3.4px);
    padding-right: calc(1.125vw + 3.4px);
}

.rl-column-space2-30 > div {
    padding-left: calc(1.4375vw + 2.4px);
    padding-right: calc(1.4375vw + 2.4px);
}

.rl-column-space2-45 > div {
    padding-left: calc(2.375vw - 0.6px);
    padding-right: calc(2.375vw - 0.6px);
}

.rl-column-icons-wrapper {
    max-width: 240px;
    margin: 0 auto;
}

.rl-column-icons-wrapper a {
    text-decoration: none;
}

/*.rl-column-icons-wrapper a:hover .rl-skin-icon-desc {
  color: #fff;
}*/

.rl-column-icons-wrapper.rl-column-2 {
    max-width: 480px;
}

.rl-column-icons-wrapper.rl-column-3 {
    max-width: 720px;
}

.rl-column-icons-wrapper.rl-column-4 {
    max-width: 960px;
}

.rl-column-icons-wrapper.rl-column-5 {
    max-width: 1200px;
}

.rl-column-icons-wrapper.rl-column-6 {
    max-width: 1440px;
}

.rl-skin-icon-desc {
    font-weight: 300;
    line-height: 1.5;
}

.rl-icons-link {
    width: 60px;
    max-width: 100%;
    height: 82px;
}

/*.rl-skin-icons-link {
  fill: #fff;
}

.rl-skin-icons-link-black {
  fill: #080808;
}*/

/*.icons-link-wrapper:hover {
  background-color: #3d3d3d;
}

.icons-link-wrapper:hover .rl-icons-link {
  fill: #fff;
}*/

.rl-skin-icons-wrapper {
    /*border: 1px solid #3c3c3c;
    background-color: rgba(0,0,0,0.1);*/
}

.rl-skin-icons-wrapper .rl-skin-icon {
    fill: #fff;
}

.rl-skin-icons-wrapper .rl-skin-icon-text {
    color: #fff;
}

.rl-skin-icons-wrapper:hover {
    /*border: 1px solid #3c3c3c;*/
    background-color: #3c3c3c;
}

.rl-skin-icons-wrapper:hover .rl-skin-icon {
    fill: #82be0f;
}

.rl-skin-icons-wrapper:hover .rl-skin-icon-text {
    color: #82be0f;
}

.rl-skin-icons-black-wrapper {
    /*border: 1px solid #a0a0a0;
    background-color: rgba(255,255,255,0.5);*/
}

.rl-skin-icons-black-wrapper .rl-skin-icon {
    fill: #080808;
}

.rl-skin-icons-black-wrapper .rl-skin-icon-text {
    color: #080808;
}

.rl-skin-icons-black-wrapper:hover {
    /*border: 1px solid #a0a0a0;*/
    background-color: #a0a0a0;
}

.rl-skin-icons-black-wrapper:hover .rl-skin-icon {
    fill: #fff;
}

.rl-skin-icons-black-wrapper:hover .rl-skin-icon-text {
    color: #fff;
}

.rl-skin-icons-black-wrapper:hover .label-paragraph {
    color: #323232;
}

.rl-column-icons {
    padding: calc(0.9375vw + 7px);

    /*25 -> 10*/
    height: 100%;
}

/*--- Spotlight (two cloumns layout) ---*/

/*--- Layout ---*/

.rl-spotlight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.rl-spotlight-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rl-spotlight-body-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.rl-spotlight-body-top {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.rl-spotlight-body-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.rl-spotlight-media-center {
    text-align: center;
}

.rl-spotlight-media-left {
    text-align: left;
}

.rl-spotlight-media-right {
    text-align: right;
}

.rl-spotlight-body-gap150 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(8.125vw + -6px);
    flex: 0 0 calc(8.125vw + -6px);

    /*1920:150, 320:20*/
    min-height: 1px;
}

.rl-spotlight-body-gap120 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(6.25vw + 0px);
    flex: 0 0 calc(6.25vw + 0px);

    /*1920:120, 320:20*/
    min-height: 1px;
}

.rl-spotlight-body-gap100 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(5vw + 4px);
    flex: 0 0 calc(5vw + 4px);

    /*1920:100, 320:20*/
    min-height: 1px;
}

.rl-spotlight-body-gap75 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(3.4375000000000004vw + 9px);
    flex: 0 0 calc(3.4375000000000004vw + 9px);

    /*1920:75, 320:20*/
    min-height: 1px;
}

.rl-spotlight-body-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 1px;
}

.rl-spotlight-body-2 {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-height: 1px;
}

.rl-spotlight-body-3 {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    min-height: 1px;
}

.rl-spotlight-body-4 {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
    min-height: 1px;
}

.rl-spotlight-body-5 {
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
    min-height: 1px;
}

.rl-spotlight-body-6 {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
    min-height: 1px;
}

.rl-spotlight-body-7 {
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
    min-height: 1px;
}

.rl-spotlight-body-8 {
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
    min-height: 1px;
}

.rl-spotlight-body-9 {
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
    min-height: 1px;
}

/*--- button ---*/

.rl-button {
    display: inline-block;
    line-height: 34px;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ;
}

.rl-button:hover,
.rl-button:focus {
    text-decoration: none;
}

.rl-button-right {
    float: right;
}

.rl-button-left {
    float: left;
}

.rl-button-center {
    display: block;
    margin: 0 auto;
}

.rl-button-default,
.rl-button-default:active,
.rl-button-default:active:focus,
.rl-button-default:focus {
    color: #fff;
    background-color: #82be0f;
    border: 2px solid #82be0f;
    border-radius: 0;
    outline: none;
}

.rl-button-default:hover {
    color: #82be0f;
    background-color: transparent;
    border: 2px solid #82be0f;
}

.rl-button-default.rl-button-default--mask:hover {
    color: #ffffff;
    background-color: #00000040;
}

.rl-button-border,
.rl-button-border:active,
.rl-button-border:active:focus,
.rl-button-border:focus {
    color: #fff;
    background-color: transparent;
    border: 2px solid #82be0f;
    border-radius: 0;
    outline: none;
}

.rl-button-border.rl-button-border--mask {
    color: #ffffff;
    background-color: #00000040;
}

.rl-button-border:hover {
    background-color: #82be0f;
    color: #ffffff;
}

.rl-button-lg {
    font-size: 1.5rem;
    font-weight: 400;
    min-width: 250px;
}

.rl-button-md {
    font-size: 1.125rem;
    font-weight: 400;
    min-width: 200px;
}

.rl-button-sm {
    font-size: 1rem;
    font-weight: 300;
}

.rl-btn-fill-new {
    width: 100%;
    background-color: #666;
    border: none;
    color: #fff;
    line-height: normal;
    font-size: 1.125rem;

    /*border-radius: 0;  */
}

.rl-btn-fill-new:hover,
.rl-btn-fill-new:active,
.rl-btn-fill-new:active:focus {
    background-color: #999 !important;
    color: #fff !important;
    outline: none;
}

.rl-btn-fill-new:focus {
    background-color: #999;
    color: #fff;
    outline: none;
}

.rl-btn-portal {
    font-size: 20px;
    padding: 10px;
    background-color: #4b4b4b;
}

.rl-button-horizontal-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px -10px;
}

.rl-button-horizontal-container > a,
.rl-button-horizontal-container > button {
    margin: 0px 10px 20px;
}

.rl-box1 {
    padding: calc(24.6px + 1.0625vw) calc(28px + 2.1875vw);
    background: #fff;
}

.rl-feature-nav-other {
    background-color: #232323;
    font-family: var(--font-family-roboto);
    margin: 0px;
    width: 100%;
    height: calc(0.625vw + 48px);
}

.rl-feature-nav-other.fixed {
    position: fixed;
    left: 0px;
    top: 60px;
    z-index: 3;
}

.rl-feature-nav-other .rl-other-item.active {
    color: #82be0f;
}

.rl-other-main {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(0.625vw + 48px);
}

.rl-other-item {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding-right: calc(1.5625vw + 5px);
    padding-left: calc(1.5625vw + 5px);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    line-height: calc(0.625vw + 48px);
}

.rl-other-item:hover a,
.rl-other-item.active a {
    color: #82be0f;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
}

.rl-other-item a {
    color: #fff;
    text-decoration: none;
}

.rl-other-splite {
    display: inline-block;
    color: #888;
    line-height: calc(0.625vw + 48px);
}

.rl-svg-btn {
    fill: #82be0f;
}

.rl-svg-btn:hover {
    fill: #ffffff;
}

/*slide*/

.rl-slide1 .slick-slide {
    outline: none !important;
}

.rl-slide1 .slick-dots {
    bottom: 20px;
}

.rl-slide1.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.rl-slide1 .slick-dots li.slick-active button:before {
    opacity: .75;
    color: white;
}

/* slide arrows */

.rl-slide .slick-arrow {
    z-index: 50;
}

.rl-slide .slick-prev {
    left: 5px;
}

.rl-slide .slick-next {
    right: 5px;
}

.rl-slide-rel {
    position: relative;
}

.rl-slide-text {
    width: 100%;
    position: absolute;
    bottom: 56px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.rl-slide-text p {
    font-family: var(--font-family-roboto);
    font-size: 18px;
    font-weight: 300;
}

.rl-arrow {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: rgba(98, 98, 98, 0.8);
    height: calc(0.8750000000000001vw + 27.2px);
    width: calc(0.8750000000000001vw + 27.2px);
    text-align: center;
    border-style: none;
}

.rl-arrow i.fa {
    color: #fff;
    font-size: calc(17.6px + 0.75vw);
}

.rl-prev {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: auto;
}

.rl-next {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: auto;
}

.banner-wrapper .prev1 {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: auto;
}

.banner-wrapper .next1 {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: auto;
}

/*adjust origin slick arrow*/

.rl-slide1 .slick-prev:before,
.rl-slide1 .slick-next:before {
    color: #fff;
}

.rl-slide1 .slick-arrow:before {
    font-family: FontAwesome;
    font-size: calc(0.125vw + 27.6px);

    /*30->28*/
    line-height: 1;
    font-weight: 900;
}

.rl-slide1 .slick-prev,
.rl-slide1 .slick-next {
    width: calc(0.8750000000000001vw + 27.2px);
    height: calc(0.8750000000000001vw + 27.2px);
    background-color: rgba(98, 98, 98, 0.5);
    border-radius: 50%;
}

.rl-slide1 .slick-prev {
    left: calc(1.25vw + 6px);
}

.rl-slide1 .slick-next {
    right: calc(1.25vw + 6px);
}

.rl-slide1 .slick-prev:before {
    content: '\f104';
}

.rl-slide1 .slick-next:before {
    content: '\f105';
}

.rl-slide1 .slick-prev.slick-disabled,
.rl-slide1 .slick-next.slick-disabled {
    background-color: rgba(98, 98, 98, 0.4);
    cursor: auto;
}

.rl-slide1 .slick-arrow {
    z-index: 1;
}

.rl-hr {
    border-top: 2px;
}

.rl-hr-color-gray {
    border-color: #3c3c3c;
}

.rl-logos {
    min-height: 150px;
}

/*fadIneup*/

.rl-animatable {
    visibility: hidden;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.rl-animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

.rl-animatedFadeInUp {
    opacity: 0;
}

@keyframes rl-fadeinup {
    from {
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes rl-fadeinup {
    from {
        -webkit-transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rl-animated.rl-fadeinup {
    -webkit-animation-name: rl-fadeinup;
    animation-name: rl-fadeinup;
}

/*--- magnificPopup overwrite ---*/

.mfp-iframe-holder .mfp-content {
    max-width: 80%;
}

/*--- banner arrow ---*/

/*
.banner-wrapper .arrow {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: rgba(98, 98, 98, 0.8);
  height: calc(0.8750000000000001vw + 27.2px);
  width: calc(0.8750000000000001vw + 27.2px);
  text-align: center;
  border-style: none;
}

.banner-wrapper .arrow i.fa {
  color: #fff;
  font-size: calc(17.6px + 0.75vw);
}

.banner-wrapper .prev {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
}

.banner-wrapper .next {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
}*/

.img-mask-container:hover .img-mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: box-shadow 0.2s ease-out;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
    -webkit-box-shadow: inset 0px 0px 60px 25px rgba(0, 0, 0, 0.9);
    box-shadow: inset 0px 0px 60px 25px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.img-mask-container:hover .img-mask-white {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: box-shadow 0.2s ease-out;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
    -webkit-box-shadow: inset 0px 0px 60px 25px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 60px 25px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* table-icon */
.table-icon {
    position: relative;
    width: 14px;
    height: 14px;
    margin: 0 calc(35px / 2);
    cursor: pointer;

    /* Vertical line */
    /* horizontal line */
}

.table-icon:before, .table-icon:after {
    content: "";
    position: absolute;
    background-color: #787878;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.table-icon:before {
    top: -1px;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.table-icon:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -2px;
}

.table-icon.click:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.table-icon.click:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ic.flex-container,
.flex-layout-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}



.hover-underline,
.hover-underline:focus,
.hover-underline:active,
.hover-underline:focus:active{
    text-decoration: none;
}

.hover-underline:hover{
    text-decoration: underline;
}

.rl-img-center-xs {
    margin: 0;
}

.hover-no-underline,
.hover-no-underline:focus,
.hover-no-underline:active,
.hover-no-underline:focus:active,
.hover-no-underline:hover{
    text-decoration: none;
}

.rl-iframe-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.rl-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .ic.flex-container,
    .flex-layout-container {
        flex-direction: column !important;
        align-items: left;
    }

    /* #rl-topnavarea .flex-container {
        flex-direction: row !important;
    } */
}

@media screen and (max-width: 991px) {
    .mfp-iframe-holder .mfp-content {
        max-width: 900px;
    }
}

/*mediaquery*/

@media screen and (max-width: 1440px) {
    .rl-row-1440 {
        margin: 0 4.17%;
    }

    .rl-row-1100 {
        margin: 0 12%;
    }

    .rl-row-1024 {
        margin: 0 15%;
    }
}

@media screen and (max-width: 1199px) {
    .rl-text-center-lg {
        text-align: center;
    }

    .rl-text-left-lg {
        text-align: left;
    }

    .rl-text-right-lg {
        text-align: right;
    }

    .rl-column-5 > div,
    .rl-column-6 > div {
        width: calc(100% / 3);
    }
}

@media (max-width: 1217px) {
    .rl-feature-nav-other.fixed {
        top: 50px;
    }
}

@media screen and (max-width: 991px) {
    .rl-row-1440,
    .rl-row-1100,
    .rl-row-1024 {
        padding-right: 15px !important;
        padding-left: 15px !important;
        margin: 0 auto;
    }

    .rl-text-center-md {
        text-align: center;
    }

    .rl-text-left-md {
        text-align: left;
    }

    .rl-text-right-md {
        text-align: right;
    }

    .rl-column-4 > div,
    .rl-column-6 > div {
        width: calc(100% / 2);
    }

    .rl-spotlight-body-md-1 {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-height: 1px;
    }

    .rl-spotlight-body-md-2 {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        min-height: 1px;
    }

    .rl-spotlight-body-md-3 {
        -webkit-box-flex: 3;
        -ms-flex: 3;
        flex: 3;
        min-height: 1px;
    }

    .rl-spotlight-body-md-4 {
        -webkit-box-flex: 4;
        -ms-flex: 4;
        flex: 4;
        min-height: 1px;
    }

    .rl-spotlight-body-md-5 {
        -webkit-box-flex: 5;
        -ms-flex: 5;
        flex: 5;
        min-height: 1px;
    }

    .rl-spotlight-body-md-6 {
        -webkit-box-flex: 6;
        -ms-flex: 6;
        flex: 6;
        min-height: 1px;
    }

    .rl-spotlight-body-md-7 {
        -webkit-box-flex: 7;
        -ms-flex: 7;
        flex: 7;
        min-height: 1px;
    }

    .rl-spotlight-body-md-8 {
        -webkit-box-flex: 8;
        -ms-flex: 8;
        flex: 8;
        min-height: 1px;
    }

    .rl-spotlight-body-md-9 {
        -webkit-box-flex: 9;
        -ms-flex: 9;
        flex: 9;
        min-height: 1px;
    }
}

@media screen and (max-width: 767px) {
    .rl-visible {
        display: none !important;
    }

    .rl-hidden {
        display: block !important;
    }

    .rl-banner-xs {
        background-image: url(https://www.reallusion.com//content/Banner/1218/MobileBanner_20170524014230.jpg);
        height: calc(44.742729306487696vw + 256.8232662192394px);
        min-height: inherit;
    }

    .rl-banner-other-xs {
        background-image: url(https://www.reallusion.com//content/Banner/1218/MobileBanner_20170524014230.jpg);
        height: calc(11.185682326621924vw + 314.20581655480987px);
        min-height: inherit;
    }

    .rl-text-center-sm {
        text-align: center;
    }

    .rl-text-left-sm {
        text-align: left;
    }

    .rl-text-right-sm {
        text-align: right;
    }

    .rl-column-2 > div,
    .rl-column-3 > div,
    .rl-column-4 > div,
    .rl-column-5 > div,
    .rl-column-6 > div {
        width: 100%;
    }

    .rl-column-icons-wrapper > div {
        width: calc(100% / 2);
    }

    /*--- Spotlight (two cloumns layout) ---*/
    /*--- Layout ---*/
    .rl-spotlight {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }

    .rl-spotlight-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .rl-banner-mobile-leftbot {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .rl-banner-mobile-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .rl-banner-mobile-bot-60 {
        margin-bottom: 60px;
    }

    .rl-img-center-xs {
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {
    .rl-container {
        padding-right: 0;
        padding-left: 0;
    }

    .rl-text-center-xs {
        text-align: center;
    }

    .rl-text-left-xs {
        text-align: left;
    }

    .rl-text-right-xs {
        text-align: right;
    }
}

.rl-collapse-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rl-collapse-content {
    padding-left: 50px;
    padding-right: 50px;
    display: none;
}

.rl-collapse-content.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rl-tutorial-wrap > div {
    border: 1px solid #c3c3c3;
    border-bottom: none;
}

.rl-tutorial-wrap > div:last-child {
    border-bottom: 1px solid #c3c3c3;
}

.rl-tutorial-wrap ul {
    padding-left: 20px;
}

.rl-tutorial-wrap li {
    font-size: 16px;
}

.rl-tutorial-video-title {
    font-size: 24px;
    line-height: 1.3;
}

.label-wrap {
    overflow: hidden;
}

.tutorial-label {
    position: absolute;
    top: 7%;
    left: -25%;
    display: none;
    height: 20px;
    width: 70%;
    background: #82be0f;
    color: #fff;
    font-family: var(--font-family-roboto);
    font-weight: bold;
    font-size: 15px;
    padding: 0;
    line-height: 20px;
    text-align: center;
    z-index: 2;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
}

@media screen and (max-width: 575px) {
    .rl-collapse-content {
        padding: 0 15px;
    }
}

.rl-tutorial-wrap .rl-play-wrapper {
    width: 48px;
    height: 48px;
    top: auto;
    left: auto;
    right: 15px;
    bottom: 15px;
}

.rl-tutorial-wrap .rl-play {
    width: 0;
    height: 0;
    border-top: solid 10px transparent;
    border-right: solid 0px transparent;
    border-bottom: solid 10px transparent;
    border-left: solid 17px #fff;
    margin-left: 7px;
}

/*------------------------------------
                $CSS Spin
    ------------------------------------*/

.spinner {
    width: 100%;
}

.cp-spinner,
.cp-round:before,
.cp-round:after {
    width: 80px;
    height: 80px;
}

.cp-round:before {
    border-top: solid 8px #d2d2d2;
    border-right: solid 8px #d2d2d2;
    border-bottom: solid 8px #d2d2d2;
    border-left: solid 8px #d2d2d2;
}

.cp-round:after {
    border-top: solid 8px #82be0f;
}

.ad-banner .cp-round:before {
    border-top: solid 8px transparent;
    border-right: solid 8px transparent;
    border-bottom: solid 8px transparent;
    border-left: solid 8px transparent;
}

.ad-banner .cp-round:after {
    border-top: solid 8px #fff;
}

/*------------------------------------
        	$PRICING
------------------------------------*/
.rl-packageTable-listTitle {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 1rem;
}

.version-table .rl-packageTable-withoutLine {
    border: none;
}

.rl-packageTable-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.rl-packageTable-flex div:first-of-type {
    padding-right: 5px;
}

.rl-packageTable-note {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rl-packageTable-note li {
    width: calc((100% - 90px) / 3);
    padding-right: calc(1.5625vw + 10px);
}

.rl-packageTable-2nd {
    margin-left: 30px;
}

.rl-packageTable-3nd {
    margin-left: 60px;
}

.rl-version-table .rl-row-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.rl-version-table .rl-col-flex {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

.rl-version-table {
    padding-right: 15px;
    padding-left: 15px;
}

.rl-version-table .rl-btn-paidupdate {
    font-size: 20px;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 180px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.rl-version-table > div {
    padding-left: 2.5%;
    padding-right: 2.5%;
}

.rl-version-table .recommend-text {
    color: #82be0f;
    font-size: calc(0.625vw + 24px); /*36-26*/
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}

.version-table {
    float: none;
    display: inline-block;
    border: 2px solid lightgray;
    padding-bottom: calc( 24px + 1.875vw); /*60*/
    border-radius: 2px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
    height: 100%;
    width: 100%;
}

.version-table.recommend {
    border: 8px solid #82be0f;
}

.version-table hr {
    box-sizing: content-box;
    height: 0;
    margin-top: 1rem;
    border: 0;
    border-top: 1px solid #e0e0e0;
}

.version-table .version {
    font-size: 30px;
    line-height: 42px;
    color: #fff;
    font-family: var(--font-family-raleway);
    font-weight: bold;
    padding: 30px;
    background-color: #333;
    min-height: 220px;
}

.version-table .version .version-label {
    background-color: #d8313b;
    color: #FFFFFF;
    font-family: var(--defalut-roboro-font-family);
    font-size: calc(1.0764262648008611vw + 3.332615715823466px); /*1920:24-991:14*/
    font-weight: 500;

    /* line-height: calc(1.2917115177610334vw + 17.19913885898816px);  */
    /*1920:42-991:30*/
    line-height: 1.3;
    position: absolute;

    /* top: 1.5625vw;
    left: -18%; */
    top: 1.1vw;
    left: -16%;
    width: 70%;

    /* height: calc(1.2917115177610334vw + 17.19913885898816px);  */
    /*1920:42-991:30*/
    padding-bottom: 5px;
    -webkit-transform: rotate(-33deg);
    -ms-transform: rotate(-33deg);
    transform: rotate(-33deg);
}

.version-table .version .v-label-title {
    font-size: 1vw;
    -ms-transform: scale(0.7); /* IE 9 */
    -webkit-transform: scale(0.7); /* Safari */
    transform: scale(0.7);
    display: inline-block;
}

.version-table .version .v-label-price {
    font-size: 1.3vw;
}

.version-table .version .product-type {
    min-height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
}

.version-table .version .pricewithtext {
    display: block;
    font-family: var(--defalut-roboro-font-family);
    font-size: 2.7rem;
    color: white;
    background: #333;
    border: 10px solid #fff;
    height: 150px;
    width: 150px;
    padding-top: 30px;
    margin: 10px auto -110px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
}

.version-table ul {
    padding-left: 30px !important;
    padding-right: 30px !important;
    list-style: none;
}

.version-table ul.info {
    margin: 90px 0 0 0;
}

.version-table ul.info li {
    /*border-top: 1px solid #e0e0e0;*/
    padding: 10px;
}

.rl-btn-download > svg {
    width: calc(0.625vw + 23px);
    height: calc(0.625vw + 23px);
}

.rl-btn-download .rl-btn-text {
    font-size: calc(0.25vw + 19.2px);
    font-weight: 400;
    padding: calc(0.1875vw + 5.4px) calc(2.8125vw + 6px);
}

.rl-color-white {
    color: #fff;
}

.rl-table-package {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: -15px;
    margin-right: -15px;
}

/*----------- features--------- */
/* main banner */
.rl-main-banner-feature {
    display: grid;
    grid-template-columns: auto auto;
    grid: 15px 20px;
}

.bullet-text {
    text-indent: calc(-0.25vw - 19.2px);
    margin-left: calc(0.25vw + 19.2px);
}

.bullet {
    border-left: 10px solid #82be0f;
    margin-right: 10px;
}

/* product tab */
.product-nav-item {
    font-weight: 300;
}

.product-nav-item.active {
    font-weight: 400;
    color: #82BE0F;
    text-decoration: underline;
}

.product-nav-item:hover {
    text-decoration: underline;
}

/* grid container */
._grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ----- */
.rl-two-cols-container {
    overflow: hidden;
    width: 100%;
    height: 31.67vw;
    display: grid;
    align-items: center;
    min-height: 450px;
}

.iframe-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.iframe-bg-wrapper iframe{
    width: 100vw;
    min-width: 1632px;
    height: 100%;
    position: absolute;
}

@media screen and (max-width: 991px) {
    /*------------------------------------
            $Edition-Comparison
    ------------------------------------*/
    .rl-table-package {
        margin-left: 0;
        margin-right: 0;
    }

    /*rl flex box*/
    .rl-version-table .rl-row-flex {
        display: inline-block;
        width: 100%;
    }

    .rl-version-table .rl-btn-paidupdate {
        width: 90%;
    }

    .blockToInline {
        display: inline;
    }

    .version-table {
        width: 100%;
        display: block;
        margin-bottom: 30px;
        margin-right: 0;
        margin-left: 0;
    }

    .rl-packageTable-note li {
        width: 100%;
        padding-right: 0;
    }

    .rl-version-table {
        padding-right: 0;
        padding-left: 0;
    }

    .version-table .version .product-type {
        margin-top: 20px;
    }

    .version-table .version .version-label {
        font-size: calc(1.4903129657228018vw + 9.230998509687034px); /*991:24-320:14*/
        /* line-height: calc(1.7883755588673622vw + 24.27719821162444px);  */
        /*991:42-320:30*/
        top: 4vw;
        left: -22%;
        width: 65%;
        /* height: calc(1.7883755588673622vw + 24.27719821162444px);  */
        /*991:42-320:30*/
    }
    .version-table .version .v-label-title{
        font-size: 2.1vw;
    }
    .version-table .version .v-label-price{
        font-size: 2.6vw;
    }

    /* grid container */

    ._grid-title-cols-4 ._grid-title-item:nth-of-type(2n+1) {
        border-left:  none;
    }

    ._grid-title-item {
        line-height: 1.5;
    }

}

@media screen and (max-width: 767px) {
    /* grid container */
    ._grid-two-cols {
        display: grid;
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 550px) {
    .rl-main-banner-feature {
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 500px) {
    .version-table .version .version-label {
        left: -23%;
        width: 73%;
    }
    .version-table .version .v-label-title{
        font-size: 3vw;
    }
    .version-table .version .v-label-price{
        font-size: 3.76vw;
    }
}


/*------------------------------------
        bg-video-container
------------------------------------*/
.bg-video-container {
    position: relative;
    padding-bottom: calc(100% * var(--video-aspect-ratio));
}

.bg-video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.bg-video-container__content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-video-container.bg-video-container--center-mode {
    height: var(--video-min-height);
    overflow: hidden;
}

.bg-video-container.bg-video-container--center-mode iframe {
    left: 50%;
    transform: translateX(-50%);
    min-width: var(--video-min-width);
    min-height: var(--video-min-height);
}
