/* --------------------------------
Primary style
-------------------------------- */



*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  height: 100%;
}
body {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 200px;
  background-color: #6005D0;
  /*font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background wont scroll */
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  body.overflow-hidden {
    overflow: auto;
  }
}
/* --------------------------------
Text style
-------------------------------- */
a {
  color: #1282e9;
  text-decoration: none;
}
a:hover {
  color: #1282e9;
  text-decoration: none;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}
h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
  margin-bottom: .5rem;
}
h4 {
  font-size: 1.25rem;
}
p, ol, ul, ol li, ul li {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
li li, li p {
  font-size: 1.1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}
label {
  font-weight: 400;
}
/* --------------------------------
Breadcrumbs
-------------------------------- */
#chc_breadcrumbs {
  font-size: 0.9em;
  font-weight: 400;
  color: #666;
  margin-top: 1em;
  display: inline-block;
}
#chc_breadcrumbs a {
  color: #666;
  display: inline-block;
}
/* --------------------------------
Reuseable styles
-------------------------------- */
ul.strong {
  font-weight: 700;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.marginTop {
  margin-top: 1em;
}
.marginTopHalf {
  margin-top: 0.5em;
}
.marginBtm {
  margin-bottom: 1em;
}

.marginBtmHalf {
  margin-bottom: 0.5em;
}

.noMarginTop {
  margin-top: 0;
}
.noMarginBtm,
ul.list-noMarginBtm li:not(:last-child),
ol.list-noMarginBtm li:not(:last-child) {
  margin-bottom: 0;
}
.biggerMarginBtm {
  margin-bottom: 2em;
}
.paddingLeft {
  padding-left: 1em;
}
.noColPadding {
  padding-left: 0;
  padding-right: 0;
}
.smallerColPadding {
  padding-left: 7px;
  padding-right: 7px;
}
.upperCase {
  text-transform: uppercase;
}
.divider {
  height: 1px;
  background-color: #000;
  margin: 1em 15px;
}
.rwd-break {
  display: none;
}
@media only screen and (min-width: 768px) {
  .rwd-break {
    display: block;
  }
  .divider {
    margin: 1em 0;
  }
}
.nowrap {
  white-space: nowrap;
}
.hide-mobile {
  display: none;
}
.footer-rwd-break {
  display: block;
}
@media only screen and (min-width: 768px) {
  .hide-mobile {
    display: inline-block;
  }
  footer .footer-rwd-break {
    display: none;
  }
}
/* --------------------------------
Button style
-------------------------------- */
.btn-md {
  background: rgba(0, 0, 0, 0);
  /* width: 270px; */
  padding: 10px;
  border: 2px solid #333;
  border-radius: 50em;
  margin: 5px;
}
.btn-md:hover {
  border: 2px solid #1e76e3;
  color: #1e76e3;
}
.btn-default,
.btn-default:hover,
.btn-default:active {
  border: 1px solid #1282e9;
  border-radius: 5px;
  margin: 0.2em;
}
.form-btns .btn-default {
  color: #999;
  border: 1px solid rgba(0,0,0,0);
}
.btn-default:hover,
.btn-default:active {
  background-color: #419bed;
  color: #fff;
  border: 1px solid #419bed;
}
.btn-active,
.btn-active:hover,
.btn-active:focus {
  background-color: #1282e9;
  color: #fff;
  border: 1px solid #1282e9;
}
.form-btns .btn-active,
.form-btns .btn-active:hover,
.form-btns .btn-active:focus {
  background-color: #fff;
  color: #1282e9;
  border: 1px solid #1282e9;
}
.form-btns .btn-active {
  border: 1px solid #1282e9;
}
.btn-submit {
  padding: .4rem 2rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) and (orientation:portrait) {
  .btn-submit {
    padding: .4rem 2.4rem;
  }
}
/* --------------------------------
Forms style
-------------------------------- */
label.control-label {
  font-weight: 700;
}
.chc_info-box {
  background-color: #eee;
  padding: 1em;
  margin-bottom: 1em;
}
.pdpa-box {
  background-color: #eee;
  padding: 1em;
  margin-bottom: 1em;
}
.pdpa-box p {
  font-size: 0.9em;
  text-align: justify;
  color: #333;
}
.pdpa-box p:nth-last-child(1) {
  margin-bottom: 0;
}
.pdpa-box strong {
  text-transform: uppercase;
}
/* PDPA - The container */
.pdpa-box .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* PDDA - Hide the browser's default checkbox */
.pdpa-box .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* PDPA - Create a custom checkbox */
.pdpa-box .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ddd;
  border: 2px solid #1282e9;
  border-radius: 4px;
}
/* PDPA - n mouse-over, add a grey background color */
.pdpa-box .container:hover input ~ .checkmark {
  /* background-color: #ccc; */
  background-color: #ccc;
  border: 2px solid #1282e9;
}
/* PDPA - When the checkbox is checked, add a blue background */
.pdpa-box .container input:checked ~ .checkmark {
  background-color: #1282e9;
  border: 2px solid #1282e9;
}
/* PDPA - Create the checkmark/indicator (hidden when not checked) */
.pdpa-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* PDPA - Show the checkmark when checked */
.pdpa-box .container input:checked ~ .checkmark:after {
  display: block;
}
/* PDPA - Style the checkmark/indicator */
.pdpa-box .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* PDPA - Error Border Red, Hover Border Red */
.pdpa-box.has-error .checkmark,
.pdpa-box.has-error .container:hover input ~ .checkmark {
  /* background-color: #ccc; */
  border: 2px solid #a94442;
}
/* PDPA - Error text bold */
.pdpa-box .help-block div {
  font-weight: bold;
}
.radio label,
.checkbox label {
  font-weight: 400;
}
/* --------------------------------
Header style
-------------------------------- */
.header {
  background: #000; /* For browsers that do not support gradients */
  position: fixed;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  z-index: 250;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 3px rgb(0, 0, 0);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 991px) {
  .header {
    border-bottom: 1px solid #666;
    background: -webkit-linear-gradient(#595656, #111); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#595656, #111); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#595656, #111); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#595656, #111); /* Standard syntax (must be last) */
  }
}
.logo-section {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 300;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .logo-section .container {
    width: 100%;
  }
}
.logo {
  position: absolute;
  left: unset;
  margin-top: 10px;
  display: block;
}
.logo img {
  display: block;
  height: 30px;
}
.header nav {
  width: 100%;
  margin: 0 auto;
}
.chc_desktop-nav {
  /* -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); */
  position: relative;
  max-width: 660px;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  display: none; /* hidden on small devices */
}
.chc_desktop-nav li {
  display: inline-block;
  margin-bottom: 0;
  font-size: 1rem;
}
.chc_mobile-nav-trigger {
  position: absolute;
  height: 100%;
  width: 50px;
  right: 0;
  top: 0;
  /* background-color: #24c4f8; */
}
.chc_mobile-nav-trigger .menu-text {
  color: white;
  font-weight: 700;
  display: none; /* hide the text on small devices */
}
.chc_mobile-nav-trigger .menu-icon {
  /* this span is the central line of the menu icon */
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: inline-block;
}
.chc_mobile-nav-trigger .menu-icon:before,
.chc_mobile-nav-trigger .menu-icon:after {
  /* these are the upper and lower lines in the menu icon */
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0.3s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0.3s;
  transition: transform .3s, top .3s, background-color 0.3s;
}
.chc_mobile-nav-trigger .menu-icon:before {
  top: -6px;
}
.chc_mobile-nav-trigger .menu-icon:after {
  top: 6px;
}
.chc_mobile-nav-trigger .menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.chc_mobile-nav-trigger .menu-icon.is-clicked:before,
.chc_mobile-nav-trigger .menu-icon.is-clicked:after {
  background-color: #fff;
}
.chc_mobile-nav-trigger .menu-icon.is-clicked:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.chc_mobile-nav-trigger .menu-icon.is-clicked:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.chc_mobile-nav {
  /* by default it's hidden */
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  padding: 50px 15px 50px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  opacity: 1;
  z-index: 200;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.chc_mobile-nav div {
  overflow: hidden;
  margin-bottom: 0.5em;
}
.chc_mobile-nav div ul {
  margin: 0;
  padding: 0;
}
.chc_mobile-nav li {
  /* text-transform: uppercase; */
  font-weight: 700;
  list-style-type: none;
  text-align: left;
  margin-bottom: 0;
}
.chc_mobile-nav a {
  /* padding: .4em 1em; */
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  font-size: 1.2em;
  font-weight: 400;
  color: #fff;
  line-height: 2.2;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}
.chc_mobile-nav .language-select a {
  display: inline-block;
}
.chc_mobile-nav .language-select a.home {
  float: left;
  width: 6em;
}
.chc_mobile-nav .language-select a.language-chinese {
  float: right;
  padding: 0.4em 0;
  font-size: 0.9em;
  width: 3em;
  text-align: right;
}
.language-select-desktop .language-chinese {
  display: none;
}
.chc_mobile-nav-list li {
  border-top: 1px solid #333;
  overflow: auto;
}
.chc_mobile-nav-sublist li {
  border-top: 0;
}
.chc_mobile-nav-sub-sublist li {
}
.chc_mobile-nav-sublist a,
.chc_mobile-nav-sub-sublist a,
.chc_mobile-nav-sub-sublist a {
  font-size: 1em;
  padding-left: 10px;
}
.chc_mobile-nav-sub-sublist a {
  padding-left: 20px;
}
.caret {
  float: right;
  margin-top: 20px;
  margin-right: 5px;
  border-top: 4px solid;
}
.sub-caret {
  float: none;
  margin-top: 0;
  margin-left: 10px;
  border-top: 4px solid;
}
.desktop-caret {
  float: right;
  margin-top: 0.5em;
  margin-right: 0;
  border-top: 4px solid;
  transform:rotate(-90deg);
}
.chc_mobile-nav-list>li>a:hover .caret {
  transform:rotate(-180deg);
  transition:all 0.2s ease-in-out; /* for smoothness */
}
.chc_mobile-nav-list>li>a.collapsed .caret {
  transform:rotate(0deg);
  transition:all 0.2s ease-in-out; /* for smoothness */
}
.no-touch .chc_mobile-nav a:hover {
  /* background-color: #24c4f8; */
  color: #24c4f8;
}
.chc_mobile-nav .subnav-divider {
  margin: 0.8em 0;
}
.chc_mobile-nav .subnav a {
  text-transform: none;
  font-size: 1em;
  font-weight: 400;
  cursor: pointer;
  list-style-type: none;
  line-height: 2;
}
.chc_mobile-nav .label a:hover {
  text-decoration:  none;
}
.chc_mobile-nav .social-buttons {
  text-align: center;
  margin-top: 15px;
}
.chc_mobile-nav .social-buttons li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}
.chc_mobile-nav ul.social-buttons li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  font-size: 1.5em;
  line-height: 3;
  outline: 0;
  color: #ccc;
}
.chc_mobile-nav.is-visible {
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.chc_desktop-nav_members-portal {
  display: none;
}
.dropdown-menu {
  background: #333;
  margin: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  line-height: 1.8;
}
.dropdown-menu > li {
  margin: 0;
  display: inline-block;
  width: 100%;
  font-size: 0.9rem;
}
.dropdown-menu > li > a {
  color: #fff;
  padding: 5px 20px;
  font-weight: 400;
  white-space: normal;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .chc_mobile-nav {
    width: 400px;
  }
}
@media only screen and (min-width: 991px) {
  .chc_mobile-nav {
    width: 350px;
    display: none;
  }
  .language-select-desktop a {
    display: inline-block;
    float: left;
    overflow: auto;
  }
  .language-select-desktop .language-chinese {
    display: inline;
    padding: 0;
    margin-left: 0.5em;
    margin-top: 0.4em;
    font-size: 0.8em;
    width: 3em;
    text-align: center;
    color: #ccc;
  }
  .language-select-desktop .language-chinese:hover {
    color: #fff;
  }
  .chc_mobile-nav-trigger {
    display: none;
  }
  .chc_mobile-nav.is-visible {
    visibility: hidden;
  }
  .chc_desktop-nav {
    display: block;
    max-width: 700px;
  }
  .chc_desktop-nav a {
    color: #FFF;
    font-weight: 400;
    display: inline-block;
    padding: 12px 15px;
    text-decoration: none;
  }
  .dropdown-menu {
    min-width: 180px;
  }
  .chc_desktop-nav a:hover, .dropdown:hover {
    background: #333;
    color: #fff;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown:hover .submenu-item {
    display: none;
  }
  .dropdown-submenu:hover .submenu-item {
    display: block;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
  }
  .chc_desktop-nav_members-portal {
    display: block;
    position: absolute;
    right: 0;
    margin-top: 0px;
  }
  .chc_desktop-nav_members-portal .btn {
    display: block;
    padding: 5px 11px;
    width: 35px;
    margin: 9px;
    border-radius: 50em;
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
  }
  .chc_desktop-nav_members-portal .btn:hover {
    background-color: #1282e9;
    border: 1px solid #1282e9;
    color: #fff;
    text-decoration: none;
  }
  .members-portal_text {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .chc_desktop-nav {
    max-width: 900px;
  }
}
@media only screen and (min-width: 1600px) {
  .chc_desktop-nav {
    max-width: 1250px;
  }
}
@media only screen and (min-width: 768px) {
  .chc_desktop-nav .divider {
    height: 14px;
  }
  .chc_desktop-nav_members-portal .btn {
    width: 155px;
  }
  .members-portal_text {
    display: inline;
  }
  .chc_desktop-nav a {
    padding: 12px 20px;
  }
}
/* --------------------------------
Hero Image style
-------------------------------- */
#hero-image {
  background-image: url("../img/bg.jpg");
  background-repeat: none;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
  color: #fff;
  height: calc(100vh - 30px);
}
#chc_hero-image .intro-text {
  padding-top: calc(35vh - 30px);
}
#chc_hero-image .intro-text .intro-lead-in {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 5px;
}
#chc_hero-image .intro-text .intro-heading {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.3;
  margin-bottom: 25px;
}
.ch-secondary-text {
  padding-top: calc(40vh - 30px);

}
@media only screen and (min-width: 500px) {
  #chc_hero-image .intro-text {
  }
  #chc_hero-image .intro-text .intro-lead-in {
    font-size: 1.5em;
  }
  #chc_hero-image .intro-text .intro-heading {
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 768px) {
  #chc_hero-image .intro-text {
    padding-top: calc(40vh);
  }
}
@media only screen and (min-width: 768px) and (orientation:portrait) {
  #chc_hero-image .intro-text {
    padding-top: calc(30vh);
  }
}
/* --------------------------------
Home section style
-------------------------------- */
body#chc_home {
  margin-top: 0;
  margin-bottom: 0;
}
#happenings-bar,
#special-notice-bar {
  text-align: center;
  width: 100%;
}
#special-notice-bar {
  background-color: rgba(173, 20, 20, 0.9);
  padding: 15px 0;
  position: absolute;
  top: 50px;
}
#special-notice-bar {
  z-index: 500;
}
#special-notice-bar .fa-times {
  right: 15px;
  top: 10px;
  position: absolute;
}
#special-notice-bar .rwd-break {
  display: block;
}
@media only screen and (min-width: 768px) {
  #special-notice-bar .fa-times {
    right: 10px;
    top: 10px;
  }
  #special-notice-bar .rwd-break {
    display: none;
  }
}
#happenings-bar a {
  font-weight: 700;
}
#special-notice-bar,
#special-notice-bar a {
  color: #fff;
}
#special-notice-bar a:hover,
#special-notice-bar a:active,
#special-notice-bar a:focus {
  text-decoration: none;
}
.modal-header {
  background-color: rgba(173, 20, 20, 0.9);
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.close {
  color: #fff;
  opacity: .8;
}
.btn-arrowdown {
  background: rgba(0, 0, 0, 0);
  /* width: 270px; */
  padding: 0px;
  border: 2px solid #fff;
  border-radius: 50em;
  color: #fff;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.btn-arrowdown:hover,
.btn-arrowdown:active {
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border: 2px solid #fff;
}
.btn-arrowdown,
.btn-arrowdown:hover,
.btn-arrowdown:active {
  border: 2px solid #fff;
  border-radius: 50em;
  margin-top: 2px;
}
/* --------------------------------
Footer style
-------------------------------- */
footer {
  background-color: #1f1f1f;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 170px;
  font-size: 0.9rem;
}
footer .row .col-xs-6 {
  text-align: left;
}

footer ol, footer ul {
  padding: 0;
}
footer li {
  list-style: none;
  font-weight: 400;
  line-height: 1.7;
}
footer li strong {
  font-size: 1.3em;
  font-weight: 700;
}
footer a {
  color: #ddd;
}
footer a:hover {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}
footer span.copyright {
  line-height: 2.3;
  color: #999;
}
footer span.copyright a {
  color: #999;
}
footer span.copyright a:hover {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  footer span.copyright {
    line-height: 1;
  }
}
.social-buttons {
  margin-left: 0;
}
.social-buttons li {
  margin-bottom: 0;
}
.social-buttons li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #333;
  outline: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.social-buttons li a:hover,
.social-buttons li a:focus,
.social-buttons li a:active {
  color: #1282e9;
}
footer .social-buttons {
  margin-bottom: 0;
}
footer .social-buttons li a {
  color: #ddd;
  font-size: 1.2em;
}
footer .social-buttons li a:hover,
footer .social-buttons li a:focus,
footer .social-buttons li a:active {
  color: #fff;
}
#footer_home {
  /* display: none; */
  position: relative;
  /* bottom: -150px; */
}
@media only screen and (min-width: 768px) {
  #footer_home {
    bottom: 0;
  }
}
.online-service-text-area a.mobile-app-link,
footer a.mobile-app-link {
  display: inline-block;
}
@media only screen and (max-width: 280px) {
  .online-service-text-area .mobile-app,
  footer .mobile-app {
    /* max-width: 8rem; */
    max-height: 1.8rem !important;
  }
}
@media only screen and (max-width: 320px) {
  .online-service-text-area .mobile-app,
  footer .mobile-app {
    /* max-width: 8rem; */
    max-height: 2rem !important;
  }
}
.online-service-text-area .mobile-app,
footer .mobile-app {
  /* max-width: 8rem; */
  max-height: 2.3rem;
  display: inline-block;
  margin: .5rem .25rem;
}
@media only screen and (min-width: 768px) {
  .online-service-text-area .mobile-app,
  footer .mobile-app {
    max-height: 2.7rem;
    /* max-width: 9rem; */
  }
}

/* THN VM: Karla Font */
body {
  /* font-family: 'Roboto', sans-serif; */
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

a:hover, a:focus {
    color: #23527c;
  text-decoration: none;
}


.header-spacing {
height:20px;
}

.section-header {
	padding:7px
}



.workshops-header {
	padding: 4px;
	padding-left: 20px;
}

.workshop-details {
	padding:50px
}

h2.title {
    font-weight: 100;
	margin-top: 0px;
	clear: both!important;
	font-family: 'Codec Pro News';
}

.container .col-md-12 {
	min-height:0.1px
}

.option-heading:before           {
	content: "\25b2";
	float: right;
    margin-right: 10px;
	font-size: 15px;
    margin-top: 5px;
	}

.collapsed .option-heading:before {
	content: "\25bc";
	float: right;
    margin-right: 10px;
	font-size: 15px;
    margin-top: 5px;
	}

.col-centered{
    float: none;
    margin: 0 auto;
}
@media only screen and (max-width: 751px) {
.mobile-col-centered{
    float: none;
	margin-bottom: 60px!important;
    margin: 0 auto;
}
}

.img-centered{
    margin: 0 auto;
    float: none;
}

.img-schedule{
	display: flex;
    justify-content: center;
    min-height: 300px;
    align-items: center; padding:1px!important;
}

@media only screen and (max-width: 555px) {
.img-schedule{
    min-height: 200px;
}
}


 .gradient-spacer {
	 height:150px;
 }
 @media only screen and (max-width: 555px) {
 .gradient-spacer {
	 height:100px;
 }
}


 .section-spacer {
	 height:50px;
 }
 @media only screen and (max-width: 555px) {
 .section-spacer {
	 height:20px;
 }
}


.nopadding {
  padding: 0px!important;
}

@media only screen and (min-width: 990px) and (max-width:3023px) {
.margin-right {
	margin-right:10px!important;
}

.margin-left {
	margin-left:10px!important;
}
}


.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

th {
    border: none!important;
	font-size:1.2rem;
	font-weight: 500;
}

@media only screen and (max-width: 555px) {

	th:nth-child(1) {
  padding-bottom: 0px!important;
  font-weight:600!important;
}
	th:nth-child(2) {
  padding-bottom: 20px!important;
  font-style: italic;
}

th {
    border: none!important;
	font-size:1.1rem;
	display:block;
	padding-top: 0px;
	line-height: 1!important;
}


}


.schedule-text{
	font-size:1.3rem;
	padding-top:6px;
}

#coffeewithkong .schedule-text{
	color: #6005D0;
}
/*
.workshop-title{
	size:30px;
}
*/

.purple-bg {
	background-color:#6005D0;
}



#churchAdministration {
	background-color:#3A8BF7;
}
.schedule1 {
	background-color:#F6DB49;
}

.schedulesection {
	background-color:#3A8BF7;

	background-image: url(../img/bg-asset-full2.png);
   /* background-position: center;
    background-size: contain;
	*/
}

.workshops{
	  /* background-color:#3A8BF7; */
}

.category {
   /*
    background-color: #3A8BF7;
	*/
}

#parents {
	/* background-color:#3A8BF7; */
}

#relationshipMarriageFamily {
	/* background-color:#3A8BF7; */
}

#connexion {
	/* background-color:#3A8BF7; */
}


#wellness {
	/* background-color:#3A8BF7; */
}


#coffeewithkong {
	background-color:#F6DB49;
	border-radius: 0px 20px 0px 20px;
}

#onlineprayerer {
	background-color:#EA4970;
	border-radius: 0px 20px 0px 20px;
}

.schedule-columns {
	padding-bottom: 20px;
	padding-left:40px;
	padding-right:40px;
	padding-top:23px;
}



.workshops-gradient{
background: rgb(96,5,208);
background: linear-gradient(180deg, rgba(96,5,208,1) 0%, rgba(58,139,247,1) 93%);
}

.workshops-gradient2{
background: rgb(96,5,208);
background: linear-gradient(180deg, rgba(96,5,208,1) 0%, rgba(58,139,247,0.5) 83%);
}




marriage-color {
}


#coffeewithkong table{
	color:#6005D0;
}

.aboutus {
	background-image:url(img/page-virtual-missions/blank_bg_mobile.png);
	min-height:500px;
	 background-repeat: no-repeat;
  background-size: cover;
}




@media only screen and (max-width: 755px) {
/*
.container {
    margin-right: 20px!important;
    margin-left: 20px!important;
}
*/

/*
.category .container {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
*/
}


@media only screen and (max-width: 990px) {

.img-responsive {
	float:none!important;
	margin:0 auto!important;
}

}


.aboutus-header {
    font-family: 'Codec Pro News';
    font-weight: 300;
    font-style: normal;
	font-size: 50px;
}


/* */
@media only screen and (min-width: 261px) and (max-width:1023px) {
.aboutus {
	background-image:url(../img/page-virtual-missions/blank_bg_mobile.png);
	min-height:500px;
	 background-repeat: no-repeat;
  background-size: cover;
}
}

@media only screen and (min-width: 1024px) {
.aboutus {
	background-image:url(../img/page-virtual-missions/blank_bg.png);
	min-height:500px;
	 background-repeat: no-repeat;
  background-size: cover;
}
}

@media only screen and (min-width: 551px) and (max-width:2550px) {
.date-image {
width: 230px;
}
}

@media only screen and (min-width: 261px) and (max-width:550px) {
.date-image {
width: 230px;
}
}

.sticky-signup-button {
    position: fixed;
    margin: 0 auto;
    bottom: 0;
    width: 100%;
    background-color: #6005D0!important;
    box-shadow: 0px 0px 20px -10px #ccc;
}

.aligned-row {
    display: flex;
    flex-flow: row wrap;

  &::before {
    display: block;
  }
 }
/* Marriage Specific CSS */
/*
/*
/*
/*
*/

.marriage-workshops {
	background-color:#6005D0;
	color:#FFF;
	border-left: 10px solid #6AE0CD;
}

.marriage-header {
	background-color:#6005D0;
	color:#FFF;
	font-weight: 500;
	font-size: 50px;
	border-left: 10px solid #6AE0CD;
	border-top: 10px solid #6AE0CD;
}


.marriage-workshop-details {
	background-color:#2D065E;
}

.marriage-workshop-details p{
	color:#FFFFFF;
}

.marriage-workshop-details .title{
	color:#6AE0CD;
}


.category-columns{
padding-top: 40px;
    min-height: 440px!important;
}

@media only screen and (max-width: 755px) {
.category-columns{
    min-height: 460px!important;
	margin-bottom: 40px;
	padding-top: 21px;
}

}

@media only screen and (min-width: 261px) and (max-width:510px) {
.category-columns{
    min-height: 320px!important;
	margin-bottom: 30px;
	padding-top: 21px;
}

}

@media only screen and (min-width: 511px) and (max-width:754px) {
.category-columns{
    min-height: 350px!important;
	margin-bottom: 30px;
	padding-top: 21px;
}

}


.marriage-column  {
	background-color:#6005D0;
	/* border-radius: 20px 20px 20px 20px; */
	color: #F6DB49;
}

.parent-column  {
	background-color:#F6DB49;
	/* border-radius: 20px 20px 20px 20px; */
	color: #6005D0;
}

.parent-column p {
	color: #000000;
}

.connexion-column  {
	background-color:#EA4970;
	/* border-radius: 20px 20px 20px 20px; */
	color: #6AE0CD;
}

.connexion-column p {
	color: #FFFFFF;
}

.wellness-column  {
	background-color:#6AE0CD;
	/* border-radius: 20px 20px 20px 20px; */
	color: #3A8BF7;
}

/* END */


/* Parent Specific CSS */
/*
/*
/*
/*
*/
.parent-workshops{
	background-color:#F6DB49;
	color:#6005D0;
	border-left: 10px solid #EF8F65;
}

.parent-header {
	background-color:#F6DB49;
	color:#6005D0;
	font-weight: 500;
	font-size: 50px;
	border-left: 10px solid #EF8F65;
	border-top: 10px solid #EF8F65;
}

.parent-workshop-details {
	background-color:#2D065E;
}

.parent-workshop-details p{
	color:#FFFFFF;
}

.parent-workshop-details .title{
	color:#F6DB49;
}
/* END */




/* Connexion Specific CSS */
/*
/*
/*
/*
*/
.connexion-workshops{
	background-color:#EA4970;
	color:#FFFFFF;
	border-left: 10px solid #6005D0;
}

.connexion-header {
	background-color:#EA4970;
	color:#FFFFFF;
	font-weight: 500;
	font-size: 50px;
	border-left: 10px solid #6005D0;
	border-top: 10px solid #6005D0;
}

.connexion-workshop-details {
	background-color:#2D065E;
}

.connexion-workshop-details p{
	color:#FFFFFF;
}

.connexion-workshop-details .title{
	color:#F6DB49;
	/* font-family: 'Codec Pro News'; */
}
/* END */


/* Wellness Specific CSS */
/*
/*
/*
/*
*/
.wellness-workshops{
	background-color:#6AE0CD;
	color:#6005D0;
	border-left: 10px solid #F6DB49;
}

.wellness-header {
	background-color:#6AE0CD;
	color:#6005D0;
	font-weight: 500;
	font-size: 50px;
	border-left: 10px solid #F6DB49;
	border-top: 10px solid #F6DB49;
}

.wellness-workshop-details {
	background-color:#6005D0;
}

.wellness-workshop-details p{
	color:#FFFFFF;
}

.wellness-workshop-details .title{
	color:#F6DB49;
}
/* END */



.interpretation-time{
	color:#FFFFFF;
}


.parent-workshop-details {
	background-color:#931451;
}

.connexion-workshop-details {
	background-color:#6005D0;
}

.wellness-workshop-details {
	background-color:#6005D0;
}


.marriage-header:after {
    content: '';
    display: block;
    position: relative;
	bottom: -7px;
    left: -19px;
    width: 0;
    height: 10px;
    border-top: 0px solid #6AE0CD;
    border-right: 150px solid #6AE0CD;
    border-bottom: 0 solid #3A8BF7;
    border-left: 0 solid #3A8BF7;
    border-style: solid;
    border-width: 5px;
    border-top-width: 4px;
}


.parent-header:after {
    content: '';
    display: block;
    position: relative;
	bottom: -7px;
    left: -19px;
    width: 0;
    height: 10px;
    border-top: 0px solid #EF8F65;
    border-right: 150px solid #EF8F65;
    border-bottom: 0 solid #3A8BF7;
    border-left: 0 solid #3A8BF7;
    border-style: solid;
    border-width: 5px;
    border-top-width: 4px;
}

.connexion-header:after {
    content: '';
    display: block;
    position: relative;
	bottom: -7px;
    left: -19px;
    width: 0;
    height: 10px;
    border-top: 0px solid #6005D0;
    border-right: 150px solid #6005D0;
    border-bottom: 0 solid #3A8BF7;
    border-left: 0 solid #3A8BF7;
    border-style: solid;
    border-width: 5px;
    border-top-width: 4px;
}

.wellness-header:after {
    content: '';
    display: block;
    position: relative;
	bottom: -7px;
    left: -19px;
    width: 0;
    height: 10px;
    border-top: 0px solid #F6DB49;
    border-right: 150px solid #F6DB49;
    border-bottom: 0 solid #3A8BF7;
    border-left: 0 solid #3A8BF7;
    border-style: solid;
    border-width: 5px;
    border-top-width: 4px;
}
