@font-face {
    font-family: 'Barlow';
    src: url("../fonts/Barlow-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'tungstenw05-medium';
    src: url('../fonts/tungstenw05-medium.woff2') format('woff2'),
        url('../fonts/tungstenw05-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Layout for search container */
.search-icon {
    position: absolute;
    right: 140px;
    top: 47px;
    z-index: 1;
}

.search {
    position: relative;
    text-align: center;
}

.search {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    overflow: hidden;
    /*display:none;*/
    opacity: 0;
    visibility: hidden;
    /*width: 100%;*/
    height: 100vh;
}

.search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
}

.search__inner {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    background: #f0f0f0;
}

.search__inner--up {
    color: #333333;
    background: #ffffff;
}

.search__inner--down {
    top: 50%;
    color: #f8f8f8;
    background: #f8f8f8;
}

.btn--search-close {
    font-size: 2em;
    position: absolute;
    z-index: 100;
    top: 1.25em;
    right: 1.25em;
    display: none;
}

.btn--search-close {
    display: block;
}

.search__form {
    width: 75%;
    max-width: 900px;
    /*margin: 0 auto;*/
}

.search__input {
    font-size: 7vw;
    line-height: 1;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 0 0 0.1em 0;
    color: inherit;
    border-bottom: 4px solid !important;
}

.search__input::-webkit-input-placeholder {
    opacity: 0.1;
    /* WebKit, Blink, Edge */
    color: #fff;
}

.search__input::-moz-placeholder {
    opacity: 0.1;
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.search__input:-ms-input-placeholder {
    opacity: 0.1;
    /* Internet Explorer 10-11 */
    color: #fff;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.search__input::-ms-clear {
    display: none;
}

.search__info {
    font-size: 90%;
    font-weight: bold;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0.85em 0;
    text-align: right;
}

.search__related {
    display: flex;
    width: 75%;
    max-width: 900px;
    pointer-events: none;
}

.search__suggestion {
    width: 50%;
    padding: 0 1em 0 0;
    text-align: left;
}

.search__suggestion:last-child {
    padding: 0 0 0 1em;
}

.search__suggestion h3 {
    font-size: 1.35em;
    margin-bottom: 20px;
    color: #777777;
}

.search__suggestion h3::before {
    content: '\21FE';
    display: inline-block;
    padding: 0 0.5em 0 0;
}

.search__suggestion p {
    font-size: 1.15em;
    line-height: 1.4;
    margin: 0.75em 0 0 0;
}

/************************/
/* Transitions 			*/
/************************/

/*.main-wrap {
	transition: transform 0.6s, opacity 0.6s;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}*/
.main-wrap--hide {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
}

.search {
    pointer-events: none;
}

.search--open {
    pointer-events: auto;
    /*display:block !important;*/
    opacity: 1;
    visibility: visible;
}

.search::before {
    opacity: 0;
    transition: opacity 0.6s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.search--open::before {
    opacity: 1;
}

/* Search button */
.btn--search {
    transition: opacity 0.1s;
}

.main-wrap--hide .btn--search {
    opacity: 0;
    transition-delay: 0.1s;
}

/* Close button */
.btn--search-close {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
    transition: opacity 0.6s, transform 0.6s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.search--open .btn--search-close {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* Halfs */
.search__inner {
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.search__inner--up {
    transform: translate3d(0, -100%, 0);
}

.search__inner--down {
    transform: translate3d(0, 100%, 0);
}

.search--open .search__inner {
    transform: translate3d(0, 0, 0);
}

.search__suggestion {
    transform: translate3d(0, 150px, 0);
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.search--open .search__suggestion {
    transform: translate3d(0, 0, 0);
    transition-delay: 0.05s;
}

.search--open .search__suggestion:last-child {
    transition-delay: 0.1s;
}

/* Buttons */

.btn1 {
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.btn--search {
    font-size: 1.5em;
}

/* Reset Search Input */

.search__input {
    border: 0;
    background: transparent;
    border-radius: 0;
    -webkit-appearance: none;
}

.search__input:focus {
    outline: none;
}

/* Links */

.btn1 {
    text-decoration: none;
    color: #d17c78;
    /* outline: none; */
}

.hidden1 {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Icons */

.icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 auto;
    fill: currentColor;
}

/* Demo colors */

/*.demo-9 {
	color: #2d3535;
	background-color: #597571;
}*/
.search__color a,
.search__color .btn1 {
    color: #fff;
    font-size: 20px;
}

.search__color .btn--search-close {
    background-color: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 8px;
    color: #FFFFFF !important;
}

.search__suggestion .tags-on-fly {
    border: 1px solid #000;
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin: 8px 16px 8px 0;
    padding: 10px 18px;
    transition: all 0.3s ease-in-out 0.1s;
}

.search__suggestion .tags-on-fly:hover {
    background: #000;
    color: #fff;
}

@media screen and (max-width: 40em) {
    .btn--search-close {
        font-size: 1.25em;
    }

    .search__suggestion {
        width: 100%;
    }

    .search__suggestion:last-child {
        display: none;
    }

    .search-wrap {
        font-size: 0.85em;
        position: absolute;
        /*top: 2.15em;
	right: 2em;*/
    }
}

@media all and (max-width: 1024px) {
    .search-icon {
        right: 100px;
    }
}

@media all and (max-width: 640px) {
    .search-icon {
        right: 85px;
    }
}

/*--------------------------------------------------------------
# CSS Document
--------------------------------------------------------------*/
.xf-content-height {
    margin: 0 !important;
    min-height: 0 !important;
}

/*Override AEM inbult class*/
/* Tungsten URL CSS for LIVE "https://cloud.typography.com/6060236/7538192/css/fonts.css" */


.skip-main-cnt,
.skip-footer {
    background: #df9926;
    height: auto;
    left: 0%;
    padding: 8px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
    color: #000000;
    z-index: 9999;
    outline: 0 !important;
}

.skip-main-cnt:focus,
.skip-footer:focus {
    transform: translateY(0%);
    color: #000;
}

body,
html {
    font-family: 'Barlow';
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    padding: 0;
    margin: 0;
}

.h1,
.h2,
.h2-heading {
    font-weight: 500;
    margin: 0 0 30px;
}

.h1,
h1 {
    font-size: 80px;
    line-height: 80px;
}

.h2,
h2 {
    font-size: 67px;
    line-height: 67px;
}

.h3,
h3 {
    font-size: 30px;
    line-height: 30px;
}

.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
}

a {
    color: #007cc3;
    font-weight: 400;
    outline: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -ms-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

a:hover,
a:focus {
    color: #007cc3;
    text-decoration: none;
}

.ms-rtestate-field h1,
h1.ms-rteElement-H1,
.ms-rtestate-field h2,
h2.ms-rteElement-H2 {
    color: inherit;
}

ul.list-items {
    padding: 0;
}

ul.list-items>li {
    margin-bottom: 10px;
    display: block;
    padding-left: 20px;
    background-image: url(../uploads/services/svg/right-chevron-blue.svg);
    background-repeat: no-repeat;
    background-position: 0 6px;
}

ul.list-items>li>ul>li {
    background-image: url(../uploads/services/svg/list-second-blue.svg);
    padding-left: 25px;
}

.breadcrumb.aem-GridColumn {
    margin: 0;
    padding: 0;
}

.career-burger {
    margin-bottom: 0px !important;
}

span.career-block {
    display: block;
}

/*--------------------------------------------------------------
# No-gutters - Desktop
--------------------------------------------------------------*/

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*--------------------------------------------------------------
# iframe[google_conversion_frame] - Desktop
--------------------------------------------------------------*/

iframe[name=google_conversion_frame] {
    display: none;
}

/*--------------------------------------------------------------
# Relative - Desktop
--------------------------------------------------------------*/

.relative {
    position: relative;
}

/*--------------------------------------------------------------
# Hover Shutter animation - Desktop
--------------------------------------------------------------*/

a.btn-shutter {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 12px 50px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

a.btn-shutter:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #FFFFFF;
    z-index: -1;
}

a.btn-shutter:hover {
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #000000;
}

a.btn-shutter:hover:before {
    width: 100%;
}

/*--------------------------------------------------------------
# Black txt Hover Shutter animation - Desktop
--------------------------------------------------------------*/

a.btn-shutter-black {
    color: #000000;
    border: 1px solid #000000;
}

a.btn-shutter-black:before {
    background-color: #000000;
}

a.btn-shutter-black:hover {
    border: 1px solid #000000;
    background-color: transparent;
    color: #ffffff;
}

a.btn-shutter-black:hover:before {
    width: 100%;
}

/* Learn More */
.btn-shutter-faqs,
.btn-shutter-more {
    color: #fff;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    letter-spacing: 1.5px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
}

.btn-shutter-more {
    padding: 12px 70px;
}

.btn-shutter-faqs {
    padding: 12px 40px;
}

.btn-shutter-faqs:before,
.btn-shutter-more:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000;
    z-index: -1;
}

.btn-shutter-faqs:hover,
.btn-shutter-more:hover {
    border: 1px solid #000;
    background-color: transparent;
    color: #ffffff;
}

.btn-shutter-faqs:hover::before,
.btn-shutter-more:hover:before {
    width: 100%;
}

/*--------------------------------------------------------------
# Border_Switch_Effect - Desktop
--------------------------------------------------------------*/

a.border_switch_effect {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    margin-top: 15px;
    color: #fff;
    display: inline-block;
    font-weight: 400;
    outline: medium none;
    position: relative;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

a.border_switch_effect::before {
    left: 0;
    top: 0;
    transform: rotate(90deg);
    transform-origin: 0 0 0;
}

a.border_switch_effect::before,
a.border_switch_effect::after {
    background-color: #fff;
    content: "";
    height: 2px;
    pointer-events: none;
    position: absolute;
    transition: all 0.3s ease 0.1s;
    width: 45px;
}

a.border_switch_effect::after {
    bottom: 0;
    right: 0;
    transform: rotate(90deg);
    transform-origin: 100% 0 0;
}

a.border_switch_effect:hover::before,
a.border_switch_effect:focus::before {
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
}

a.border_switch_effect:hover::before,
a.border_switch_effect:hover::after,
a.border_switch_effect:focus::before,
a.border_switch_effect:focus::after {
    opacity: 1;
}

a.border_switch_effect:hover::after,
a.border_switch_effect:focus::after {
    right: 50%;
    transform: rotate(0deg) translateX(50%);
}

/*--------------------------------------------------------------
# Brackets_Effect - Desktop
--------------------------------------------------------------*/

a.brackets_effect {
    color: #fff;
    font-weight: 400;
}

a.brackets_effect:hover,
a.brackets_effect:focus {
    color: #333333;
}

a.brackets_effect::before,
a.brackets_effect::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

a.brackets_effect::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

a.brackets_effect::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

a.brackets_effect:hover::before,
a.brackets_effect:hover::after,
a.brackets_effect:focus::before,
a.brackets_effect:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

/*--------------------------------------------------------------
# Background Color CSS - Desktop
--------------------------------------------------------------*/

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-sapphire {
    background-color: #061838 !important;
}

.bg-sapphire-medium {
    background-color: #0271b1 !important;
}

.bg-sapphire-light {
    background-color: #92D1FF !important;
}

.bg-sapphire-lbg {
    background-color: #BEE3FF !important;
}

.bg-coral {
    background-color: #4C0519 !important;
}

.bg-coral-medium {
    background-color: #d1391a !important;
}

.bg-coral-light {
    background-color: #FBC2BA !important;
}

.bg-coral-lbg {
    background-color: #FCDDD6 !important;
}

.bg-topaz {
    background-color: #2F1113 !important;
}

.bg-topaz-medium {
    background-color: #de4121 !important;
}

.bg-topaz-light {
    background-color: #EAC8A5 !important;
}

.bg-topaz-lbg {
    background-color: #ECE1CE !important;
}

.bg-jade {
    background-color: #09321D !important;
}

/*.bg-jade-medium {
	background-color: #00B28F !important;
}*/
.bg-jade-medium {
    background-color: #00866a !important;
}

.bg-jade-light {
    background-color: #A8D7CD !important;
}

.bg-jade-lbg {
    background-color: #D8E7DA !important;
}

.bg-amethyst {
    background-color: #372261 !important;
}

.bg-amethyst-medium {
    background-color: #8e2d8d !important;
}

.bg-amethyst-light {
    background-color: #D0B5D5 !important;
}

.bg-amethyst-lbg {
    background-color: #E6DBE6 !important;
}

.bg-primary {
    background-color: #337ab7 !important;
}

.bg-onyx {
    background-color: #3F3F3F !important;
}

.bg-onyx-medium {
    background-color: #7E7E7E !important;
}

.bg-onyx-light {
    background-color: #B8B8B8 !important;
}

.bg-onyx-lbg {
    background-color: #DADADA !important;
}

.contactus-gradient {
    background-color: #7E7E7E !important;
}

.bg_blue {
    background-color: #0271b1 !important;
}

.bg-blue-dark {
    background-color: #095487 !important;
}

.bg-sky-blue {
    background-color: #0f9ffa29 !important;
}

.bg-light-green {
    background-color: #25f6c2 !important;
}

.bg-chocolate-light {
    background-color: #963554 !important;
}
.bg-grayed-blue{
    background-color: #6183A6 !important;
}
/*--------------------------------------------------------------
# Color CSS - Desktop
--------------------------------------------------------------*/

.color-white,
.white-color {
    color: #ffffff !important;
}

.color-black {
    color: #000000 !important;
}

.color-sapphire-d {
    color: #061838 !important;
}

.color-sapphire-m {
    color: #0F9FFA !important;
}

.color-sapphire-l {
    color: #92D1FF !important;
}

.color-sapphire-lbg {
    color: #BEE3FF !important;
}

.color-coral-d {
    color: #4C0519 !important;
}

.color-coral-m {
    color: #F16C51 !important;
}

.color-coral-l {
    color: #FBC2BA !important;
}

.color-coral-lbg {
    color: #FCDDD6 !important;
}

.color-topaz-d {
    color: #2F1113 !important;
}

.color-topaz-m {
    color: #DF9926 !important;
}

.color-topaz-l {
    color: #EAC8A5 !important;
}

.color-topaz-lbg {
    color: #ECE1CE !important;
}

.color-jade-d {
    color: #09321D !important;
}

.color-jade-m {
    color: #00B28F !important;
}

.color-jade-l {
    color: #A8D7CD !important;
}

.color-jade-lbg {
    color: #D8E7DA !important;
}

.color-amethyst-d {
    color: #372261 !important;
}

.color-amethyst-m {
    color: #963596 !important;
}

.color-amethyst-l {
    color: #D0B5D5 !important;
}

.color-amethyst-lbg {
    color: #E6DBE6 !important;
}

.color-onyx-d {
    color: #3F3F3F !important;
}

.color-onyx-m {
    color: #7E7E7E !important;
}

.color-onyx-l {
    color: #B8B8B8 !important;
}

.color-onyx-lbg {
    color: #DADADA !important;
}

/*--------------------------------------------------------------
# Fontweight - Desktop
--------------------------------------------------------------*/

.fontweight300 {
    font-weight: 300 !important;
}

.fontweight400 {
    font-weight: 400 !important;
}

.fontweight500 {
    font-weight: 500 !important;
}

.fontweight600 {
    font-weight: 600 !important;
}

.fontweight700 {
    font-weight: 700 !important;
}

.fontweight900 {
    font-weight: 900 !important;
}

/*--------------------------------------------------------------
# None - Desktop
--------------------------------------------------------------*/

.none {
    display: none;
}

/*--------------------------------------------------------------
# Block - Desktop
--------------------------------------------------------------*/

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

/*--------------------------------------------------------------
# Arrow Animation - Desktop
--------------------------------------------------------------*/

.left-arrow,
.left-arrow:hover {
    color: #FFFFFF;
}

.left-arrow img.arrow-move {
    position: relative;
    left: 0px;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.left-arrow:hover img.arrow-move {
    left: 5px;
}

/*--------------------------------------------------------------
# Contact Ribbon - Desktop
--------------------------------------------------------------*/

.contact {
    background-color: #e8e8e8;
    color: #000 !important;
    font-size: 12px;
    height: 40px;
    line-height: 23px;
    padding: 10px;
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
    -moz-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
    -ms-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
    -o-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
    transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
    width: 100px;
    z-index: 999;
    text-decoration: inherit;
}

.contact::before {
    background-color: rgba(232, 232, 232, 0.6);
    content: "";
    height: 40px;
    padding: 10px 20px;
    position: absolute;
    right: -20px;
    top: 19px;
    -webkit-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
    -moz-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
    -ms-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
    -o-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
    transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
    width: 120px;
    z-index: -1;
    text-decoration: inherit;
}

.contact_none {
    visibility: hidden;
}

/*--------------------------------------------------------------
# Move to top scroll - Desktop
--------------------------------------------------------------*/

.scroll-up {
    position: fixed;
    bottom: 20px;
    right: 24px;
    display: none;
    z-index: 1;
    background: #bfc2ff;
    padding: 11px 11px 5px 11px;
    border-radius: 100%;
}

.scroll-up i {
    font-size: 28px;
}

/*--------------------------------------------------------------
# Ribbon - Desktop
--------------------------------------------------------------*/

.ribbon {
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Progressbar - Desktop
--------------------------------------------------------------*/

.progressbar {
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 2px;
    z-index: 1110;
}

.progressbar .width {
    background-color: #92D1FF;
    height: 2px;
    width: 0;
}

/*--------------------------------------------------------------
# Stats CSS - Desktop
--------------------------------------------------------------*/

.stats [class*="col-"] {
    text-align: center;
    margin-bottom: 60px;
}

.stats [class*="col-"]:nth-of-type(4),
.stats [class*="col-"]:nth-of-type(5),
.stats [class*="col-"]:nth-of-type(6) {
    margin-bottom: 0;
}

.aboutus-grid .aboutus-grid-title,
.stats .number {
    font-size: 80px;
    color: #000;
    position: relative;
    font-weight: 900;
    margin-bottom: 0;
}

.stats .symbol {
    color: #000;
    font-size: 58px;
    margin-top: 15px;
    position: absolute;
    font-weight: 300 !important;
}

.stats sup,
.stats .sup {
    color: #000;
    font-size: 22px !important;
    top: -1.7em;
}

.stats .sup {
    top: 0;
}

/*--------------------------------------------------------------
# Margin CSS - Desktop
--------------------------------------------------------------*/

.m0 {
    margin: 0 !important;
}

.ml25 {
    margin-left: 25px !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mtb1 {
    margin: 10px auto !important;
}

.mtb2 {
    margin: 20px auto !important;
}

.mtb3 {
    margin: 30px auto !important;
}

.mtb4 {
    margin: 40px auto !important;
}

.mtb5 {
    margin: 50px auto !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb1 {
    margin-bottom: 10px !important;
}

.mb2 {
    margin-bottom: 20px !important;
}

.mb3 {
    margin-bottom: 30px !important;
}

.mb4 {
    margin-bottom: 40px !important;
}

.mb5 {
    margin-bottom: 50px !important;
}

.mb6 {
    margin-bottom: 60px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

/*--------------------------------------------------------------
# Padding CSS - Desktop
--------------------------------------------------------------*/

.p0 {
    padding: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0px !important;
}

.pb1 {
    padding-bottom: 10px !important;
}

.pb2 {
    padding-bottom: 20px !important;
}

.pb3 {
    padding-bottom: 30px !important;
}

.pb4 {
    padding-bottom: 40px !important;
}

.pb5 {
    padding-bottom: 50px !important;
}

.pb6 {
    padding-bottom: 60px !important;
}

.ptb0 {
    padding: 0 auto !important;
}

.ptb15 {
    padding: 15px 0 !important;
}

.ptb30 {
    padding: 30px 0 !important;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

/*--------------------------------------------------------------
# Contact us Iframe CSS - Desktop
--------------------------------------------------------------*/

.iframe-contact-ht {
    height: 810px;
    width: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Half grid bottom - Desktop
--------------------------------------------------------------*/

.half-grid [class*=col-] {
    margin-bottom: 20px;
}


/* User Icon Start */
.user-icon {
    position: absolute;
    right: 189px;
    font-size: 25px;
    top: 21px;
    z-index: 9999;
}

.user-icon a {
    color: #FFFFFF;
    font-size: 25px;
}

.user-icon a i {
    font-size: 25px;
}

.user-icon.open .dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-icon .dropdown-menu>li>a {
    font-size: 14px;
}

.hide-urls {
    display: none;
}

@media screen and (max-width: 992px) {
    .user-icon {
        right: 140px;
    }

    .user-icon .dropdown-menu {
        left: -3px;
    }
}

/* User Icon End */


/*--------------------------------------------------------------
# Equal Height CSS - Desktop
--------------------------------------------------------------*/

.eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eq-height:before,
.eq-height:after {
    content: normal;
}

.eqh-box {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 15px;
}

.eq-height [class*="col-"] {
    margin-bottom: 25px;
}

.eq-height .eqh-box {
    background-color: #f2f2f2;
}

.eq-height .eqh-box>a {
    font-size: 18px;
    color: #000;
    font-weight: 300;
}

.eq-height .eqh-box>a:hover {
    color: #007cc3;
}

.eq-height .eqh-box .eq-ht-title {
    margin: 0 0 10px;
    font-weight: 600;
}

.eq-height .box-cnt {
    padding: 15px;
}

.eq-height .box-cnt a,
.eq-height .box-cnt a:visited {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
}

.eq-height .box-cnt a:hover {
    color: #007cc3;
}

.eq-height .eqh-box img {
    max-width: none;
    transform: translate3d(-40px, 0px, 0px);
    transition: all 0.5s ease 0.1s;
    width: calc(100% + 40px);
}

.eq-height .eqh-box:hover img {
    transform: translate3d(0px, 0px, 0px);
}

.eq-height a>.eqh-box {
    font-size: 18px;
    font-weight: 300;
}

.eq-height .eqh-box>a:hover {
    color: #007cc3;
}

.eq-height .list-item-bdr {
    height: 4px;
    margin: 10px 0;
    width: 10px;
    background-color: #FFFFFF;
    display: block;
    transition: all 0.5s ease 0.1s;
}

.eq-height .eqh-box:hover .list-item-bdr {
    width: 45px;
}

.btn-bottom {
    bottom: 20px;
    font-size: 14px !important;
    font-weight: 900 !important;
    position: absolute !important;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Promo Boxes - Desktop
--------------------------------------------------------------*/

.promo-align {
    padding: 25px;
    background-color: #963596;
    color: #fff;
}

.promo-title {
    margin-bottom: 0px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    color: #ffffff;
}

.promo-btn {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #372261;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 25px 0;
    background-color: #372261;
    text-transform: uppercase;
}

.promo-btn:hover {
    border: 1px solid #d0b5d5;
    color: #000;
    background-color: #d0b5d5;
}

/*--------------------------------------------------------------
# Our Offerings - Desktop
--------------------------------------------------------------*/

.offerings-row {
    border-top: 1px solid #858585;
    margin-left: 15%;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 1;
    transition: 0.5s all;
}

.offering-hover {
    position: relative;
}

.offerings-hover {
    display: block !important;
    opacity: 0.4;
    position: relative;
}

.border-left {
    width: 6px;
    height: 0%;
    position: absolute;
    left: 0;
    background: #337ab7;
    transition: all 0.5s;
}

.offering-hover:hover .border-left {
    height: 100%;
}

.offering-title {
    font-size: 40px;
    color: #000000;
    font-weight: 900;
    line-height: 40px;
}

ul.offering-list {
    padding: 0px;
}

ul.offering-list li {
    list-style-type: none;
    padding-left: 26px;
    margin-bottom: 30px;
    font-weight: 400;
}

ul.offering-list li span {
    position: relative;
    left: 0;
    transition: all 0.3s ease 0.1s;
}

ul.offering-list li:hover span {
    left: 5px;
}

ul.offering-list li img {
    margin-right: 5px;
    max-width: 30px;
}


/*--------------------------------------------------------------
# Stories Items - Desktop
--------------------------------------------------------------*/

.stories-items {
    float: left;
    width: 100%;
    clear: both;
    margin-top: 2rem;
}

.stories-items .stories-txt a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
}

/*.stories-items .stories-txt p {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	line-height: 25px;
}*/
.stories-title {
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 15px;
}

.stories-txt {
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.stories-txt img.img-responsive {
    max-width: none;
    transform: translate3d(-40px, 0px, 0px);
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
    width: calc(100% + 40px);
}

.stories-txt:hover img.img-responsive {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.stories-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Border - Desktop
--------------------------------------------------------------*/

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex [class*="col-"] {
    margin-bottom: 20px;
}

.border-cross a {
    display: block;
    color: #000;
    padding: 15px;
}

.border-cross {
    display: inline-block;
    position: relative;
    background: none;
    color: #000000;
    border: 1px solid #00b28f;
    width: 100%;
    height: 100%;
}

.border-cross p {
    display: block;
    margin: 0;
}

.border-cross::before,
.border-cross::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background: #00b28f;
}

.border-cross p::before,
.border-cross p::after {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: #00b28f;
}

.border-cross:hover::before,
.border-cross:hover::after {
    width: 100%;
}

.border-cross:hover p::before,
.border-cross:hover p::after {
    height: 100%;
}

.border-cross::after {
    right: 0;
    bottom: 0;
    transition-duration: 0.4s;
}

.border-cross p::after {
    right: 0;
    bottom: 0;
    transition-duration: 0.4s;
}

.border-cross::before {
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

.border-cross p::before {
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}


.list-head {
    color: #000;
    font-size: 25px;
    font-weight: 900;
    line-height: 25px;
}

.list-sub-text {
    display: block;
    font-size: 16px;
    font-weight: 300;
}

.list-item-bdr {
    height: 4px;
    margin: 10px 0;
    width: 10px;
    background-color: #DF9926;
    display: block;
    transition: all 0.5s ease 0.1s;
}


/*--------------------------------------------------------------
# The Next Grid - Desktop
--------------------------------------------------------------*/

.img-effect {
    overflow: hidden;
    position: relative;
}

.img-effect:hover .image {
    -o-transform: scale(1.1);
    /* Opera */
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    /* IE 9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
    /* IE8 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
    /* IE6 and 7 */
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.image {
    -webkit-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.no-gutters figcaption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-height: 40px;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/*nov-19*/
.future-digital {
    max-height: inherit !important;
    bottom: 5px !important;
}

.img-effect:hover figcaption {
    height: auto;
    max-height: 200px;
    bottom: 50px !important;
}

.bottom-gradient-grid {
    background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 23%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0) 81%, rgba(0, 0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(100%);
    transition: all 0.5s ease 0.1s;
}

.img-effect:hover .bottom-gradient-grid {
    background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) repeat scroll 0 0;
    transform: translateY(0px);
}

.grid-title {
    color: #fff !important;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.grid-desc {
    color: #fff;
    font-size: 20px;
    line-height: 27px;
    font-weight: 300;
}

.grid-desc>strong {
    display: block;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Accordion - Desktop
--------------------------------------------------------------*/

.accordion-custom .panel-default {
    float: left;
    width: 100%;
    border-color: transparent;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.accordion-custom .panel {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.accordion-custom .panel-title a {
    font-size: 30px;
    color: #000;
    font-weight: 600;
    display: block;
    padding-right: 30px;
}

.accordion-custom .panel-title>a:before {
    font-family: 'Font Awesome 6 Free';
    content: "\f068";
    font-size: 30px;
    line-height: -moz-block-height;
    letter-spacing: -0.0625em;
    position: absolute;
    right: 8px;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-custom .panel-title>a.collapsed:before {
    content: "\f067";
    font-size: 30px;
    line-height: -moz-block-height;
    position: absolute;
    right: 8px;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-custom .panel-title>a:hover,
.accordion-custom .panel-title>a:active,
.accordion-custom .panel-title>a:focus {
    text-decoration: none;
}

.accordion-custom .panel-default>.panel-heading {
    background-color: transparent;
    border-color: transparent;
    position: relative;
    padding: 10px 0px;
}

.accordion-custom .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: transparent;
    padding-left: 0;
    background-color: transparent !important;
}

.accordion-custom p {
    margin-bottom: 0;
    padding-right: 80px;
}

.goto {
    color: #000;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
}

.goto:hover {
    color: #000;
}

/*--------------------------------------------------------------
# circle-grid - Desktop
--------------------------------------------------------------*/

.circle-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.circle-grid:before,
.circle-grid:after {
    content: normal;
}

.circle-grid>[class*="col-"] {
    margin-bottom: 20px;
}

.circle-grid .eqh-box {
    position: relative;
    height: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}

.circle-grid .eqh-box .btn-bottom {
    position: absolute !important;
    bottom: 0px;
    padding: 15px 20px;
    margin: 0;
}

.border-line {
    border: 1px solid #000000;
    padding: 15px;
    margin-bottom: 30px;
    background-color: #fff;
}

.border-line:hover .head-abtus-bdr,
.bg-queries:hover .head-abtus-bdr {
    width: 65px;
}

.head-abtus {
    font-size: 21px;
    line-height: 27px;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.head-abtus-bdr {
    background-color: #ff4823;
    display: block;
}

.head-abtus-bdr {
    width: 50px;
    height: 5px;
    margin: 10px 0;
    transition: all 0.5s ease 0.1s;
}

.circle-grid .view-more {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-top: 10px;
    text-decoration: none;
    position: relative;
    left: 0;
    -webkit-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.circle-grid .view-more:hover,
.circle-grid .view-more:focus {
    color: #000;
    text-decoration: none;
    left: 10px;
}

/*--------------------------------------------------------------
# Common CSS - Desktop
--------------------------------------------------------------*/

section {
    padding: 75px 0;
    position: relative;
}

.mt45 {
    margin-top: 45px;
}

.mt15 {
    margin-top: 15px;
}

.mt100 {
    margin-top: 100px;
}

.navbar-brand {
    padding: 5px 15px 0;
}

.img-left,
.img-right {
    position: absolute;
    top: 0;
    max-width: 100%;
    padding: 0;
}

.img-left {
    left: 0;
}

.img-right {
    right: 0;
}

.sub-txt,
.para-txt.light-gray {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 50px;
    margin-top: 10px;
    color: #7e7e7e;
}

.title-sml {
    color: #000000;
    font-size: 54px;
    line-height: 40px;
    margin: 0 0 40px;
}

.num p:nth-child(1) {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.num p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.plus-row {
    /*margin-left: 15px;
	margin-right: 15px;*/
    color: #FFFFFF;
}

/*.plus-row a.txt-highlight {
	color: #FFFFFF;
}
.plus-row a.txt-highlight:hover {
	color: #FFFFFF;
}*/
.plus-row [class="col-*"] {
    margin-bottom: 25px;
    padding: 20px;
}

.plus-row .eqh-box {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}

.plus-row .eqh-box .h3 {
    font-size: 25px;
}

/*.plus-row .eqh-box {
	background-color: transparent;
	padding-bottom: 150px;
}*/
.plus-row .eqh-box .btn-bottom {
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none;
    margin-bottom: 0;
    bottom: 20px;
}

.plus-row img {
    /*	position: absolute;
	right: 0;*/
    max-width: 100%;
}

.plus-row img {
    position: absolute;
    bottom: 0;
}

ul.list {
    padding: 0;
    margin-bottom: 20px;
}

ul.list>li {
    padding-left: 40px;
    list-style-type: none;
    margin-bottom: 10px;
    background: teal;
}

ul.list>li:last-child {
    margin-bottom: 0;
}

.hidden-scroll {
    overflow: hidden !important;
    -webkit-overflow-scrolling: hidden !important;
    -moz-overflow-scrolling: hidden !important;
    -ms-overflow-scrolling: hidden !important;
    -o-overflow-scrolling: hidden !important;
    position: relative;
    /*height: 100%;*/
}

/*--------------------------------------------------------------
# Header Menu - Desktop
--------------------------------------------------------------*/

header .mt45 {
    margin-top: 15px;
}

.home-strip {
    background-color: #372261 !important;
    height: 75px;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
    color: #ffffff !important;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    background-color: transparent;
    color: #fff !important;
    opacity: 0.75;
}

.navbar-default {
    border-color: transparent;
    background-color: transparent;
}

.navbar-brand {
    padding: 5px 15px 0;
}

.navbar {
    margin-bottom: 0;
    min-height: auto;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 17px;
    margin: 0 8px;
    font-weight: 600;
}

.breadcrumb-menu {
    margin-top: -1px;
    padding: 0;
}

.listmenu {
    position: relative;
    width: 100%;
    padding: 0;
    z-index: 2;
}

.hero-list {
    position: absolute;
    width: 100%;
    margin-top: 125px;
}

.hero-list1 {
    margin-top: 0;
    padding: 20.5px 0px;
    position: fixed !important;
    width: 900px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#like-what-you-see {
    padding-right: 0;
    padding-left: 0;
    margin-left: 20px;
    float: right;
}

.hero-list1 ol.sticky-icons>li {
    padding-left: 10px;
    padding-right: 10px;
}

.hero-list1>ol.rmv-breadcrum>li,
.hero-list1>ol.rmv-breadcrum>li>a {
    color: #000000;
    font-size: 16px;
}

.hero-list1 .dropdown-menu {
    margin-top: -37px;
}

.hero-list1>ol.rmv-breadcrum>li.open>a {
    color: #f6a623;
}

.hero-list>ol>li.open>ul.dropdown-menu {
    width: 100%;
    left: auto;
}

ol.rmv-breadcrum {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

ol.rmv-breadcrum>li+li::before {
    content: " ";
}

ol.rmv-breadcrum>li,
ol.rmv-breadcrum>li>a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

ol.rmv-breadcrum>li>a {
    font-weight: 300;
    padding-bottom: 5px;
}

ol.rmv-breadcrum>li:last-child,
ol.rmv-breadcrum>li:last-child>a {
    font-weight: 400;
}

ol.visible-list>li:nth-child(4) {
    font-size: 17px;
}

.strip-head {
    color: #333;
    float: left;
    font-size: 16px;
    font-weight: 900;
    padding-top: 5px;
    width: 65%;
}

.sticky-icons>li>a>img.share-icon {
    width: 17px;
    height: 45px;
    display: block;
}

.sticky-icons>li>a.small {
    font-weight: 600;
}

.small img.arrow-right-header {
    position: relative;
    left: 0px;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.small:hover img.arrow-right-header {
    left: 5px;
}

.arrow-right-header {
    margin-left: 10px;
    width: 17px;
    height: 17px;
}

.hidden-list {
    display: none !important;
}

.visible-list {
    display: block !important;
}

.visible1024-cross {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 0px 5px 0px;
    background: #333;
    margin-top: 10px;
    margin-right: 10px;
    z-index: 11;
}

.hero-list1>.visible-list {
    margin: 0;
}

.pos-right {
    margin-right: 100px;
}

.mega-dropdown-menu {
    border: 0;
}

.mega-dropdown {
    position: static !important;
    /*width: 100%;*/
}

.mega-dropdown>a {
    -webkit-transition: all 0.1s cubic-bezier(0, 0, 0, 0);
    -moz-transition: all 0.1s cubic-bezier(0, 0, 0, 0);
    -ms-transition: all 0.1s cubic-bezier(0, 0, 0, 0);
    -o-transition: all 0.1s cubic-bezier(0, 0, 0, 0);
    transition: all 0.1s cubic-bezier(0, 0, 0, 0);
}

.mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.mega-dropdown-menu>li>ul {
    padding: 0;
    margin: 0;
}

.mega-dropdown-menu>li>ul>li {
    list-style: none;
}

.mega-dropdown-menu>li>ul>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    font-size: 14px;
    color: #000000;
    white-space: normal;
}

.mega-dropdown-menu>li ul>li>a:hover,
.mega-dropdown-menu>li ul>li>a:focus {
    text-decoration: none;
    color: #f6a623;
}

li>a>.angle-down {
    font-size: 20px;
    position: relative;
    top: 2px;
    left: 5px;
}

li.open>a>.angle-down {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

li>a>.reverseArrow {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

li.open>a>.reverseArrow {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s;
}

.dropdown-menu {
    margin: 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.mega-dropdown-menu .dropdown-header,
.mega-dropdown-menu .dropdown-header>a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.mega-dropdown-menu .dropdown-header>a {
    padding: 0;
}

.mega-dropdown-menu form {
    margin: 3px 20px;
}

.mega-dropdown-menu .form-group {
    margin-bottom: 3px;
}

.learn,
.innovate,
.automate {
    height: 100vh;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    color: #fff;
    padding-top: 25px;
}

.head-txt {
    font-size: 40px;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.sub-head {
    font-weight: 400;
    font-size: 16px;
}

.head-txt,
.sub-head {
    padding: 0 30px;
    color: white;
    /*Color white for burgermenu title*/
}

.automate {
    background: #df9926 url("../uploads/index/talent-transformations-thumb.webp") no-repeat scroll -150px 65px;
}

.automate-lang {
    background: #df9926 url("../uploads/index/new-possibilities-thumb.webp") no-repeat scroll -150px 65px;
}

.innovate {
    background: #0f9ffa url("../uploads/index/digital-operating-thumb.webp") no-repeat scroll -20px 65px;
}

.innovate-lang {
    background: #0f9ffa url("../uploads/index/digital-capabilities-thumb.avif") no-repeat scroll -20px 65px;
}

.learn {
    background: #963596 url("../uploads/index/tringle.png") no-repeat scroll 0 65px;
}

.learn-lang {
    background: #963596 url("../uploads/index/graduates.svg") no-repeat scroll 0 65px;
}

.submenu-portion {
    width: 75%;
    background-color: #fcfcfc;
    height: 100vh;
    padding: 60px 15px 30px;
    position: absolute;
}

.menuItems {
    background-color: #fff;
    height: 100vh;
    padding: 35px;
    z-index: 8;
    box-shadow: 0 0 25px #00000021;
}

.menuItems>a {
    display: inline-block;
}

.head-sub-txt {
    font-weight: 500;
    font-size: 30px;
    margin: 0;
    text-transform: uppercase;
}

.menu .align-list>ul {
    margin-bottom: 15px;
}

.menu .align-list>ul>li {
    font-size: 14px;
    margin: 15px 0;
}

.align-list>ul>li>a {
    color: #303030;
}

.align-list>ul>li>a:hover {
    color: #0F9FFA;
}

.logo-inner {
    margin: 20px 0;
}

/* Search Icon Start */
.search-icon {
    position: fixed !important;
    right: 140px;
    top: 27px;
    z-index: 9999 !important;
}

/* Search Icon End */
.menu-bg,
.burger {
    margin-top: 18px;
    margin-right: 40px;
}

.search-icon {
    position: absolute;
    right: 140px;
    top: 27px;
    z-index: 1;
}

.menu-bg {
    background-color: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    position: absolute;
    right: 10px;
    top: 0px;
}

.burger {
    height: 48px;
    width: 48px;
    position: absolute;
    top: 0px;
    right: 8px;
    cursor: pointer;
}

.scrollbg-show .burger.open {
    top: 0;
}

.burger.open {
    background-color: #061838;
    width: 44px;
    height: 44px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 100%;
    z-index: 9;
}

.show-strip .burger.open {
    top: 30px;
}

.open>.collapse {
    background-color: #061838;
    display: block;
    top: 0px !important;
    left: auto;
    transition: all 70ms ease-out 0.1s;
}

.reverseMenu {
    background-color: #061838 !important;
    color: #fff;
}

.icon-bar11,
.icon-bar21,
.icon-bar31 {
    background: #fff !important;
}

.icon-bar1,
.icon-bar2,
.icon-bar3 {
    position: absolute;
    margin: auto;
    top: 0px;
    right: 13px;
    bottom: 0px;
    background: #061838;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

section.pt75 {
    padding-bottom: 0;
}

section#about_us_index-text {
    padding: 0 !important;
}

section#offering-locations {
    padding: 0;
}

/*.icon-bar1, .icon-bar3 {
	height: 2px;
	width: 18px;
}
.icon-bar2 {
	height: 2px;
	top: 16px;
	width: 10px;
}
.icon-bar3 {
	top: 31px;
}*/
.icon-bar1,
.icon-bar3 {
    height: 2px;
    width: 18px;
    top: -18px;
}

.icon-bar2 {
    height: 2px;
    top: -2px;
    width: 10px;
}

.icon-bar3 {
    top: 14px;
}

.open>.icon-bar11 {
    background: #f8f8f8 !important
}

.open>.icon-bar31 {
    background: #f8f8f8 !important
}

.open>.collapse {
    top: 20px;
    background: #f8f8f8;
    -webkit-transition: all 70ms ease-out;
    -moz-transition: all 70ms ease-out;
    -ms-transition: all 70ms ease-out;
    -o-transition: all 70ms ease-out;
    transition: all 70ms ease-out;
    display: block;
}

.rotate30 {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}

.rotate150 {
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}

.rotate45 {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}

.rotate135 {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}

.circle {
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    top: 65px;
    right: 95px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}

.circle.expand {
    width: 150%;
    height: 2000px;
    overflow: hidden;
    top: -560px;
    right: -565px;
    -webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}

.menu {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    display: none;
}

.menu ul li {
    margin-bottom: 20px;
    position: relative;
}

.menuItems>ul>li>a {
    color: #4A4A4A;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}

.un-line {
    position: absolute;
    bottom: -6px;
    height: 3px;
    width: 0;
    left: 0;
    background-color: #333;
    -webkit-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -ms-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
}

.menuItems>ul>li>a:hover .un-line {
    width: 40px;
}

.menuItems>ul>li.smalltext {
    margin-bottom: 10px;
}

.menuItems>ul>li.smalltext>a {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
}

.menuItems>ul>li>a:hover,
.menuItems>ul>li.smalltext>a:hover {
    color: #000000;
}

.menuItems>ul>li.social-icons:first-child {
    margin-left: 0px;
}

.menuItems>ul>li.social-icons {
    margin-top: 25px;
    display: inline-block;
    margin-bottom: 0;
    margin-left: 15px;
}

.opacity-zero {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    -ms-transition: all 0.3s ease-out 0.3s;
    -o-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}

.bg-trans {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    -ms-transition: all 0.3s ease-out 0.3s;
    -o-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}

.progressbar {
    position: absolute;
    bottom: -2.5px;
    width: 100%;
    height: 2px;
    z-index: 1110;
}

.progressbar .width {
    background-color: #ff4823;
    height: 4px;
    width: 0;
}

@keyframes show-strip {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    50% {
        opacity: 1;
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.show-strip {
    background-color: #ffffff;
    -webkit-animation: show-strip 0.5s steps(9) forwards;
    /* Safari 4+ */
    -moz-animation: show-strip 0.5s steps(10) infinite;
    /* Fx 5+ */
    -ms-animation: show-strip 0.5s steps(10) infinite;
    /* IE */
    -o-animation: show-strip 0.5s steps(10) infinite;
    /* Opera 12+ */
    animation: show-strip 0.5s steps(9) forwards;
    /* IE 10+, Fx 29+ */
}

.show-strip>.mt45 {
    margin-top: 0;
    padding: 10px 15px 8px;
    height: auto;
}

li.trigger-share {
    background-color: #FFFFFF;
    margin-right: 15px;
    position: relative;
    top: 3px;
    left: 5px;
    padding: 0;
}

.trigger-share,
ul.social-share>li {
    position: fixed;
    top: 5px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    border: none;
}

ul.social-share {
    margin: 0;
    padding: 0;
}

ul.social-share>li {
    z-index: -999;
    right: auto;
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;

}

ul.social-share>li>a {
    font-size: 18px;
    color: #333333;
}

ul.social-share>li.slideout {
    opacity: 1;
    visibility: visible;
}


li.slideout:nth-child(1) {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
    z-index: 9999;
}

li.slideout:nth-child(2) {
    -webkit-transform: translateX(-45px);
    -moz-transform: translateX(-45px);
    -ms-transform: translateX(-45px);
    -o-transform: translateX(-45px);
    transform: translateX(-45px);
    z-index: 9999;
}

li.slideout:nth-child(3) {
    -webkit-transform: translateX(-70px);
    -moz-transform: translateX(-70px);
    -ms-transform: translateX(-70px);
    -o-transform: translateX(-70px);
    transform: translateX(-70px);
    z-index: 9999;
}

li.slideout:nth-child(4) {
    -webkit-transform: translateX(-105px);
    -moz-transform: translateX(-105px);
    -ms-transform: translateX(-105px);
    -o-transform: translateX(-105px);
    transform: translateX(-105px);
    z-index: 9999;
}

/*--------------------------------------------------------------
# Index - Desktop
--------------------------------------------------------------*/

#home_section,
#discover,
#experience,
#apply {
    width: 100%;
    height: 100vh;
    position: relative;
}

#home_section {
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.video-container video {
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    min-width: 100%;
    position: relative;
    object-fit: cover;
    top: 0px;
    left: 0;
    z-index: 1;
}

.home_txt {
    color: #ffffff;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
    width: auto;
    z-index: 2;
}

.overlay-home {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0 !important;
    background-color: rgba(0, 124, 195, 0.4);
}

.sub-txt-home {
    font-size: 30px;
    margin: 0 0 60px;
    color: #7e7e7e;
    line-height: 40px;
}

.h3-home {
    font-size: 25px;
    font-weight: 900;
    margin: 0 0 20px;
}

#discover .eq-height .eqh-box,
#experience .eq-height .eqh-box,
#apply .eq-height .eqh-box {
    padding-bottom: 0;
}

.para-txt p:nth-of-type(1) {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 60px;
}

.para-txt p>strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.para-txt p span {
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 400;
}

.para-txt p.indiv-soc-icn a {
    font-size: 16px;
    margin-right: 15px;
    color: #DF9926;
}

.owl-thumbs {
    position: absolute;
    bottom: -35px;
    left: 0;
    display: table;
    width: 100%;
    text-align: center;
    /*padding: 5%;*/
}

.owl-thumb-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    padding: 2px;
}

.owl-thumb-item {
    display: table-cell;
    border: none;
    background: none;
    padding: 0 15px;
    opacity: 0.4;
    /*margin-right: 10px;*/
}

.owl-thumb-item.active {
    opacity: 1;
}

.owl-thumb-item:focus {
    outline: 0;
}

.owl-carousel .owl-video-tn {
    display: block;
    background-size: cover;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
}


.aboutus-desc {
    background-color: #000;
    float: left;
    padding: 35px 50px 0;
    color: #DADADA;
}

.desc-txt {
    font-size: 25px;
    line-height: 35px;
}

.name-desc {
    font-weight: 600;
    margin-top: 20px;
}

#join_us .border {
    margin-bottom: 25px;
}

.border [class*="col-"] {
    padding: 0;
}

.border {
    background-color: #FCDDD6;
    border: 1px solid #ffffff;
    float: left;
    position: relative;
    width: 100%;
}

.border-btm {
    border-bottom: 1px solid #ffffff;
}

.border-rgt {
    border-right: 1px solid #ffffff;
}

.cntry-nme {
    color: #000;
    display: block;
    font-size: 25px;
    height: 200px;
    font-weight: 600;
    padding: 75px 0;
    text-align: center;
    text-decoration: none;
}

.cntry-nme:hover {
    background-color: #F16C51;
    color: #FFFFFF;
}

.joinus-bg {
    float: left;
    width: 100%;
    background-color: #963596;
}

.inside-cnt {
    padding: 30px;
    color: #FFFFFF;
}

.field-bg {
    margin-bottom: 30px;
    position: relative;
}

.field-bg input,
textarea {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: currentcolor currentcolor #757575;
    border-image: none;
    border-style: none none solid;
    border-width: medium medium 2px;
    display: block;
    font-size: 20px;
    padding: 10px 0;
    width: 100%;
}

.bar::before,
.bar::after {
    background: #21409a none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 4px;
    position: absolute;
    transition: all 0.5s ease 0.1s;
    width: 0;
}

.field-bg input:focus~label {
    background-color: transparent;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    top: -20px;
}

.field-bg label {
    background-color: transparent;
    color: #999;
    font-size: 14px;
    font-weight: 300;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
    transition: all 0.2s ease 0.1s;
}

.field-bg input:focus~.bar::before,
.field-bg input:focus~.bar::after {
    width: 100%;
}

.submit-btn {
    background-color: #f6a623;
    border: 1px solid #f6a623;
    color: #fff;
    font-weight: 900;
    padding: 18px 50px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0.1s;
}

.submit-btn:hover {
    background-color: transparent;
    border: 1px solid #757575;
    color: #757575;
}

.explore-txt {
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    line-height: 32px;
    padding: 25px 70px;
    position: absolute;
    right: 15px;
    top: 0;
    width: 30%;
}

/* left navigations */
.top-menu {
    top: 20%;
}

.bottom-menu {
    position: absolute !important;
    bottom: 0;
}

.stick-left-nav-ul {
    padding-left: 20px;
    width: 95px;
}

.sticky-left-nav {
    position: fixed;
    /*top: 20%;*/
    width: 120px;
    display: block;
    background-color: transparent;
    z-index: 1;
}

.sticky-left-nav ul li {
    list-style: none;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sticky-left-nav ul li a::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    opacity: 1;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.sticky-left-nav ul li.nav-active a::before {
    width: 60px;
    height: 4px;
    opacity: 1;
}

.sticky-left-nav ul li a,
.sticky-left-nav ul li a:hover,
.sticky-left-nav ul li a:focus {
    text-decoration: none;
}

.sticky-left-nav ul li a span {
    display: block;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    padding-top: 5px;
    font-size: 14px;
}

.sticky-left-nav ul li.nav-active a span {
    opacity: 1;
}

.sticky-left-nav ul li.darkText a span {
    color: #7E7E7E !important;
    /*width: 150px;*/
}

.sticky-left-nav ul li.darkText a::before {
    background-color: #7E7E7E !important;
    opacity: 1;
}

/* full scroll animations */
.fromUp {
    animation: fromUpAnim 800ms;
    animation-fill-mode: forwards;
}

@keyframes fromUpAnim {
    from {
        transform: translate3d(0, -50%, -200px);
        transform: scale(0.8);
    }

    to {
        transform: translate3d(0, 0, 0);
        transform: scale(1);
    }
}

/* text animations */
.animateFirst,
.animateSecond,
.animateThird,
.animateFourth {
    opacity: 1;
}

.UpanimationFirst {
    animation: moveUp 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.UpanimationSecond {
    animation: moveUp 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.UpanimationThird {
    animation: moveUp 1s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    /*cursor: pointer;*/
}

.UpanimationFourth {
    animation: moveUp 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes moveUp {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* scroll down animations */
.a-scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /*font : normal 400 20px/1 'Josefin Sans', sans-serif;*/
    letter-spacing: .1em;
    transition: opacity .3s;
    font-size: 14px;
}

.a-scroll-down,
.a-scroll-down:hover,
.a-scroll-down:focus {
    text-decoration: none;
    color: #000;
}

.a-scroll-down:hover {
    opacity: .5;
}

.a-scroll-down span {
    position: absolute;
    bottom: 70px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

.home-banner-bg {
    display: none;
}

/*--------------------------------------------------------------
# Hero slider - Desktop
--------------------------------------------------------------*/

#hero_slider {
    padding: 0;
}

#hero_slider,
.slider {
    position: relative;
}

.repeated-css {
    height: 100vh;
    position: relative;
    width: 100%;
}

.slide-image,
.slider-image {
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: 0;
    width: auto !important;
}

.slider-caption,
.caption {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -30%);
    width: auto;
    color: #FFFFFF;
}

.owl-item {
    overflow: hidden;
}

.owl-theme .owl-controls {
    margin-top: 0px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-controls .owl-nav [class*='owl-'] {
    color: white;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    /*background-color: #d6d6d6;*/

    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.owl-theme .owl-controls .owl-nav [class*='owl-']:hover {
    /*background-color: #869791;*/

    color: white;
    text-decoration: none;
}

.owl-theme .owl-controls .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    /**display: inline;*/
}

.owl-theme .owl-dots {
    bottom: 20px;
    position: absolute;
    width: 100%;
}

/* Dots CSS */
.owl-theme .owl-dots .owl-dot {
    cursor: pointer;
    height: 16px;
    margin: 0 16px;
    position: relative;
    width: 16px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    box-shadow: 0 0 0 2px white inset;
    overflow: hidden;
    transition: background 0.3s ease 0.1s;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    cursor: pointer;
    height: 100%;
    left: 0;
    outline: medium none;
    position: absolute;
    text-indent: -999em;
    top: 0;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot.active span::after {
    height: 100%;
}

.owl-theme .owl-dots .owl-dot span::after {
    background-color: #fff;
    bottom: 0;
    box-shadow: 0 0 1px #fff;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: height 0.3s ease 0.1s;
    width: 100%;
    border-radius: 50%;
}

/* End */
/*.owl-theme .owl-dots .owl-dot span { 
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background-color: #d6d6d6;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #869791;
}*/
/*.owl-prev, .owl-next {
	background-repeat: no-repeat;
	width: 31px;
	height: 56px;
	text-indent: -9999px;
	position: absolute !important;
	top: 200px !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.owl-prev {
	background-image: url(../../../careers/PublishingImages/18/left.png);
	left: 30px;
}
.owl-next {
	background-image: url(../../../careers/PublishingImages/18/right.png);
	right: 30px;
}*/
/*--------------------------------------------------------------
# About Us - Desktop
--------------------------------------------------------------*/

.para-ovr {
    color: #000;
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    padding-top: 10px;
}

.overview-segment-para {
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

/*--------------------------------------------------------------
# more_than_us - Desktop
--------------------------------------------------------------*/

#verticalTab [class*="col-"] {
    padding: 0;
    margin: 0;
}

.resp-tabs-container {
    padding: 0px;
}

.resp-accordion {
    display: none;
}

.resp-tab-content {
    display: none;
}

.resp-content-active,
.resp-accordion-active {
    display: block;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 25px 15px;
    margin: 0;
    cursor: pointer;
    float: none;
    background-color: #0f9ffa;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.resp-vtabs li.resp-tab-active {
    opacity: 0.8;
}

/*.resp-tabs-list li > img {
	opacity: 0.5;
}*/
.resp-tabs-list li.resp-tab-active>img {
    opacity: 1;
}

.tabs_logo {
    margin-bottom: 20px;
    max-width: 100%;
}

.tabs_gradient {
    background-color: #061838;
}

.tabs_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    z-index: -1;
}

.repeated_css_tab,
.tabs_img {
    height: 546px;
}

.tabs_caption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 15px;
    width: 100%;
    color: #fff;
}

.tabs_title {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 20px;
}

.tabs_para {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
}

.buy_it,
.try_it {
    border: 2px solid #FFFFFF;
    display: block;
    margin: 25px 35px 35px 0;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 23px;
    font-weight: 900;
}

.buy_it {
    background-color: #fff;
    color: #000;
    display: none;
}

.buy_it:hover {
    background-color: transparent;
    color: #fff;
}

.try_it {
    background-color: transparent;
    color: #fff;
}

.try_it:hover {
    background-color: #fff;
    color: #000;
}

.tabs_sub_link {
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
}

.tabs_sub_link:hover {
    color: #fff;
}

/*--------------------------------------------------------------
# Locations - Desktop
--------------------------------------------------------------*/

.hvr-cntry:hover p.loc-cntry-txt {
    background-color: rgb(245, 166, 35, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    transform: translateY(0px);
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

p.loc-cntry-txt {
    margin: 0;
}

p.loc-cntry-txt>span {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

/*--------------------------------------------------------------
# L2 Page - Desktop
--------------------------------------------------------------*/

#L2_home_banner {
    height: 75vh;
    position: relative;
}

.L2-home-banner-image {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    min-height: 100%;
    min-width: 100%;
}

.L2-top {
    margin-top: 200px;
}

/*--------------------------------------------------------------
# L3 Page - Desktop
--------------------------------------------------------------*/

#sml_ht_home_banner {
    padding: 200px 0 50px;
}

/*--------------------------------------------------------------
# Apply Page - Desktop
--------------------------------------------------------------*/

.box-area {
    padding: 15px;
}

a .box-area {
    color: #FFFFFF;
}

/*--------------------------------------------------------------
# Modal PopUp - Desktop
--------------------------------------------------------------*/

.modal-header {
    padding: 5px 15px;
    border-bottom: none;
}

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 9999;
}

/*--------------------------------------------------------------
# Footer - Desktop
--------------------------------------------------------------*/

footer {
    background: #f8f8f8 none repeat scroll 0 0;
    color: #333;
    position: relative;
}

footer .ptb50 {
    padding: 50px 15px;
}

.ftr-head {
    color: #000000;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 0;
}

ul.footer-txt>li:first-child {
    margin-top: 20px;
}

ul.footer-txt>li {
    margin-bottom: 10px;
}

ul.footer-txt>li>a {
    color: #4A4A4A;
    font-size: 17px;
    font-weight: 400;
}

.bottom-footer {
    padding: 15px 0px;
    background-color: #fff;
}

.bottom-footer p {
    margin: 0;
}

.country {
    position: relative;
    z-index: 1;
}

.up-arrow,
.down-arrow {
    position: relative;
    margin-left: 100px;
    z-index: -1;
}

.up-arrow:before,
.down-arrow:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #333;
    font-size: 18px;
    /*position: absolute;*/
    top: 2px;
    left: 0;
}

.up-arrow:before {
    content: "\f0d8";
}

.down-arrow:before {
    content: "\f0d7";
}

.select-country>a {
    border: 1px solid #7E7E7E;
    padding: 5px 15px;
    display: inline-block;
    color: #333333;
}

.select-country>a:hover,
.select-country>a:focus {
    color: #7E7E7E;
    text-decoration: none;
}

.option-country {
    display: none;
}

.open-country {
    display: block;
    position: relative;
}

.country-align {
    position: absolute;
    top: -238px;
    background-color: #fff;
    color: #fff;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    -webkit-box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.5);
}

.country-align>li>a {
    color: #333333;
    padding: 10px 15px;
    display: block;
}

.country-align>li>a:hover {
    background: #63b0ff;
    color: #fff;
}

.center-icon {
    height: 92px;
    margin-bottom: 0.5rem;
}

.center-icon img {
    margin: 0 auto;
    height: 100%;
    display: block;
    margin-bottom: 10px;
}

@media all and (max-width: 1024px) {
    /*--------------------------------------------------------------
# Common CSS - Tablet (Landscape)
--------------------------------------------------------------*/

    .h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .h2 {
        font-size: 50px;
        line-height: 50px;
    }

    .sub-txt {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .burger.open {
        right: 0;
        z-index: 1;
    }

    .menuItems {
        z-index: 0;
    }

    /*--------------------------------------------------------------
# Stats - Tablet (Landscape)
--------------------------------------------------------------*/

    .stats .number {
        font-size: 60px;
    }

    .stats .symbol {
        font-size: 48px;
        margin-top: 6px;
    }

    .stats sup {
        top: -1.1em;
    }

    /*--------------------------------------------------------------
# Our Offerings - Tablet (Landscape)
--------------------------------------------------------------*/

    .offerings-row {
        margin-left: 0;
        padding-left: 25px;
        padding-right: 0px;
    }

    .offerings-hover {
        opacity: 1;
    }

    .offering-hover {
        margin-left: 15px;
        margin-right: 15px;
    }

    .offering-title {
        font-size: 30px;
        line-height: 30px;
    }

    ul.offering-list li:hover span {
        left: 0;
    }

    .border-left {
        display: none;
    }

    /*--------------------------------------------------------------
# border_switch_effect - Tablet (Landscape)
--------------------------------------------------------------*/

    a.border_switch_effect {
        padding: 0;
    }

    a.border_switch_effect::before {
        left: 50%;
        transform: rotate(0deg) translateX(-50%);
    }

    a.border_switch_effect::before,
    a.border_switch_effect::after {
        opacity: 1;
    }

    a.border_switch_effect::after,
    a.border_switch_effect::after {
        right: 50%;
        transform: rotate(0deg) translateX(50%);
    }

    /*--------------------------------------------------------------
# Brackets_Effect - Tablet (Landscape)
--------------------------------------------------------------*/

    a.brackets_effect::before,
    a.brackets_effect::after {
        opacity: 1;
    }

    a.brackets_effect:hover,
    a.brackets_effect:focus {
        color: inherit;
    }

    a.brackets_effect::before {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
    }

    a.brackets_effect::after {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
    }

    /*--------------------------------------------------------------
# circle-grid - Tablet (Landscape)
--------------------------------------------------------------*/

    .border-line:hover .head-abtus-bdr,
    .bg-queries:hover .head-abtus-bdr {
        width: 50px;
    }

    .circle-grid .view-more {
        left: 10;
    }


    /*--------------------------------------------------------------
# L2 Page - Tablet (Landscape)
--------------------------------------------------------------*/

    #L2_home_banner {
        height: 45vh;
    }

    .L2-top {
        margin-top: 150px;
    }

    /*--------------------------------------------------------------
# Equal Height CSS - Tablet
--------------------------------------------------------------*/

    .eq-height .eqh-box img {
        transform: translate3d(0px, 0px, 0px);
        width: calc(100% + 0px);
    }

    .eq-height .eqh-box:hover img {
        transform: translate3d(0px, 0px, 0px);
    }

    .eq-height .list-item-bdr,
    .eq-height .eqh-box:hover .list-item-bdr {
        width: 45px;
    }

    /*--------------------------------------------------------------
# Stories Items - Tablet (Landscape)
--------------------------------------------------------------*/

    .stories-title {
        font-size: 30px;
        line-height: 30px;
    }

    .stories-txt img.img-responsive {
        transform: translate3d(0px, 0px, 0px);
    }

    .list-head {
        font-size: 22px;
    }

    .list-item-bdr {
        width: 45px;
    }

    /*--------------------------------------------------------------
# Hero slider - Tablet (Landscape)
--------------------------------------------------------------*/

    .owl-prev {
        left: 5px;
    }

    .owl-next {
        right: 5px;
    }

    .slide-image {
        right: -137px;
    }

    #hero_slider,
    .slider {
        height: auto;
    }

    .repeated-css {
        height: 600px;
    }

    /*--------------------------------------------------------------
# The Next Grid - Tablet (Landscape)
--------------------------------------------------------------*/

    .img-effect:hover .image {
        -o-transform: scale(1);
        /* Opera */
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        /* IE 9 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
        /* IE8 */
        filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
        /* IE6 and 7 */
        transform: scale(1);
        -webkit-transition: all 0.5s ease 0.1s;
        transition: all 0.5s ease 0.1s;
    }

    .no-gutters figcaption {
        max-height: none;
        height: auto;
        bottom: 0;
    }

    /*nov-19*/
    .img-effect:hover figcaption {
        height: auto;
        max-height: none;
        bottom: 0px !important;
    }

    .img-effect:hover .bottom-gradient-grid {
        background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) repeat scroll 0 0;
        transform: translateY(0);
    }

    .img-effect:hover figcaption {
        height: auto;
        max-height: none;
        bottom: 0;
    }

    .img-effect:hover .bottom-gradient-grid {
        background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) repeat scroll 0 0;
        transform: translateY(0);
    }

    /*nov-19*/
    .future-digital {
        bottom: 0px !important;
    }

    .img-effect:hover .future-digital {
        bottom: 0px !important;
    }

    .grid-desc {
        font-size: 18px;
        line-height: inherit;
    }

    .bottom-gradient-grid {
        /*background: rgba(0,0,0,0.5);*/
        background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) repeat scroll 0 0;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        transform: translateY(0);
    }

    /*--------------------------------------------------------------
# Header Menu - Tablet (Landscape)
--------------------------------------------------------------*/

    .hidden-tab,
    .hidden-tab-mob {
        display: none !important;
    }

    .head-txt,
    .sub-head {
        padding: 0;
    }

    .head-txt {
        font-size: 30px;
        line-height: 30px;
    }

    .hero-list1 {
        width: 720px;
        margin-top: 0;
    }

    /*--------------------------------------------------------------
# Index - Tablet (Landscape)
--------------------------------------------------------------*/

    #home_section {
        height: 600px;
        background-color: #92D1FF;
    }

    #discover,
    #experience,
    #apply {
        height: auto;
    }

    .rl-plus-menu,
    .rl-plus2-menu,
    .rl-plus3-menu,
    .region-menu {
        z-index: 1;
    }

    .submenu-portion {
        width: 100%;
        padding: 15px 0;
    }

    .visible1024-cross {
        display: block;
    }

    .cross>a>img {
        max-width: 17px;
        position: absolute;
        right: 25px;
        top: 15px;
        z-index: 1;
    }

    .menuItems {
        max-height: 600px;

    }

    .menu-bg,
    .burger {
        margin-right: 33px;
    }

    .search-icon {
        right: 110px;
    }

    .explore-txt {
        width: auto;
    }

    /*.sticky-icons > li > a > img.share-icon {
	padding: 20px 0;
}*/
    li.trigger-share {
        margin-right: 0;
    }

    .sticky-left-nav,
    .scroll-down {
        display: none;
    }

    .home-banner-bg {
        height: 100%;
        top: 0;
        position: absolute;
        right: 0;
        width: auto;
        display: block;
    }

    .sub-txt-home {
        font-size: 25px;
        line-height: 30px;
        margin: 0 0 30px;
    }
}

@media all and (max-width: 992px) {
    /*--------------------------------------------------------------
# Common CSS - Tablet (Portrait)
--------------------------------------------------------------*/

    .text-left-sm {
        text-align: left;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    /*--------------------------------------------------------------
# Header Menu - Tablet (Portrait)
--------------------------------------------------------------*/

    .menu-bg,
    .burger {
        margin-right: 15px;
    }

    .search-icon {
        right: 90px;
    }

    .trigger-share,
    ul.social-share>li {
        top: 67px;
    }

    li.trigger-share {
        background-color: #EFEFEF;
    }

    .hero-list1 {
        margin-top: 67px !important;
        background-color: #EFEFEF;
        width: 100%;
        padding: 8px 23px;
        -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .circle.expand {
        width: 240%;
        right: -600px;
    }

    .menu {
        width: 100vw;
        height: 100vh;
        /*overflow-y: scroll;*/
    }

    /*.sticky-icons > li > a > img.share-icon {
	padding: 20px 0;
}*/
    /*--------------------------------------------------------------
# Ribbon - Tablet (Portrait)
--------------------------------------------------------------*/

    .ribbon {
        text-transform: uppercase;
    }

    /*--------------------------------------------------------------
# Index - Tablet (Portrait)
--------------------------------------------------------------*/

    .img-left,
    .img-right {
        position: relative;
        margin-bottom: 30px;
    }

    #day_riverlake #ppl_slider_carousel {
        margin-bottom: 70px;
    }

    .desc-txt {
        font-size: 20px;
        line-height: 27px;
    }

    .cntry-nme {
        font-size: 20px;
        height: 150px;
        padding: 50px 0;
    }

    .explore-txt {
        font-size: 25px;
        line-height: 22px;
        padding: 11px;
    }

    /*--------------------------------------------------------------
# About Us - Tablet (Portrait)
--------------------------------------------------------------*/

    .para-ovr {
        font-size: 22px;
        line-height: 35px;
    }

    /*--------------------------------------------------------------
# L2 Pages - Tablet (Portrait)
--------------------------------------------------------------*/

    #L2_home_banner {
        height: 34vh;
    }

    /*--------------------------------------------------------------
# L3 Page - Tablet (Portrait)
--------------------------------------------------------------*/

    #sml_ht_home_banner {
        padding: 150px 0 50px;
    }

    /*--------------------------------------------------------------
# Footer - Tablet (Portrait)
--------------------------------------------------------------*/

    .breadcrumb {
        margin-bottom: 0px;
        padding: 0px;
    }

    ul.social_icons {
        text-align: left;
    }

    /*--------------------------------------------------------------
# more_than_us - Tablet (Landscape)
--------------------------------------------------------------*/

    .resp-arrow {
        background: teal;
        float: right;
        width: 15px !important;
        height: 15px !important;
        margin-top: 5px;
    }

    .resp-tab-active span.resp-arrow {
        background: teal;
    }

    /*-----------Accordion styles-----------*/

    .resp-tab-active {
        background-color: #0f9ffa;
        opacity: 0.8;
    }

    .resp-easy-accordion .resp-accordion {
        display: block;
    }

    .resp-easy-accordion .resp-tab-content {
        border: 1px solid #c1c1c1;
    }

    .resp-easy-accordion .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }

    .resp-jfit {
        width: 100%;
        margin: 0px;
    }

    .resp-tab-content-active {
        display: block;
    }

    ul.resp-tabs-list {
        display: none;
    }

    .resp-accordion {
        display: block;
        cursor: pointer;
        padding: 30px;
        background-color: #0f9ffa;
        font-weight: 500;
        color: #FFFFFF;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: initial;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .tabs_img {
        position: absolute;
        left: 0;
        top: inherit;
        right: 0;
        bottom: inherit;
        width: auto;
        z-index: -1;
    }

    .tab1_img,
    .tab2_img,
    .tab3_img,
    .tab4_img,
    .tab5_img,
    .tab6_img {
        position: relative;
    }
}

@media all and (max-width: 480px) {
    .slider-caption h2 {
        font-size: 44px;
        line-height: 1.1;
    }

    .ms-d-none {
        display: none !important;
    }
    .copyright p {
        font-size: 15px;
        text-align: center;
    }
    .mb50 {
        margin-bottom: 0px !important;
    }
    #explore-life {
        padding: 40px 0;
    }
    .ptb75 {
        padding: 40px 0;
    }
    .pb75 {
        padding-bottom: 35px !important;
    }
    #questions_bg {
        padding: 25px 0 40px 0;
    }
}

@media all and (max-width: 767px) {

    /* Mobile (Landscape) ----------- */
    /*--------------------------------------------------------------
# Common CSS - Mobile
--------------------------------------------------------------*/
    .ms-d-none {
        display: none !important;
    }

    section {
        padding: 50px 0;
    }

    .text-center-xs {
        text-align: center;
    }

    .h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .h2 {
        font-size: 40px;
        line-height: 40px;
    }

    h2 {
        font-size: 40px;
    }

    .h3 {
        font-size: 25px;
        line-height: 25px;
    }

    .title-sml,
    .tabs_title {
        font-size: 24px;
        line-height: 26px;
        margin: 0 0 20px;
    }

    .mb-xs-20 {
        margin-bottom: 20px;
    }

    .mb-xs-0 {
        margin-bottom: 0;
    }

    /*--------------------------------------------------------------
# Stats - Mobile
--------------------------------------------------------------*/

    .stats [class*="col-"] {
        margin-bottom: 40px !important;
    }

    .stats [class*="col-"]:nth-of-type(6) {
        margin-bottom: 0 !important;
    }

    .stats .number {
        font-size: 40px;
    }

    .stats .symbol {
        font-size: 30px;
    }

    .stats sup,
    .stats .sup {
        font-size: 16px !important;
    }

    /*--------------------------------------------------------------
# Hover Shutter animation - Mobile
--------------------------------------------------------------*/

    a.btn-shutter {
        padding: 5px 15px;
    }

    /*--------------------------------------------------------------
# Our Offerings - Mobile
--------------------------------------------------------------*/

    .offerings-row [class*="col-"] {
        margin-bottom: 0px;
    }

    .offerings-row {
        padding-left: 0px;
    }

    ul.offering-list li {
        padding-left: 0px;
        margin-bottom: 20px;
    }

    /*--------------------------------------------------------------
# circle-grid - Mobile
--------------------------------------------------------------*/

    .head-abtus {
        font-size: 22px;
        line-height: 25px;
    }

    /*--------------------------------------------------------------
# Contact Ribbon - Mobile
--------------------------------------------------------------*/

    .contact {
        background-color: #fff;
        color: #000 !important;
        font-size: 12px;
        height: 40px;
        line-height: 23px;
        padding: 10px 8px;
        position: fixed;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
        -moz-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
        -ms-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
        -o-transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
        transform: translate(0, 0) rotate(0) skew(0deg, -10deg) scale(1, 1);
        width: 35px;
        z-index: 999;
    }

    .contact::before {
        background-color: rgba(255, 255, 255, .6);
        content: "";
        height: 40px;
        padding: 10px 20px;
        position: absolute;
        right: -20px;
        top: 10px;
        -webkit-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
        -moz-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
        -ms-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
        -o-transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
        transform: translate(0, 0) rotate(0) skew(0deg, 18deg) scale(1, 1);
        width: 55px;
        z-index: -1;
    }

    .contact .fa-envelope-o {
        font-size: 18px;
    }

    /*--------------------------------------------------------------
# Stories Items - Mobile
--------------------------------------------------------------*/

    .stories-items .stories-txt a {
        font-size: 18px;
    }

    .stories-txt img.img-responsive {
        width: auto;
        max-width: 100%;
    }

    .stories-title {
        font-size: 25px;
        line-height: 30px;
    }

    /*--------------------------------------------------------------
# No-gutters - Mobile
--------------------------------------------------------------*/

    .no-gutters>[class*="col-"] {
        margin-bottom: 20px;
    }

    /*--------------------------------------------------------------
# Header Menu - Mobile
--------------------------------------------------------------*/

    .hero-list {
        margin-top: 75px;
    }

    .hero-list1 {
        padding: 8px 15px;
    }

    /*.hero-list1 > .hidden-tab {
	display: block !important;
}*/
    ol.rmv-breadcrum>li,
    ol.rmv-breadcrum>li>a {
        display: inline;
    }

    .menu-bg,
    .burger {
        margin-right: 15px;
    }

    ul.social-share>li {
        padding: 0;
    }

    .trigger-share,
    ul.social-share>li {
        top: 75px;
    }

    li.slideout {
        background-color: #EFEFEF;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        height: 40px;
        padding: 5px;
        text-align: center;
        width: 40px;
    }

    li.slideout:nth-child(1) {
        transform: translateX(-10px) translateY(55px);
    }

    li.slideout:nth-child(2) {
        transform: translateX(-10px) translateY(85px);
    }

    li.slideout:nth-child(3) {
        transform: translateX(-10px) translateY(110px);
    }

    li.slideout:nth-child(4) {
        transform: translateX(-10px) translateY(140px);
    }

    .circle.expand {
        right: -100px;
    }

    /*--------------------------------------------------------------
# Section 1 - Mobile
--------------------------------------------------------------*/

    .repeated-css {
        height: 480px;
    }

    .slider-overlay-black,
    .slider-overlay-white,
    .slider-overlay-sapphire,
    .slider-overlay-coral,
    .slider-overlay-topaz,
    .slider-overlay-jade,
    .slider-overlay-amethyst,
    .slider-overlay-onyx {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .slider-overlay-black {
        background-color: rgba(0, 0, 0, 0.45);
    }

    .slider-overlay-white {
        background-color: rgba(255, 255, 255, 0.45);
    }

    .slider-overlay-sapphire {
        background-color: rgba(6, 24, 56, 0.45);
    }

    .slider-overlay-coral {
        background-color: rgba(76, 5, 25, 0.45);
    }

    .slider-overlay-topaz {
        background-color: rgba(47, 17, 19, 0.45);
    }

    .slider-overlay-jade {
        background-color: rgba(9, 50, 29, 0.45);
    }

    .slider-overlay-amethyst {
        background-color: rgba(55, 34, 97, 0.45);
    }

    .slider-overlay-onyx {
        background-color: rgba(63, 63, 63, 0.45);
    }

    .portal-mob {
        bottom: 60px;
        position: absolute;
        width: 100%;
        z-index: 2;
    }

    .slide-image {
        right: 0;
    }

    #hero_slider .slider-caption a {
        margin-top: 0;
        padding: 5px;
    }

    .owl-theme .owl-dots {
        bottom: 10px;
    }

    .slider-caption,
    .caption {
        top: 50%;
        transform: translate(0, -50%);
    }

    #home_section {
        height: 480px;
    }

    .home-banner-bg {
        height: auto;
        bottom: 50%;
        top: unset;
        transform: translate(0%, 50%);
        max-width: 100%;
        max-height: 100%;
    }

    .para-txt p:nth-of-type(1) {
        font-size: 20px;
        line-height: 30px;
    }

    .border-rgt-xs {
        border-right: 1px solid #ffffff;
    }

    .border-btm-xs {
        border-bottom: 1px solid #ffffff;
    }

    .inside-cnt {
        padding: 15px;
    }

    .inside-cnt h2 {
        margin-bottom: 0;
    }

    .aboutus-desc {
        padding: 0;
    }

    .aboutus-desc img {
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    #day_riverlake img.mb6 {
        height: 150px;
    }

    .cntry-nme {
        height: auto;
    }

    .explore-txt {
        left: 15px;
        font-size: 25px;
        line-height: 26px;
        padding: 20px;
    }

    /*--------------------------------------------------------------
# Promo Boxes - Mobile
--------------------------------------------------------------*/

    .promo-title {
        font-size: 22px;
        line-height: 25px;
    }

    .promo-align {
        padding: 15px;
    }

    .promo-btn {
        width: auto;
        margin-bottom: 0;
    }

    .promo-btn:hover {
        border: 1px solid #372261;
        color: #fff;
        background-color: #372261;
    }


    /*--------------------------------------------------------------
# Locations - Mobile
--------------------------------------------------------------*/

    .hvr-cntry {
        display: block;
        padding: 35px 0;
        background: #000;
    }

    .hvr-cntry:hover p.loc-cntry-txt {
        background-color: transparent;
    }

    p.loc-cntry-txt>span {
        font-size: 20px;
        top: 20px;
        transform: translateY(0px);
    }

    /*--------------------------------------------------------------
# L2 Pages - Mobile
--------------------------------------------------------------*/

    #L2_home_banner {
        height: 315px;
    }

    .L2-top {
        margin-top: 100px;
    }

    /*--------------------------------------------------------------
# L3 Page - Mobile
--------------------------------------------------------------*/

    #sml_ht_home_banner {
        padding: 150px 0 50px;
    }

    /*--------------------------------------------------------------
# Accordion - Mobile
--------------------------------------------------------------*/

    .accordion-custom .panel-title a {
        font-size: 22px;
    }

    .accordion-custom .panel-title>a:before {
        font-size: 22px;
    }

    .accordion-custom .panel-title>a.collapsed:before {
        font-size: 22px;
    }

    .accordion-custom p {
        padding-right: 0px;
        font-size: 16px;
    }

    /*--------------------------------------------------------------
# About Us - Mobile
--------------------------------------------------------------*/

    .para-ovr {
        font-size: 18px;
        line-height: 27px;
    }

    /*--------------------------------------------------------------
# Footer - Mobile
--------------------------------------------------------------*/

    ul.footer-txt {
        margin-top: 10px;
    }

    ul.footer-txt>li:first-child {
        margin-top: 0;
    }

    .pull-left-xs {
        float: left !important;
        margin-top: 20px;
    }

    .rl-plus-menu .submenu-portion ul li a h3 {
        font-size: 20px;
        margin: 0;
    }

    .menu .align-list>ul>li {
        margin: 4px 0 !important;
    }
}

@media all and (max-width: 640px) {
    /* Mobile (Landscape) ----------- */
    /*--------------------------------------------------------------
# Header Menu - Mobile (Landscape 640px)
--------------------------------------------------------------*/

    /*.hero-list1 {
	margin-left: 70%;
}*/
    /*ul.social-share > li {
	right: 22%;
}*/
    .submenu-portion {
        min-height: 355vh;
        padding: 30px 15px;
    }

    /*.learn, .innovate, .automate {
	top: 623px;
}*/
}

@media all and (max-width: 480px) {
    /* Mobile (Landscape) ----------- */
    /*--------------------------------------------------------------
# Header Menu - Mobile (Landscape 480px)
--------------------------------------------------------------*/

    /*.hero-list1 {
	margin-left: 50%;
}*/
    .hero-list1>.breadcrumb,
    .hero-list1>.visible-list {
        width: 100%;
        float: none;
    }

    /*.trigger-share, ul.social-share > li {
	top: 100px;
}*/
    li.trigger-share {
        left: 0px !important;
        /* padding-left: 0 !important; */
    }

    .circle.expand {
        width: 300%;
        right: -100px;
    }

    .submenu-portion {
        min-height: 410vh;
    }

    /*ul.social-share > li {
	right: 30%;
}*/
    /*--------------------------------------------------------------
# Contact us Iframe CSS - Mobile
--------------------------------------------------------------*/

    .iframe-contact-ht {
        height: 865px;
    }

    /*--------------------------------------------------------------
# Footer - Mobile
--------------------------------------------------------------*/

    .breadcrumb>li {
        display: block;
        margin-bottom: 10px;
    }

    .breadcrumb>li+li::before {
        content: " ";
    }
}

@media all and (max-width: 360px) {
    /* Mobile (portrait) ----------- */
    /*--------------------------------------------------------------
# Header Menu - Mobile (Portrait 360px)
--------------------------------------------------------------*/

    /*.hero-list1 {
	margin-left: 50%;
}*/
    .submenu-portion {
        min-height: 195vh;
    }

    /*ul.social-share > li {
	right: 37%;
}*/
}

@media all and (max-width: 320px) {
    /* Mobile (portrait) ----------- */
    /*--------------------------------------------------------------
# Header Menu - Mobile (Portrait 320px)
--------------------------------------------------------------*/

    /*.hero-list1 {
	margin-left: 40%;
}*/
    .submenu-portion {
        min-height: 260vh;
    }

    /*ul.social-share > li {
	right: 44%; 
}*/
}

/* ----------- iPhone 6 ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {}

/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
    .submenu-portion {
        min-height: 195vh;
    }

    /*li.trigger-share {
	left: -30px;
	top: 0;
}*/
}

/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

    /*li.trigger-share {
	left: -15px;
	top: 0;
}*/
    .submenu-portion {
        min-height: 350vh;
    }

    .circle.expand {
        width: 200%;
    }

    .learn,
    .innovate,
    .automate {
        top: 647px;
    }
}

.stories-items .zoom_text p {
    color: #000;
}

.stories-items .stories-txt .highlight-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #000;
    padding: 20px;
    line-height: 25px;
}

.stories-items .stories-txt .highlight-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 10px 25px;
    background: #2f1113;
    line-height: 25px;
    margin: 0;
}

/* CSS Document */

#showcookies {
    font-size: 20px;
    color: #007cc3;
}

#preferences {
    margin-left: -36px;
    font-size: 20px;
    margin-top: -19px !important;
}

.optanon-show-settings-middle {
    height: 100% !important;
}

.optanon-show-settings {
    background: #b8b8b8;
    padding: 8px 20px !important;
    margin-bottom: 30px;
    border: 1px solid #b8b8b8 !important;
    color: #3f3f3f !important;
}

.optanon-show-settings:hover {
    background-color: transparent !important;
}

.mb25 {
    margin-bottom: 25px;
}

.optanon-show-settings {
    display: none !important;
}

.optanon-show-settings-right {
    display: block !important;
}

.optanon-show-settings-popup-wrapper {
    background-color: #ECECEC !important;
}

.optanon-show-settings-popup-wrapper .optanon-show-settings-button .optanon-show-settings-left {
    background-color: #ECECEC !important;
    border-radius: 25px;
    height: 38px !important;
    width: 40px !important;
}

.optanon-show-settings-popup-wrapper .optanon-show-settings-left {
    background-color: #ECECEC !important;
    background-image: url("../../../SiteCollectionImages/cookies-setting.png") !important;
    background-origin: padding-box;
    background-position: 7px 6px !important;
    background-repeat: no-repeat;
    background-size: 25px auto !important;
    border: none !important;
    float: left;
    height: 38px !important;
    width: 40px !important;
    display: none !important;
}

.optanon-show-settings-popup-wrapper .optanon-show-settings-middle {
    background: transparent !important;
    border-top: 0px solid #ccc !important;
    border-bottom: 0px solid #ccc !important;
    border-left: 0px !important;
    border-right: 0px !important;
    background: none;
    float: left;
    height: 23px !important;
    padding-top: 7px;
}

.optanon-show-settings-popup-wrapper .optanon-show-settings-middle a.optanon-show-settings {
    display: block !important;
    font-size: 20px !important;
}

.optanon-show-settings-popup-wrapper .optanon-show-settings-right {
    background: transparent !important;
    border-top: 0px solid #ccc !important;
    border-bottom: 0px solid #ccc !important;
    border-right: 0px solid #ccc !important;
    border-left: 0px solid #ccc !important;
    background: none;
    float: left;
    height: 30px !important;
    width: 8px !important;
}

/*! jQuery UI - v1.10.4 - 2014-01-17
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-clearfix {
    min-height: 0;
    /* support: IE7 */
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.ui-front {
    z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding: .5em .5em .5em .7em;
    min-height: 0;
    /* support: IE7 */
}

.ui-accordion .ui-accordion-icons {
    padding-left: 2.2em;
}

.ui-accordion .ui-accordion-noicons {
    padding-left: .7em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
    padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

.ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    /* removes extra width in IE */
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
    width: 2.2em;
}

/* button elements seem to need a little more width */
button.ui-button-icon-only {
    width: 2.4em;
}

.ui-button-icons-only {
    width: 3.4em;
}

button.ui-button-icons-only {
    width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
    display: block;
    line-height: normal;
}

.ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 1em .4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 2.1em .4em 1em;
}

.ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
    padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
    left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

/* button sets */
.ui-buttonset {
    margin-right: 7px;
}

.ui-buttonset .ui-button {
    margin-left: 0;
    margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 49%;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}

.ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
}

.ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    outline: none;
}

.ui-menu .ui-menu {
    margin-top: -3px;
    position: absolute;
}

.ui-menu .ui-menu-item {
    margin: 0;
    padding: 0;
    width: 100%;
    /* support: IE10, see #8844 */
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

.ui-menu .ui-menu-divider {
    margin: 5px -2px 5px -2px;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}

.ui-menu .ui-menu-item a {
    text-decoration: none;
    display: block;
    padding: 2px .4em;
    line-height: 1.5;
    min-height: 0;
    /* support: IE7 */
    font-weight: normal;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
    font-weight: normal;
    margin: -1px;
}

.ui-menu .ui-state-disabled {
    font-weight: normal;
    margin: .4em 0 .2em;
    line-height: 1.5;
}

.ui-menu .ui-state-disabled a {
    cursor: default;
}

/* icon support */
.ui-menu-icons {
    position: relative;
}

.ui-menu-icons .ui-menu-item a {
    position: relative;
    padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
    position: absolute;
    top: .2em;
    left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
    position: static;
    float: right;
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
    background: teal;
    height: 100%;
    filter: alpha(opacity=25);
    opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}

.ui-resizable {
    position: relative;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}

.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 22px;
}

.ui-spinner-button {
    width: 16px;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none;
}

/* vertically center icon */
.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0;
}

.ui-spinner-up {
    top: 0;
}

.ui-spinner-down {
    bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position: -65px -16px;
}

.ui-tabs {
    position: relative;
    /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    padding: .2em;
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
    border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
    font-size: 1.1em;
}

.ui-widget .ui-widget {
    font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-size: 1em;
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #eeeeee;
    color: #333333;
}

.ui-widget-content a {
    color: #333333;
}

.ui-widget-header {
    border: 1px solid #e78f08;
    background: #f6a828;
    color: #ffffff;
    font-weight: bold;
}

.ui-widget-header a {
    color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #cccccc;
    background: #f6f6f6;
    font-weight: bold;
    color: #1c94c4;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #1c94c4;
    text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #fbcb09;
    background: #fdf5ce;
    font-weight: bold;
    color: #c77405;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #c77405;
    text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #fbd850;
    background: #ffffff;
    font-weight: bold;
    color: #eb8f00;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #eb8f00;
    text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #ffffff;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35);
    /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
    background: teal;
}

.ui-widget-header .ui-icon {
    background: teal;
}

.ui-state-default .ui-icon {
    background: teal;
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background: teal;
}

.ui-state-active .ui-icon {
    background: teal;
}

.ui-state-highlight .ui-icon {
    background: teal;
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background: teal;
}

/* positioning */
.ui-icon-blank {
    background-position: 16px 16px;
}

.ui-icon-carat-1-n {
    background-position: 0 0;
}

.ui-icon-carat-1-ne {
    background-position: -16px 0;
}

.ui-icon-carat-1-e {
    background-position: -32px 0;
}

.ui-icon-carat-1-se {
    background-position: -48px 0;
}

.ui-icon-carat-1-s {
    background-position: -64px 0;
}

.ui-icon-carat-1-sw {
    background-position: -80px 0;
}

.ui-icon-carat-1-w {
    background-position: -96px 0;
}

.ui-icon-carat-1-nw {
    background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
    background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
    background-position: -144px 0;
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
    background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
    background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

.ui-icon-arrow-4 {
    background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

.ui-icon-extlink {
    background-position: -32px -80px;
}

.ui-icon-newwin {
    background-position: -48px -80px;
}

.ui-icon-refresh {
    background-position: -64px -80px;
}

.ui-icon-shuffle {
    background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

.ui-icon-folder-open {
    background-position: -16px -96px;
}

.ui-icon-document {
    background-position: -32px -96px;
}

.ui-icon-document-b {
    background-position: -48px -96px;
}

.ui-icon-note {
    background-position: -64px -96px;
}

.ui-icon-mail-closed {
    background-position: -80px -96px;
}

.ui-icon-mail-open {
    background-position: -96px -96px;
}

.ui-icon-suitcase {
    background-position: -112px -96px;
}

.ui-icon-comment {
    background-position: -128px -96px;
}

.ui-icon-person {
    background-position: -144px -96px;
}

.ui-icon-print {
    background-position: -160px -96px;
}

.ui-icon-trash {
    background-position: -176px -96px;
}

.ui-icon-locked {
    background-position: -192px -96px;
}

.ui-icon-unlocked {
    background-position: -208px -96px;
}

.ui-icon-bookmark {
    background-position: -224px -96px;
}

.ui-icon-tag {
    background-position: -240px -96px;
}

.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-flag {
    background-position: -16px -112px;
}

.ui-icon-calendar {
    background-position: -32px -112px;
}

.ui-icon-cart {
    background-position: -48px -112px;
}

.ui-icon-pencil {
    background-position: -64px -112px;
}

.ui-icon-clock {
    background-position: -80px -112px;
}

.ui-icon-disk {
    background-position: -96px -112px;
}

.ui-icon-calculator {
    background-position: -112px -112px;
}

.ui-icon-zoomin {
    background-position: -128px -112px;
}

.ui-icon-zoomout {
    background-position: -144px -112px;
}

.ui-icon-search {
    background-position: -160px -112px;
}

.ui-icon-wrench {
    background-position: -176px -112px;
}

.ui-icon-gear {
    background-position: -192px -112px;
}

.ui-icon-heart {
    background-position: -208px -112px;
}

.ui-icon-star {
    background-position: -224px -112px;
}

.ui-icon-link {
    background-position: -240px -112px;
}

.ui-icon-cancel {
    background-position: 0 -128px;
}

.ui-icon-plus {
    background-position: -16px -128px;
}

.ui-icon-plusthick {
    background-position: -32px -128px;
}

.ui-icon-minus {
    background-position: -48px -128px;
}

.ui-icon-minusthick {
    background-position: -64px -128px;
}

.ui-icon-close {
    background-position: -80px -128px;
}

.ui-icon-closethick {
    background-position: -96px -128px;
}

.ui-icon-key {
    background-position: -112px -128px;
}

.ui-icon-lightbulb {
    background-position: -128px -128px;
}

.ui-icon-scissors {
    background-position: -144px -128px;
}

.ui-icon-clipboard {
    background-position: -160px -128px;
}

.ui-icon-copy {
    background-position: -176px -128px;
}

.ui-icon-contact {
    background-position: -192px -128px;
}

.ui-icon-image {
    background-position: -208px -128px;
}

.ui-icon-video {
    background-position: -224px -128px;
}

.ui-icon-script {
    background-position: -240px -128px;
}

.ui-icon-alert {
    background-position: 0 -144px;
}

.ui-icon-info {
    background-position: -16px -144px;
}

.ui-icon-notice {
    background-position: -32px -144px;
}

.ui-icon-help {
    background-position: -48px -144px;
}

.ui-icon-check {
    background-position: -64px -144px;
}

.ui-icon-bullet {
    background-position: -80px -144px;
}

.ui-icon-radio-on {
    background-position: -96px -144px;
}

.ui-icon-radio-off {
    background-position: -112px -144px;
}

.ui-icon-pin-w {
    background-position: -128px -144px;
}

.ui-icon-pin-s {
    background-position: -144px -144px;
}

.ui-icon-play {
    background-position: 0 -160px;
}

.ui-icon-pause {
    background-position: -16px -160px;
}

.ui-icon-seek-next {
    background-position: -32px -160px;
}

.ui-icon-seek-prev {
    background-position: -48px -160px;
}

.ui-icon-seek-end {
    background-position: -64px -160px;
}

.ui-icon-seek-start {
    background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
    background-position: -80px -160px;
}

.ui-icon-stop {
    background-position: -96px -160px;
}

.ui-icon-eject {
    background-position: -112px -160px;
}

.ui-icon-volume-off {
    background-position: -128px -160px;
}

.ui-icon-volume-on {
    background-position: -144px -160px;
}

.ui-icon-power {
    background-position: 0 -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -176px;
}

.ui-icon-signal {
    background-position: -32px -176px;
}

.ui-icon-battery-0 {
    background-position: -48px -176px;
}

.ui-icon-battery-1 {
    background-position: -64px -176px;
}

.ui-icon-battery-2 {
    background-position: -80px -176px;
}

.ui-icon-battery-3 {
    background-position: -96px -176px;
}

.ui-icon-circle-plus {
    background-position: 0 -192px;
}

.ui-icon-circle-minus {
    background-position: -16px -192px;
}

.ui-icon-circle-close {
    background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

.ui-icon-circle-check {
    background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
    background: #666666;
    opacity: .5;
    filter: Alpha(Opacity=50);
}

.ui-widget-shadow {
    margin: -5px 0 0 -5px;
    padding: 5px;
    background: #000000;
    opacity: .2;
    filter: Alpha(Opacity=20);
    border-radius: 5px;
}

.error-message {
    color: red;
    display: none;
}

.mandatory-field {
    color: red;
}

.dob-message {
    display: none;
}

/* L3 pages */
#main-text-body a {
    color: #00578A;
    word-break: break-word;
}

#main-text-body a:focus,
#main-text-body a:hover {
    text-decoration: underline;
}

/* L3 pages */


/* Breadcrum arrow icon */
.rmv-breadcrum .fa-chevron-circle-down:before {
    display: none !important;
}

.hero-list .rmv-breadcrum li>a>.reverseArrow {
    /* background-image: url("../uploads/owl/chevron-circle-white.svg");
    background-repeat: no-repeat;
    background-size: 12px 24px;*/
    display: inline-block;
    height: 12px;
    width: 12px;
    background-position: left;
    vertical-align: middle;
}

/* .hero-list.hero-list1 .rmv-breadcrum li>a>.reverseArrow {
    background-image: url("../uploads/owl/chevron-circle-white.svg");
}

.hero-list1>nav>ol.rmv-breadcrum>li.open>a>.reverseArrow {
    background-image: url("../uploads/owl/chevron-circle-white.svg");
}*/

/* Breadcrum arrow icon */


/* Footer Country arrow */
.up-arrow:before,
.down-arrow:before {
    display: none !important;
}

.up-arrow {
    /* background-image: url("../uploads/owl/chevron-circle-white.svg") !important;
    background-repeat: no-repeat;
    background-size: 12px 25px;*/
    display: inline-block;
    height: 20px;
    width: 12px;
}

.down-arrow {
    /* background-image: url("../uploads/owl/chevron-circle-white.svg") !important;
    background-repeat: no-repeat;
    background-size: 12px 25px;*/
    display: inline-block;
    height: 20px;
    width: 12px;
}

/* Footer Country arrow */


@media only screen and (max-width:1024px) {

    /* Breadcrum arrow icon 
    .hero-list.hero-list1 .rmv-breadcrum li>a>.reverseArrow {
        background-image: url("../uploads/owl/chevron-circle-white.svg");
    }

    /* Breadcrum arrow icon */

}

/* Share icon */
.trigger-share a {
    display: block;
}

header {
    background-color: #000;
}

.breadcrumb-menu {
    background-color: #000;
}