/* 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, 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 {
    margin-top: 0;
    margin-bottom: 0px;
}

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;
    -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','Microsoft JhengHei', sans-serif;
    color: #555;
    font-weight: 400;
}

/*-----Link Style-----*/

a {
    color: #36a6e9;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    color: #36a6e9;
    font-weight: 400;
    text-decoration: none;
}

a:focus,
a:active,
a:active:focus {
    color: #36a6e9;
    font-weight: 400;
    outline: none;
    text-decoration: none;
}

.nav > li > a:hover {
    text-decoration: none;
    font-weight: 400;
    background-color: inherit;
}

.label-paragraph {
    color: #36a6e9;
    font-style: italic;
    font-weight: 500;
}

.rl-herf-underline {
    text-decoration: underline;
}

.rl-herf-underline:hover {
    text-decoration: none;
}

/*----------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;
}

/*--------section------ */

.rl-banner {
    background-image: url(/includes/shared/education/main.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 29.08333vw;
    min-height: 500px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    display: -webkit-flex;
}

.rl-banner-other {
    background-image: url(/includes/shared/education/bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 10vw;
    min-height: 200px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

.rl-banner-text {
    font-size: calc(1.128472222222222vw + 66.33333333333333px);
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.rl-banner-subtitle {
    font-size: calc(0.5208333333333333vw + 26px);
    color: #ccc;
}

.rl-hidden {
    display: none !important;
}

/*------------------------------------
                $flex-box
------------------------------------*/

.rl-flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rl-flex-wrap.full-width > div {
    width: 100%;
}

.rl-flex-nowrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.rl-justify-content-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.rl-justify-content-flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rl-justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rl-justify-content-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rl-justify-content-space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.rl-align-items-flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rl-align-items-flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.rl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rl-align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.rl-align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.rl-align-content-flex-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.rl-align-content-flex-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.rl-align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.rl-align-content-space-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.rl-align-content-space-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.rl-align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.rl-align-self-flex-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.rl-align-self-flex-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.rl-align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.rl-align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.rl-align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

/*------------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: #36a6e9 1px solid;
    background-color: transparent;
    color: #36a6e9;
    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-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.rl-flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.rl-banner-but:hover {
    background-color: #36a6e9;
    color: #ffffff;
}

.rl-banner-but-black {
    font-size: calc(0.8750000000000001vw + 13.2px);

    /*30(1920px)-16(320px)*/
    border: #36a6e9 1px solid;
    background-color: #36a6e9;
    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-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: 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: #36a6e9;
}

.rl-banner-but-black:hover svg {
    fill: #36a6e9;
}

/*--------text-size------ */

.rl-text-h1 {
    font-size: calc(1vw + 28.8px);
}

.rl-text-h2 {
    font-size: calc(0.5vw + 26.4px);
}

.rl-text-h3 {
    font-size: calc(0.375vw + 22.8px);
}

.rl-text-desc-lg {
    font-size: calc(0.25vw + 19.2px);
}

.rl-text-desc-md {
    font-size: calc(0.125vw + 19.6px);
}

.rl-text-desc-sm {
    font-size: calc(0.125vw + 15.6px);
}

.rl-text-desc-xs {
    font-size: calc(0.125vw + 13.6px);
}

.rl-lineheight-1 {
    line-height: 1;
}

.rl-lineheight-11 {
    line-height: 1.1;
}

.rl-lineheight-12 {
    line-height: 1.2;
}

.rl-lineheight-13 {
    line-height: 1.3;
}

.rl-lineheight-14 {
    line-height: 1.4;
}

.rl-lineheight-15 {
    line-height: 1.5;
}

.rl-uppercase {
    text-transform: uppercase;
}

.rl-lowercase {
    text-transform: lowercase;
}

.rl-text-desc {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
}

.rl-announcement-text {
    font-size: 20px;
}

/*--------font-weight------ */
.rl-fw-500 {
    font-weight: 500;
}

.rl-fw-700 {
    font-weight: 700;
}

/*--------text-align------ */

.rl-text-center {
    text-align: center;
}

.rl-text-left {
    text-align: left;
}

.rl-text-right {
    text-align: right;
}

/*----- 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-bottom: calc( 32px + 2.5vw);
}

.rl-row--top-80to20 {
    padding-top: calc(3.75vw + 8px);
}

/*----- 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);
}

.rl-row-bottom-70 {
    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-calc-30 {
    padding-top: calc(0.4340277777777778vw + 21.666666666666668px);
    padding-bottom: calc(0.4340277777777778vw + 21.666666666666668px);
}

.rl-row-top-calc-30 {
    padding-top: calc(0.4340277777777778vw + 21.666666666666668px);
}

.rl-row-bottom-calc-30 {
    padding-bottom: calc(0.4340277777777778vw + 21.666666666666668px);
}
.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-calc-25 {
    padding-top: calc(0.78125vw + 10px);
    padding-bottom: calc(0.78125vw + 10px);
}

.rl-row-top-calc-25 {
    padding-top: calc(0.78125vw + 10px);
}

.rl-row-bottom-calc-25 {
    padding-bottom: calc(0.78125vw + 10px);
}

.rl-row-25 {
    padding-top: calc(0.8125vw + 9.4px);
    padding-bottom: calc(0.8125vw + 9.4px);
}

.rl-row-top-25 {
    padding-top: calc(0.8125vw + 9.4px);
}

.rl-row-bottom-25 {
    padding-bottom: calc(0.8125vw + 9.4px);
}

/*----- 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;
}

/*-----img------ */

.rl-img-response {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*-----bg-color------ */

.rl-color-pure-white {
    color: #fff;
}

.rl-color-white {
    color: #e4e4e4;
}

.rl-color-black {
    color: #555;
}

/*------------------------------------$Play button------------------------------------ */

.rl-rel {
    position: relative;
    display: block;
}

.rl-play-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: calc(1.5625vw + 50px);
    height: calc(1.5625vw + 50px);
    border-radius: 50%;
    border: 4px solid #fff;
    margin: auto;
    background: rgba(98, 98, 98, 0.5);
    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), -webkit-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);
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    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(0.46875vw + 6px) 0 calc(0.46875vw + 6px) calc(0.78125vw + 10px);
    border-color: transparent transparent transparent #fff;
    margin-left: calc(0.375vw + 2.8px);
}

/*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-9 {
    margin-left: -9px;
    margin-right: -9px;
}

.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-9 > div {
    padding-left: 9px;
    padding-right: 9px;
}

.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);
}

/*--- button ---*/

.rl-button {
    display: inline-block;
    line-height: 34px;
    min-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: #36a6e9;
    border: 2px solid #36a6e9;
    border-radius: 0;
    outline: none;
}

.rl-button-default:hover {
    color: #36a6e9;
    background-color: transparent;
    border: 2px solid #36a6e9;
}

.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 > i {
    margin-left: calc(8px + 0.625vw);
    margin-top: calc(2.6px + 0.125vw);
    margin-bottom: calc(2.6px + 0.125vw);
}

/* 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: '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;
}

/*--- magnificPopup overwrite ---*/

.mfp-iframe-holder .mfp-content {
    max-width: 80%;
}

/*--- banner arrow ---*/

.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;
    transition: box-shadow 0.2s ease-out;
    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;
    transition: box-shadow 0.2s ease-out;
    box-shadow: inset 0px 0px 60px 25px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.horizon {
    width: 50%;
    margin: 0 auto;
    min-width: 614px;
}

.resource-link {
    color: rgb(102, 102, 102);
    text-decoration-line: underline;
}

.resource-link:hover {
    color: #36a6e9;
    text-decoration-line: underline;
}

/*------------------------------------
            $subcategory
------------------------------------*/

.subcategory {
    background-color: #f0f0f0;
    min-height: 100px;
    width: 100%;
    overflow: hidden;
}

.subcategory .slick-list {
    width: 100%;
}

.subcategory .slick-arrow {
    height: 100%;
    background-color: #3d84af;
    z-index: 1;
}

.subcategory .slick-arrow.slick-disabled {
    height: 100%;
    background-color: #ccc;
    z-index: 1;
}

.subcategory .slick-arrow:before {
    font-family: FontAwesome;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
}

.subcategory .slick-prev:before,
.subcategory .slick-next:before {
    color: #fff;
}

.subcategory .slick-prev, .subcategory .slick-next {
    transform: translate(0);
    top: 0;
    width: 30px;
}

.subcategory .slick-prev {
    left: -15px;
}

.subcategory .slick-prev:before {
    content: '\f104';
}

.subcategory .slick-next {
    right: -15px;
}

.subcategory .slick-next:before {
    content: '\f105';
}

.subCategory-title {
    font-size: calc(0.3125vw + 16px);
    padding-top: 10px;
}

.subcategory-tab {
    background-color: #f0f0f0;
    width: calc(100%/5);
    min-height: 100px;
    text-align: center;
    line-height: 1;
    padding: 0 5px;
    transition: background-color 0.2s;
    position: relative;
}

.subcategory-tab a {
    color: #666;
    font-size: calc(0.125vw + 15.6px);
    text-transform: uppercase;
}

.subcategory-tab.active {
    background-color: #57bdfb;
}

.subcategory-tab.active a {
    color: #fff;
}

.subcategory-tab.active > a:after {
    background-color: #57bdfb;
    height: 8px;
}

.subcategory-tab:hover {
    background-color: #57bdfb;
}

.subcategory-tab:hover a {
    color: #fff;
}

.subcategory-tab > a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    -webkit-transition: height 0.3s ease-out;
    transition: height 0.3s ease-out;
}

.subcategory-tab:hover .subcategory-icon {
    fill: #fff;
}

.subcategory-in {
    padding: 18px 0 18px 0 !important;
}

.subcategory-icon {
    fill: #666;
    width: 35px;
    height: 35px;
}

.active .subcategory-icon {
    fill: #fff;
}

/*------------------------------------
            $pagination
------------------------------------*/

.pagination-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: calc(0.9375vw + 22px);

    /*40-25*/
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    border-radius: 4px;
    margin: 0;
}

.pagination a {
    color: #555;
    float: left;
    font-size: calc(0.125vw + 13.6px);

    /*16px-14px*/
    padding: 0.5px 6.5px;
    margin: 0 5px;
    line-height: 21px;
}

.pagination a,
.pagination a:hover,
.pagination a:focus,
.pagination a:active,
.pagination a:focus:active {
    text-decoration: none;
}

.pagination a:first-child,
.pagination a:last-child {
    border: 1px solid #ddd;
    line-height: 19px;
}

.pagination a:first-child:hover,
.pagination a:last-child:hover {
    border: 1px solid #36a6e9;
    color: #36a6e9;
}

.pagination a.disabled,
.pagination a.disabled:hover {
    border: 1px solid #dbdbdb;
    color: #dbdbdb;
    cursor: default;
}

.pagination a.blah,
.pagination a.blah:hover {
    cursor: default;
    outline: none;
}

.pagination a.active {
    background-color: #36a6e9;
    color: white;
}

.pagination a:hover:not(.active):not(:first-child):not(:last-child):not(.blah) {
    background-color: #36a6e9;
    color: #fff;
}

/*------------------------------------
            $anchor
------------------------------------*/

.anchor {
    /* background-color: #e6f0fe; */
}

.anchor-container > div {
    padding: 0 calc(1.7361111111111112vw + 16.666666666666668px);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-right: 1px solid #b5b5b5;
    font-size: calc(0.25vw + 15.2px);
    font-weight: 300;
    line-height: 1.1;
    cursor: pointer;
    margin-top: 10px;
}

.anchor-container > div:first-child {
    /* padding-left: 0; */
}

.anchor-container > div:last-child {
    border: none;
}

.anchor-container > div > a {
    color: #666;
    font-weight: 400;
    text-decoration-line: none;
}

.anchor-container > div:hover > a,
.anchor-container > div:active > a,
.anchor-container > div:focus > a,
.anchor-container > div.active > a {
    color: #36a6e9;
    text-decoration-line: none;
}

.anchor-container > div:first-child {
    border-left: none;
}

@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 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);
    }
}

@media screen and (max-width: 768px) {
    .horizon {
        width: 80%;
        min-width: auto;
    }

    .rl-banner-text {
        font-size: calc(9.598214285714286vw + 1.2857142857142858px);
    }

    .rl-banner-subtitle {
        font-size: calc(2.6785714285714284vw + 9.428571428571429px);
    }

    .rl-visible {
        display: none !important;
    }

    .rl-hidden {
        display: block !important;
    }

    .rl-banner-xs {
        background-image: url(/includes/shared/education/mobile_768.jpg);
        height: calc(44.742729306487696vw + 256.8232662192394px);
        min-height: inherit;
    }

    .rl-banner-other-xs {
        height: 100px;
        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);
    }

    .rl-banner-mobile-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;
    }

    .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-mobile-bot {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
        text-align: center;
    }

    .rl-banner-mobile-bot-60 {
        margin-bottom: 60px;
    }
}

@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;
    }
}

.slick-track {
    margin: 0 auto;
}

.banner-slide .slick-dots {
    bottom: 15px;
}

.banner-slide .slick-dots li button:before {
    color: #fff;
}

.banner-slide .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    Display: none !important;
}
