/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */

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,
ol,
ul,
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;
}

:focus {
  outline: none;
}


/*----------cssresetend--------- */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}


/*-----Link Style-----*/

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus,
a:active,
a:active:focus {
  outline: none;
  text-decoration: none;
}

.nav>li>a:hover {
  text-decoration: none;
  background-color: inherit;
}


/*----------Layout--------- */

.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;
}

@media screen and (max-width: 1440px) {
  .rl-row-1440 {
    margin: 0 4.17%;
  }
  .rl-row-1024 {
    margin: 0 15%;
  }
}

@media screen and (max-width: 991px) {
  .rl-row-1440,
  .rl-row-1024 {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin: 0 auto;
  }
}


/*--------section------ */

.rl-banner {
  /*background-image: url(../../images/Character-1/01_banner.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}


/*------------banner-align------------ */


/*------------Left------------ */

.rl-banner-lefttop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-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;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: 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;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-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;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-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;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: 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;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-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;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-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;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: 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;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-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: #1e1e1e;
  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;
}

.rl-banner-but:hover {
  background-color: #82be0f;
  color: #ffffff;
}


/*--------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-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-desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.rl-announcement-text {
  font-size: 20px;
}


/*--------text-align------ */

.rl-text-center {
  text-align: center;
}

.rl-text-left {
  text-align: left;
}

.rl-text-right {
  text-align: right;
}


/*----- 110px ----- */

.rl-row-110 {
  padding-top: calc(3.125vw + 50px);
  padding-bottom: calc(3.125vw + 50px);
}

.rl-row-top-110 {
  padding-top: calc(3.125vw + 50px);
  padding-bottom: 0;
}

.rl-row-bottom-110 {
  padding-bottom: calc(3.125vw + 50px);
}


/*----- 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);
  padding-bottom: 0;
}

.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);
  padding-bottom: 0;
}

.rl-row-bottom-80 {
  padding-top: 0;
  padding-bottom: calc( 32px + 2.5vw);
}


/*----- 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);
  padding-bottom: 0;
}

.rl-row-bottom-60 {
  padding-top: 0;
  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);
  padding-bottom: 0;
}

.rl-row-bottom-50 {
  padding-top: 0;
  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);
  padding-bottom: 0;
}

.rl-row-bottom-40 {
  padding-top: 0;
  padding-bottom: calc( 16px + 1.25vw);
}

/*----- 30 px ----- */

.rl-row-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.rl-row-top-30 {
  padding-top: 30px;
  padding-bottom: 0;
}

.rl-row-bottom-30 {
  padding-top: 0;
  padding-bottom: 30px;
}


/*----- 20 px ----- */

.rl-row-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.rl-row-top-20 {
  padding-top: 20px;
  padding-bottom: 0;
}

.rl-row-bottom-20 {
  padding-top: 0;
  padding-bottom: 20px;
}


/*----- 15 px ----- */

.rl-row-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.rl-row-top-15 {
  padding-top: 15px;
  padding-bottom: 0;
}

.rl-row-bottom-15 {
  padding-top: 0;
  padding-bottom: 15px;
}


/*-----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-gray {
  background-color: #d2d2d2;
}

.rl-bg-gray2 {
  background-color: #e6e6e6;
}

.rl-color-white {
  color: #fff;
}

.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-banner-text {
  /*font-family: 'Roboto Condensed', sans-serif;*/
  font-weight: 600;
}

.rl-title {
  font-family: 'Oswald', sans-serif;
  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));
  background: rgba(255, 255, 255, 0.4);
  -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);
  -o-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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -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);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.rl-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc( 8px + 0.625vw) 0 calc( 8px + 0.625vw) calc( 12px + 0.9375vw);
  border-color: transparent transparent transparent white;
  margin-left: calc( 2.8px + 0.375vw);
}


/* mutiple column */

.rl-text-center {
  text-align: center;
}

.rl-text-left {
  text-align: left;
}

.rl-text-right {
  text-align: right;
}


/*cols */

.rl-cards {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -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;
  -webkit-justify-content: 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-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-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-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: 1300px;
  /*1200*/
}

.rl-column-icons-wrapper.rl-column-6 {
  max-width: 1440px;
}

.rl-skin-icon-desc {
  font-weight: 300;
  line-height: 1.5;
  font-size: calc(0.43750000000000006vw + 14.6px);
}

.rl-icons-link {
  display: block;
}

.rl-icon-outline {
  width: calc(5.625vw + 92px);
  height: calc(5.625vw + 92px);
}


/*.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 {
  background-color: #fff;
}

.rl-skin-icons-wrapper .rl-skin-icon {
  fill: #868686;
}

.rl-skin-icons-wrapper:hover {
  /*border: 1px solid #3c3c3c;*/
  background-color: #868686;
}

.rl-skin-icons-wrapper:hover .rl-skin-icon {
  fill: #fff;
}

.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:hover {
  /*border: 1px solid #a0a0a0;*/
  background-color: #a0a0a0;
}

.rl-skin-icons-black-wrapper:hover .rl-skin-icon {
  fill: #fff;
}

.rl-column-icons {
  /*padding: calc(0.9375vw + 7px);*/
  /*padding: 22px 0 22px 0;*/
  /*25 -> 10*/
  height: auto;
}


/*--- 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-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;
  width: 200px;
  text-align: center;
  text-decoration: none;
}

.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;
}

.rl-button-default:hover {
  color: #82be0f;
  background-color: transparent;
  border: 2px solid #82be0f;
}

.rl-button-lg {
  font-size: 1.5rem;
  font-weight: 400;
}

.rl-button-md {
  font-size: 1.125rem;
  font-weight: 400;
}

.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-box1 {
  padding: calc(24.6px + 1.0625vw) calc(28px + 2.1875vw);
  background: #fff;
}

.rl-uppercase {
  text-transform: uppercase;
}


/*--- banner arrow ---*/

.banner-wrapper .arrow1 {
  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);
  /*44-30*/
  width: calc(0.8750000000000001vw + 27.2px);
  text-align: center;
  border-style: none;
  cursor: pointer;
}

.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);
  /*44-30*/
  width: calc(0.8750000000000001vw + 27.2px);
  text-align: center;
  border-style: none;
  -webkit-transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  cursor: pointer;
}

.banner-wrapper:hover .arrow {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.banner-wrapper .arrow i.fa {
  color: #fff;
  font-size: calc(17.6px + 0.75vw);
  /*32-20*/
}

.banner-wrapper .arrow1 i.fa {
  color: #fff;
  font-size: calc(17.6px + 0.75vw);
  /*32-20*/
}

.banner-wrapper .prev {
  position: absolute;
  left: 15px;
  top: 10%;
  bottom: 0;
  z-index: 10;
  margin: auto;
}

.banner-wrapper .next {
  position: absolute;
  right: 15px;
  top: 10%;
  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;
}


/*--- magnificPopup overwrite ---*/

.mfp-iframe-holder .mfp-content {
  max-width: 80%;
}


/*------------------------------------$ slick------------------------------------ */

.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-text {
  width: 100%;
  position: absolute;
  bottom: 40px;
  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: 'roboto', Light;
  font-size: 18px;
  color: #fff;
}


/*hr*/

.rl-hr {
  border-bottom: 1px;
  border-color: #cccccc;
  margin-top: 16px;
  margin-bottom: 16px;
}

.rl-banner-text-pos {
  position: absolute;
  bottom: 90px;
}


/*mask*/

.rl-home-showcase .mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  box-shadow: inset 0px -65px 60px 25px rgba(0, 0, 0, 0.9);
}

.rl-home-showcase:hover .mask {
  box-shadow: inset 0px -40px 80px 65px rgba(0, 0, 0, 0.86);
}

.rl-home-showcase .mask2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  box-shadow: inset 0px -40px 80px 35px rgba(0, 0, 0, 0.8)
}

.rl-home-showcase:hover .mask2 {
  box-shadow: inset 0px -40px 100px 45px rgba(0, 0, 0, 0.7);
}

.rl-showcase-info {
  width: 93%;
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.rl-showcase-logo {
  width: 100%;
  position: absolute;
  bottom: 68px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.card-title {
  line-height: 1.3;
  color: #fff;
  font-size: calc(0.125vw + 15.6px);
  font-family: Roboto;
  font-weight: 300;
  /*24-18*/
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}

.card-title2 {
  line-height: 1.3;
  color: #fff;
  font-size: calc(0.125vw + 15.6px);
  font-family: Roboto;
  font-weight: 300;
  /*24-18*/
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}

.rl-bg-start {
  background-image: url(/includes/images/rlhomeimg/background.jpg);
}

.rl-hidden {
  display: none !important;
}

.rl-whatnew-slick {
  padding-left: calc( 32px + 2.5vw);
  padding-right: calc( 32px + 2.5vw);
}

.rl-whatnew-slickitem {
  padding-left: 7.5px;
  padding-right: 7.5px
}

.rl-banner-text {
  font-weight: 300;
  font-size: calc(0.75vw + 15.6px);
}

#rl-topnavarea {
  position: fixed;
  width: 100%;
  z-index: 99;
}

#rl-topnavarea .rl-topnav {
  background-color: rgba(0, 0, 0, 0.3);
}

.rl-topnav .rl-menu .icon {
  fill: #fff;
}

#rl-topnavarea .rl-menu .show .icon {
  fill: #fff;
}

#rl-topnavarea .rl-logo .icon {
  fill: #fff;
}

#loginouttext {
  color: #fff !important;
}

#username {
  color: #666 !important;
}

@media screen and (max-width: 1199px) {
  .rl-column-skin2>div {
    width: calc(100% / 5) !important;
  }
}



@media screen and (max-width: 1440px) {
  /*.rl-icons-link {
    max-width: 50%;
  }*/
}

@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);
  }
  .rl-logos .rl-column-6>div {
    width: calc(100%/3)
  }
  .rl-logos .rl-column-2>div {
    width: calc(100%/2)
  }
}

@media screen and (max-width: 991px) {
  .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-logos .rl-column-6>div {
    width: calc(100%/3)
  }
  .rl-logos .rl-column-2>div {
    width: calc(100%/2)
  }
  /*.rl-icons-link {
    max-width: 50%;
  }*/
}

@media screen and (max-width: 767px) {
  .rl-column-skin2 {
    max-width: 590px !important;
  }
  .rl-column-skin2>div {
    width: calc(100% / 3) !important;
  }
  .rl-hidden {
    display: block !important;
  }
  .rl-visible {
    display: none !important;
  }
  .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);
  }
  .rl-logos .rl-column-6>div {
    width: calc(100%/3)
  }
  .rl-logos .rl-column-2>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 {
    height: auto;
  }
}

@media screen and (max-width: 575px) {
  .rl-column-skin2 {
    max-width: 380px !important;
  }
  .rl-column-skin2>div {
    width: calc(100% / 2) !important;
  }
  .rl-text-center-xs {
    text-align: center;
  }
  .rl-text-left-xs {
    text-align: left;
  }
  .rl-text-right-xs {
    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);
  }
  .rl-logos .rl-column-6>div {
    width: calc(100%/3)
  }
  .rl-banner-mobile-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .rl-banner-text-pos {
    bottom: 40px;
  }
}