@import url("../../global/CSS/global.css");
@import url("../../global/CSS/flexboxgrid.css");
/* ====================== Colors ====================== */
.purple1 {
  color: #a087bd; }

.purple2 {
  color: #8a66ac; }

/* ====================== Typography ====================== */
h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px; }

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 25px; }

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700; }

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 700; }

h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700; }

h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700; }

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.9em;
  margin-bottom: 30px;
  color: #6b6b6b; }

a {
  font-family: "Open Sans", sans-serif;
  color: #7665a0; }
  a:hover {
    color: #cdb6ed; }

ol, ul {
  font-family: "Open Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.9em;
  color: #6b6b6b; }

/* ====================== Buttons ====================== */
.purple-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #7665a0;
  border-radius: 50px;
  color: #fff;
  transition: .3s ease;
  font-size: 1.3rem; }
  .purple-btn:hover {
    background: #cdb6ed;
    transition: .3s ease;
    color: #fff; }

.teal-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #8bd1d3;
  border-radius: 50px;
  color: #fff;
  transition: .3s ease;
  font-size: 1.3rem; }
  .teal-btn:hover {
    background: #cdb6ed;
    transition: .3s ease;
    color: #fff; }

.white-btn {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #fff;
  border-radius: 50px;
  color: #7665a0;
  transition: .3s ease;
  font-size: 1.3rem; }
  .white-btn:hover {
    background: #7665a0;
    transition: .3s ease;
    color: #fff; }

/* ====================== Base Styles ====================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body.locked {
  overflow: hidden; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

/* Change color & bg color of selected live text */
*::selection {
  background-color: #cdb6ed;
  color: white; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

/* if using a sticky nav, use this to add space above anchor links to go below navbar */
*:target:before {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0; }

*:target:before:focus {
  outline: none !important; }

*:target:focus {
  outline: none; }

a, a:visited, a:hover, a:focus, input, input:hover {
  -webkit-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -o-transition: all .33s ease;
  transition: all .33s ease;
  text-decoration: none; }

/* Flex Nav */
nav.flex-nav {
  display: block;
  background: #eee; }
  nav.flex-nav ul#mainnav {
    display: none !important;
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* Options: */
    /*justify-content: flex-start;*/
    /*justify-content: flex-end;*/
    /*justify-content: space-between;*/
    /*justify-content: space-around;*/ }
    nav.flex-nav ul#mainnav li {
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      /* Options: */
      /*flex: 1 1 auto;*/
      /* 2nd Level ul */ }
      nav.flex-nav ul#mainnav li a {
        padding: 1.5em 0.5em;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        nav.flex-nav ul#mainnav li a:hover {
          background: #ddd; }
      nav.flex-nav ul#mainnav li > a.current {
        background: #ddd; }
      nav.flex-nav ul#mainnav li ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        margin: 0;
        padding: 0;
        list-style: none;
        z-index: 2000;
        display: none;
        /* 2nd level li */ }
        nav.flex-nav ul#mainnav li ul > li {
          position: relative;
          display: block;
          white-space: nowrap;
          z-index: 999;
          /* 3rd level ul */ }
          nav.flex-nav ul#mainnav li ul > li a {
            display: block;
            background: #eee;
            padding: 10px 12px;
            width: 100%; }
          nav.flex-nav ul#mainnav li ul > li ul {
            left: 100%;
            top: 0;
            /* 3rd level li */ }
    nav.flex-nav ul#mainnav a {
      text-decoration: none; }
    nav.flex-nav ul#mainnav > li:hover > ul, nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }

/* ====================== Side Drawer Styling ====================== */
#siteWrapper {
  position: relative;
  background-color: #fff;
  min-height: 100vh; }

.body-overlay {
  display: block;
  cursor: col-resize;
  /*background: linear-gradient(30deg, #2e3192, #1bffff);*/
  background: #888;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  visibility: hidden;
  -webkit-transition: opacity .55s ease;
  -o-transition: opacity .55s ease;
  -moz-transition: opacity .55s ease;
  -ms-transition: opacity .55s ease;
  transition: opacity .55s ease;
  -o-transition-delay: .44s !important;
  -moz-transition-delay: .44s !important;
  -webkit-transition-delay: .44s !important;
  transition-delay: .44s !important; }
  .body-overlay.active {
    opacity: 0.6;
    visibility: visible;
    height: 100%;
    width: 100%;
    z-index: 9;
    -webkit-transition: opacity .55s ease;
    -o-transition: opacity .55s ease;
    -moz-transition: opacity .55s ease;
    -ms-transition: opacity .55s ease;
    transition: opacity .55s ease;
    -o-transition-delay: .2s !important;
    -moz-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important; }

#siteWrapper {
  position: relative;
  background-color: #fff; }

#sidecar {
  position: fixed;
  height: 100%;
  width: 260px;
  background: #fff;
  top: 0;
  right: -260px;
  text-align: left;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -o-transition: right .44s ease;
  -moz-transition: right .44s ease;
  -webkit-transition: right .44s ease;
  transition: right .44s ease;
  z-index: 99999 !important; }
  #sidecar ul#mainnav {
    right: 0px; }

/* Open & Close Button Placement and Speed */
button#drawer-toggle {
  border: none;
  position: fixed;
  z-index: 999;
  top: 15px;
  right: 15px;
  transition: .3s ease;
  background: #7665a0;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  padding: 0; }
  button#drawer-toggle span {
    background: #fff;
    width: 25px;
    height: 2px;
    position: relative;
    display: block;
    transition: .3s ease;
    right: -10px; }
  button#drawer-toggle span:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    height: 2px;
    width: 25px;
    background: #fff;
    transition: .3s ease; }
  button#drawer-toggle span:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    height: 2px;
    width: 25px;
    background: #fff;
    transition: .3s ease; }
  button#drawer-toggle:hover span {
    background: #8bd1d3; }
  button#drawer-toggle:hover span:before {
    background: #8bd1d3; }
  button#drawer-toggle:hover span:after {
    background: #8bd1d3; }

button:focus {
  outline: none !important; }

button.close-drawer {
  right: -260px;
  position: absolute;
  -o-transition: right .44s ease;
  -moz-transition: right .44s ease;
  -webkit-transition: right .44s ease;
  transition: right .44s ease;
  background: url(/SiteFiles/2497/CSS/images/x.svg?new);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  padding-right: 30px;
  border: none;
  background-size: 14px;
  outline: none !important;
  top: 10px; }
  button.close-drawer span {
    color: transparent; }

/* Drawer Placement & Speed */
.slide-right, .push-right, .over-right {
  right: 0;
  left: inherit; }

.slide-right {
  -webkit-transition: -webkit-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -moz-transition: -moz-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -ms-transition: -ms-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -o-transition: -o-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out; }

/* Slide Right */
#sidecar.slide-right {
  opacity: 1;
  -o-transition: right .44s ease;
  -moz-transition: right .44s ease;
  -webkit-transition: right .44s ease;
  transition: right .44s ease; }
  #sidecar.slide-right.active {
    opacity: 1;
    right: 0px;
    -o-transition: all .44s ease;
    -moz-transition: all .44s ease;
    -webkit-transition: all .44s ease;
    transition: all .44s ease;
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
    /*ul#mainnav{
        right:0px;
        -o-transition: right .44s ease;
      -moz-transition: right .44s ease;
      -webkit-transition: right .44s ease;
      transition: right .44s ease;
      -o-transition-delay: .2s !important;
      -moz-transition-delay: .2s !important;
      -webkit-transition-delay: .2s !important;
      transition-delay:.2s !important;
      }*/ }
    #sidecar.slide-right.active button.close-drawer.pull-right {
      right: 5px;
      -o-transition: right .44s ease;
      -moz-transition: right .44s ease;
      -webkit-transition: right .44s ease;
      transition: right .44s ease;
      -o-transition-delay: .6s !important;
      -moz-transition-delay: .6s !important;
      -webkit-transition-delay: .6s !important;
      transition-delay: .6s !important; }
    #sidecar.slide-right.active ul#mainnav li a {
      margin-left: 0px;
      opacity: 1;
      color: #cdb6ed;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 15px;
      font-weight: 600; }

/* ====================== Side Drawer Styling END ====================== */
/* Expand Collapse Styling */
nav#sidecar ul#mainnav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 30px 0 0 0;
  background: transparent;
  -webkit-padding-start: 0px; }
  nav#sidecar ul#mainnav li {
    margin-bottom: 20px !important;
    position: relative;
    margin: 0;
    padding: 0;
    float: none;
    display: inline-block;
    width: 100%;
    height: auto;
    background: transparent;
    text-align: left; }
    nav#sidecar ul#mainnav li:first-child a {
      -o-transition-delay: .1s !important;
      -moz-transition-delay: .1s !important;
      -webkit-transition-delay: .1s !important;
      transition-delay: .1s !important; }
    nav#sidecar ul#mainnav li:nth-child(2) a {
      -o-transition-delay: .15s !important;
      -moz-transition-delay: .15s !important;
      -webkit-transition-delay: .15s !important;
      transition-delay: .15s !important; }
    nav#sidecar ul#mainnav li:nth-child(3) a {
      -o-transition-delay: .2s !important;
      -moz-transition-delay: .2s !important;
      -webkit-transition-delay: .2s !important;
      transition-delay: .2s !important; }
    nav#sidecar ul#mainnav li:nth-child(4) a {
      -o-transition-delay: .3s !important;
      -moz-transition-delay: .3s !important;
      -webkit-transition-delay: .3s !important;
      transition-delay: .3s !important; }
    nav#sidecar ul#mainnav li:nth-child(5) a {
      -o-transition-delay: .35s !important;
      -moz-transition-delay: .35s !important;
      -webkit-transition-delay: .35s !important;
      transition-delay: .35s !important; }
    nav#sidecar ul#mainnav li:nth-child(6) a {
      -o-transition-delay: .4s !important;
      -moz-transition-delay: .4s !important;
      -webkit-transition-delay: .4s !important;
      transition-delay: .4s !important; }
    nav#sidecar ul#mainnav li:nth-child(7) a {
      -o-transition-delay: .5s !important;
      -moz-transition-delay: .5s !important;
      -webkit-transition-delay: .5s !important;
      transition-delay: .5s !important; }
    nav#sidecar ul#mainnav li:hover ul {
      display: block; }
    nav#sidecar ul#mainnav li ul {
      padding: 0 0 0 0px;
      margin: 0;
      display: block;
      position: relative;
      max-height: 0px;
      overflow: hidden;
      float: none;
      transition: max-height 0.25s ease-in;
      background-color: #f0f0f0; }
      nav#sidecar ul#mainnav li ul li {
        margin-bottom: 0 !important; }
        nav#sidecar ul#mainnav li ul li a {
          padding: 10px 0px 10px 25px;
          border: none;
          text-transform: capitalize !important;
          font-weight: 100 !important;
          letter-spacing: 1px !important;
          color: #7665a0 !important; }
      nav#sidecar ul#mainnav li ul.active {
        display: block;
        max-height: 500px;
        float: none;
        transition: max-height 0.44s ease-in; }
    nav#sidecar ul#mainnav li a {
      display: inline-block;
      width: 100%;
      height: auto;
      padding: 8px 25px;
      position: relative;
      margin-left: 50px;
      opacity: 0;
      font-size: 18px;
      -webkit-transition: all .44s ease;
      -moz-transition: all .44s ease;
      -o-transition: all .44s ease;
      transition: all .44s ease; }
      nav#sidecar ul#mainnav li a.expand {
        display: block;
        height: 38px;
        width: 38px;
        position: absolute;
        top: 0;
        right: 0;
        background: url("/SiteFiles/2497/CSS/images/arrow.svg");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        transform: rotate(90deg);
        background-size: 40%;
        padding: 16px;
        cursor: pointer;
        border: none; }
        nav#sidecar ul#mainnav li a.expand.active {
          -webkit-transform: rotate(-90deg);
          -moz-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
          -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
          border: none; }

.blog .blog-entry {
  border-bottom: 1px solid #cdb6ed;
  padding-bottom: 25px;
  margin-bottom: 50px; }
  .blog .blog-entry .post-date {
    color: #7b7b7b;
    font-weight: 100; }
  .blog .blog-entry .post-title a {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem; }
  .blog .blog-entry .post-image {
    display: none; }
  .blog .blog-entry .post-body {
    font-weight: 100;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .5px;
    line-height: 1.8;
    color: #7b7b7b; }
    .blog .blog-entry .post-body a.post-summary-read-more {
      display: block;
      width: 175px;
      text-align: center;
      padding: 7px 30px;
      border-radius: 50px;
      background: #8bd1d3;
      color: #fff;
      margin-top: 20px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 1.3rem;
      transition: .3s ease; }
      .blog .blog-entry .post-body a.post-summary-read-more:hover {
        background: #7665a0; }
  .blog .blog-entry .post-profileinfo {
    display: none; }
  .blog .blog-entry .post-tags {
    display: none; }

/* SEARCH PANEL
============================*/
.form-group {
  margin-bottom: 0px; }

#search {
  position: fixed;
  -webkit-transform: translate3d(0px, -150px, 0px);
  transform: translate3d(0px, -150px, 0px);
  left: 0px;
  width: 100%;
  height: 70px;
  background: #8bd1d3;
  z-index: 999999; }
  #search input:-webkit-autofill, #search textarea:-webkit-autofill, #search select:-webkit-autofill {
    background-color: transparent;
    background-image: none;
    color: black; }
  #search ::-webkit-input-placeholder {
    color: #999;
    font-weight: 400; }
  #search :-moz-placeholder {
    /* Firefox 18- */
    color: #999;
    font-weight: 400; }
  #search ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999;
    font-weight: 400; }
  #search :-ms-input-placeholder {
    color: #999;
    font-weight: 400; }
  #search .flexbox-margin {
    margin-top: 115px; }
    #search .flexbox-margin h1, #search .flexbox-margin h2, #search .flexbox-margin h3, #search .flexbox-margin p {
      color: white; }
    #search .flexbox-margin h1 {
      font-size: 1em;
      padding: 10px 0;
      font-family: "Playfair Display", serif; }
    #search .flexbox-margin h2 {
      font-size: 0.85em;
      font-family: "Playfair Display", serif; }
    #search .flexbox-margin p {
      font-size: 0.75em;
      font-family: "Playfair Display", serif;
      line-height: 130%; }
    #search .flexbox-margin a {
      color: white; }
    #search .flexbox-margin .fa {
      font-size: 1.2em;
      display: block;
      color: #0080c5; }

#search span {
  position: absolute;
  top: 20% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-style: italic;
  font-size: 1em;
  z-index: -2; }
  @media (max-width: 600px) {
    #search span {
      font-size: 0.85em; } }

#search.open-search {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  z-index: 9999999;
  opacity: 1; }

.searchPanel {
  padding-top: 13px; }

input#searchButton {
  position: absolute;
  right: 20.5%;
  background: transparent;
  border: 0;
  margin-top: 47px;
  height: 40px;
  width: 80px;
  display: none; }

.searchPanel input#searchField {
  position: absolute;
  top: -20px;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 65px;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2rem;
  margin: 1.4rem 0 0.7rem 0;
  font-weight: 400;
  text-align: left;
  padding: 0;
  padding: 10px 0px;
  border: 0;
  color: white;
  font-size: 2.5rem;
  border-bottom: 1px solid transparent; }

.searchPanel input#searchField:focus {
  background: transparent;
  color: white;
  outline: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.searchPanel input:hover {
  background: transparent;
  color: white;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

#search .btn-default {
  color: white;
  background: #0080c5 url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5%;
  text-indent: 9999px;
  border-color: #ccc;
  cursor: pointer;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); }

#search .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  height: 40px;
  width: 10%;
  float: right;
  text-align: center;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

#search .btn:hover,
#search .btn:focus {
  border: 0px solid #952818;
  color: white;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2); }

#search .close-search {
  position: absolute;
  z-index: 9999;
  right: 58px;
  height: 30px;
  width: 30px;
  top: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0) url(images/x.svg) no-repeat center center;
  background-size: 60%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  cursor: pointer; }

#search .close-search:hover {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

#search .close-search {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

#search .searchPanel {
  position: relative;
  top: 35%;
  width: 100%;
  display: table;
  margin: auto;
  max-width: 1160px;
  margin-top: 10px; }

#search .container {
  position: relative; }

#search .form-control {
  display: inline-block;
  text-align: left;
  width: 90%;
  height: 40px;
  padding: 6px 12px;
  font-size: 1em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.428571429;
  color: #999;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: none;
  border: 1px solid white;
  border-radius: 0px;
  float: left;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

li#mn-search .icon-search {
  border: 2px solid #0080c5;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: -10px;
  text-decoration: none; }

li#mn-search .icon-search:hover {
  background: #0080c5;
  text-decoration: none; }

li#mn-search a {
  text-decoration: none;
  border: 0 !important;
  box-shadow: none !important; }

li#mn-search a:hover {
  border: 0 !important;
  text-decoration: none;
  box-shadow: none !important; }

input#searchField::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white; }

input#searchField::-moz-placeholder {
  /* Firefox 19+ */
  color: white; }

input#searchField:-ms-input-placeholder {
  /* IE 10+ */
  color: white; }

input#searchField:-moz-placeholder {
  /* Firefox 18- */
  color: white; }

.pageSearch {
  margin-top: -200px; }
  .pageSearch h1 {
    text-align: center;
    margin-bottom: 100px; }

.event-module .public-submit-button-wrapper input {
  -webkit-appearance: none;
  background: #8bd1d3;
  border: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 30px;
  color: #fff;
  border-radius: 50px;
  transition: .3s ease; }
  .event-module .public-submit-button-wrapper input:hover {
    background: #7665a0; }

.event-module .cal-display-switch {
  position: absolute;
  top: 9px;
  right: 0; }
  .event-module .cal-display-switch a {
    border: 2px solid #7665a0;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem;
    color: #7665a0;
    background: #fff;
    transition: .3s ease; }
    .event-module .cal-display-switch a:first-child {
      border-radius: 50px 0 0 50px;
      margin-right: -8px; }
    .event-module .cal-display-switch a:last-child {
      border-radius: 0 50px 50px 0; }
    .event-module .cal-display-switch a.active {
      background: #7665a0;
      color: #fff; }
    .event-module .cal-display-switch a:hover {
      background: #7665a0;
      color: #fff; }
  @media (max-width: 767px) {
    .event-module .cal-display-switch {
      position: relative;
      padding-bottom: 30px;
      top: 0; } }
  @media (max-width: 400px) {
    .event-module .cal-display-switch a {
      padding: 10px 15px; } }

.event-module .calendar-controls input {
  -webkit-appearance: none !important;
  font-family: "Open Sans", sans-serif;
  border: 0;
  background: none;
  font-weight: 600;
  color: #7b7b7b; }

.event-module .calendar-controls input#ctl00_cphPageBody_public_partctrl_cphPageBody_1_btnIndexForward {
  left: 100px;
  position: absolute;
  margin-top: 1px; }

.event-module .calendar-controls input#ctl00_cphPageBody_public_partctrl_cphPageBody_1_btnToToday {
  position: absolute;
  left: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  margin-top: 2px; }

.event-module .calendar-controls .current-month {
  position: absolute;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: #7665a0;
  left: 135px;
  font-size: 2rem; }

.event-module .calendar-controls .monthyear-jumper {
  position: absolute;
  right: 9px; }
  .event-module .calendar-controls .monthyear-jumper select {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem;
    background: #eee;
    border: none; }
  .event-module .calendar-controls .monthyear-jumper input {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem; }
  @media (max-width: 767px) {
    .event-module .calendar-controls .monthyear-jumper {
      top: 160px;
      left: 15px;
      right: 0; } }
  @media (max-width: 400px) {
    .event-module .calendar-controls .monthyear-jumper {
      display: none; } }

@media (max-width: 767px) {
  .event-module .calendar-panel {
    margin-top: 55px; } }

@media (max-width: 400px) {
  .event-module .calendar-panel {
    margin-top: 0; } }

.event-module tbody {
  box-shadow: 0px 21px 173px -35px #ccc; }
  .event-module tbody tr:first-child th {
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #cdb6ed;
    color: #fff; }
  .event-module tbody tr td {
    border: soild 1px #f7f7f7;
    padding-top: 7px;
    padding-right: 7px;
    color: #7b7b7b; }
    .event-module tbody tr td.weekend {
      background: #f7f7f7; }
    .event-module tbody tr td.today {
      color: #fff;
      background: #8bd1d3; }
      .event-module tbody tr td.today .all-day-event {
        background: #ace7e8;
        transition: .3s ease; }
        .event-module tbody tr td.today .all-day-event a {
          color: #fff; }
        .event-module tbody tr td.today .all-day-event:hover {
          background: #a1ddde; }
      .event-module tbody tr td.today .partial-day-event:hover a {
        color: #fff; }
      .event-module tbody tr td.today .partial-day-event:hover span {
        color: #fff; }
    .event-module tbody tr td .partial-day-event {
      margin-left: 8px; }
      .event-module tbody tr td .partial-day-event a {
        color: #7665a0;
        transition: .3s ease; }
      .event-module tbody tr td .partial-day-event span {
        color: #7665a0;
        transition: .3s ease; }
      .event-module tbody tr td .partial-day-event:hover {
        text-decoration: none; }
        .event-module tbody tr td .partial-day-event:hover a {
          color: #cdb6ed; }
        .event-module tbody tr td .partial-day-event:hover span {
          color: #cdb6ed; }
    .event-module tbody tr td .all-day-event {
      margin-right: -7px;
      background: #8bd1d3;
      transition: .3s ease; }
      .event-module tbody tr td .all-day-event a {
        margin-left: 7px; }
      .event-module tbody tr td .all-day-event:hover {
        background: #cdb6ed; }

.event-module .list-panel .sw-events-detail-timeframes li a {
  background-color: #cdb6ed;
  padding: 10px 30px;
  margin-bottom: 10px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem; }

.event-module .list-panel .sw-events-detail-categories li a {
  display: none; }

.event-module .list-panel .sw-events-detail-list li {
  width: 48%;
  float: left;
  text-align: center;
  border: 2px solid #cdb6ed;
  margin-bottom: 30px;
  margin-right: 2%;
  padding: 45px; }
  .event-module .list-panel .sw-events-detail-list li h2 {
    margin-bottom: 10px;
    margin-top: 0; }
    .event-module .list-panel .sw-events-detail-list li h2 a {
      font-family: "Playfair Display", serif;
      color: #7665a0; }
  .event-module .list-panel .sw-events-detail-list li .sw-events-detail-list-event-details {
    color: #7b7b7b;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .5px;
    margin-bottom: 25px; }
  .event-module .list-panel .sw-events-detail-list li .sw-events-detail-list-event-description {
    display: none; }
  .event-module .list-panel .sw-events-detail-list li .sw-events-detail-more-link {
    padding: 10px 30px;
    border-radius: 50px;
    background: #8bd1d3;
    color: #fff;
    transition: .3s ease; }
    .event-module .list-panel .sw-events-detail-list li .sw-events-detail-more-link:hover {
      background: #7665a0; }
  @media (max-width: 767px) {
    .event-module .list-panel .sw-events-detail-list li {
      width: 100%; } }

/*Public Event Form*/
#public-submit-modal-285972 {
  border: none;
  border-radius: 0;
  padding-left: 3% !important;
  padding-right: 3% !important; }
  #public-submit-modal-285972 h3 {
    font-family: "Playfair Display", serif;
    color: #7665a0;
    font-size: 4rem; }
  #public-submit-modal-285972 h4 {
    color: #cdb6ed;
    text-transform: uppercase;
    letter-spacing: 2px; }
  #public-submit-modal-285972 ul.sw-form-elements li label {
    font-weight: 100 !important;
    font-family: "Open Sans", sans-serif;
    content: #7b7b7b; }
  #public-submit-modal-285972 ul.sw-form-elements li ul.sw-form-options li {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    font-size: 1.3rem;
    color: #7b7b7b; }
    #public-submit-modal-285972 ul.sw-form-elements li ul.sw-form-options li input[type=checkbox] {
      margin-right: 5px; }
  #public-submit-modal-285972 ul.sw-form-elements strong {
    font-weight: 100;
    color: #7b7b7b;
    font-family: "Open Sans", sans-serif; }
  #public-submit-modal-285972 ul.sw-form-elements .cke_chrome {
    margin-top: 10px; }
  #public-submit-modal-285972 ul.sw-form-elements li.sw-form-lin-two-column {
    margin-top: 15px; }
  #public-submit-modal-285972 ul.sw-form-elements li.public-bot-stopper {
    font-family: "Open Sans", sans-serif;
    content: #7b7b7b; }
  #public-submit-modal-285972 input[type="button"] {
    -webkit-appearance: none;
    border: none;
    padding: 10px 30px;
    margin-bottom: 3%;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem;
    font-family: "Open Sans", sans-serif;
    border-radius: 50px;
    background: #8bd1d3;
    transition: .3s ease; }
    #public-submit-modal-285972 input[type="button"]:hover {
      background: #7665a0; }

.formmodule .formmodule-form tr td label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem !important;
  margin-left: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600 !important;
  color: #8bd1d3; }

.formmodule .formmodule-form tr td .formmodule-required {
  color: #8bd1d3; }

.formmodule .formmodule-form tr td input {
  border-radius: 0 !important; }

.formmodule .form-bot-stopper-info {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem !important; }

.formmodule .form-bot-stopper-question {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem !important; }
  .formmodule .form-bot-stopper-question input {
    border-radius: 0 !important; }

.formmodule .formmodule-submit input {
  -webkit-appearance: none;
  border: none;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 50px;
  background: #7665a0;
  transform: .3s ease; }
  .formmodule .formmodule-submit input:hover {
    background: #cdb6ed; }

div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header, div.ctct-form-embed div.ctct-form-defaults p, div.ctct-form-embed div.ctct-form-defaults label {
  color: #7665a0 !important; }

div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field {
  margin-bottom: 24px; }
  div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field label {
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    font: 16px Helvetica Neue,Arial,sans-serif; }
  div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input, div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #b0b6bb;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: Helvetica Neue, Arial, sans-serif;
    color: #394856;
    font-size: 16px;
    line-height: 1.5; }
  div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field select {
    width: 100%;
    height: 46px;
    border: 1px solid #b0b6bb;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input[type="text"]:focus,
  div.ctct-form-embed div.ctct-form-defaults div.ctct-form-field input[type="email"]:focus {
    outline: 1px solid #5dacd6; }

div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists {
  margin-bottom: 20px; }
  div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists legend {
    color: #7665a0;
    margin-bottom: 12px;
    line-height: 1;
    font: 16px Helvetica Neue,Arial,sans-serif;
    border-bottom: none; }
  div.ctct-form-embed div.ctct-form-defaults fieldset.ctct-form-lists .ctct-form-listitem label {
    font: 16px Helvetica Neue,Arial,sans-serif; }

div.ctct-form-embed div.ctct-form-defaults button.ctct-form-button {
  border: none;
  color: #fff;
  background-color: #0078c1;
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 20px;
  line-height: 1;
  background-image: none;
  border: none;
  box-shadow: none;
  border-radius: 2px;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  margin-bottom: 20px; }
  div.ctct-form-embed div.ctct-form-defaults button.ctct-form-button:hover {
    color: #fff;
    background-color: #3e9fda; }

iframe#etapIframe #pageContent .pageRegion .nonFunctionalContent img {
  display: none !important; }

iframe#etapIframe #pageContent #gift_information_region .ecRegionHeader h1 {
  color: #cdb6ed !important;
  font-family: "Playfair Display", serif !important; }

iframe#etapIframe #pageContent #gift_information_region #label {
  color: #7b7b7b !important;
  font-family: "Open Sans", sans-serif !important;
  font-weight: normal !important;
  letter-spacing: .5px; }

iframe#etapIframe #pageContent #gift_information_region #rgsFrequencyField {
  color: #7b7b7b !important; }

iframe#etapIframe #pageContent #gift_information_region #udf_5086.0.44860465Field {
  background-image: none !important; }

iframe#etapIframe #pageContent #eah7K2VzF {
  color: #7b7b7b;
  font-family: "Open Sans", sans-serif !important;
  letter-spacing: .5px;
  line-height: 1.8; }

#breadcrumb {
  position: absolute;
  list-style: none;
  padding: 0;
  top: -50px;
  left: 0; }
  #breadcrumb li {
    display: inline-block; }
    #breadcrumb li:not(:last-child):after {
      color: #fff;
      content: "\f105";
      font-family: "FontAwesome";
      font-size: 1.6rem;
      margin-right: 1rem; }
    #breadcrumb li a {
      color: #fff;
      font-size: 1.6rem;
      margin-right: 1rem; }
      #breadcrumb li a:hover {
        color: #8bd1d3; }

.job-search-options select {
  background: #f9f9f9;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  height: 30px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-top: 10px;
  padding: 10px;
  width: 170px;
  color: #666; }

.job-search-options input[type="text"] {
  background-color: #f9f9f9;
  background-image: none;
  border-radius: 0 !important;
  border: none;
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  color: #666;
  display: inline-block;
  font-size: 14px;
  height: 30px;
  line-height: 1.42857143;
  margin: 5px;
  padding: 8px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: auto; }

.job-search-options label {
  display: none; }

.job-search-options input[type="button"] {
  border: none;
  background: #8bd1d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  transition: .3s ease; }
  .job-search-options input[type="button"]:hover {
    background: #7665a0; }

table.jobs-list thead tr th {
  background: #cdb6ed;
  padding: 20px;
  border: 1px solid #fff; }
  table.jobs-list thead tr th:first-child {
    border-left: none; }
  table.jobs-list thead tr th:nth-child(3) {
    border-right: none; }
  table.jobs-list thead tr th:last-child {
    display: none; }
  table.jobs-list thead tr th a {
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 4px; }

table.jobs-list tbody tr:nth-child(odd) {
  background: #efefef; }

table.jobs-list tbody tr td {
  padding: 20px;
  border: 1px solid #ccc; }
  table.jobs-list tbody tr td a.job-posting-title {
    color: #7665a0; }
  table.jobs-list tbody tr td span.job-posting-company {
    display: block;
    font-size: 11px;
    color: #666; }
  table.jobs-list tbody tr td span.job-posting-location, table.jobs-list tbody tr td span.job-posting-date {
    color: #666;
    font-size: 11px; }

.job-posting-info h1 {
  font-size: 4rem;
  margin-bottom: 10px; }

.job-posting-info p {
  margin-bottom: 20px; }

/******************************
******* PopUp Container *******
******************************/
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px); }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px); }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeftOver {
  0% {
    transform: translateX(-1000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

body .popup-message {
  display: none;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: auto;
  box-shadow: border-box;
  border-radius: 0px 40px 40px 0px;
  bottom: 10px;
  box-shadow: -1px 6px 44px -7px rgba(0, 0, 0, 0.3);
  left: -25%;
  z-index: 20000;
  background-color: #8bd1d3; }
  @media (min-width: 850px) {
    body .popup-message {
      animation-name: fadeInLeftOver;
      animation-delay: 2s;
      animation-duration: 2s;
      animation-fill-mode: forwards;
      animation-timing-function: cubic-bezier(0.76, -0.95, 0.2, 1.73); } }
  @media (max-width: 850px) {
    body .popup-message {
      opacity: 1;
      bottom: 0;
      left: 0;
      width: 100%;
      border-radius: 0; } }
  body .popup-message .templatecontent {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px 10px 20px 20px; }
    @media (min-width: 850px) {
      body .popup-message .templatecontent {
        width: 75%;
        margin-left: 25%; } }
    @media (max-width: 850px) {
      body .popup-message .templatecontent {
        flex-direction: column;
        text-align: center;
        padding: 20px; } }
    body .popup-message .templatecontent p {
      color: #7665a0;
      font-size: 1.3em;
      margin-top: 14px;
      flex-basis: 75%;
      font-weight: bold;
      line-height: inherit;
      margin: 0; }
    body .popup-message .templatecontent .purple-btn {
      height: 50px;
      align-self: center;
      flex-basis: 15%;
      margin-left: 8%;
      margin-right: 2%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      font-size: .9em; }
      @media (max-width: 850px) {
        body .popup-message .templatecontent .purple-btn {
          margin: 25px; } }
      body .popup-message .templatecontent .purple-btn:hover {
        background-color: #FFF;
        color: #7665a0;
        cursor: pointer;
        animation: hvr-wobble-vertical;
        animation-delay: 0s;
        animation-duration: .88s;
        animation-timing-function: ease; }

body section.popup-message.active {
  display: block; }

/* ====================== Header ====================== */
header {
  position: relative;
  z-index: 999; }
  header .logo {
    width: 125px;
    position: absolute;
    z-index: 9;
    margin: 15px; }
  header .utility {
    position: absolute;
    z-index: 9;
    right: 0; }
    header .utility ul {
      list-style: none;
      line-height: inherit;
      display: flex;
      flex-direction: row;
      top: 14px;
      right: 70px;
      position: relative; }
      header .utility ul li {
        display: table;
        padding: 10px 20px;
        margin-right: 5px;
        width: 150px;
        text-align: center; }
      header .utility ul #cpn-donate,
      header .utility ul #cpn-explore-our-conference {
        border: 2px solid #8bd1d3;
        background: #8bd1d3;
        border-radius: 50px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 3px;
        transition: .3s ease; }
        header .utility ul #cpn-donate a,
        header .utility ul #cpn-explore-our-conference a {
          color: #fff; }
          header .utility ul #cpn-donate a .fa-heart,
          header .utility ul #cpn-explore-our-conference a .fa-heart {
            margin-right: 5px;
            display: block; }
        header .utility ul #cpn-donate:hover,
        header .utility ul #cpn-explore-our-conference:hover {
          transition: .3s ease;
          border-color: white;
          background: transparent; }
        @media (max-width: 767px) {
          header .utility ul #cpn-donate,
          header .utility ul #cpn-explore-our-conference {
            display: none; } }
      header .utility ul #cpn-search {
        width: 50px; }
        header .utility ul #cpn-search a {
          color: #fff; }
          header .utility ul #cpn-search a:hover {
            color: #8bd1d3; }
      header .utility ul #cpn-become-a-member {
        top: 14px;
        border: 2px solid #8bd1d3;
        background: #8bd1d3;
        border-radius: 50px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 3px;
        -webkit-transition: .3s ease;
        transition: .3s ease;
        text-align: center; }
        header .utility ul #cpn-become-a-member a {
          color: #fff; }
        header .utility ul #cpn-become-a-member:hover {
          transition: .3s ease;
          border-color: white;
          background: transparent; }
        @media (max-width: 767px) {
          header .utility ul #cpn-become-a-member {
            display: none; } }

.exit-btn {
  position: fixed;
  z-index: 9999999;
  bottom: 25px;
  right: 15px;
  background: #ed927a;
  border-radius: 50px;
  color: #fff;
  padding: 10px 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: -1px 6px 44px -7px #bb715d;
  transition: .3s ease; }
  .exit-btn:hover {
    color: #fff;
    background: #e89e8b;
    transition: .3s ease; }
  @media (max-width: 767px) {
    .exit-btn {
      bottom: 85px; } }

#mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9; }
  @media (min-width: 768px) {
    #mobile-cta {
      display: none; } }
  #mobile-cta ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 auto;
    justify-content: center; }
    #mobile-cta ul li {
      list-style: none;
      background: rgba(118, 101, 160, 0.95);
      flex-basis: 30%;
      margin: 5px;
      display: table;
      text-align: center;
      height: 60px; }
      #mobile-cta ul li a {
        font-size: 10px;
        color: white;
        text-transform: uppercase;
        width: 100%;
        height: 100%;
        display: table-cell;
        vertical-align: middle;
        padding: 5px 15%;
        line-height: 15px;
        letter-spacing: 1px; }
        #mobile-cta ul li a i.fa-heart {
          display: block; }
      #mobile-cta ul li#cpn-search {
        display: none; }

/* ====================== Footer ====================== */
footer {
  background: #fff;
  position: relative; }
  footer .top-footer {
    padding-top: 5%;
    padding-bottom: 5%; }
    footer .top-footer h4 {
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: 2rem;
      color: #8bd1d3; }
    footer .top-footer ul {
      list-style: none;
      padding: 0; }
      footer .top-footer ul li {
        line-height: 2; }
        footer .top-footer ul li a {
          letter-spacing: 1px;
          color: #6b6b6b; }
          footer .top-footer ul li a:hover {
            color: #999; }
    footer .top-footer .socials {
      display: inline-flex;
      margin-top: -10px; }
      footer .top-footer .socials li {
        margin-right: 10px; }
    @media (max-width: 767px) {
      footer .top-footer {
        text-align: center; }
        footer .top-footer .flex-row div {
          margin-bottom: 20px; }
          footer .top-footer .flex-row div:last-child {
            margin-bottom: 0; } }
  footer .bottom-footer {
    padding: 15px;
    background-color: #cdb6ed; }
    footer .bottom-footer .container {
      text-align: center; }
      footer .bottom-footer .container a {
        color: #fff;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: .5s ease; }
        footer .bottom-footer .container a:hover {
          color: #7665a0; }

/* ====================== Transitions ====================== */
/*

=== Use Extend Property (Example below) ===

.header {
  @extend .transition-cubic;
  background: white;
}

*/
.transition-cubic, #search, #search.open-search, #search .close-search {
  -webkit-transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1); }

.transition-fast {
  -webkit-transition: all .2s ease;
  transition: all .2s ease; }

.transition, li#mn-search .icon-search, li#mn-search .icon-search:hover {
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }

.transition-slow {
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }

.easeInOutBack {
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55); }

/* ====================== Alignment ====================== */
.center {
  text-align: center; }

/* Parent element needs position:relative; */
.vert-centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

/* Parent element needs position:relative; */
.absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -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%); }

/* ====================== Paddding Adjustments ====================== */
/* Remove excess margin / padding */
.no-border {
  border: 0; }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

.cushion-sm {
  padding: 2%; }

.cushion-md {
  padding: 5%; }

.cushion-lg {
  padding: 10%; }

.cushion-vert-sm {
  padding: 2% 0; }

.cushion-vert-md {
  padding: 5% 0; }

.cushion-vert-lg {
  padding: 10% 0; }

.cushion-horiz-sm {
  padding: 0 2%; }

.cushion-horiz-md {
  padding: 0 5%; }

.cushion-horiz-lg {
  padding: 0 10%; }

.white {
  color: white !important; }

/* ====================== Alignment ====================== */
.centered {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%; }

/* Parent element needs position:relative; */
.vert-centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

/* Parent element needs position:relative; */
.absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -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%); }

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-margin {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

/* BG Images
====================== */
.bg-image-js {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover !important; }

/* ====================== REM font size with pixel fallback ====================== */
/* === Usage === */
/*p {
  @include font-size(14px)
}*/
/* === Output === */
/*p {
  font-size: 14px; //Will be overridden if browser supports rem
  font-size: 0.8rem;
}*/
/* ====================== Breakpoints ====================== */
/* ==== Usage ==== */
/*.class {
  width: 60%;
  float: left;
  margin: 0 2% 0 0;
  @include bp-small {
    width: 100%;
    float: none;
    margin: 0;
  }
}*/
/* ==== End ==== */
.home .home-hero {
  height: 100vh;
  position: relative;
  z-index: 9;
  margin-top: -22px; }
  .home .home-hero .bg-image {
    width: 100%;
    height: 100vh;
    right: 0;
    position: absolute; }
    .home .home-hero .bg-image:before {
      content: '';
      height: 100%;
      width: 100%;
      position: absolute;
      background: rgba(205, 182, 237, 0.4); }

.home .hero-message {
  color: #fff; }
  .home .hero-message h6 {
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.6rem; }
    .home .hero-message h6:first-child {
      margin-bottom: -20px;
      animation: right 8s ease; }
    .home .hero-message h6:last-child {
      float: right;
      animation: left 8s ease; }
  .home .hero-message h1 {
    font-size: 15rem;
    text-align: center;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    animation: center 8s ease; }

@keyframes right {
  from {
    opacity: 0;
    transform: translateX(-50px); }
  30% {
    opacity: .7; }
  50% {
    opacity: 1; }
  70% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes left {
  from {
    opacity: 0;
    transform: translateX(50px); }
  30% {
    opacity: .7; }
  50% {
    opacity: 1; }
  70% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes center {
  from {
    opacity: 0;
    letter-spacing: 8px; }
  40% {
    opacity: 1; }
  70% {
    letter-spacing: 0; } }
  @media (max-width: 675px) {
    .home .hero-message {
      transform: translatex(-50%) translatey(-50%) scale(0.75); } }
  @media (max-width: 550px) {
    .home .hero-message {
      transform: translatex(-50%) translatey(-50%) scale(0.65); } }
  @media (max-width: 450px) {
    .home .hero-message {
      transform: translatex(-50%) translatey(-50%) scale(0.55); } }
  @media (max-width: 375px) {
    .home .hero-message {
      transform: translatex(-50%) translatey(-50%) scale(0.48); } }

.home .arrow {
  transition: .3s ease;
  position: absolute;
  z-index: 99;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #fff; }
  .home .arrow svg {
    transform: rotate(90deg);
    margin: 20px;
    top: 3px;
    position: relative; }
    .home .arrow svg path {
      fill: #fff; }

.home .home-main {
  padding-top: 5%;
  padding-bottom: 5%;
  background: #fff;
  z-index: 9;
  position: relative; }
  .home .home-main .about-block h1 {
    margin-left: -150px;
    font-size: 7rem;
    color: #cdb6ed;
    margin-top: 0; }
    @media (max-width: 900px) {
      .home .home-main .about-block h1 {
        margin-left: -75px; } }
  @media (max-width: 767px) {
    .home .home-main {
      padding: 5% 5% 8%; }
      .home .home-main .about-block h1 {
        margin-left: 0; } }
  @media (max-width: 500px) {
    .home .home-main {
      padding: 10% 6% 13%; }
      .home .home-main .about-block h1 {
        font-size: 5rem; }
      .home .home-main .about-block p {
        font-size: 16px; } }

.home .home-stats {
  height: 300px;
  position: relative;
  z-index: 9; }
  .home .home-stats .background {
    width: 100%;
    height: 100%; }
    .home .home-stats .background:before {
      content: '';
      height: 100%;
      width: 100%;
      position: absolute;
      background: rgba(0, 0, 0, 0.25);
      transition: .3s ease; }
  .home .home-stats .stats-block {
    position: absolute;
    display: block;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    .home .home-stats .stats-block div {
      float: left; }
    .home .home-stats .stats-block p {
      color: #fff;
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 0;
      text-transform: uppercase;
      font-weight: 600; }
      .home .home-stats .stats-block p span.stat {
        font-family: "Playfair Display", serif;
        font-size: 4rem;
        text-transform: capitalize; }
  .home .home-stats:hover .background:before {
    background: rgba(118, 101, 160, 0.5); }
  @media (max-width: 767px) {
    .home .home-stats {
      height: 400px; }
      .home .home-stats .stats-block {
        padding-right: 5%;
        padding-left: 5%; }
        .home .home-stats .stats-block div {
          margin-bottom: 50px; }
          .home .home-stats .stats-block div:nth-child(3) {
            margin-bottom: 0; }
          .home .home-stats .stats-block div:last-child {
            margin-bottom: 0; } }
  @media (max-width: 500px) {
    .home .home-stats {
      height: 550px; }
      .home .home-stats .stats-block {
        padding-right: 10%;
        padding-left: 10%; }
        .home .home-stats .stats-block div {
          max-width: 100%;
          flex: 100%; }
          .home .home-stats .stats-block div:nth-child(3) {
            margin-bottom: 50px; } }

.home .home-events {
  position: relative;
  background: #fff;
  z-index: 9; }
  .home .home-events .left-half {
    position: relative; }
    .home .home-events .left-half .background {
      width: 100%;
      height: 550px;
      top: -20px;
      background-position: 50% 20% !important; }
    .home .home-events .left-half .content {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%; }
      .home .home-events .left-half .content h1 {
        margin-top: 0; }
  .home .home-events .right-half {
    padding-top: 5%;
    padding-bottom: 5%;
    margin-left: 5%;
    width: 40%;
    flex-basis: 40%;
    position: relative; }
    .home .home-events .right-half .upcoming-events-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -45%); }
      .home .home-events .right-half .upcoming-events-wrapper ul {
        list-style: none;
        padding: 0; }
        .home .home-events .right-half .upcoming-events-wrapper ul li {
          padding-bottom: 20px; }
          .home .home-events .right-half .upcoming-events-wrapper ul li:last-child {
            padding-bottom: 0; }
          .home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-date:after {
            content: '';
            position: absolute;
            background-color: #8bd1d3;
            height: 60px;
            width: 60px;
            left: -115px;
            z-index: 0;
            margin-top: -6px; }
          .home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-month {
            left: -100px;
            position: absolute;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            z-index: 9;
            font-weight: 600; }
          .home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-date {
            position: absolute;
            left: -100px;
            margin-top: 22px;
            font-size: 24px;
            color: #fff;
            z-index: 9; }
            .home .home-events .right-half .upcoming-events-wrapper ul li span.upcoming-events-date:last-child {
              display: none; }
          .home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name {
            margin-top: -5px;
            line-height: 1.5; }
            .home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name a {
              color: #6b6b6b; }
              .home .home-events .right-half .upcoming-events-wrapper ul li p.upcoming-events-name a:hover {
                color: #8bd1d3; }
  @media (max-width: 767px) {
    .home .home-events .left-half .background {
      height: 250px; }
    .home .home-events .right-half {
      height: 550px;
      width: 100%;
      flex-basis: 100%; } }
  @media (max-width: 420px) {
    .home .home-events .right-half {
      height: 650px; }
      .home .home-events .right-half .upcoming-events-wrapper {
        margin-left: 25px; }
        .home .home-events .right-half .upcoming-events-wrapper p.upcoming-events-name {
          font-family: 16px;
          line-height: 1.3; } }

.home .home-portals {
  text-align: center;
  position: relative;
  z-index: 9; }
  .home .home-portals .flex-row div {
    flex-grow: 1;
    transition: .3s ease; }
    .home .home-portals .flex-row div:hover {
      flex-grow: 2; }
    @media (max-width: 650px) {
      .home .home-portals .flex-row div {
        width: 100%; } }
  .home .home-portals .portal-one {
    background-color: #cdb6ed; }
  .home .home-portals .portal-two {
    background-color: #b69bda; }
  .home .home-portals .portal-three {
    background-color: #9f85c1; }
  .home .home-portals .portal {
    padding-top: 20px;
    padding-bottom: 20px; }
    .home .home-portals .portal p {
      color: #fff;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 3px;
      margin-bottom: 0; }
    .home .home-portals .portal h4 {
      margin: 0;
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: #fff; }

.home .home-blog {
  padding-top: 5%;
  padding-bottom: 300px;
  position: relative;
  background: #fff;
  z-index: 9; }
  .home .home-blog .blog-intro {
    text-align: center; }
  .home .home-blog .recent-blog-posts-wrapper {
    margin-top: 50px;
    text-align: center; }
    .home .home-blog .recent-blog-posts-wrapper ul {
      list-style: none;
      padding-left: 0;
      line-height: inherit; }
      .home .home-blog .recent-blog-posts-wrapper ul li {
        width: 250px;
        margin-right: 2%;
        margin-left: 2%;
        display: inline-block;
        text-align: center;
        position: relative; }
        .home .home-blog .recent-blog-posts-wrapper ul li:after {
          content: '';
          width: 100%;
          height: 150px;
          position: absolute;
          background-color: #f9f8f8;
          z-index: 0;
          left: 0;
          bottom: -120px; }
        .home .home-blog .recent-blog-posts-wrapper ul li a:first-child {
          display: block;
          width: 250px;
          height: 250px;
          overflow: hidden;
          position: relative; }
          .home .home-blog .recent-blog-posts-wrapper ul li a:first-child:before {
            content: '';
            background: transparent;
            border: 2px solid #fff;
            position: absolute;
            height: 230px;
            width: 230px;
            margin: 10px;
            transition: .3s ease;
            opacity: 0;
            z-index: 9; }
          .home .home-blog .recent-blog-posts-wrapper ul li a:first-child img {
            transition: .5s ease; }
        .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-title {
          margin-bottom: -56px;
          position: absolute;
          left: 50%;
          top: 116%;
          transform: translate(-50%, -50%);
          font-size: 18px;
          width: 100%;
          z-index: 9;
          letter-spacing: 1px;
          font-weight: 600;
          padding: 0 5%;
          color: #7665a0; }
          .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-title:hover {
            color: #cdb6ed; }
        .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper {
          display: block;
          font-size: 11px;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-top: 15px;
          z-index: 9;
          position: relative;
          color: #6b6b6b; }
          .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper span:nth-child(2) {
            display: none; }
          .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper .recent-blog-posts-weekday {
            display: none; }
        @media (max-width: 865px) {
          .home .home-blog .recent-blog-posts-wrapper ul li {
            margin-bottom: 175px; }
            .home .home-blog .recent-blog-posts-wrapper ul li .recent-blog-posts-view-link {
              margin-top: 0; } }
        .home .home-blog .recent-blog-posts-wrapper ul li:hover a:first-child:before {
          opacity: 1; }
        .home .home-blog .recent-blog-posts-wrapper ul li:hover a:first-child img {
          transform: scale(1.1); }
    .home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link {
      text-align: center;
      width: 170px;
      padding: 8px 30px;
      border-radius: 50px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background: #7665a0;
      transition: .3s ease;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-top: 170px; }
      .home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link a {
        color: #fff; }
      .home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link:hover {
        background: #cdb6ed;
        transition: .3s ease; }
      @media (max-width: 865px) {
        .home .home-blog .recent-blog-posts-wrapper .recent-blog-posts-view-link {
          margin-top: 0; } }
  @media (max-width: 865px) {
    .home .home-blog {
      padding-bottom: 130px; } }
  @media (max-width: 767px) {
    .home .home-blog .hideme {
      opacity: 1; } }

.home .home-newsletter-cta {
  position: relative;
  z-index: 99;
  background: #cdb6ed;
  text-align: center;
  padding: 40px;
  color: #fff; }
  .home .home-newsletter-cta h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0; }
  .home .home-newsletter-cta h1 {
    margin-top: 0; }

.home .home-membership-cta {
  position: relative;
  height: 350px; }
  .home .home-membership-cta .background {
    position: fixed;
    top: -50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    height: 120%;
    z-index: 0; }
    .home .home-membership-cta .background:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.15); }
    @media (max-width: 767px) {
      .home .home-membership-cta .background {
        top: -58%; } }
    @media (max-width: 550px) {
      .home .home-membership-cta .background {
        top: -62%; } }
  .home .home-membership-cta .content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%; }
    .home .home-membership-cta .content h6 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin: 0; }
    .home .home-membership-cta .content h1 {
      font-size: 7rem;
      margin-top: 0; }
      @media (max-width: 767px) {
        .home .home-membership-cta .content h1 {
          font-size: 6rem; } }

.home .hideme {
  opacity: 0; }

.default .inner-banner {
  height: 400px;
  position: relative;
  margin-top: -22px; }
  .default .inner-banner .mobile-title {
    text-align: center;
    width: inherit;
    padding: 5% 8%;
    border: 2px solid #fff;
    color: #fff; }
    @media (min-width: 768px) {
      .default .inner-banner .mobile-title {
        display: none; } }
  @media (max-width: 767px) {
    .default .inner-banner:before {
      content: '';
      height: 100%;
      width: 100%;
      position: absolute;
      background: rgba(0, 0, 0, 0.25); } }

.default .page-title-block {
  position: relative;
  padding: 100px;
  background: #fff;
  margin-top: -175px;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%; }
  .default .page-title-block .page-title {
    text-align: center;
    color: #cdb6ed; }
    .default .page-title-block .page-title h1 {
      font-size: 7rem; }
  @media (max-width: 767px) {
    .default .page-title-block {
      display: none; } }

.default .default-main {
  padding-top: 2%;
  padding-bottom: 5%; }
  @media (max-width: 767px) {
    .default .default-main {
      padding-top: 5%; } }

.default .newsletter-cta .templatecontent {
  position: relative;
  z-index: 99;
  background: #cdb6ed;
  text-align: center;
  padding: 40px;
  color: #fff; }
  .default .newsletter-cta .templatecontent h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0; }
  .default .newsletter-cta .templatecontent h1 {
    margin-top: 0; }

.default .default-cta {
  position: relative;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  .default .default-cta:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.15); }
  .default .default-cta .content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%; }
    .default .default-cta .content h6 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin: 0; }
    .default .default-cta .content h1 {
      font-size: 7rem;
      margin-top: 0; }
      @media (max-width: 767px) {
        .default .default-cta .content h1 {
          font-size: 6rem; } }

.default .hideme {
  opacity: 0; }

.default #ctl00_cphPageBody_pnlNoAccessSimplePassword input#ctl00_cphPageBody_btnSimplePassword {
  border: none;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #cdb6ed;
  border-radius: 50px;
  color: #fff;
  transition: .3s ease;
  font-size: 1.3rem; }
  .default #ctl00_cphPageBody_pnlNoAccessSimplePassword input#ctl00_cphPageBody_btnSimplePassword:hover {
    background: #7665a0; }

body.conference .scrollable {
  margin-top: 30px; }
  body.conference .scrollable .items .item {
    text-align: center; }
    body.conference .scrollable .items .item .caption {
      display: none; }
    body.conference .scrollable .items .item .title {
      display: none; }
    body.conference .scrollable .items .item img {
      max-width: 100%;
      max-height: 240px;
      margn: 0 auto;
      text-align: center; }

/* ====================== FORM STYLING ====================== */
.formmodule {
  display: block;
  position: relative;
  /* ====== Keyframes ====== */
  /* Tada */
  /* Shake */
  /* .formmodule-form */
  /* .form-bot-stopper */ }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px); } }
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
    position: relative;
    font-size: 1rem;
    color: #fff !important;
    background: #4EB75E;
    border: 1px solid #419c4f;
    border-radius: 2px;
    padding: 8px;
    margin: 0 0 30px 0;
    overflow: hidden;
    padding-left: 45px !important;
    -webkit-animation: tada 1s ease-out 0.3s normal 1;
    animation: tada 1s ease-out 0.3s normal 1; }
    @media (min-width: 768px) {
      .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
      .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
        padding: 12px; } }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before, .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
      content: '';
      display: block;
      background: #fff;
      position: absolute;
      top: 50%;
      left: 24px;
      border-radius: 1px; }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before {
      width: 4px;
      height: 20px;
      margin: -10px 0 0 0px;
      -webkit-transform: rotate(42deg);
      -ms-transform: rotate(42deg);
      transform: rotate(42deg); }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
      width: 4px;
      height: 10px;
      margin: -1px 0 0 -8px;
      -webkit-transform: rotate(-47deg);
      -ms-transform: rotate(-47deg);
      transform: rotate(-47deg); }
  .formmodule h3:first-of-type {
    display: none; }
  .formmodule .formmodule-form {
    /* table */ }
    .formmodule .formmodule-form table, .formmodule .formmodule-form tbody, .formmodule .formmodule-form tr, .formmodule .formmodule-form td {
      display: inline-block;
      width: 100%; }
    .formmodule .formmodule-form table {
      /* tbody */ }
      .formmodule .formmodule-form table tbody {
        /* tr */ }
        .formmodule .formmodule-form table tbody tr {
          /* td */
          /* td.formmodule-column2 */ }
          .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
            margin: 0 0 10px 0; }
            @media (min-width: 768px) {
              .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
                margin: 0 0 15px 0; } }
          .formmodule .formmodule-form table tbody tr td {
            padding: 0;
            /* CheckBox & RadioButton */ }
            .formmodule .formmodule-form table tbody tr td span, .formmodule .formmodule-form table tbody tr td label {
              font-weight: normal;
              font-style: normal;
              font-size: 1rem; }
            .formmodule .formmodule-form table tbody tr td input[type="text"],
            .formmodule .formmodule-form table tbody tr td input[type="file"],
            .formmodule .formmodule-form table tbody tr td textarea {
              font-size: 16px;
              background: #fff;
              color: #222;
              border: 1px solid #dcdcdc;
              border-radius: 2px;
              padding: 4px 8px;
              width: 100%; }
              .formmodule .formmodule-form table tbody tr td input[type="text"]:-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]::-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]:-ms-input-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]::-webkit-input-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]:-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]::-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]:-ms-input-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]::-webkit-input-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea:-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea::-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea:-ms-input-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea::-webkit-input-placeholder {
                color: #999;
                opacity: 1; }
              @media (min-width: 768px) {
                .formmodule .formmodule-form table tbody tr td input[type="text"],
                .formmodule .formmodule-form table tbody tr td input[type="file"],
                .formmodule .formmodule-form table tbody tr td textarea {
                  padding: 8px 12px; } }
            .formmodule .formmodule-form table tbody tr td input.formmodule-phone {
              width: 32%;
              margin: 0 2% 0 0;
              text-align: center; }
              .formmodule .formmodule-form table tbody tr td input.formmodule-phone:nth-of-type(3) {
                margin-right: 0; }
            .formmodule .formmodule-form table tbody tr td select,
            .formmodule .formmodule-form table tbody tr td input[type="file"] {
              display: block;
              clear: both; }
            .formmodule .formmodule-form table tbody tr td input[type="file"] {
              background: #f7f7f7; }
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type="checkbox"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type="radio"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type="checkbox"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type="radio"] {
              margin: 2px 0; }
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td label,
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td label {
              font-size: 0.85rem;
              margin: 0 0 0 6px;
              padding: 4px 0; }
          .formmodule .formmodule-form table tbody tr td.formmodule-column1 {
            margin: 0; }
          .formmodule .formmodule-form table tbody tr td.formmodule-column2 {
            /* error message */ }
            .formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"] {
              padding: 5px 8px;
              position: relative;
              font-size: 13px;
              color: #fff !important;
              background: #E63A3A;
              border: 1px solid #ce2233;
              border-radius: 2px; }
              .formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"]:before {
                content: '';
                display: block;
                position: absolute;
                top: -6px;
                left: 8px;
                height: 10px;
                width: 10px;
                background: #E63A3A;
                border-top: 1px solid #ce2233;
                border-left: 1px solid #ce2233;
                -webkit-border-top-left-radius: 2px;
                -moz-border-radius-topleft: 2px;
                border-top-left-radius: 2px;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
  .formmodule .form-bot-stopper {
    margin: 0 0 15px 0; }
    .formmodule .form-bot-stopper .form-bot-stopper-info {
      font-size: 0.85rem; }
    .formmodule .form-bot-stopper .form-bot-stopper-question {
      font-size: 0.85rem; }
      .formmodule .form-bot-stopper .form-bot-stopper-question input.form-bot-stopper-value {
        height: 32px;
        width: 40px !important;
        text-align: center;
        font-size: 16px;
        background: #fff;
        color: #222;
        border: 1px solid #dcdcdc;
        border-radius: 2px;
        padding: 4px; }
  .formmodule .formmodule-errors {
    margin: 15px 0 0 0; }
    .formmodule .formmodule-errors div {
      position: relative;
      font-size: 0.85rem;
      color: #fff !important;
      background: #e63a3a;
      border: 1px solid #ce2233;
      border-radius: 2px;
      padding: 8px;
      padding-left: 38px !important;
      -webkit-animation: shake 1s ease-out 0.3s normal 1;
      animation: shake 1s ease-out 0.3s normal 1; }
      @media (min-width: 768px) {
        .formmodule .formmodule-errors div {
          padding: 12px; } }
      .formmodule .formmodule-errors div:before, .formmodule .formmodule-errors div:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 18px;
        height: 18px;
        width: 4px;
        margin: -9px 0 0 -2px;
        background: #fff;
        border-radius: 1px; }
      .formmodule .formmodule-errors div:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .formmodule .formmodule-errors div:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

/* .formmodule */
/* ====================== FORM STYLING END ====================== */
