@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');


body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    line-height: 22px;
    min-height: 100%;
}
body > .form-wrapper,
body > .form-wrapper > .client-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/* impersonation btn */
.form-wrapper > div a.btn.btn-danger {
    padding-left: 20px;
    padding-right: 20px;
}

p:last-child {
    margin-bottom: 0;
}
a {
    color: #586D83;
}
a:not([href]) {
    color: inherit;
    text-decoration: none;
}
dl, ol, ul {
    padding-left: 20px;
}
hr {
    border-top: 2px solid #a0a0a0;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* Titles */
h1 {
    line-height: 58px;
}
h2 {
    line-height: 46px;
    margin: 0 0 10px;
}
h2 a {
    color: #444444;
}
h3 {
    line-height: 34px;
}
h4 {
   line-height: 30px; 
}
.gray {
    color: #586D83;
}


/* title */
.text-center h2 {
    position: relative;
    padding-top: 30px;
}
.text-center h2:after {
    content: "";
    height: 5px;
    position: absolute;
    top: 0px;
    left: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background: #586D83;
    width: 65px;
    transform: translateX(-50%);
}
.color-blue {
    color: #586D83;
}


/* Buttons */
.btn {
    border: 1px solid transparent;
    display: inline-block;
    font-size: 16px;
    font-weight: bold !important;
    line-height: 22px;
    padding: 14px 30px;
    text-transform: inherit;
    white-space: inherit;
}
.btn + .btn {
    margin-left: 10px;
}
.btn > em {
    font-size: 13px;
    margin-left: 7px;
}
.btn.btn-sm {
    padding: 10px 16px 9px;
    font-size: 13px;
    line-height: 18px;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
.btn-default {
    background-color: #586D83;
    border-color: #586D83;
}
.btn-default:hover,
.btn-default:focus {
    background-color: #444444;
    border-color: #444444;
}
.btn-white {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #444444;
}
.btn-white:hover {
    background-color: #444444;
    border-color: #444444;
    color: #FFFFFF;
}
.btn-white.color-blue:hover {
    border-color: #FFFFFF;
}
.btn-transparent {
    background-color: transparent;
}
.btn-outline-dark {
    background-color: transparent;
    border: 1px solid #444444;
    color: #444444;
}
.btn-outline-dark:hover {
    background-color: #586D83;
    border: 1px solid #586D83;
    color: #FFFFFF;
}
.btn-outline-white {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.btn-outline-white:hover {
    background-color: #FFFFFF;
    color: #444444;
}
.btn-gray {
    background-color: #444444;
    border-color: #444444;
    color: #FFFFFF;
}
.btn-gray:hover {
    background-color: #586D83;
    border-color: #586D83;
    color: #FFFFFF;
}
input.btn {
    border: none;
}


/* Spacing */
.p-0 {
    padding: 0 !important;
}
.plr-60 {
    padding-left: 60px;
    padding-right: 60px;
}
.mt-20 {
    margin-top: 20px !important
}


/* Breadcrumbs */
.breadcrumbs {
    background-color: #F5F5F5;
    padding: 5px 0;
    margin-bottom: 0;
    border: none;
}
.breadcrumb li {
    font-size: 13px;
    color: #444444;
    padding-right: 8px;
}
.breadcrumb li:last-child {
    padding-right: 0px;
}
.breadcrumb li a {
    color: rgba(118, 134, 146, 0.75);
}
.breadcrumb li a:hover {
    color: #586D83;
    text-decoration: none;
}
.breadcrumb > li + li {
    position: relative;
    padding-left: 16px;
}
.breadcrumb > li + li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 10px;
    background-image: url(/themes/Standard/css/images/icon-arrow-right.svg);
    background-repeat: no-repeat;
    transform: translateY(-50%);
}


/* Input Field */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-size: 14px;
    line-height: 22px;
    padding-left: 10px;
    margin-bottom: 4px;
    padding-top: 0;
}
.form-control {
    border: 1px solid rgba(118, 134, 146, 0.25);
    border-radius: 6px !important;
    font-size: 14px;
    line-height: 22px;
    padding: .375rem 20px;
    height: 50px;
}
select.form-control {
    background-image: url(/images/arrow-down.svg) !important;
    background-position: center right 24px !important;
    padding-right: 40px !important;
}
.form-control:not([readonly]):focus {
    border-color: #444444;
}


/* Common */
.container {
    position: relative;
    z-index: 1;
}
.card-box,
.res-box,
.layer-resources-landing-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    word-break: break-word;
    width: 100%;
}


/* Flex css */
.align-items-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.d-flex {
    display: -webkit-flex!important;
    display: -ms-flexbox!important;
    display: flex!important;
    flex-wrap: wrap;
}
.row.d-flex:before,
.row.d-flex:after {
    display: none;
}
.flex-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}
.full-height,
.equal-height {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.full-height > div,
.equal-height > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.full-height:before,
.full-height:after,
.equal-height:before,
.equal-height:after {
    display: none;
}


/* Header */
.header-wrapper {
    position: relative;
    z-index: 2;
}
.header-top {
    border-bottom: 1px solid #F5F5F5;
}
.search-icon-text {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #231F20;
    font-size: 13px;
    line-height: normal;
    padding: 10px 0;
}
.search-icon-text > svg {
    margin-right: 9px;
    max-width: 15px;
}
.search-active {
    padding: 0 0 0 24px;
    position: absolute;
    left: 15px;
    right: 0;
    top: 0;
    width: 330px;
    z-index: 1;
}
.search-active button.search-ative-btn {
    background-color: #586D83;
    border: none;
    display: inline-block;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    padding: 2px 6px 0px;
    position: absolute;
    right: 10px;
    top: 9px;
    text-transform: uppercase;
    opacity: 1;
}
.search-active .close {
    color: #1A1919;
    font-size: 13px;
    position: absolute;
    right: 80px;
    top: 12px;
    text-transform: uppercase;
}
.search-active input {
    background-color: #FFFFFF;
    border: none;
    color: #1A1919;
    font-size: 13px;
    padding-right: 130px;
    padding-left: 10px;
    height: 36px;
}
.search-active input::-webkit-input-placeholder {
    color: #1A1919;
}
.search-active input::-moz-placeholder {
    color: #1A1919;
    opacity: 1;
}
.search-active input.form-control:focus {
    border: none;
    color: #1A1919;
    outline: 0 none;
    opacity: 1;
}
.search-active input::placeholder {
    visibility: hidden;
}
.header-wrapper .list-inline-item {
    border-left: 1px solid #F5F5F5;
    float: left;
    font-size: 13px;
    line-height: 37px;
    padding: 0 15px;
    position: relative;
    text-transform: uppercase;
}
.header-wrapper .list-inline-item:first-child {
    border-left: none;
    padding-left: 0;
}
.header-wrapper .list-inline-item:last-child {
    padding-right: 0;
}
.header-wrapper .list-inline-item a {
    color: #444444;
}
.header-wrapper .list-inline-item a:hover {
    color: #586D83;
}
.header.navbar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.header .navbar-header img {
    height: inherit;
    padding: 0;
    max-width: 336px;
    max-height: 40px;
}
.header .navbar-nav > li > a {
    color: #444444;
    font-weight: bold;
    padding: 0;
}
.header .navbar-nav > li:focus > a,
.header .navbar-nav > li:hover > a,
.header .navbar-nav > .open > a,
.header .navbar-nav > .open > a:focus,
.header .navbar-nav > .open > a:hover,
.header .navbar-nav > li > a.current {
    background-color: transparent;
    color:#586D83;
}
.header .navbar-nav > li > a:hover,
.header .navbar-nav > li > a.current {
    border-bottom: none;
}
.header .navbar-nav > li > .dropdown-icon:before {
    content: "+";
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin-left: 5px;
    text-align: center;
    width: 10px;
}
.header .navbar-nav > li.open > .dropdown-icon:before {
    content: "-";
    color: #586D83;
}
.header .navbar-nav > li > a.current ~ .dropdown-icon:before {
    color: #586D83;
}
@media screen and (min-width: 992px) {
    .header .navbar-nav > li > .dropdown-menu {
        background-color: #FFFFFF;
        box-shadow: 0 0 20px rgba(0, 0, 0, .15);
        border-radius: 0;
        padding: 10px;
        min-width: 200px;
        left: 0;
        right: inherit;
        display: block;
        opacity: 0;
        margin-top: 15px;
        z-index: -9999;
        pointer-events: none;
        transition: opacity .3s ease,margin .25s ease;
    }
    .header .navbar-nav > li.open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        z-index: 399;
        pointer-events: auto;
    }
    .header .navbar-nav .dropdown-menu li a {
        border-bottom: none;
        color: #444444;
        font-weight: 500;
        padding: 10px 15px;
        transition: all .2s ease-in-out;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }
    .header .navbar-nav .dropdown-menu li a .icon {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        margin-right: 5px;
        width: 25px;
    }
    .header .navbar-nav .dropdown-menu li:hover a {
        background-color: transparent;
        color: #586D83;
    }
    .header-bottom .navbar-btns-right li + li {
        margin-left: 10px;
    }
    .transparent .header .navbar-nav > li > .dropdown-icon:hover:before,
    .transparent .header .navbar-nav > li:hover > .dropdown-icon:before {
        color: #231f20;
    }
}
.header-bottom .navbar-btns-right .btn {
    padding: 9px 18px;
}
.header-bottom .navbar-btns-right .nav-sign-in {
    border: 1px solid #212529;
    color: #212529;
}
.header-bottom .navbar-btns-right .nav-sign-in:hover,
.header-bottom .navbar-btns-right .nav-sign-in:focus {
    background-color: #444444;
    border-color: #444444;
    color: #FFFFFF;
}


/* Home Banner */
.home-banner {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 80px 0;
    position: relative;
    z-index: 9;
    width: 100%;
}
.home-banner:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.home-banner h1 {
    color: #FFFFFF;
    text-shadow: 0px 5px 10px rgba(0, 0, 0, .15);
    position: relative;
    padding-top: 26px;
    max-width: 800px;
    margin: 0 0 40px;
}
.home-banner h1:after {
    background: #FFFFFF;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 65px;
    z-index: -1;
}
h1.banner-title p {
    margin: 0;
}


/* Vectors Bg Css */
body > form {
    overflow: hidden;
}


/* Home Section 2 */
.members-panels,
.membership-panels {
    margin-top: 50px;
}
.members-section {
    background-color: #F5F5F5;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}
.membership-desc,
.subhome-type1-desc,
.members-desc {
    font-size: 21px;
    line-height: 31px;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
    width: 100%;
}
.members-panels-col .layer-type-6-panels-item {
    background-size: cover !important;
    background-position: top center !important;
    position: relative;
    width: 100%;
}
.members-panels-col .layer-type-6-panels-item, 
.subhome-type1-section .layer-type-6-panels-item {
    padding-bottom: 67.57%;
}
.membership-panels > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.members-panels-item-title {
    background: #586D83;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: .5px;
    padding: 7px 15px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.members-panels-item-desc {
    line-height: 28px;
    font-size: 18px;
    margin-top: 20px;
}


/* Home Section 3 */
.membership-section {
    padding: 80px 0;
}
.membership-section h2 {
    margin-bottom: 4px;
}
.membership-section .layer-type-6-panels-item {
    height: 60px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    background-size: 42px 42px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.membership-panels-item-title {
    color: #231F20;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.membership-panels-item-desc {
    color: #898787;
}
.membership-panels-item-desc p {
    line-height: 1.8;
}
.membership-box {
    padding: 15px 5px 30px 72px;
    position: relative;
}


/* Home Testimonials */
.home-testimonials {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    padding: 80px 0;
}
.home-testimonials h2 {
    max-width: 478px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}
.home-testimonials h2 span {
    color: #586D83;
}
.home-testimonials .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.home-testimonials .slick-slide {
    height: inherit;
}
.home-testimonials .slick-list {
    background-color: #FFFFFF;
    margin-bottom: 45px;
}
.home-testimonials .slick-slide.item-slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.home-testimonials .item-slide {
    min-height: 400px;
    padding: 100px 45px 40px;
    outline: none;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
    margin: 15px;
    background: url(/uploads/themes/corporate/assets/quotes.png);
    background-size: 240px;
    background-repeat: no-repeat;
    background-position: top  0 left 8px;
}
.home-testimonials .item-slide .item-content {
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    letter-spacing: .5px;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.home-testimonials .item-author h6 {
    font-size: 17px;
    line-height: 22px;
    margin: 0 0 5px;
    letter-spacing: .5px;
}
.home-testimonials .item-author > span {
    opacity: 0.65;
}
.home-testimonials .slick-arrow {
    background-color: #586D83;
    border: none;
    box-shadow: 0px 4px 10px rgba(118, 134, 146, .2);
    padding: 0;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    line-height: 50px;
    height: 48px;
    width: 48px;
    z-index: 1;
    color: #FFFFFF;
}
.home-testimonials .slick-next.slick-arrow {
    right: -10px;
    left: auto;
}
.home-testimonials .slick-dots {
    position: absolute;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 0;
    text-align: center;
    left: 0;
    bottom: -45px;
}
.slick-dots li button {
    background-color: #586d83;
    border: none;
    border-radius: 100%;
    font-size: 0;
    padding: 0;
    opacity: .25;
    height: 10px;
    width: 10px;
}
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li.slick-active button {
    opacity: 1;
}
.slick-dots li {
    display: inline-block;
}
.slick-dots li + li {
    margin-left: 18px;
}


/* How to join */
.how-to-join-box {
    background: #F5F5F5;
    padding: 50px 30px;
    text-align: center;
}
.how-to-join-box > h2 {
    display: none;
}
.how-to-join,
.how-to-join-box > p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0px;
}
.how-to-join-box .btn,
.how-to-join-box .white-link-color {
    margin-top: 30px;
}


/* Sub Home Page - Subhome Type1 Section */
.subhome-type1-section {
    padding: 80px 0 50px;
    position: relative;
    z-index: 10;
}
.subhome-type1-panels-col {
    margin-bottom: 30px;
}
.subhome-type1-panels-item-link a + a {
    margin-top: 10px;
}
.subhome-title-text-wrap {
    text-align: center;
}
.subhome-type1-panels-image {
    background-size: cover !important;
    background-position: top center !important;
    padding-bottom: 67.57%;
    position: relative;
}
.subhome-type1-panels-item-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    font-size: 20px;
    font-weight: bold;
    padding: 17px 20px;
}
.subhome-type1-panels-item-desc {
    padding: 20px;
}
.subhome-type1-panels-item-link {
    margin-top: 15px;
}
.subhome-title-text-wrap + .subhome-type1-panels {
    margin-top: 50px;
}
.subhome-type1-section + .subhome-type1-section {
    padding-top: 40px;
}


/* Home Subscribe */
.home-subscribe {
    padding: 80px 0;
}
.home-subscribe:last-child {
    padding-top: 0;
}
.home-subscribe .card-box {
    padding: 30px;
}
.home-subscribe .card-box > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}
.home-subscribe h3 {
    margin-bottom: 5px;
    margin-top: 0;
    font-size: 24px;
    line-height: 34px;
}
.stay-ahead {
    display: inline-block;
    position: relative;
    max-width: 400px;
    width: 100%;
}
.stay-ahead input[type="text"] {
    border: 1px solid #212529;
    height: 46px;
    border-radius: 8px;
    padding: 13px 100px 12px 20px;
    width: 100%;
}
.stay-ahead input[type="submit"] {
    background-color: #586D83;
    border: none;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    padding: 9px 14px 7px;
    position: absolute;
    right: 5px;
    top: 5px;
    height: 36px;
}
.stay-ahead .g-recaptcha > div {
    margin: 0 auto;
}
.stay-ahead .g-recaptcha iframe {
    display: block;
    margin: 0;
}
.home-subscribe .btn-blue {
    color: #FFFFFF;
}
.home-subscribe .btn-blue:hover {
    background-color: #A9A9A9;
}

.overall-layer-wrapper-subhome {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}


/* Top Blue Title Header */
.cms-content-heading,
.dashboard-header,
.transparent-page-header {
    background: #586D83 !important;
    padding: 80px 0 !important;
    height: auto !important;
    position: relative;
}
.cms-content-heading h1,
.dashboard-header h1,
.transparent-page-header h1 {
    color: #FFFFFF;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 0;
}
.cms-content-heading-publish-date {
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.cms-content-heading-publish-date > i {
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #000000;
    font-size: 12px;
    margin-right: 8px;
}
.cms-content-heading .cms-content-heading-summary {
    color: #FFFFFF;
    font-size: 21px;
    line-height: 31px;
    margin-top: 4px;
}
.cms-content-heading:before,
.dashboard-header:before,
.transparent-page-header:before {
    background-image: url(/uploads/themes/corporate/assets/white-diamond-left.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto 100%;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.cms-content-heading:after,
.dashboard-header:after,
.transparent-page-header:after {
    background-image: url(/uploads/themes/corporate/assets/white-diamond-right.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 100%;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
div.dashboard-header-title {
    padding-left: 0;
}
div.dashboard-header-title h1 {
    margin-bottom: 0;
}


/* Conatct Outline Box */
.membership-section-box {
    padding-bottom: 20px;
}
.membership-section-box .membership-box {
    padding: 20px 15px 20px;
}
.membership-section-box .membership-panels-item-title {
    padding: 7px 15px;
    margin-bottom: 18px;
    background: #f5f5f5;
    display: inline-block;
    margin-left: -15px;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: inherit;
}
.membership-section-box .membership-panels-col {
    margin-bottom: 30px;
}


/* Conatct Card Box */
.layer-workshops {
    padding: 50px 0 20px;
}

.sbs-page-content-wrapper-page {
    background: transparent;
    margin: 0;
    padding: 80px 0;
}


/* FAQs */
.faqs-layer {
    padding-top: 50px;
}
.right-border-content > .row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 20px;
}
.top-title h3 {
    margin-bottom: 0;
}

.search-bar-content,
.search-news > div {
    display: block;
    position: relative;
}
.search-bar-content .search-icon,
.search-news input[type="image"] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.search-bar-content .form-control, .search-news .form-control {
    background: transparent;
    color: #656565;
    padding: 12px 16px 12px 44px;
    height: auto;
    font-size: 14px;
}
.search-bar-content .form-control::-webkit-input-placeholder,
.search-news .form-control::-webkit-input-placeholder {
    color: #656565;
}
.search-bar-content .form-control::-moz-placeholder,
.search-news .form-control::-moz-placeholder {
    color: #656565;
    opacity: 1;
}
.search-bar-content .form-control:-ms-input-placeholder,
.search-news .form-control:-ms-input-placeholder {
    color: #656565;
}
.search-bar-content .form-control:-moz-placeholder,
.search-news .form-control:-moz-placeholder {
    color: #656565;
}
.search-news label {
    padding: 0;
}


/* Team */
.ui-accordion {
    border-bottom: none;
    margin: 0;
}
.ui-accordion .ui-accordion-header:first-child {
    margin-top: 0px !important;
}
.ui-accordion .ui-accordion-header {
    background: #F5F5F5;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: normal;
    margin-bottom: 0;
    padding: 15px 45px 15px 20px;
    position: relative;
    outline: none;
    font-weight: 700;
    border: none;
    margin-top: 20px !important;
}
.panel-widget + .panel-widget .ui-accordion .ui-accordion-header {
    margin-top: 20px;
}
.ui-accordion .ui-accordion-header span {
    font-weight: normal;
}
.ui-accordion .ui-accordion-header ~ .ui-accordion-header {
    margin-top: 20px;
}
.ui-accordion .ui-accordion-header:after {
    font-family: inherit;
    content: '+';
    line-height: 1;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: auto;
}
.ui-accordion .ui-accordion-header-active.ui-accordion-header:after {
    content: '-';
}
.ui-accordion .ui-accordion-content {
    padding: 20px 20px 0;
    margin-top: 0 !important;
    background: transparent;
    font-size: 15px;
}
.ui-accordion .ui-accordion-content p {
    line-height: 22px;
}
.click-to-scroll-content ~ .click-to-scroll-content {
    padding-top: 80px;
}
.team-intro {
    padding: 50px 0 0px !important;
}
.team-item {
    margin-top: 20px;
}
.team-box {
    padding: 10px;
}
.team-box-img {
    position: relative;
}
.team-content {
    padding: 20px 10px 10px;
}
.team-box .team-box-img img {
    width: 100%;
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
}
.team-box .emp_name {
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #586d83;
    width: 100%;
    padding: 10px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.team-box .emp_name:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 10px;
    left: -10px;
    bottom: 0;
    background-color: #586d83;
}
.team-box .emp_name:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 10px;
    right: -10px;
    bottom: 0;
    background-color: #586d83;
}
.team-box .emp_name span {
    display: inline-block;
    width: 100%;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: none;
}
.team-box .stk-white-box {
    padding-bottom: 10px;
    position: relative; 
}
.team-box .stk-white-box > div:last-child:not(.team-content) {
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px -1px 0px rgba(118, 134, 146, 0.15);
    text-align: right;
    width: 100%;
    padding-top: 15px;
}
.team-box .stk-white-box > div:last-child a {
    color: #005EB8;
}
.team-box .stk-white-box > div:last-child a:hover {
    color: #444444;
}
.team-box .stk-white-box > div:last-child a svg {
    font-size: 13px;
    margin-left: 5px;
}


/* Login */
.sbs-background-container {
    padding: 20px 0 50px;
}
.login-box {
    padding: 30px;
    margin-top: 30px;
}
.login-box p {
    margin-bottom: 20px;
}
.login-box .g-recaptcha {
    margin-top: 0;
}
.login-lhs-btn a {
    display: inline-block;
    margin-top: 0;
}


/* Register */
.signup-wrap h3 {
    margin-bottom: 20px;
}
.desc {
    font-size: 15px;
    font-style: inherit;
    margin-bottom: 0;
}
.form-group .form-control ~ .text-danger,
.form-group label ~ .text-danger {
    color: #E93838 !important;
    position: relative;
    top: 5px;
    left: 0;
    font-size: 13px;
}
div.alert-danger:before {
    content: none;
}
div.alert-danger {
    background-color: #E93838;
    border-color: #E93838;
    color: #FFFFFF;
    padding: 10px;
    font-size: 13px;
    letter-spacing: .5px;
    border-radius: .25rem;
}
div.alert-danger ul {
    padding: 0;
    list-style: none;
}
div.alert-danger ul li {
    padding-top: 5px;
    position: relative;
    padding-left: 10px;
}
div.alert-danger ul li:last-child {
    margin-bottom: 0;
}
div.alert-danger ul li + li {
    border-top: 1px solid #ff6f6f;
    padding-bottom: 5px;
}
div.alert-danger ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    height: 3px;
    width: 3px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


/* Check Box */
.check-item-new {
    padding-left: 25px;
    position: relative;
}
.check-item-new input[type="checkbox"] {
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}
.check-item-new label {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    padding-left: 0;
}
.check-item-new label:before {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    left: 0;
    top: 1px;
    border-radius: 3px;
    border: 1px solid #cacaca;
}
.check-item-new label:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.check-item-new input:checked ~ label:before {
    border-color: #586D83;
    background-color: #586D83;
}
.check-item-new input:checked ~ label:after {
    display: block;
}


/* About */
.subhome-layer {
    min-height: 559px;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}
.subhome-layer .banner-title {
    padding-top: 70px;
    position: relative;
    z-index: 1;
}
.subhome-layer .banner-title > span {
    color: #586D83;
}
.subhome-panels-col-inner {
    padding: 30px 30px 30px 90px;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
}
.subhome-panels .subhome-panels-col .layer-type-6-panels-item {
    height: 44px;
    width: 44px;
    background-size: 28px 28px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    margin: 0 auto 15px;
    background-color: #F5F5F5 !important;
    border-radius: 4px;
    position: absolute;
    left: 30px;
    top: 30px;
}
.subhome-layer .subhome-panels {
    margin-top: 70px;
    position: relative;
}
.subhome-layer .subhome-panels:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 10px;
    width: 100%;
    background-color: #dfe8f1;
    margin-top: -5px;
}
.subhome-layer .subhome-panels > div,
.subhome-layer .subhome-panels > div > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.subhome-desc {
    margin-bottom: 0px;
    margin-top: 20px;
}
.subhome-desc .btn {
    margin-top: 10px;
    margin-right: 5px;
}
.subhome-desc .btn + .btn {
    margin-left: 0;
}
.cross-img-wrap {
    background-size: cover !important;
    padding-top: 100%;
}
.cross-img-wrap:before {
    background-image: radial-gradient(#586D83 2px,transparent 2.5px);
    background-size: 0.75rem 0.75rem;
    content: '';
    position: absolute;
    top: -1.7rem;
    left: -1.5rem;
    transform: translate3d(0px, 1px, 0px);
    opacity: .4;
    height: 9rem;
    width: 7rem;
    z-index: -1;
}
.cross-img-wrap:after {
    background-color: #F5F5F5;
    content: '';
    position: absolute;
    bottom: -1.8rem;
    right: -0.8rem;
    width: 85%;
    height: 90%;
    transform: translate3d(0px, 0px, 0px);
    z-index: -1;
}


/* Blog */
.overall-layer-wrapper-subhome > div.blog-wrapper {
    padding-top: 50px;
}
.blog-list-item-image {
    padding-top: 100%;
    height: 0;
    position: relative;
}
.blog-list-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
}
.blog-list-item-date {
    font-size: 14px;
    line-height: 22px;
    color: #586D83;
}
.blog-list-item-title {
    font-size: 26px;
    line-height: 34px;
    margin-top: 4px;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.blog-space {
    background-color: #F3F4F5;
    margin-bottom: 30px;
    margin-top: 30px;
    height: 5px;
    width: 100%;
}
.blog-list-wrapper {
    padding-top: 30px;
}
.blog-list .blog-list-item-content {
    padding-left: 20px;
    padding-top: 60px;
}
.blog-list .blog-list-two-col {
    margin-bottom: 30px;
}
.blog-list-header .blog-list-header-item {
    margin-bottom: 30px;
    text-align: center;
}
.blog-list-header .blog-list-item-title {
    font-size: 18px;
    line-height: 28px;
    margin-top: 14px;
    position: relative;
    padding-top: 15px;
    margin-top: 20px;
}
.blog-list-header .blog-list-item-title:before {
    content: "";
    height: 3px;
    position: absolute;
    top: 0px;
    left: 50%;
    background: #586D83;
    width: 50px;
    transform: translateX(-50%);
}


/***** blog details *****/
/* top banner */
.blog-listing-image {
    min-height: 560px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.layer-colour-scheme-dark-grey:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.image-panel-title-wrapper > div > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.blog-listing-image .image-panel-title-wrapper {
    padding-bottom: 60px;
    padding-top: 145px;
    width: 100%;
    transform: inherit;
    position: static;
}
.cms-content-image-panel .image-panel-title-wrapper .cms-content-image-title {
    text-align: left;
    margin-bottom: 10px;
}
.cms-content-image-panel .image-panel-title-wrapper .cms-content-image-title h1:after{
    display: none;
}
.cms-content-image-panel .image-panel-title-wrapper .cms-content-image-title h1 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 42px;
    margin: 10px 0 2px;
    text-transform: inherit;
    text-align: left;
}


/* blog detail content */
.blog-listing-content {
    padding: 50px 0;
}


/* share */
.blog-listing-share {
    padding: 20px 0;
}
.blog-listing-share .blog-listing-share-inner {
    border-bottom: 1px solid #000;
}
.blog-listing-share .blog-listing-share-inner span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 0;
    font-weight: 500;
}
.blog-listing-share .blog-listing-share-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.blog-listing-share .blog-listing-share-on a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}
.blog-listing-share .blog-listing-share-on > span{
    margin-right: 10px;
}
.blog-listing-share .blog-listing-share-on a i {
    font-size: 20px;
    color: #444444;
}


/* Blog Related */
.blog-listing-related {
    text-align: center;
}
.related-blog-listing {
    padding: 50px 0;
}
.related-blog-listing .related-blog-header {
    margin-bottom: 30px;
    text-align: center;
}
.related-blog-listing .blog-list-item-title {
    font-size: 18px;
    line-height: 28px;
    margin-top: 14px;
    position: relative;
    padding-top: 15px;
    margin-top: 20px;
}
.related-blog-listing .blog-list-item-title:before {
    content: "";
    height: 3px;
    position: absolute;
    top: 0px;
    left: 50%;
    background: #586D83;
    width: 50px;
    transform: translateX(-50%);
}


/* Events Nav */
.events-layer {
    padding: 50px 0;
}
.event-layer-nav.subnav {
    margin-top: 14px;
}
.subnav ul {
    padding: 0;
    list-style: none;
    padding: 0;
}
.subnav > ul > li {
    font-size: 14px;
    line-height: 20px;
}
.subnav > ul > li + li {
    margin-top: 26px;
}
.subnav > ul > li > a.active {
    color: #586D83;
}
.subnav > ul > li > a {
    display: inline-block;
    padding-left: 36px;
    background-image: url(/uploads/themes/corporate/assets/all-events-icon.svg);
    background-position: left top;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    color: #444444;
    transition: inherit;
}
.subnav > ul > li > a:hover,
.subnav > ul > li > a.active  {
    background-image: url(/uploads/themes/corporate/assets/all-events-icon-hover.svg);
    color: #586D83;
}
.subnav > ul > li.subnav-lhs-item-events-conferences > a {
    background-image: url(/uploads/themes/corporate/assets/all-events-conferences.svg);
}
.subnav > ul > li.subnav-lhs-item-events-conferences > a:hover,
.subnav > ul > li.subnav-lhs-item-events-conferences > a.active {
    background-image: url(/uploads/themes/corporate/assets/all-events-conferences-hover.svg);
}
.subnav > ul > li.subnav-lhs-item-events-presentations > a {
    background-image: url(/uploads/themes/corporate/assets/all-events-presentations.svg);
}
.subnav > ul > li.subnav-lhs-item-events-presentations > a:hover,
.subnav > ul > li.subnav-lhs-item-events-presentations > a.active {
    background-image: url(/uploads/themes/corporate/assets/all-events-presentations-hover.svg);
}
.subnav > ul > li.subnav-lhs-item-events-webinars > a {
    background-image: url(/uploads/themes/corporate/assets/all-events-webinar.svg);
}
.subnav > ul > li.subnav-lhs-item-events-webinars > a:hover,
.subnav > ul > li.subnav-lhs-item-events-webinars > a.active {
    background-image: url(/uploads/themes/corporate/assets/all-events-webinar-hover.svg);
}


/* Event Share */
.sbs-event-share-list a:hover svg path {
    fill: #586d83;
}


/* Events */
.entry-item {
    padding: 30px;
}
.entry-item + .entry-item {
    margin-top: 15px;
}
.wrapper-standard:not(:last-child),
.wrapper-featured:not(:last-child) {
    margin-bottom: 11px;
}
.entry-item h3.entry-title {
    font-size: 16px;
    line-height: 24px;
    padding-right: 30px;
}
.entry-item h3.entry-title a {
    color: #586D83;
}
.entry-item .entry-content {
    font-size: 14px;
    word-break: break-word;
    margin-top: 10px;
}
.entry-item .entry-meta ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 0;
    padding: 0;
}
.entry-item .entry-meta .list-inline-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    vertical-align: top;
}
.entry-item .entry-meta .list-inline-item > img {
    margin-right: 10px;
}
.entry-item .entry-meta .list-inline-item:not(:last-child) {
    margin-right: 44px;
}
.events-layer .entry-item .entry-meta .list-inline-item:not(:last-child) {
    margin-right: 24px;
}
.entry-item .entry-meta .list-inline-item .icon {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 6px;
    height: 26px;
    width: 26px;
}
.entry-item .entry-meta .list-inline-item span + span:last-child {
    color: #586D83;
    margin-left: 4px;
}
.events-layer > div > div > div:nth-child(2) > h3 {
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 50px 20px;
    font-size: 20px;
    text-align: center;
}

/* event details */
.sbs-event-detail-tickets > .btn {
    margin-bottom: 0;
}

/* pagination */
.pagination-box .pagination li + li {
    margin-left: 10px;
}
.pagination-box .pagination li a {
    border: none;
    cursor: pointer;
    color: #231F20;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1px;
    padding: 10px 18px;
    text-transform: uppercase; 
}
.pagination-box .pagination li a:hover,
.pagination-box .pagination li a:focus {
    background-color: transparent;
    color: #586D83;
}
.pagination-box .pagination li.active a,
.pagination-box .pagination li.active a:hover {
    background-color: transparent;
    box-shadow: 0px 2px 0px #586D83;
    color: #586D83; 
}
.pagination-box .pagination li a i {
    font-weight: bold;
}

/* Calender */
.home-widget.home-widget-upcoming-events {
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 0 15px 15px;
    overflow-x: auto;
}
.home-widget.home-widget-upcoming-events + .home-widget.home-widget-upcoming-events {
    margin-top: 11px;
}
.home-widget.home-widget-upcoming-events .members-panels-item-link {
    margin-top: 15px;
}
.home-widget-upcoming-events p + p {
    margin-top: 10px;
}
.home-widget-upcoming-events .home-events-calendar {
    margin-bottom: 24px;
}
.home-widget-upcoming-events .home-events-calendar > div {
    width: 100%;
    font-family: inherit;
    background-color: transparent;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcTitle {
    font-size: 14px;
    line-height: 24px;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcTitlebar {
    background-image: none;
    color: #444444;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
    background: transparent;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcMain {
    border: none;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcWeek th {
    border-bottom: 1px solid #dfdfdf;
    color: #586D83;
    height: 45px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    background-color: transparent;
}
.home-widget-upcoming-events .RadCalendar, 
.home-widget-upcoming-events .RadCalendar * {
    box-sizing: inherit;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow td {
    border-bottom: 1px solid #dfdfdf;
    font-size: 12px;
    line-height: 22px;
    padding: 2px 1px 1px;
    height: 50px;
    text-align: center;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcSelected,
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcToday {
    border: transparent;
    border-bottom: 1px solid #dfdfdf;
    background: none;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcToday.rcHover {
    border-bottom: 1px solid #dfdfdf;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow td.rcHover {
    background: transparent;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow td.rcHover a {
    background: #586D83;
    color: #FFFFFF;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcSelected a {
    position: relative;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcSelected a:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #586D83;
    margin-left: -3px;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow td a {
    border: none;
    background: transparent;
    border-radius: 50%;
    color: #444444;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0 auto;
    padding: 1px 0 0;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcRow .rcToday a {
    background: #e3e3e3;
}
.home-widget-upcoming-events .RadCalendar.events-calendar .rcFastPrev, 
.home-widget-upcoming-events .RadCalendar.events-calendar .rcFastNext {
    display: none !important;
}
.home-widget-upcoming-events .RadCalendar_Default.RadCalendar .t-font-icon:before {
    color: #444444;
    width: 7px;
    height: 12px;
    padding: 0;
    font-size: 0;
    margin: 0;
    background-image: url(/uploads/themes/arrow-slide-left.svg);
    background-size: cover;
    position: relative;
    top: 1px;
}
.home-widget-upcoming-events .RadCalendar_Default.RadCalendar .t-button:hover,
.home-widget-upcoming-events .RadCalendar_Default.RadCalendar .t-button:focus {
    border-color: transparent;
    background-color: transparent;
    background-image: none;
}
.published-date svg {
    margin-right: 5px;
}
.RadCalendar_Default.RadCalendar .t-font-icon.t-i-arrow-right:before {
    background-image: url(/uploads/themes/arrow-slide-right.svg);
    margin-left: 10px;
}


/* Calendar bottom slide */
.home-events-wrapper {
    text-align: center;
    padding-bottom: 10px;
}
.home-events-wrapper > span {
    font-size: 12px;
    color: #586D83;
}
span.home-events-item-title {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}
span.home-events-item-title a {
    line-height: 22px;
    display: inline-block;
    color: #444444;
}
span.home-events-item-location {
    font-size: 14px;
    line-height: 22px;
    display: inline-block;
    width: 100%;
}
.home-events-wrapper button.slick-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    border: none;
    background-color: transparent;
    padding: 0;
    height: 34px;
    width: 34px;
    margin-top: -17px;
}
.home-events-wrapper button.slick-arrow:focus {
    box-shadow: none;
    outline: none;
}
.home-events-wrapper button.slick-next {
    left: inherit;
    right: 0;
    top: 50%;
}


/* Single Events */
.sbs-event-detail-wrapper {
    margin: 50px 0 20px;
}
.sbs-event-detail-header {
    margin-bottom: 30px;
}
.sbs-event-detail-image {
    background-size: cover !important;
    border-radius: 15px;
    width: 100%;
}
.form-control-qty {
    border-radius: 8px !important;
    padding-left: 12px;
}
.buy-tickets-panel-footer {
    margin-top: 15px;
}
.sbs-event-detail-tickets hr {
    border-top-width: 1px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.sbs-event-detail-rhs h3 {
    margin-bottom: 10px;
}





/*** event page ***/
/* top layer */
.events-top-layer {
    padding-top: 40px;
}
.events-top-layer > div > div, .events-top-layer > div > div > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.events-top-layer > div > div > div:first-child {
    padding-right: 0;
}
.events-top-layer > div > div > div:last-child {
    padding-left: 0;
}
.events-top-lhs.card-box {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 30px;
    overflow: auto;
}
.events-top-lhs a {
    font-weight: 500;
}
.events-top-rhs {
    overflow: hidden;
    width: 100%;
    background-color: #ffffff !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding-top: 70%;
}
.events-top-rhs > img {
    width: auto;
    height: auto;
    object-fit: cover;
    max-height: 90%;
}
/* events-listing-layer */
.filter-and-eventslist-lhs.card-box {
    padding: 20px;
}
.search-filter-wrap {
    position: relative;
}
.search-filter-wrap .search-filter-wrap-icon {
    position: absolute;
    left: 15px;
    top: 14px;
}
.search-filter-wrap input[placeholder="Search"] {
    padding-left: 46px;
    font-weight: 500;
    min-height: 54px;
}
.event-filter-lhs input[value=Filter] {
    float: right;
}
.event-filter-lhs .btn-clear:hover {
    color: #586D83;
}
.events-listing-layer {
    padding-top: 60px;
    padding-bottom: 60px;
}
/* event list rhs box */
.event-listing-title {
    margin-bottom: 30px;
}
.event-item-title + .event-item-btn {
    margin-top: 20px;
}
.event-listing-title-rhs-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.event-item {
    background-color: #FFFFFF;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
}
.event-item-image {
    overflow: hidden;
    width: 100%;
    padding-top: 68.63%;
    border-bottom: 1px solid #eee;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.event-item .event-item-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 7px;
}
.event-item .event-item-cat {
    color: #586D83;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
}
.event-item-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.event-item > .event-item-content {
    padding: 20px;
}
.event-item .event-item-tag {
    font-weight: 500;
    padding: 6px 0 6px 25px;
    position: relative;
    font-size: 12px;
    line-height: 20px;
}
.event-item .event-item-tag + .event-item-tag {
    border-top: 1px solid #F0F2F2;
}
.event-item .event-item-tag img, 
.event-item .event-item-tag svg {
    position: absolute;
    left: 0px;
    top: 7px;
}
.event-item .event-item-description {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 10px;
    word-break: break-word;
    margin-top: 10px;
}
.event-item .event-item-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 10px;
}
.event-item-btn > a {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
/* pagination */
.pagination {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pagination>li {
    margin-top: 10px;
    margin-right: 15px;
}
.pagination>li:last-child {
    margin-right: 0px;
}
.pagination>li>a {
    cursor: pointer;
}
.pagination>li>a, 
.pagination>li>span {
    background-color: #FFFFFF;
    box-shadow: 0px 6px 16px rgba(29, 29, 31, 0.06);
    border-radius: 50% !important;
    border: none;
    color: #1D1D1F;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 6px;
    height: 40px;
    width: 40px;
}
.pagination>li>a>i {
    font-size: 18px;
}
.pagination > .active > a, 
.pagination > .active > span,
.pagination > li > a:focus, 
.pagination > li > a:hover, 
.pagination > li > a span:focus, 
.pagination > li > a span:hover {
    background-color: #586D83;
    color: #fff;
}
.pagination > .active > a:focus, 
.pagination > .active > a:hover, 
.pagination > .active > span:focus, 
.pagination > .active > span:hover {
    background-color: #586D83;
    border-color: #586D83;
    color: #fff;
}
.pagination  a:hover svg path {
    stroke: #fff;
}
/* event top filter */
.sort-with-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sort-with-map {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.sort-with-map .list-calendar-nav  {
    margin-bottom: 0;
    margin-right: 16px;
}
.list-calendar-nav {
    margin-bottom: 15px;
}
.list-calendar-nav i {
    margin-right: 8px;
}
.list-calendar-nav a {
    text-decoration: none;
}
.list-calendar-nav a:hover {
    opacity: .8;
}
/* event_locations */
.event-locations-layer {
    padding: 30px 0;
}
.subhome-services-lhs {
    padding: 20px;
}
.event-locations-layer .list-calendar-nav {
    text-align: right;
}
.event-locations-layer .list-calendar-nav {
    text-align: right;
}
.list-calendar-nav {
    margin-bottom: 15px;
}
.list-calendar-nav i {
    margin-right: 8px;
}
.list-calendar-nav a {
    text-decoration: none;
}
.list-calendar-nav a:hover {
    opacity: .8;
}

/********** event details *****************/
.sbs-event-detail-wrapper.sbs-page-content-wrapper {
    padding: 0;
    box-shadow: none;
    background: transparent;
}
/* event details - top layer */
.sbs-event-detail-image {
    position: relative;
    width: 100%;
    border-radius: 5px;
    background-color: #fff !important;
    align-self: flex-start;
    overflow: hidden;
    margin-bottom: 30px;
}
.sbs-event-detail-image > img {
    width: 100%;
}
.sbs-event-detail-wrapper .sbs-event-detail-info {
    padding: 30px;
}
.time-address-list {
    padding: 15px 15px 15px 40px;
    position: relative;
}
.time-address-list-wrap {
    display: flex;
    flex-wrap: wrap;
}
.time-address-list {
    padding: 15px 15px 15px 40px;
    position: relative;
    width: 48%;
    border-top: 1px solid #F0F2F2;
}
.time-address-list:nth-child(2n) {
    margin-left: 4%;
}
.time-address-list-wrap .time-address-list:nth-child(1),
.time-address-list-wrap .time-address-list:nth-child(2) {
    border-top: none;
}
.time-address-list h6 {
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 2px;
}
.sbs-event-detail-info-title h1 {
    margin-bottom: 5px;
}
.event-details-title-subtext {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #00B1B0;
    margin-bottom: 20px;
}
.time-address-list h6 svg {
    position: absolute;
    left: 5px;
    top: 17px;
}
.time-address-list h6 svg path {
    fill: #586D83;
}
.time-address-list p ,
.time-address-list div{
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 0;
}
.sbs-event-detail-header > div > div:last-child {
    float: none;
    display: inline-block;
}
.sbs-event-detail-tickets.card-box .btn {
    margin-top: 20px;
    margin-bottom: 0;
}
/*** event details - bottom layer ***/


/* event details - bottom layer (lhs) */
.sbs-event-detail-lhs.card-box h2 {
    margin-bottom: 25px;
}
.course-calendar-share-option {
    border-top: 1px solid #F0F2F2;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #F0F2F2;
}
.course-add-calendar, .course-share {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}
.course-add-to-calendar, .course-share-option {
    list-style-type: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}
.course-add-calendar-title, .course-share-title {
    font-weight: bold;
    margin-right: 10px;
}
.course-add-to-calendar > div, .course-share-option > div {
    width: 32px;
    height: 32px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.course-add-to-calendar .course-add-calendar-item {
    display: block;
}
.course-add-to-calendar img, .course-share-option svg {
    display: block;
    max-width: 16px;
    max-height: 16px;
}
.course-add-to-calendar .sbs-event-calendar-text {
    display: none;
}
.course-calendar-share-option h6 {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.sbs-event-calendar-icon {
    margin-right: 0;
}
/* detail bottom autor */
.sbs-event-author img {
    height: auto;
    max-width: 90px;
}
.sbs-event-details-author-outline {
    padding: 4px 10px 4px 25px;
    font-size: 12px;
}
.sbs-event-details-author-outline .sbs-event-details-panel-icon {  
    left: 9px;
    top: 6px;
    width: 10px;
}
@media screen and (max-width: 1199px) {
    .event-filter-lhs input[value=Filter] {
        padding: 10px;
    }
    .event-filter-lhs .btn {
        font-size: 14px;
    }
}
@media screen and (max-width: 991px) {
    .events-top-layer > div > div > div:last-child {
        padding-left: 15px;
    }
    .events-top-layer > div > div > div:first-child {
        padding-right: 15px;
    }
    .events-top-layer .row > div {
        width: 100%;
    }
    .events-top-layer .row {
        flex-direction: column-reverse;
    }
    .events-top-rhs {
        padding-top: 68%;
        background-size: cover !important;
        border-radius: 0;
    }
    .events-listing-layer .sortby-list {
        margin-top: 0;
    }
    .events-listing-layer .sortby-list > a {
        border: none;
    }
}
@media screen and (max-width: 767px) {
    .events-top-lhs.card-box {
        padding: 20px;
    }
    .event-listing-title-rhs-col h2 {
        margin-bottom: 7px;
    }
    .sbs-event-detail-header .sbs-event-detail-image {
        margin-bottom: 0;
    }
    .sbs-event-detail-header > div > div {
        display: inline-block;
        width: 100%;
    }
    .sbs-event-detail-header > div > div + div {
        margin-top: 30px;
    }
    .filter-and-eventslist-lhs.card-box {
        margin-bottom: 30px;
    }
    .events-listing-layer .pagination {
        margin: 10px 0;
    }
}



/* Resources */
.layer-resources-landing {
    padding-top: 50px;
}
.layer-resources-landing-nav,
div.sbs-subnav {
    padding: 30px;
}
.sbs-subnav ul li {
    margin: 0;
    padding: 0;
}
.sbs-subnav ul li:before {
    display: none;
}
.layer-resources-landing-nav > h6 {
    display: block;
    color: #444444;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 26px;
    padding-bottom: 12px;
    position: relative;
}
.layer-resources-landing-nav > h6:after {
    background: #586D83;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    z-index: 1;
}
.layer-resources-landing-nav .nav-accordion {
    list-style-type: none;
    padding: 0;
}
.layer-resources-landing-nav .nav-accordion li + li,
.sbs-subnav .nav-accordion li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    margin-top: 13px;
    padding-top: 13px;
}
.layer-resources-landing-nav .nav-accordion li a,
.sbs-subnav ul li a {
    color: #444444;
}
.layer-resources-landing-nav .nav-accordion li a:hover,
.sbs-subnav ul li:hover a,
.sbs-subnav ul li.current a {
    color: #586D83;
}
.search-short-wrap {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.search-lhs {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.search-lhs .form-control {
    font-size: 16px;
    line-height: 24px;
}
.search-bar-content {
    display: block;
    position: relative;
}
.search-bar-content .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.search-bar-content .form-control {
    background: transparent;
    color: #586D83;
    padding: 12px 16px 12px 44px;
}
.search-bar-content .form-control::-webkit-input-placeholder {
    color: #586D83;
}
.search-bar-content .form-control::-moz-placeholder {
    color: #586D83;
    opacity: 1;
}
.search-bar-content .form-control:-ms-input-placeholder {
    color: #586D83;
}
.search-bar-content .form-control:-moz-placeholder {
    color: #586D83;
}
.select-wrap-top select {
    background-color: transparent !important;
    padding: 12px 16px;
    width: 200px;
}
.search-lhs > div {
    width: 48%;
}
.search-lhs > div + div {
    margin-left: 4%;
}
.sortby-list {
    position: relative;
}
.sortby-list > a {
    padding: 12px 42px 10px 16px;
}
.sortby-list > i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.res-top-small {
    font-weight: bold;
    margin: 20px 0;
}
.layer-resources .sbs-layer-panels {
    margin-bottom: 30px;
}
.layer-resources .sbs-layer-panels-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}
.layer-resources .sbs-layer-panels-item-image {
    background-size: cover !important;
    padding-top: 51.82%;
}
.layer-resources .sbs-layer-panels-item-info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    position: relative;
}
.layer-resources .sbs-layer-panels-item-info-top {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.layer-resources .sbs-layer-panels-item-title,
.layer-resources .sbs-layer-panels-item-desc {
    margin-bottom: 10px;
}
.layer-resources .sbs-layer-panels-item-title a {
    color: inherit;
}
.layer-resources .sbs-layer-panels-item-date {
    color: #586D83;
    font-size: 14px;
    line-height: 22px;
    order: -1;
    margin-bottom: 4px;
}
.layer-resources .sbs-layer-panels-item-date:before {
    content: "\f274";
    color: #586D83;
    font-family: 'FontAwesome';
    margin-right: 3px;
}
.layer-resources .sbs-layer-panels-item-type-text {
    background: #586D83;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold;
    line-height: normal;
    padding: 10px 20px 10px 10px;
    position: absolute;
    right: 0;
    top: -36px;
}
.layer-resources .sbs-layer-panels-item-type-text i {
    display: none;
}
.layer-resources .sbs-layer-panels-item-type-text:before {
    border-bottom: 36px solid #586D83;
    border-left: 32px solid transparent;
    content: "";
    display: block;
    position: absolute;
    left: -32px;
    top: 0;
    height: 0;
    width: 0;
}
.layer-resources .sbs-layer-panels-item-type-btn {
    margin-top: 10px;
}
.layer-resources .sbs-layer-panels-item-type-btn .btn {
    position: relative;
    padding: 10px 32px 9px 16px;
}
.layer-resources .sbs-layer-panels-item-type-btn .btn:before {
    content: "\f105";
    color: #FFFFFF;
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    top: 11px;
    right: 16px;
    transition: all ease .4s;
}


/* Download Box */
.download-item {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.06);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 18px 38px 18px 18px;
}
.download-item h4 {
    margin-bottom: 4px;
    color: #586D83;
}
.download-item h4 a {
    color: #586D83;
    word-break: break-word;
}
.download-item h4 ~ span {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}
.download-item .download-icon {
    width: 68px;
}
.download-item .download-icon img {
    max-width: 100%;
}
.download-item .download-info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    width: calc(100% - 68px - 120px);
    word-break: break-word;
}
.download-item .download-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: 120px;
}
.download-item .download-btn .btn {
    font-size: 14px;
    padding: 10px 20px;
}
.download-item .download-btn .btn:not(:hover) {
    border-color: #E8EDEE;
}


/* Resource Detail */
.resourcedetail {
    padding: 50px 0;
}
.resourcedetail .card-box {
    padding: 30px;
    position: relative;
}
.back-btn-wrap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.resourcedetail h2 {
    font-weight: bold;
    margin-bottom: 15px;
}
.resourcedetail-date {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.resources-results-time {
    background-color: #F5F5F5;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    padding: 6px 12px;
    margin-top: 5px;
}
.resources-results-time:not(:last-child) {
    margin-right: 10px;
}
.resources-results-time-icon {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 8px;
    height: 14px;
    width: 14px;
}
.resources-results-time-icon svg path {
    fill: #586D83;
}
.resources-results-time > span:not([class]) {
    color: #586D83;
    font-weight: bold;
    margin-right: 8px;
}
.resourcedetail .download {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    width: 100%;
}
.resourcedetail .download-item {
    max-width: 550px;
}
.resourcedetail a.download:hover .download-item {
    border-color: #586D83;
}
.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-resourcedetail .resourcedetail {
    padding: 0;
}
.modal-resourcedetail .card-box {
    border-radius: 0;
    box-shadow: none;
}


/* My Space */
div.page-dashboard .dashboard-item {
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.09);
}
div.dashboard-item h4 {
    margin-bottom: 0;
    padding: 15px 20px;
    background-color: #F5F5F5;
}
div.dashboard-item-content {
    margin-bottom: 0;
    padding: 20px 20px 40px;
}
div.dashboard-item-link {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    padding: 10px 20px;
}
div.dashboard-item-link .view-link {
    color: #586D83;
}
div.dashboard-item-link .view-link:hover {
    color: #444444;
}
div.myspace-details {
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 25px 20px;
}
div.myspace-details-image img {
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    height: 60px;
    width: 60px;
}
div.myspace-details-name span.myspace-details-text {
    color: #231f20;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
}
div.myspace-details-registered {
    color: #95999E;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
    margin-bottom: 20px;
}
div.myspace-details-link .btn ~ .btn {
    margin-left: 0;
}
div.myspace-details-link .btn-gray {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    color: #231F20;
}
div.myspace-details-link .btn-gray:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
}
div.myspace-details-link .deactivate-account-link {
    color: #7A7F85;
}
.btn.dashboard-link, .btn.dashboard-link:active {
    background-image: url('/images/corporate-theme/dashboard-icon.png');
}
.btn.edit-profile-link, .btn.edit-profile-link:active {
    background-image: url('/images/corporate-theme/edit-profile-icon.png');
}
.btn.password-reset-link, .btn.password-reset-link:active {
    background-image: url('/images/corporate-theme/password-reset-icon.png');
}
.btn.export-data-link, .btn.export-data-link:active {
    background-image: url('/images/corporate-theme/export-data-icon.png');
}
.myspace-details-edit input {
    background-color: #F5F5F5;
    background-repeat: no-repeat;
    background-position: 11px 9px;
    display: block;
    font-weight: bold;
    margin: 0;
    padding: 8px 10px 8px 43px;
    text-align: left;
    width: 100%;
}
.myspace-details-edit input:hover {
    background-color: #F5F5F5;
}
.myspace-details-edit input ~ input {
    margin-top: 8px;
}
.myspace-details-edit input[value="Edit"] {
    background-image: url('/images/corporate-theme/edit-profile-icon.png');
}
.myspace-details-edit input[value="Linked accounts"] {
    background-image: url('/images/corporate-theme/dashboard-icon.png');
}
.myspace-details-edit input[value="Export data"] {
    background-image: url('/images/corporate-theme/export-data-icon.png');
}
.myspace-details-edit input[value="Deactivate account"] {
    background-image: url('/images/corporate-theme/deativate-account-icon.png');
    color: #7A7F85;
}
div.myspace-orders .nav-tabs > li {
    border-radius: 0;
}
div.myspace-orders .tab-content {
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}
.profile-image + .btn {
    border: 1px solid #DFDFDF;
    width: 100%;
}
.profile-image + .btn:hover {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    color: #231f20;
}

/* page-not-found */
.sbs-page-content-wrapper.page-not-found {
    background: #F5F5F5;
    padding: 30px;
    margin: 100px auto;
    max-width: 900px;
}
.page-not-found h1 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: normal;
    padding: 5px 0 5px 0;
}
.page-not-found ul {
    margin-top: 20px;
    padding-left: 16px;
    font-size: 14px;
}
.page-not-found ul li + li {
    margin-top: 10px;
}
.page-not-found a {
    font-weight: 600;
}

/* cart */
.cart-page-wrap {
    padding: 34px 0;
}
.cart-col.card-box + .cart-col.card-box {
    margin-top: 20px;
}
.card-box.cart-summary-new {
    padding: 30px;
}
.cart-col-left h3 {
    margin-bottom: 20px;
}
.cart-summary-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 13px 0;
}
.cart-summary-item + .cart-summary-item {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.cart-summary-new .btn {
    margin-top: 20px;
}
.table {
    font-size: 14px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.table>thead>tr>th {
    min-width: 60px;
}
.order-panel-section h3 {
    margin-bottom: 0;
}
.order-panel-section > div:first-child {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 0 16px;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.cart-buttons-new {
    margin-top: 10px;
}
.cart-buttons-new > .btn {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 0;
}
.card-box.cart-col {
    padding: 30px;
}

/* Content-Layer-Templates => page */
.sbs-layer {
    padding: 30px 0;
}
.sbs-layer .sbs-layer-type-2.card-box {
    padding: 30px;
}
.sbs-layer .sbs-layer-panels-item-info {
    padding: 25px 20px 25px;
}
.sbs-layer .sbs-layer-panels-item-info h3 {
    margin-bottom: 12px;
}



/* Footer */
.footer {
    background: #F5F5F5;
    color: #231F20;
    margin-top: auto;
}
.footer-row1 {
    padding-bottom: 30px;
}
.footer-col-wrap > div + div:before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #DFDFDF;
    position: absolute;
    left: -50px;
    top: 0;
}
.footer-col-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-col-wrap > div:first-child,
.footer-col-wrap > div:nth-child(2){
    padding-right: 70px;
}
.footer h3 {
    font-size: 13px;
    line-height: 22px;
    min-height: inherit;
    margin-bottom: 22px;
    background: #FFFFFF;
    display: inline-block;
    padding: 3px 10px;
    letter-spacing: .5px;
    color: #231F20;
    margin-left: -10px;
}
.footer #newsletter h3 {
    margin-left: 0px;
}
.footer a {
    color: #231F20;
}
.footer .clientaddress,
.footer .footer-address {
    line-height: 2;
    margin-bottom: 20px;
}
.footer .two-col-link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer .two-col-link li {
    font-size: 14px;
    line-height: 2;
    width: 50%;
}
.footer .newsletter-box input {
    color: #444444;
}
.footer .newsletter-box a {
    color: #444444;
    font-size: 22px;
    line-height: 1.3;
}
.footer-copyright {
    background-color: #586d83;
    padding: 12px 0;
}
.footer .clientcopyright {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .5px;
}

@media screen and (max-width: 1199px) {
    .ui-accordion .ui-accordion-content .equal-height > div {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 992px) {
    button.navbar-toggle.btn.navbar-btn {
        display: none;
    }
    .header-bottom .nav-right {
        width: 100%;
    }
    .header-bottom .navbar-collapse.header-sm-nav {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }
    .header .navbar-nav {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding-left: 45px;
    }
    .header .navbar-nav:before,
    .header .navbar-nav:after {
        display: none;
    }
    .header .navbar-nav > li {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }
    .header .navbar-nav > li ~ li {
        margin-left: 32px;
    }
    .header-bottom .navbar-btns-right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        list-style: none;
    }
    .transparent .header-top {
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }
    .transparent .search-icon-text,
    .transparent .header-wrapper .list-inline-item,
    .transparent .header-wrapper .list-inline-item a:not(:hover),
    .transparent .header .navbar-nav > li > .dropdown-icon:before {
        color: #FFFFFF;
    }
    .transparent .search-icon-text path[stroke] {
        stroke: #FFFFFF;
    }
    .transparent .header-wrapper .list-inline-item {
        border-left-color: rgba(255, 255, 255, 0.2);
    }
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > li > a {
        color: #FFFFFF;
    }
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > li:focus > a,
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > li:hover > a,
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > .open > a,
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > .open > a:focus,
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > .open > a:hover,
    .transparent .header-bottom:not(.navbar-fixed-top) .navbar-nav > li > a.current {
        color: #231f20;
    }
    .transparent .header-bottom .navbar-btns-right .nav-sign-in:not(:hover) {
        border-color: #FFFFFF;
        color: #FFFFFF;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .subhome-layer .banner-title {
        padding-top: 20px;
        font-size: 36px;
        line-height: normal;
    }
    .login-box .btn {
        width: 100%;
    }
    .login-box .btn + .btn {
        margin-left: 0px !important;
        margin-top: 10px !important;
    }
    .event-layer-nav.subnav ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
    .event-layer-nav.subnav ul li {
        max-width: 50%;
        width: 50%;
        margin-bottom: 26px;
    }
    .subnav > ul > li + li {
        margin: 0;
    }

    .subhome-panels-col-inner {
        padding: 30px;
    }
    .subhome-panels .subhome-panels-col .layer-type-6-panels-item {
        margin: 0 0 15px;
        position: static;
    }

    .related-blog-listing .row > div {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .header-wrapper .header-sm-nav {
        top: 55px;
        margin: 0;
        box-shadow: 2px 8px 10px 2px rgba(22, 22, 22, .08);
    }
    .header-sm-nav .navbar-nav {
        padding: 0;
    }
    .header .navbar-nav > li {
        margin: 0;
    }
    .header .navbar-nav li a {
        color: #444444;
        padding: 10px 15px 10px 15px !important;
    }
    .header .navbar-nav > li > a:after {
        opacity: 0;
    }
    .header-wrapper ul.navbar-btns-right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        list-style: none;
        padding: 1em 5% !important;
    }
    .header-wrapper .header-bottom {
        padding: 15px 0 14px;
    }
    .header-wrapper .navbar-btn {
        margin-top: 12px;
    }
    .header .navbar-nav > li > .dropdown-menu {
        margin-top: 0;
        padding: 0;
    }
    .header .navbar-nav > li > .dropdown-menu li {
        padding: 0;
        text-align: left;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #444444;
        width: 100%;
        padding: 10px 30px 10px 30px !important;
    }
    .transparent .navbar-toggle .icon-bar {
        background: #fff;
    }
    .header .navbar-nav > li > a {
        padding: 1em 5% !important;
    }
    .header .navbar-nav > li > a:hover, .header .navbar-nav > li > a.current {
        border-bottom: 1px solid #e5e5e5;
        color: #586D83;
    }
    .header-sm-nav .navbar-nav > li > .dropdown-icon {
        width: 48px;
        height: 54px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        background: rgba(255,255,255,0.1);
        border-left: 1px solid #e5e5e5;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .header .navbar-nav > li > .dropdown-icon:before {
        line-height: normal;
        margin: 0;
        font-size: 22px;
    }
    .dropdown-menu li {
        margin: 0;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        padding: 1em 5% 1em 8% !important;
        font-size: 14px;
        border-color: #e5e5e5;
        font-weight: bold;
    }


    .members-panels-item-title {
        font-size: 20px;
        line-height: 26px;
    }
    .members-panels-item-desc {
        line-height: 24px;
        font-size: 16px;
    }
    .how-to-join-box {
        padding: 50px 50px;
    }
    .sortby-list {
        margin-top: 10px;
        width: 100%;
    }
    .sortby-list > a {
        border: 1px solid #DEDEDE;
        border-radius: 6px;
        width: 100%;
        text-align: left;
    }
    .layer-resources-landing-nav {
        margin-bottom: 30px;
        padding: 20px;
    }
    .search-lhs {
        width: 100%;
    }
    .select-wrap-top select {
        width: 100%;
    }
    .event-layer-nav.subnav {
        margin-top: 0;
    }
    .blog-list-header .blog-list-header-item {
        text-align: left;
    }
    .blog-list .blog-list-item-content {
        padding: 0;
    }
    .blog-list .blog-list-item-content .blog-list-item-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 2px;
        margin-top: 14px;
    }
    .blog-list-item-image img {
        width: 100%;
    }
    .g-recaptcha {
        margin: 15px 0;
        transform: scale(.85);
        transform-origin: left;
    }

    /* footer */
    .footer-col-wrap > div:first-child, 
    .footer-col-wrap > div:nth-child(2) {
        padding-right: 30px;
    }
    .footer-col-wrap > div + div:before {
        left: -15px;
    }
}

@media screen and (min-width: 768px) {
    .blog-list-header-row {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .large-container {
        padding: 0 20px;
    }
    .container-page .large-container {
        width: 460px;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        word-break: break-word;
    }
    .text-center h2 {
        padding-top: 20px;
    }
    .text-center h2:after {
        height: 3px;
        left: 0;
        width: 50px;
        transform: inherit;
    }
    body h1 {
        font-size: 32px;
        line-height: 40px;
    }
    body h2, .subhome-layer-content-type1 h1.banner-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 5px;
        padding: 0;
    }
    body h3 {
        font-size: 24px;
        line-height: 34px;
        margin-top: 0;
    }
    .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    h1.banner-title {
        font-size: 22px;
        line-height: 30px;
    }
    .layer-type-1 h1.layer-title {
        font-size: 32px;
        line-height: 40px;
    }
    .res-box,
    .presentation-featured {
        margin-bottom: 40px;
    }
    .subhome-layer-content-type1 .subhome-desc p + h3 {
        margin-top: 40px;
    }
    .subhome-layer-content-type1 .subhome-desc h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .home-banner {
        min-height: 420px !important;
        height: auto !important;
        padding: 40px 0 0;
        -webkit-align-items: flex-end !important;
        align-items: flex-end !important;
    }
    .banner-overlay:before {
        height: 335px;
    }
    .home-banner .common-layer-container {
        padding-bottom: 50px;
    }
    .members-desc {
        font-size: 16px;
        line-height: 24px;
    }
    .members-panels,
    .membership-panels {
        margin-top: 30px;
    }
    .members-desc {
        text-align: left !important;
    }
    .home-subscribe .btn-blue {
        background: #586D83;
    }
    .members-panels-col + .members-panels-col {
        margin-top: 30px;
    }
    .members-panels-item-title {
        font-size: 18px;
        line-height: 22px;
    }
    .members-section,
    .home-testimonials,
    .subhome-type1-section,
    .membership-section,
    .home-subscribe,
    .resources-subscribe {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .layer-workshops {
        padding: 25px 0 50px;
    }
    .text-layer:last-child {
        padding-bottom: 0;
        margin-bottom: 50px;
    }
    .home-subscribe .members-panels-item-link {
        margin-top: 20px;
    }
    .members-panels-item-title,
    .subhome-type1-panels-item-title {
        font-size: 20px;
        line-height: 28px;
    }
    .text-layer .container {
        background-color: #f5f5f5;
        padding: 0 20px;
        width: 100%;
    }
    .how-to-join-box {
        border-radius: 0;
        max-width: 420px;
        margin: 0 auto;
        padding: 50px 0;
        text-align: left;
    }
    .how-to-join-box .btn,
    .white-link-color > a {
        padding: 14px;
        text-align: center;
        width: 100%;
    }
    .sbs-event-detail-header {
        margin-bottom: 15px;
    }
    .buy-tickets-panel-body {
        margin-top: 15px;
    }
    .membership-box {
        padding-bottom: 15px;
    }
    .slick-reviews.slider-wrap {
        margin: 0 -15px;
    }
    .home-testimonials h2 {
        margin-bottom: 30px;
    }
    .home-testimonials .item-slide {
        min-height: 346px;
        padding: 90px 25px 25px;
    }
    .home-testimonials .item-slide .item-content {
        font-size: 16px;
        font-weight: normal;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .home-testimonials .item-slide:nth-child(2n) .item-content {
        font-size: 16px;
        line-height: 24px;
    }
    .home-testimonials .slick-dots {
        bottom: -40px;
    }
    .home-testimonials .slick-list {
        margin-bottom: 40px;
    }
    .home-testimonials .slick-arrow {
        display: none !important;
        line-height: 38px;
        height: 35px;
        width: 35px;
        border-radius: 10px;
        left: -10px;
    }
    .home-testimonials .slick-next.slick-arrow {
        left: inherit;
        right: -10px;
    }
    .slick-dots li + li {
        margin-left: 10px;
    }
    .membership-desc, .subhome-type1-desc, .members-desc {
        text-align: left;
    }
    .members-panels-item-desc, 
    .members-panels-item-desc span, 
    .subhome-type1-panels-item-desc, 
    .subhome-type1-panels-item-desc span, 
    .membership-desc, 
    .membership-desc span, 
    .subhome-type1-desc, 
    .subhome-type1-desc span {
        line-height: 24px !important;
        font-size: 16px !important;
    }
    .resources-subscribe {
        border-top: 1px solid rgba(0, 0, 0, 0.09);
    }
    .home-subscribe,
    .resources-subscribe {
        background: transparent;
    }
    .home-subscribe:last-child {
        padding-top: 50px;
    }
    .subhome-title-text-wrap + .subhome-type1-panels {
        margin-top: 30px;
    }
    .membership-section-box .membership-panels-col,
    .subhome-type1-panels-col {
        margin-bottom: 30px;
    }
    .membership-section-box .membership-panels-col:last-child,
    .subhome-type1-panels-col:last-child {
        margin-bottom: 0px;
    }
    .subhome-layer {
        min-height: inherit;
        padding-bottom: 25px;
    }
    .cross-img-wrap {
        padding-top: 120%;
    }
    .subhome-cross-banner > div > div > div {
        position: static;
    }
    .subhome-desc {
        margin-top: 0;
    }
    .cross-text-wrap {
        background-color: rgba(246, 248, 249, .8);
        z-index: 1;
        padding: 20px 40px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .subhome-layer .banner-title {
        padding-top: 0px;
    }
    .subhome-desc a.btn.btn-transparent {
        display: table;
        margin-top: 12px;
        margin-left: 8px;
        text-align: center;
    }
    .subhome-panels .subhome-panels-col ~ .subhome-panels-col {
        margin-top: 20px;
    }
    .subhome-panels .subhome-panels-col .subhome-panels-col-inner {
        position: relative;
        padding-left: 65px;
        min-height: 54px;
    }
    .subhome-panels .subhome-panels-col .layer-type-6-panels-item {
        left: 18px;
    }
    .subhome-panels .subhome-panels-col .subhome-panels-item-title {
        padding-left: 15px;
    }
    .overall-layer-wrapper-subhome {
        padding-bottom: 0px;
    }
    .sbs-page-content-wrapper-page {
        padding: 40px 0;
    }
    .sbs-background-container {
        padding: 20px 0 50px;
    }
    .login-box {
        margin-bottom: 0;
        padding: 20px;
    }
    .login-rhs {
        margin-top: 20px;
    }
    div.cms-content-heading:after, div.dashboard-header:after {
        display: none;
    }
    div.cms-content-heading, div.dashboard-header {
        padding: 40px 0 !important;
    }
    div.cms-content-heading h1, div.dashboard-header-title h1 {
        margin-bottom: 4px;
    }
    div.cms-content-heading .cms-content-heading-summary {
        font-size: 14px;
        line-height: 22px;
        padding: 6px 0;
    }
    .search-lhs > div {
        width: 100%;
    }
    .search-lhs > div + div {
        margin: 10px 0 0 0;
    }
    .subnav > ul > li:last-child {
        margin-bottom: 45px;
    }
    .pagination {
        margin: 30px 0;
    }
    ul.pagination li a {
        font-size: 16px;
        padding: 10px;
    }
    .layer-resources-landing {
        padding-bottom: 50px;
    }
    .layer-resources .sbs-layer-panels {
        margin-bottom: 30px;
    }
    .layer-resources .sbs-layer-panels:last-child {
        margin-bottom: 0px;
    }
    .team-intro {
        padding: 50px 0 !important;
    }
    .res-box {
        margin-bottom: 30px;
    }
    .ui-accordion .ui-accordion-content .equal-height > div {
        margin-bottom: 0;
    }
    .blog-listing-related {
        margin-bottom: 30px;
    }
    .blog-listing-content {
        padding: 50px 0 20px;
    }
    .related-blog-listing {
        padding: 20px 0;
    }
    .blog-list-header .blog-list-header-item {
        margin-bottom: 30px;
    }
    .blog-wrapper .pagination-box {
        margin: 0 0 20px;
    }
    .overall-layer-wrapper-subhome > div.blog-wrapper {
        padding-bottom: 30px;
    }
    .blog-list-header .blog-list-item-title:before {
        left: 0px;
        transform: inherit;
    }
    .blog-list .blog-list-item-content .blog-list-item-title {
        font-size: 18px;
        line-height: 28px;
        margin-top: 14px;
        position: relative;
        padding-top: 15px;
        margin-top: 20px;
    }
    .blog-list .blog-list-item-content .blog-list-item-title:before {
        content: "";
        height: 3px;
        position: absolute;
        top: 0px;
        left: 0;
        background: #586D83;
        width: 50px;
    }
    .blog-listing-image {
        min-height: 400px !important;
    }
    .blog-listing-image .image-panel-title-wrapper {
        padding-bottom: 50px;
        padding-top: 100px;
    }

    .sbs-event-detail-wrapper {
        margin: 50px 0;
    }
    .sbs-event-detail-image {
        min-height: auto;
    }
    .sbs-event-detail-page-wrapper > div > div + div {
        margin-top: 30px;
    }

    .resourcedetail .card-box {
        padding: 50px 30px 30px;
    }
    .modal-resourcedetail .resourcedetail {
        padding: 15px 5px;
    }
    .download-item {
        padding: 13px 20px 17px;
    }
    .download-item .download-icon {
        width: 48px;
    }
    .download-item .download-info {
        width: calc(100% - 48px);
    }
    .download-item h4 {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: normal;
    }
    .download-item .download-btn {
        width: 100%;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        padding-left: 58px;
    }

    .modal-resourcedetail .resourcedetail .card-box {
        padding: 0;
    }

    .sbs-event-detail-wrapper .card-box:last-child {
        margin-bottom: 0px;
    }

    .cart-col .g-recaptcha {
        margin-top: 0;
    }
    .card-box.cart-summary-new {
        margin-top: 30px;
    }
    .cart-page-wrap > div + div .card-box.cart-col {
        margin-top: 30px !important;
    }

    .faqs-layer {
        padding: 50px 0;
    }
    .right-border-content .search-right > div {
        float: left !important;
        width: 100%;
        margin-top: 15px;
    }
    .right-border-content .search-news label {
        width: 100%;
    }

    .sbs-page-content-wrapper.page-not-found {
        margin: 50px auto;
    }
    .page-not-found h1 {
        font-size: 28px;
    }

    /* footer */
    .footer-row1 {
        padding-bottom: 40px;
    }
    .footer-col-wrap > div:first-child, .footer-col-wrap > div:nth-child(2) {
        padding-right: 15px;
    }
    .footer-col-wrap > div + div:before {
        display: none;
    }
    .footer h3 {
        margin-bottom: 20px;
    }
    .footer .form-group {
        margin-bottom: 0;
    }
    .footer-col-wrap > div {
        width: 100%;
    }
    .footer-col-wrap > div + div {
        border-top: 1px solid rgba(0, 0, 0, 0.09);
        padding-top: 30px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 575px) {
    .home-banner .btn, .subhome-desc a.btn {
        padding: 8px 10px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 479px) {
    .container {
        width: 100%;
    }
    .header-wrapper ul.navbar-btns-right {
        display: inline-block;
        width: 100%;
    }
    .header-bottom .navbar-btns-right li + li {
        margin-left: 0;
    }
    .header-bottom .navbar-btns-right li + li > .btn {
        margin-top: 10px;
    }
    .header-bottom .navbar-btns-right .btn {
        padding: 7px 14px 5px;
        font-size: 13px;
        width: 100%;
    }
    .team-box .team-box-img img {
        max-height: 220px;
        min-height: 220px;
    }
    .download-item .download-btn .btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}





/*======= Header banner =======*/
.purple-colored-bg {
    background: #586D83;
    padding: 50px 0;
}
.rectangle-img .medium-rec-image-col-img img {
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
}
/* Large  with border */
.large-with-border {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 30px;
    width: 94%;
    max-width: 1360px;
    height: auto !important;
    padding: 100px 10px 100px 0;
    margin: 40px auto 0;
    background-color: #ebebeb !important;
    min-height: 460px;
}
.large-with-border > .container {
    width: 100% !important;
    padding: 0;
}
.large-with-border .card-layer {
    background-color: #fff;
    width: calc(100% - 60px);
    max-width: 580px;
    padding: 60px 30px;
    position: relative;
}
.large-with-border .card-layer:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='59' height='258' viewBox='0 0 58 258' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H37.3872C49.4021 0 58.7052 10.5185 57.2374 22.4434L30.4029 240.443C29.1688 250.469 20.6535 258 10.5527 258H0V0Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
    width: 65px;
    height: 100%;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    right: -59px;
    top: 0;
    background-size: auto 100%;
}
@media screen and (max-width: 560px) {
    .large-with-border .card-layer:before {
        display: none;
    }
    .large-with-border {
        padding: 60px 15px 60px;
        min-height: 300px;
    }
    .large-with-border .card-layer {
        width: 100%;
        padding: 40px 15px;
        border-radius: 20px;
        margin: 0 auto;
    }
}
/* Large full bleed */
.large–full-bleed {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    display: flex;
    align-items: center;
    height: auto !important;
    padding: 100px 0;
}
.sub-title {
    font-weight: 500;
}
.large–full-bleed .sub-title {
    color: #1d1d1f;
}
.large–full-bleed .card-layer {
    width: calc(100% - 60px);
    max-width: 640px;
    padding: 50px 50px;
    position: relative;
    margin-left: 60px;
}
.large–full-bleed .card-layer:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 24px;
    transform: skew(172deg);
}
.large–full-bleed .card-layer > * {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .large–full-bleed {
        padding: 60px 15px 60px;
    }
    .large–full-bleed .card-layer {
        width: 100%;
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 auto;
    }
    .large–full-bleed .layer-title {
        line-height: 35px;    
    }
    .large–full-bleed .card-layer:before {
        border-radius: 24px;
        transform: inherit;
    }
}
/* Medium  rectangle / oval image */
.medium-rec-image-white-bg {
    overflow: hidden;
    padding: 50px 0 ;
}
.medium-rec-image-white-bg .medium-rec-image-inner {
    display: flex;
    align-items: center;
}
.medium-rec-image-white-bg .card-layer {
    max-width: 100%;
    width: 640px;
    padding: 50px;
    position: relative;
}
.medium-rec-image-white-bg .card-layer:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #586D83;
    border-radius: 24px;
    transform: skew(172deg);
}
.medium-rec-image-white-bg .card-layer > * {
    position: relative;
    z-index: 1;
}
.medium-rec-image-white-bg .layer-title {
    font-style: normal;
    color: #fff;
}
.medium-rec-image-white-bg .sub-title {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
}
.medium-rec-image-white-bg .sub-title p {
    color: #fff;
}
.medium-rec-image-white-bg .medium-rec-image-col-text {
    margin-left: -150px;
}
/* >> BG Rectangle */
.medium-rec-image-white-bg.purple-colored-bg .layer-title {
    color: #1d1d1f;
}
.medium-rec-image-white-bg.purple-colored-bg  .sub-title {
    color: #1d1d1f; 
}
.medium-rec-image-white-bg.purple-colored-bg  .sub-title p {
    color: #1d1d1f; 
}
.medium-rec-image-white-bg.purple-colored-bg .card-layer:before {
    background: #fff;
}
/* >> Round Rectangle */
.medium-rec-image-white-bg.medium-rec-img-round-bg .medium-rec-image-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.medium-rec-image-white-bg.medium-rec-img-round-bg .medium-rec-image-col-img img {
    object-fit: cover;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin: 0 auto;
}
.medium-rec-image-white-bg .medium-rec-image-col-text {
    margin-left: -140px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .medium-rec-image-white-bg.medium-rec-img-round-bg .medium-rec-image-col-img img {
        width: 430px;
        height: 430px;
    }
}
@media screen and (max-width: 1099px) {
    .medium-rec-image-white-bg .medium-rec-image-col-img {
        width: 50%;
    }
    .medium-rec-image-white-bg .medium-rec-image-col-text {
        width: 50%;
        margin: 0;
    }
    .medium-rec-image-white-bg .card-layer {
        width: 100%;
        max-width: 390px;
        padding: 50px 20px;
        position: relative;
        margin-top: 20px;
    }
    .medium-rec-image-white-bg .card-layer:before {
        transform: inherit;
    }
}
@media screen and (max-width: 991px) {
    .medium-rec-image-white-bg .medium-rec-image-inner {
        flex-direction: column;
    }
    .medium-rec-image-white-bg .medium-rec-image-col-img, .medium-rec-image-white-bg .medium-rec-image-col-text {
        width: 100%;
        text-align: center;
    }
    .medium-rec-image-white-bg .medium-rec-image-col-img > img {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    .medium-rec-image-white-bg .card-layer {
        max-width: 100%;
        padding: 30px 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}
@media screen and (max-width: 767px) {
    .medium-rec-image-white-bg.medium-rec-img-round-bg .medium-rec-image-col-img img {
        width: 410px;
        height: 410px;
    }
}
@media screen and (max-width: 479px) {
    .medium-rec-image-white-bg.medium-rec-img-round-bg .medium-rec-image-col-img img,
    div.small-rec-image-white-bg.small-rec-image-round-bg img {
        width: 100%;
        height: auto;
        border-radius: 60px;
    }
    div.small-rec-image-white-bg.small-rec-image-round-bg .card-layer-img:before {
        width: 120px;
        height: 120px;
        bottom: -40px;
        border: 30px solid #586D83;
    }
}
/* Small  square / circle / no image */
.small-rec-image-white-bg {
    padding: 40px 0;
}
.small-rec-image-white-bg .medium-rec-image-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-img {
    width: 50%;
}
.small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-text {
    width: 50%;
    padding: 0 20px;
}
.small-rec-image-white-bg .card-layer-img {
    width: 100%;
    max-width: 464px;
    position: relative;
    margin: 0 auto;
}
.small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-text .card-layer {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}
.small-rec-image-white-bg .card-layer-img:before {
    content: "";
    width: 400px;
    height: 123px;
    transform: skew(343deg);
    background: #586D83;
    position: absolute;
    opacity: 0.4;
    right: -50px;
    bottom: 40px;
    z-index: 1;
    border-radius: 20px;
}
.small-rec-image-white-bg.purple-colored-bg .layer-title,
.small-rec-image-white-bg.purple-colored-bg .sub-title {
    color: #fff;
}
.small-rec-image-white-bg.purple-colored-bg .sub-title p {
    color: #fff;
}
.small-rec-image-white-bg.purple-colored-bg .card-layer-img:before {
    background: #fff;
}
/* >> Round Rectangle */
.small-rec-image-white-bg.small-rec-image-round-bg .card-layer-img:before {
    content: "";
    width: 180px;
    height: 180px;
    background: transparent;
    position: absolute;
    opacity: 0.4;
    right: 0px;
    bottom: 40px;
    z-index: 1;
    border-radius: 50%;
    border: 40px solid #586D83;
    transform: none;
}
.small-rec-image-white-bg.small-rec-image-round-bg img {
    width: 410px;
    height: 410px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}
.small-rec-image-white-bg.small-rec-image-round-bg.purple-colored-bg .card-layer-img:before {
    border-color: #fff;
}
@media screen and (max-width: 1339px) {
    .small-rec-image-white-bg .card-layer-img:before {
        content: "";
        width: 230px;
        height: 83px;
        right: -50px;
        bottom: 20px;
    }
}
@media screen and (max-width: 991px) {
    .small-rec-image-white-bg .medium-rec-image-inner {
        flex-direction: column;
    }
    .small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-img,
    .small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-text {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-text {
        background-color: #FFFFFF;
        border-radius: 15px;
        box-shadow: 0px 100px 163px rgb(29 29 31 / 5%), 0px 22.3363px 36.4082px rgb(29 29 31 / 3%), 0px 6.6501px 10.8397px rgb(29 29 31 / 2%);
        padding: 20px;
    }
    .small-rec-image-white-bg.purple-colored-bg .layer-title, .small-rec-image-white-bg.purple-colored-bg .sub-title {
        color: #1D1D1F;
    }
    .small-rec-image-white-bg.purple-colored-bg .sub-title p {
        color: #1D1D1F;
    }
    .small-rec-image-white-bg .medium-rec-image-inner .medium-rec-image-col-text .card-layer {
        margin: 0 auto;
        max-width: 100%;
    }
    .small-rec-image-white-bg .card-layer-img {
        width: 100%;
        max-width: 100%;
        position: relative;
        margin: 0 auto 40px;
    }
    .small-rec-image-white-bg .card-layer-img:before {
        right: 0;
        bottom: -20px;
    }
}
@media screen and (max-width: 767px) {
    .rectangle-img .medium-rec-image-col-img img {
        border-radius: 20px;
    }
}
/* no-image-white-bg */
.no-image-white-bg {
    padding: 100px 0;
    background-color: #fff;
}
.no-image-white-bg .card-layer {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.no-image-white-bg.purple-colored-bg {
    background-color: #586D83;
}
.no-image-white-bg.purple-colored-bg .layer-title,
.no-image-white-bg.purple-colored-bg .sub-title {
    color: #fff;
}





/********** Content-1-Column-Layer-Templates /**********/
.one-col-common,
.one-col-cardbox-teaser,
.one-col-lhsimg-rhs-text,
.one-col-overlay-full-whitebox {
    padding: 50px 0;
}
.one-col-overlay-lhs-whitebox {
    margin: 50px 0;
}
/* one-col-no-img */
.one-col-no-img .one-col-discription, 
.one-col-cardbox-teaser .one-col-discription {
    padding: 0 20.2%;
}
.one-col-cardbox-teaser .card-box,
.one-col-no-img .card-box {
    padding: 30px;
}
/* one-col-overlay-lhs-whitebox */
.one-col-overlay-lhs-whitebox {
    height: auto !important;
    min-height: 480px;
    background-size: cover !important;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 50px;
}
.one-col-overlay-lhs-whitebox >.card-box {
    max-width: 50%;
    width: 100%;
    padding: 30px;
}
/* one-col-cardbox-teaser */
.one-col-cardbox-teaser-img {
    padding-top: 36.91%;
    background-size: cover !important;
    margin-bottom: 30px;
}
/* one-col-lhsimg-rhs-text */
.one-col-lhsimg-rhs-text-wrap {
    display: flex;
    flex-wrap: wrap;
}
.one-col-lhsimg-rhs-text-wrap > div {
    width: 50%;
}
.one-col-lhsimg-rhs-text-wrap .one-col-lhsimg {
    background-size: cover !important;
    padding-top: 40%;
}
.one-col-lhsimg-rhs-text-wrap .card-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}
.one-col-lhsimg-rhs-text-wrap .one-col-discription {
    max-width: 420px;
    margin: 0 auto;
}
/* one-col-no-cardbox-teaser */
.one-col-no-cardbox-teaser .card-box {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
/* one-col-overlay-full-whitebox */
.one-col-overlay-full-whitebox-img {
    padding-top: 35%;
    background-size: cover !important;
}
.one-col-overlay-full-whitebox-wrap > .card-box {
    max-width: 85%;
    margin: -90px auto 0;
    padding: 30px;
}

@media screen and (max-width: 767px) {
    .one-col-cardbox-teaser .card-box, 
    .one-col-no-img .card-box,
    .one-col-lhsimg-rhs-text-wrap .card-box,
    .one-col-overlay-full-whitebox-wrap > .card-box,
    .one-col-overlay-lhs-whitebox >.card-box {
        padding: 20px;
    }
    /********** /Content-1-Column-Layer-Templates /**********/
    .one-col-common,
    .one-col-cardbox-teaser,
    .one-col-lhsimg-rhs-text,
    .one-col-overlay-full-whitebox {
        padding: 40px 0;
    }
    .one-col-overlay-lhs-whitebox {
        margin: 40px 0;
        padding: 230px 10px 10px;
        background-size: auto 250px !important;
    }
    /* one-col-no-img */
    .one-col-no-img .one-col-discription{
        padding: 0;
    }
    .one-col-cardbox-teaser .one-col-discription {
        padding: 0;
    }
    /* one-col-overlay-lhs-whitebox */
    .one-col-overlay-lhs-whitebox >.card-box {
        max-width: 100%;
    }
    /* one-col-cardbox-teaser */
    .one-col-cardbox-teaser-img {
        padding-top: 36.91%;
        margin-bottom: 15px;
    }
    /* one-col-lhsimg-rhs-text */
    .one-col-lhsimg-rhs-text-wrap > div {
        width: 100%;
    }
    /* one-col-overlay-full-whitebox */
    .one-col-overlay-full-whitebox-img {
        padding-top: 70%;
    }
}
