/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.form input[type=text],
.form input[type=date],
.form input[type=datetime],
.form input[type=number],
.form input[type=search],
.form input[type=time],
.form input[type=url],
.form input[type=email],
.form input[type=password],
textarea,
select {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 1px solid #BEBEBE;
  padding: 7px;
  margin: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
}
a {
  color: #1976D2;
}
.form input[type=text]:focus,
.form input[type=date]:focus,
.form input[type=datetime]:focus,
.form input[type=number]:focus,
.form input[type=search]:focus,
.form input[type=time]:focus,
.form input[type=url]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form textarea:focus,
.form select:focus {
  -moz-box-shadow: 0 0 8px #90CAF9;
  -webkit-box-shadow: 0 0 8px #90CAF9;
  box-shadow: 0 0 8px #90CAF9;
  border: 1px solid #90CAF9;
}
.entry-form {
  padding: 50px 0;
  flex-grow: 1;
  background-color: #fff;
}
.entry-form .form-title {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.entry-form .entry-form-item {
  margin-bottom: 20px;
}
.entry-form .entry-form-item .label {
  font-family: Lato, sans-serif;
  color: #666;
}
.entry-form .entry-form-item input {
  width: 100%;
}
.error-message {
  background-color: #e32c28;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  /* margin-top: 5px; */
  color: #fff;
  padding: 20px;
}
.success-message {
  background-color: #328736;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  /* margin-top: 5px; */
  color: #fff;
  padding: 20px;
}
.error-text {
  color: #e32c28;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  margin-top: 5px;
}
.cta-btn {
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 15px;
  background-color: #D81B60;
  color: white !important;
  border: 0;
  display: inline-block;
}
.cta-btn:hover {
  text-decoration: none;
  cursor: pointer;
  color: white;
}
.cta-btn-inverse {
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 15px;
  background-color: #D81B60;
  color: white !important;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  color: #666666 !important;
  background-color: white;
  border: 1px solid #999999;
}
.cta-btn-inverse:hover {
  text-decoration: none;
  cursor: pointer;
  color: white;
}
.help-block {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #767676;
}
a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-main:focus,
a.skip-main:active {
  color: #fff;
  background-color: #0366d6;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  overflow: auto;
  padding: 10px;
  font-size: 1.1em;
  z-index: 999;
}
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.open-page {
  padding-top: 60px;
}
.open-page #page-overlay {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  /* Black background with opacity */
  z-index: 5;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
}
.open-page .feature-showcase-video {
  box-shadow: 0 0 15px 0 #ddd;
}
.open-page .site-header-wrapper {
  background: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
}
.open-page .site-header-wrapper .user-avatar {
  max-width: 30px;
  max-height: 30px;
  border-radius: 50%;
}
.open-page .site-header-wrapper .site-header {
  display: flex;
  padding: 13px 0;
  align-items: center;
}
.open-page .site-header-wrapper .site-header .site-header-item:hover {
  border-color: #333;
  cursor: pointer;
}
.open-page .site-header-wrapper .site-header .site-header-item {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  padding: 1px 2px;
  color: #616161;
  text-decoration: none;
  margin-right: 15px;
  border-bottom: 4px solid #f5f5f5;
}
.open-page .site-header-wrapper .site-header .site-header-item:hover {
  border-bottom: 4px solid #F48FB1;
}
.open-page .site-header-wrapper .site-header .active {
  border-bottom: 4px solid #D81B60;
}
.open-page .site-header-wrapper .site-header .site-header-items {
  display: flex;
}
.open-page .site-header-wrapper .site-header .site-header-lhs {
  display: flex;
}
.open-page .site-header-wrapper .site-header .site-header-rhs {
  margin-left: auto;
}
.open-page .site-header-wrapper .site-header .site-header-brand {
  font-family: Reenie Beanie, cursive;
  text-decoration: none;
  font-size: 34px;
  color: #000;
  margin-right: 25px;
  line-height: 1;
}
.open-page .site-header-wrapper .bars-container {
  display: none;
}
.open-page .site-header-wrapper .bars-container .bar1,
.open-page .site-header-wrapper .bars-container .bar2,
.open-page .site-header-wrapper .bars-container .bar3 {
  width: 25px;
  height: 4px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}
@media only screen and (max-width: 768px) {
  .open-page .site-header-wrapper .site-header,
  .open-page .site-header-wrapper .site-header-items {
    flex-direction: column;
    align-items: flex-start;
  }
  .open-page .site-header-wrapper .site-header .site-header-items {
    display: none;
  }
  .open-page .site-header-wrapper .site-header .site-header-rhs {
    margin-left: 0;
  }
  .open-page .site-header-wrapper .bars-container {
    align-self: flex-end;
    display: initial;
    position: absolute;
    cursor: pointer;
    margin-top: 4px;
  }
  .open-page .site-header-wrapper .site-header-items-show {
    display: flex !important;
  }
}
.open-page .title-border {
  border-bottom: 5px solid #D81B60;
  width: 50px;
  margin: 20px 0;
}
.open-page .pane-footer {
  padding: 75px 0;
  background-color: #222;
  color: #ccc;
}
.open-page .pane-footer a {
  color: #ccc;
}
.open-page .pane-footer .links {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.open-page .pane-footer .contact {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  margin-top: 50px;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .open-page .pane-footer .links {
    font-size: 13px;
  }
}
#page-demos .page-header {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 70px;
  margin: 20px 0 0 0;
}
#page-demos .page-description {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #737376;
}
#page-demos .video-page-info {
  margin: 30px 0;
}
#page-demos .video-page-info .cover-image {
  max-width: 100%;
  box-shadow: 0 10px 20px rgba(18, 113, 196, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
}
#page-demos .video-page-info a.title {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #737376;
}
#page-demos .video-page-info .summary {
  margin-top: 5px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #737376;
}
@media (max-width: 767px) {
  #page-demos .page-header {
    font-size: 40px;
    font-weight: 400;
    margin: 20px 0 0 0;
  }
  #page-demos .page-description {
    font-size: 20px;
  }
}
#page-demo .page-header {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #737376;
  margin: 20px 0;
}
#page-demo .player-container {
  background: #fff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(1, #eee));
  background: -ms-linear-gradient(bottom, #fff, #eee);
  background: -moz-linear-gradient(center bottom, #fff 0%, #eee 100%);
  background: -o-linear-gradient(#eee, #fff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eee', endColorstr='#fff', GradientType=0);
  padding: 20px;
}
#page-demo .player-container .player .cover-image {
  max-width: 100%;
  width: 100%;
  box-shadow: 0 10px 20px rgba(18, 113, 196, 0.2);
  border-radius: 8px;
}
#page-demo .player-container .playlist {
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(18, 113, 196, 0.2);
  border-radius: 8px 8px 0 0;
}
#page-demo .player-container .playlist .header {
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
#page-demo .player-container .playlist .playlist-video {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 20px 20px;
}
#page-demo .player-container .playlist .playlist-video .cover-image {
  max-width: 125px;
  margin-right: 10px;
}
#page-demo .player-container .playlist .playlist-video a.title {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #333;
  line-height: 1;
}
#page-demo .player-container .playlist .playlist-video .duration {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #333;
}
#page-demo .player-container .playlist .active {
  background-color: #E1F5FE;
}
#page-demo .player-container .playlist .active a.title {
  font-weight: 400;
}
#page-demo .demo-info {
  padding: 50px 0 0 0;
}
#page-demo .demo-info .title {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #737376;
}
#page-demo .demo-info .descr {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
}
#page-demo .demo-info .meta {
  font-size: 14px;
}
#page-demo .resources {
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eee;
  margin-top: 50px;
  background-color: #ffffff;
}
#page-demo .resources .title {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 10px;
}
#page-demo .resources a {
  line-height: 2;
  font-size: 14px;
}
@media (max-width: 1199px) {
  #page-demo .player-container .playlist .playlist-video .cover-image {
    max-width: 75px;
  }
}
@media (max-width: 991px) {
  #page-demo .player-container .playlist .playlist-video .cover-image {
    visibility: hidden;
    display: none;
  }
}
@media (max-width: 767px) {
  #page-demo .demo-info {
    visibility: hidden;
    display: none;
  }
  #page-demo .player-container .playlist {
    margin-top: 30px;
  }
  #page-demo .player-container .playlist .playlist-video .cover-image {
    max-width: 125px;
    visibility: visible;
    display: block;
  }
}
#page-pricing .background {
  padding: 0 25px 25px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
#page-pricing .background div,
#page-pricing .background span,
#page-pricing .background applet,
#page-pricing .background object,
#page-pricing .background iframe,
#page-pricing .background h1,
#page-pricing .background h2,
#page-pricing .background h3,
#page-pricing .background h4,
#page-pricing .background h5,
#page-pricing .background h6,
#page-pricing .background p,
#page-pricing .background blockquote,
#page-pricing .background pre,
#page-pricing .background a,
#page-pricing .background abbr,
#page-pricing .background acronym,
#page-pricing .background address,
#page-pricing .background big,
#page-pricing .background cite,
#page-pricing .background code,
#page-pricing .background del,
#page-pricing .background dfn,
#page-pricing .background em,
#page-pricing .background img,
#page-pricing .background ins,
#page-pricing .background kbd,
#page-pricing .background q,
#page-pricing .background s,
#page-pricing .background samp,
#page-pricing .background small,
#page-pricing .background strike,
#page-pricing .background strong,
#page-pricing .background sub,
#page-pricing .background sup,
#page-pricing .background tt,
#page-pricing .background var,
#page-pricing .background b,
#page-pricing .background u,
#page-pricing .background i,
#page-pricing .background center,
#page-pricing .background dl,
#page-pricing .background dt,
#page-pricing .background dd,
#page-pricing .background ol,
#page-pricing .background ul,
#page-pricing .background li,
#page-pricing .background fieldset,
#page-pricing .background form,
#page-pricing .background label,
#page-pricing .background legend,
#page-pricing .background table,
#page-pricing .background caption,
#page-pricing .background tbody,
#page-pricing .background tfoot,
#page-pricing .background thead,
#page-pricing .background tr,
#page-pricing .background th,
#page-pricing .background td,
#page-pricing .background article,
#page-pricing .background aside,
#page-pricing .background canvas,
#page-pricing .background details,
#page-pricing .background embed,
#page-pricing .background figure,
#page-pricing .background figcaption,
#page-pricing .background footer,
#page-pricing .background header,
#page-pricing .background hgroup,
#page-pricing .background menu,
#page-pricing .background nav,
#page-pricing .background output,
#page-pricing .background ruby,
#page-pricing .background section,
#page-pricing .background summary,
#page-pricing .background time,
#page-pricing .background mark,
#page-pricing .background audio,
#page-pricing .background video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#page-pricing .background article,
#page-pricing .background aside,
#page-pricing .background details,
#page-pricing .background figcaption,
#page-pricing .background figure,
#page-pricing .background footer,
#page-pricing .background header,
#page-pricing .background hgroup,
#page-pricing .background menu,
#page-pricing .background nav,
#page-pricing .background section {
  display: block;
}
#page-pricing .background body {
  line-height: 1;
}
#page-pricing .background ol,
#page-pricing .background ul {
  list-style: none;
}
#page-pricing .background blockquote,
#page-pricing .background q {
  quotes: none;
}
#page-pricing .background blockquote:before,
#page-pricing .background blockquote:after,
#page-pricing .background q:before,
#page-pricing .background q:after {
  content: '';
  content: none;
}
#page-pricing .background table {
  border-collapse: collapse;
  border-spacing: 0;
}
#page-pricing .background .pricing-table .pricing-plan .calculator-form {
  padding: 10px 0;
  background-color: #F5F5F5;
  margin: 0 -25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#page-pricing .background .pricing-table .pricing-plan .calculator-form .element {
  text-transform: none;
  font-family: Lato, cursive;
  font-weight: 400;
  color: #666;
  padding: 10px 3px;
  line-height: 1;
}
#page-pricing .background .pricing-table .pricing-plan .calculator-form .element input {
  color: #016FF9;
  width: 60px;
  margin: 0 3px;
}
#page-pricing .background .pricing-table .pricing-plan .calculator-form .element select {
  text-transform: none;
  color: #333;
  font-weight: 300;
  font-size: 13px;
}
#page-pricing .background *,
#page-pricing .background *:before,
#page-pricing .background *:after {
  box-sizing: inherit;
}
@media (min-width: 900px) {
  #page-pricing .background .background {
    padding: 0 0 25px;
  }
}
#page-pricing .background .container {
  margin: 0 auto;
  padding: 50px 0 0;
  max-width: 960px;
  width: 100%;
}
#page-pricing .background .panel {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  position: relative;
  width: 100%;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
}
#page-pricing .background .pricing-table {
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  #page-pricing .background .pricing-table {
    flex-direction: row;
  }
}
#page-pricing .background .pricing-table * {
  text-align: center;
  text-transform: uppercase;
}
#page-pricing .background .pricing-plan {
  border-bottom: 1px solid #e1f1ff;
  padding: 25px;
}
#page-pricing .background .pricing-plan:last-child {
  border-bottom: none;
}
@media (min-width: 900px) {
  #page-pricing .background .pricing-plan {
    border-bottom: none;
    border-right: 1px solid #e1f1ff;
    flex-basis: 100%;
    padding: 25px 50px;
  }
  #page-pricing .background .pricing-plan:last-child {
    border-right: none;
  }
}
#page-pricing .background .pricing-img {
  margin-bottom: 25px;
  max-width: 100%;
}
#page-pricing .background .pricing-header {
  color: #333;
  font-weight: 600;
  letter-spacing: 1px;
}
#page-pricing .background .pricing-features {
  color: #016FF9;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 50px 0 25px;
}
#page-pricing .background .pricing-features-gray {
  color: #666;
}
#page-pricing .background .pricing-features-gray .pricing-features-item {
  text-transform: none;
}
#page-pricing .background .pricing-features-gray .pricing-features-item a {
  font-weight: 300;
  color: #333333;
  text-transform: none;
  cursor: pointer;
}
#page-pricing .background .pricing-features-gray .pricing-features-item a:hover {
  font-weight: 400;
  color: #016FF9;
}
#page-pricing .background .pricing-features-item {
  border-top: 1px solid #e1f1ff;
  font-size: 12px;
  line-height: 1.5;
  padding: 15px 0;
}
#page-pricing .background .pricing-features-item .sub {
  color: #666666;
  font-weight: 300;
  text-transform: none;
  font-size: 10px;
  padding-right: 5px;
}
#page-pricing .background .pricing-features-item:last-child {
  border-bottom: 1px solid #e1f1ff;
}
#page-pricing .background .pricing-price {
  color: #016FF9;
  display: block;
  font-size: 32px;
  font-weight: 700;
}
#page-pricing .background .pricing-price-sub-text {
  color: #666666;
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
#page-pricing .background .pricing-price-sub-sub-text {
  margin-top: 3px;
  color: #333333;
  border-top: #ddd solid 1px;
  display: inline;
  font-size: 11px;
  font-weight: 300;
  text-transform: none;
}
#page-pricing .background .pricing-price-sub-sub-text .price {
  color: #016FF9;
  font-weight: 700;
}
#page-pricing .background .pricing-button {
  border: 1px solid #9dd1ff;
  border-radius: 10px;
  color: #348EFE;
  display: inline-block;
  margin: 10px 0;
  padding: 15px 35px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
#page-pricing .background .pricing-button:hover,
#page-pricing .background .pricing-button:focus {
  background-color: #e1f1ff;
}
#page-pricing .background .pricing-button:hover {
  cursor: pointer;
}
#page-pricing .background .pricing-button.is-featured {
  background-color: #48aaff;
  color: #fff;
}
#page-pricing .background .pricing-button.is-featured:hover,
#page-pricing .background .pricing-button.is-featured:active {
  background-color: #269aff;
}
#page-pricing .background::after {
  content: '';
  background: #60a9ff;
  background: -moz-linear-gradient(top, #60a9ff 0%, #4394f4 100%);
  background: -webkit-linear-gradient(top, #60a9ff 0%, #4394f4 100%);
  background: linear-gradient(to bottom, #60a9ff 0%, #4394f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#60a9ff', endColorstr='#4394f4', GradientType=0);
  height: 350px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#page-pricing .fade-in-on-show {
  animation: fadeIn 500ms ease-out both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
#page-pricing .page-header {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 30px;
  margin: 50px 0;
  text-align: center;
}
#page-pricing .page-header-with-border {
  margin: 75px 0 50px 0;
  border-top: 1px solid #eee;
  padding-top: 75px;
}
#page-pricing .pricing-plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
#page-pricing .pricing-plans .pricing-plan {
  padding: 40px 20px;
  box-shadow: 0 2px 5px 0 rgba(12, 44, 67, 0.1), 0 10px 30px 0 rgba(12, 44, 67, 0.2);
  border-radius: 10px;
  width: 390px;
  margin: 0 20px 50px 20px;
}
#page-pricing .pricing-plans .pricing-plan .plan-target {
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
#page-pricing .pricing-plans .pricing-plan .plan-title {
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 300;
}
#page-pricing .pricing-plans .pricing-plan .plan-descr {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #eee;
}
#page-pricing .pricing-plans .pricing-plan .plan-descr .plan-descr-item {
  margin-top: 10px;
}
#page-pricing .pricing-plans .pricing-plan .plan-price {
  margin-top: 40px;
}
#page-pricing .pricing-plans .pricing-plan .plan-price .price {
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
}
#page-pricing .pricing-plans .pricing-plan .plan-price .sub-text {
  font-size: 13px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}
#page-pricing .pricing-plans .pricing-plan .plan-price .sub-sub-text,
#page-pricing .pricing-plans .pricing-plan .plan-price a.sub-sub-text {
  font-size: 14px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  margin-top: 5px;
}
#page-pricing .pricing-plans .pricing-plan:hover {
  box-shadow: 0 2px 5px 0 rgba(12, 44, 67, 0.1), 0 10px 24px 0 rgba(12, 44, 67, 0.3);
}
#page-pricing .pricing-plans .free-plan {
  box-shadow: none;
  margin-bottom: 10px;
  padding: 15px;
  width: 550px;
}
#page-pricing .pricing-plans .free-plan .plan-descr {
  color: #333;
}
#page-pricing .pricing-plans .free-plan:hover {
  box-shadow: none;
}
#page-pricing .pricing-plans .monthly-plan {
  background-color: #0F3856;
  color: #fff;
}
#page-pricing .pricing-plans .monthly-plan .plan-target {
  color: #9E9E9E;
}
#page-pricing .pricing-plans .monthly-plan .sub-sub-text,
#page-pricing .pricing-plans .monthly-plan a.sub-sub-text {
  color: #9FA8DA;
}
#page-pricing .pricing-plans .on-demand-plan {
  background-color: #0277BD;
  color: #fff;
}
#page-pricing .pricing-plans .on-demand-plan .plan-target {
  color: #BDBDBD;
}
#page-pricing .pricing-plans .on-demand-plan .sub-sub-text,
#page-pricing .pricing-plans .on-demand-plan a.sub-sub-text {
  color: #81D4FA;
}
#page-pricing .pricing-plans .per-user-plan {
  background-color: #00695C;
  color: #fff;
}
#page-pricing .pricing-plans .per-user-plan .plan-target {
  color: #BDBDBD;
}
#page-pricing .pricing-plans .per-user-plan .sub-sub-text,
#page-pricing .pricing-plans .per-user-plan a.sub-sub-text {
  color: #A7FFEB;
}
#page-pricing .pricing-plans .community-add-on {
  background-color: #E8EAF6;
  width: 275px;
}
#page-pricing .pricing-plans .community-add-on .plan-descr {
  color: #666;
}
#page-pricing .pricing-plans .community-add-on .sub-sub-text,
#page-pricing .pricing-plans .community-add-on a.sub-sub-text {
  color: #303F9F;
}
#page-pricing .question-answer-pair {
  margin-bottom: 50px;
}
#page-pricing .question-answer-pair .question {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
#page-pricing .question-answer-pair .answer {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
}
#page-customers .read-more-btn {
  font-size: 13px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  font-family: Roboto, sans-serif;
}
#page-customers .bg1 {
  background-color: #DCF7F3;
}
#page-customers .bg2 {
  background-color: #FFFCDD;
}
#page-customers .bg3 {
  background-color: #F6EAEA;
}
#page-customers .bg4 {
  background-color: #DEF1F1;
}
#page-customers .bg5 {
  background-color: #ECF3E3;
}
#page-customers .bg6 {
  background-color: #FCF4DF;
}
#page-customers .bg7 {
  background-color: #dedcee;
}
#page-customers .bg8 {
  background-color: #d6ecfa;
}
#page-customers .bg9 {
  background-color: #F8FAFF;
}
#page-customers .pane-testimonial {
  padding: 40px 100px;
  font-family: Lato, sans-serif;
  margin: 100px 0;
}
#page-customers .pane-testimonial .testimonial-text {
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
}
#page-customers .pane-testimonial .testimonial-text img.quote-open {
  float: none;
  position: relative;
  height: 16px;
  top: -8px;
}
#page-customers .pane-testimonial .testimonial-text img {
  max-width: 200px;
  float: right;
}
#page-customers .pane-testimonial .testimonial-text-full {
  animation: fadeIn 500ms ease-out both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
#page-customers .pane-testimonial .testimonial-credit {
  display: flex;
  flex-direction: column;
  color: #333;
  padding-bottom: 15px;
}
#page-customers .pane-testimonial .testimonial-credit a {
  color: #333;
  text-decoration: underline;
}
#page-customers .pane-testimonial .testimonial-credit img {
  max-width: 100px;
  min-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  align-self: flex-start;
}
#page-customers .pane-testimonial .testimonial-credit .name {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 10px 0 0 10px;
  position: relative;
}
@media (max-width: 768px) {
  #page-customers .pane-testimonial {
    padding: 40px 80px;
  }
}
@media (max-width: 480px) {
  #page-customers .pane-testimonial {
    padding: 40px 20px;
  }
  #page-customers .pane-testimonial .testimonial-credit .name {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
#page-features {
  padding-bottom: 100px;
}
#page-features .features-page-header {
  padding: 10px 0 90px 0;
}
#page-features .features-page-header .features-page-header-text {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
  border-bottom: 2px dotted #eee;
  padding: 5px 10px 5px 0;
  line-height: 2;
}
#page-features .features-page-header .features-page-header-info {
  margin-top: 20px;
}
#page-features .pane-two {
  padding: 100px 30px;
  background-color: #fff;
}
#page-features .pane-two .head {
  margin: 80px 0;
  text-align: center;
}
#page-features .pane-two .head .title {
  font-size: 50px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}
#page-features .pane-two .head .subtext {
  margin-top: 10px;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}
#page-features .pane-two .item-spacer {
  margin-bottom: 100px;
}
#page-features .pane-two .image {
  color: #ccc;
  text-align: center;
}
#page-features .pane-two .image-right {
  color: #ccc;
  text-align: center;
}
#page-features .pane-two .image-left {
  color: #ccc;
  text-align: center;
}
#page-features .pane-two .title {
  font-size: 40px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 1;
}
#page-features .pane-two .descr {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}
#page-features .pane-two .feature-image {
  margin: 0;
  width: 90%;
}
#page-features .pane-two .feature-image img {
  border-radius: 50%;
  width: 100%;
  box-shadow: 0 0 5px 2px #ddd;
}
#page-features .pane-two .feature-image-flat {
  margin: 0;
  width: 100%;
  text-align: center;
}
#page-features .pane-two .feature-image-flat img {
  width: 100%;
  box-shadow: 0 0 5px 2px #f3f3f3;
}
#page-features .pane-two .feature-list {
  padding: .2em .8em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}
#page-features .pane-two .feature-list ul {
  padding: 10px 0;
  margin: 0;
}
#page-features .pane-two .feature-list li,
#page-features .pane-two .feature-list ul {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  font-size: 14px;
}
#page-features .pane-two .feature-use {
  padding: .2em .8em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  padding: 0;
}
#page-features .pane-two .feature-use ul {
  padding: 10px 0;
  margin: 0;
}
#page-features .pane-two .feature-use li,
#page-features .pane-two .feature-use ul {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.8em;
  font-size: 14px;
}
#page-features .pane-two .feature-use li,
#page-features .pane-two .feature-use ul {
  list-style: none;
  font-size: 16px;
}
#page-features .pane-two .feature-use ul li:before {
  content: "\25AA";
  color: #D81B60;
  padding-right: .8em;
}
#page-features .pane-two .action {
  margin-top: 20px;
}
#page-features .feature-list-offset {
  margin-left: 175px;
  border-top: 1px solid #efefef;
}
#page-features .features-header {
  font-family: Roboto, sans-serif;
  padding: 20px;
  position: fixed;
  max-width: 175px;
  border-right: 1px solid #efefef;
  height: 100%;
  overflow-y: scroll;
}
#page-features .features-header .feature-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: 400;
  font-size: 12px;
}
#page-features .features-header .feature-items .features-sub-header {
  font-family: Lato, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
}
#page-features .features-header .feature-items .item {
  padding: 2px 5px;
  margin: 0 10px 20px 0;
  text-decoration: none;
  color: #767676;
  border-bottom: 2px solid #fff;
}
#page-features .features-header .feature-items .item:hover {
  color: #000;
  border-bottom: 2px solid #D81B60;
}
#page-features .features-header .feature-items .active {
  color: #000;
  border-bottom: 2px solid #D81B60;
}
@media (max-width: 991px) {
  #page-features .pane-two .title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  #page-features .feature-list-offset {
    margin-left: 0;
  }
  #page-features .pane-two .title {
    font-size: 20px;
  }
}
#page-create-account {
  background: #e9eaed;
}
#page-create-account .create-account-container {
  height: 100vh;
  display: flex;
  justify-content: center;
}
#page-create-account .create-account-container .stack {
  width: 100%;
  max-width: 930px;
  padding: 0 50px;
}
#page-create-account .create-account-container .stack .header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 50px;
}
#page-create-account .create-account-container .stack .header .site-header-brand {
  font-family: Reenie Beanie, cursive;
  text-decoration: none;
  font-size: 50px;
  color: #000;
  margin-right: 15px;
  line-height: 2;
}
#page-create-account .create-account-container .stack .account-type-selector {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#page-create-account .create-account-container .stack .account-type-selector a.account-type {
  min-width: 315px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0 5px 2px #E0E0E0;
  border-radius: 10px;
  background-color: #F5F5F5;
  padding: 20px;
  font-family: Roboto, sans-serif;
  flex: 1 1 0px;
  margin: 0 20px 20px 0;
  color: #333;
}
#page-create-account .create-account-container .stack .account-type-selector a.account-type .main {
  font-size: 24px;
  font-weight: 300;
  padding-bottom: 20px;
}
#page-create-account .create-account-container .stack .account-type-selector a.account-type .sub {
  font-size: 14px;
  font-weight: 400;
  color: #D81B60;
}
#page-create-account .create-account-container .stack .account-type-selector a.account-type:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 5px 2px #C0C0C0;
}
#page-create-account .create-account-container .stack [v-cloak] {
  display: none;
}
#page-create-account .create-account-container .stack .info-under-header {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #666;
}
#page-create-account .create-account-container .stack .info-under-header .text {
  font-family: Roboto, sans-serif;
  font-size: 18px;
}
#page-create-account .create-account-container .stack .wrapper {
  box-shadow: 0 0 5px 2px #E0E0E0;
  width: 100%;
  max-width: 790px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #F5F5F5;
  display: flex;
  align-items: flex-start;
}
#page-create-account .create-account-container .stack .wrapper .entry-form {
  padding: 50px 20px;
}
#page-create-account .create-account-container .stack .wrapper .testimonials {
  padding: 20px;
  width: 200px;
  color: #707070;
}
#page-create-account .create-account-container .stack .wrapper .testimonials .testimonial:not(:first-of-type) {
  margin-top: 28px;
}
#page-create-account .create-account-container .stack .wrapper .testimonials .testimonial .quote {
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  line-height: 1.2;
}
#page-create-account .create-account-container .stack .wrapper .testimonials .testimonial .person {
  padding: 5px 0 0 0;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.1;
  display: flex;
  align-items: center;
}
#page-create-account .create-account-container .stack .wrapper .testimonials .testimonial .person img {
  max-width: 75px;
  min-width: 75px;
  max-height: 75px;
  border-radius: 50%;
  margin-right: 10px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  #page-create-account .create-account-container {
    height: inherit;
    margin-bottom: 50px;
  }
  #page-create-account .create-account-container .stack {
    padding: 0 20px;
  }
  #page-create-account .create-account-container .stack .header {
    margin-top: 20px;
    flex-direction: column;
    align-items: baseline;
  }
  #page-create-account .create-account-container .stack .wrapper {
    flex-direction: column-reverse;
  }
  #page-create-account .create-account-container .stack .wrapper .testimonials {
    width: 100%;
    padding: 40px;
  }
  #page-create-account .create-account-container .stack .wrapper .entry-form {
    width: 100%;
    padding: 30px 20px;
  }
}
#page-org-landing .outer,
#page-org-join-sign-up .outer,
#page-org-join-sign-in .outer,
#page-org-join .outer {
  position: fixed;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow-y: scroll;
  overflow-x: hidden;
}
#page-org-landing .outer .info-bar,
#page-org-join-sign-up .outer .info-bar,
#page-org-join-sign-in .outer .info-bar,
#page-org-join .outer .info-bar {
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}
#page-org-landing .outer .info-bar img,
#page-org-join-sign-up .outer .info-bar img,
#page-org-join-sign-in .outer .info-bar img,
#page-org-join .outer .info-bar img {
  max-width: 24px;
}
#page-org-landing .outer .info-bar a:not(:last-child),
#page-org-join-sign-up .outer .info-bar a:not(:last-child),
#page-org-join-sign-in .outer .info-bar a:not(:last-child),
#page-org-join .outer .info-bar a:not(:last-child) {
  margin-right: 20px;
}
#page-org-landing .outer .info-bar .locked-message,
#page-org-join-sign-up .outer .info-bar .locked-message,
#page-org-join-sign-in .outer .info-bar .locked-message,
#page-org-join .outer .info-bar .locked-message {
  margin: 20px 0;
  font-size: 31px;
  font-family: Reenie Beanie, cursive;
}
#page-org-landing .outer .inset,
#page-org-join-sign-up .outer .inset,
#page-org-join-sign-in .outer .inset,
#page-org-join .outer .inset {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
#page-org-landing .outer .inset .cover-image,
#page-org-join-sign-up .outer .inset .cover-image,
#page-org-join-sign-in .outer .inset .cover-image,
#page-org-join .outer .inset .cover-image {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
}
#page-org-landing .outer .inset .cover-image .rhs-description,
#page-org-join-sign-up .outer .inset .cover-image .rhs-description,
#page-org-join-sign-in .outer .inset .cover-image .rhs-description,
#page-org-join .outer .inset .cover-image .rhs-description {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  font-size: 13px;
  color: #333;
  flex-grow: 1;
}
#page-org-landing .outer .inset .cover-image a.image-credit,
#page-org-join-sign-up .outer .inset .cover-image a.image-credit,
#page-org-join-sign-in .outer .inset .cover-image a.image-credit,
#page-org-join .outer .inset .cover-image a.image-credit {
  left: auto;
  right: 5px;
  top: 5px;
}
#page-org-landing .outer .inset .cover-image .actions,
#page-org-join-sign-up .outer .inset .cover-image .actions,
#page-org-join-sign-in .outer .inset .cover-image .actions,
#page-org-join .outer .inset .cover-image .actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
#page-org-landing .outer .inset .info-area,
#page-org-join-sign-up .outer .inset .info-area,
#page-org-join-sign-in .outer .inset .info-area,
#page-org-join .outer .inset .info-area {
  margin-right: 35%;
  padding: 20px;
}
#page-org-landing .outer .inset .info-area .header,
#page-org-join-sign-up .outer .inset .info-area .header,
#page-org-join-sign-in .outer .inset .info-area .header,
#page-org-join .outer .inset .info-area .header {
  font-family: 'Roboto', sans-serif;
  color: #000;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 5%;
  word-wrap: break-word;
}
#page-org-landing .outer .inset .info-area .header img,
#page-org-join-sign-up .outer .inset .info-area .header img,
#page-org-join-sign-in .outer .inset .info-area .header img,
#page-org-join .outer .inset .info-area .header img {
  max-width: 90%;
  max-height: 200px;
}
#page-org-landing .outer .inset .info-area .top-header-main,
#page-org-join-sign-up .outer .inset .info-area .top-header-main,
#page-org-join-sign-in .outer .inset .info-area .top-header-main,
#page-org-join .outer .inset .info-area .top-header-main {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
}
#page-org-landing .outer .inset .info-area .top-header,
#page-org-join-sign-up .outer .inset .info-area .top-header,
#page-org-join-sign-in .outer .inset .info-area .top-header,
#page-org-join .outer .inset .info-area .top-header {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#page-org-landing .outer .inset .info-area .description,
#page-org-join-sign-up .outer .inset .info-area .description,
#page-org-join-sign-in .outer .inset .info-area .description,
#page-org-join .outer .inset .info-area .description {
  font-family: 'Roboto', sans-serif;
  color: #767676;
  font-size: 2.0vmin;
  line-height: 3.0vmin;
  font-weight: 300;
}
#page-org-landing .footer,
#page-org-join-sign-up .footer,
#page-org-join-sign-in .footer,
#page-org-join .footer {
  border-top: 1px solid #efefef;
}
#page-org-landing .spinner,
#page-org-join-sign-up .spinner,
#page-org-join-sign-in .spinner,
#page-org-join .spinner {
  position: absolute;
  top: 0;
  left: -45px;
  color: #666;
}
@media (max-width: 768px) {
  #page-org-landing .outer,
  #page-org-join-sign-up .outer,
  #page-org-join-sign-in .outer,
  #page-org-join .outer {
    padding-top: 50px;
  }
  #page-org-landing .outer .info-bar,
  #page-org-join-sign-up .outer .info-bar,
  #page-org-join-sign-in .outer .info-bar,
  #page-org-join .outer .info-bar {
    text-align: left;
    margin-top: 10px;
    margin-left: 10px;
  }
  #page-org-landing .outer .inset .info-area,
  #page-org-join-sign-up .outer .inset .info-area,
  #page-org-join-sign-in .outer .inset .info-area,
  #page-org-join .outer .inset .info-area {
    min-height: 100px;
    margin-right: 0;
    padding: 10px;
  }
  #page-org-landing .outer .inset .info-area .header,
  #page-org-join-sign-up .outer .inset .info-area .header,
  #page-org-join-sign-in .outer .inset .info-area .header,
  #page-org-join .outer .inset .info-area .header {
    font-size: 24px;
    line-height: 1;
  }
  #page-org-landing .outer .inset .info-area .description,
  #page-org-join-sign-up .outer .inset .info-area .description,
  #page-org-join-sign-in .outer .inset .info-area .description,
  #page-org-join .outer .inset .info-area .description {
    font-size: 14px;
    line-height: 1.5;
  }
  #page-org-landing .outer .inset .cover-image,
  #page-org-join-sign-up .outer .inset .cover-image,
  #page-org-join-sign-in .outer .inset .cover-image,
  #page-org-join .outer .inset .cover-image {
    position: relative;
    min-height: 300px;
    width: 100%;
  }
  #page-org-landing .outer .inset .cover-image .rhs-description,
  #page-org-join-sign-up .outer .inset .cover-image .rhs-description,
  #page-org-join-sign-in .outer .inset .cover-image .rhs-description,
  #page-org-join .outer .inset .cover-image .rhs-description {
    padding: 10px;
  }
  #page-org-landing .outer .inset .cover-image .actions,
  #page-org-join-sign-up .outer .inset .cover-image .actions,
  #page-org-join-sign-in .outer .inset .cover-image .actions,
  #page-org-join .outer .inset .cover-image .actions {
    position: relative;
    top: 30px;
    left: 10px;
  }
}
#page-ambassador .ambassador-header {
  padding: 13px 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
#page-ambassador .ambassador-header .site-header-brand {
  font-family: Reenie Beanie, cursive;
  text-decoration: none;
  font-size: 34px;
  color: #222222;
  line-height: 1;
}
#page-ambassador .hero-text {
  font-family: 'Crimson Text', serif;
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 30px;
}
#page-ambassador .info-text {
  margin-bottom: 50px;
}
#page-ambassador .diagonal-cut {
  width: 100%;
  height: 143px;
  background-color: #e6ebef;
}
#page-ambassador .three-steps {
  background-color: #e6ebef;
  padding: 50px 0;
}
#page-ambassador .three-steps .three-steps-header {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 50px;
}
#page-ambassador .three-steps .step {
  border-left: 3px solid #dce1e5;
  padding: 0 0 150px 30px;
}
#page-ambassador .three-steps .step .step-header {
  font-family: 'Crimson Text', serif;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
}
#page-ambassador .three-steps .step .step-info {
  line-height: 1.5;
}
#page-ambassador .three-steps .step .step-info ol {
  margin-top: 20px;
}
#page-ambassador .three-steps .step .step-info ol li {
  padding-bottom: 20px;
}
#page-ambassador .three-steps .step .step-info ul {
  margin-top: 20px;
}
#page-ambassador .three-steps .step .step-info ul li {
  padding-bottom: 10px;
}
#page-ambassador .three-steps .step1:before {
  content: '1';
}
#page-ambassador .three-steps .step2:before {
  content: '2';
}
#page-ambassador .three-steps .step3:before {
  content: '3';
}
#page-ambassador .three-steps .step:before {
  background-color: #D81B60;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33px;
  font-weight: 600;
  height: 33px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: -1px;
}
#page-ambassador .join-us {
  background-color: #ffffff;
  padding: 50px 0;
}
#page-ambassador .join-us .hero-text {
  font-size: 44px;
}
#page-ambassador .commission-calculator {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
}
#page-ambassador .commission-calculator .header {
  border-radius: 15px 15px 0 0;
  background-color: #D81B60;
  padding: 20px;
  color: #ffffff;
}
#page-ambassador .commission-calculator .calculator {
  background-color: #ffffff;
  padding: 20px;
}
@media (max-width: 480px) {
  #page-ambassador .hero-text {
    font-size: 35px;
  }
  #page-ambassador .three-steps {
    padding-left: 10px;
  }
  #page-ambassador .three-steps .step {
    padding: 0 0 30px 30px;
  }
  #page-ambassador .three-steps .step .step-header {
    font-size: 30px;
  }
  #page-ambassador .join-us .hero-text {
    font-size: 34px;
  }
}
#page-home .masthead {
  background-image: url('/public/images/stock/steven-houston-708715-unsplash-1000h.jpg');
  background-size: cover;
  background-position: 250px;
  background-color: #000;
  text-align: left;
  padding: 60px 0;
  font-family: Roboto, sans-serif;
}
#page-home .masthead .head {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 5px;
}
#page-home .masthead .head span {
  color: #fff;
}
#page-home .masthead .detail {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
}
#page-home .masthead .detail span {
  color: #eee;
}
#page-home .dashboard-pane {
  padding: 50px;
  background-color: #e9eaed;
}
#page-home .dashboard-pane .greet-user {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
}
#page-home .dashboard-pane .greet-user .hello {
  font-family: 'Reenie Beanie', cursive;
  font-size: 30px;
}
#page-home .dashboard-pane .greet-user .info-message {
  color: #D81B60;
}
#page-home .dashboard-pane .orgs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
#page-home .dashboard-pane .orgs-list .org {
  background-color: #666;
  background-size: cover;
  margin-bottom: 50px;
  box-shadow: 0 0 5px 2px #E0E0E0;
  border-radius: 10px 10px 0 0;
  max-width: 750px;
  width: 750px;
}
#page-home .dashboard-pane .orgs-list .org .org-image {
  min-width: 200px;
}
#page-home .dashboard-pane .orgs-list .org .title {
  border-radius: 10px 10px 0 0;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page-home .dashboard-pane .orgs-list .org .title a {
  font-weight: 700;
  font-family: Lato, sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #333;
}
#page-home .dashboard-pane .orgs-list .org .title img {
  max-height: 30px;
  margin-right: 10px;
}
#page-home .dashboard-pane .orgs-list .org .about-org {
  min-height: 125px;
  padding: 20px;
  background-color: #616161;
  line-height: 1.5;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: left;
}
#page-home .dashboard-pane .orgs-list .org .links {
  display: flex;
}
#page-home .dashboard-pane .orgs-list .org .links a {
  color: #616161;
  margin-left: 20px;
}
#page-home .dashboard-pane .orgs-list .org .links a img {
  max-width: 18px;
  margin-right: 0;
}
#page-home .dashboard-pane .orgs-list .org .links .link-white {
  display: none;
}
#page-home .dashboard-pane .orgs-list .org:hover .title {
  background-color: #D81B60;
}
#page-home .dashboard-pane .orgs-list .org:hover .title a {
  color: #fff;
}
#page-home .dashboard-pane .orgs-list .org:hover .about-org,
#page-home .dashboard-pane .orgs-list .org:hover .org-image,
#page-home .dashboard-pane .orgs-list .org:hover .title {
  cursor: pointer;
}
#page-home .dashboard-pane .orgs-list .org:hover .links .link-gray {
  display: none;
}
#page-home .dashboard-pane .orgs-list .org:hover .links .link-white {
  display: block;
}
#page-home .pane-class-types {
  padding: 10px 0 10px 0;
  background-color: #000;
  color: #474747;
}
#page-home .pane-class-types .class-types {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-family: 'Reenie Beanie', cursive;
  font-size: 24px;
}
#page-home .pane-class-types .class-types div {
  padding: 10px;
}
#page-home .pane-watch-a-demo {
  padding: 20px 0 0 0;
  border-bottom: 1px solid #eeeeee;
}
#page-home .pane-watch-a-demo .head {
  text-align: center;
  color: #666;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 5px;
}
#page-home .pane-watch-a-demo .cover-image {
  max-width: 300px;
  box-shadow: 0 10px 20px rgba(18, 113, 196, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
}
#page-home .pane-who-are-you {
  margin-top: 50px;
  padding: 0 0 100px 0;
}
#page-home .pane-who-are-you .head {
  text-align: center;
  color: #666;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 5px;
}
#page-home .pane-who-are-you .targets .targets-row {
  display: flex;
  justify-content: center;
}
#page-home .pane-who-are-you .targets .targets-row div {
  font-size: 15px;
  padding: 10px;
  margin: 20px;
  background-color: #fff;
  color: #666;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  box-shadow: 0 0 7px 4px #f3f3f3;
}
#page-home .pane-who-are-you .targets .targets-row div:hover {
  background-color: #EC407A;
  border: 1px solid #D81B60;
  cursor: pointer;
  color: #fff;
}
#page-home .pane-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 50px 0 30px 0;
  background-color: #eeeeee;
}
#page-home .pane-logos img {
  align-self: center;
  padding-bottom: 20px;
}
#page-home .pane-testimonial {
  padding: 0 80px 40px 80px;
  margin: 100px 0;
  background-color: #E1F5FE;
  background: #E1F5FE;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E1F5FE), color-stop(1, #fff));
  background: -ms-linear-gradient(bottom, #E1F5FE, #fff);
  background: -moz-linear-gradient(center bottom, #E1F5FE 0%, #fff 100%);
  background: -o-linear-gradient(#fff, #E1F5FE);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#E1F5FE', GradientType=0);
}
#page-home .pane-testimonial .testimonial {
  margin-bottom: 50px;
}
#page-home .pane-testimonial .testimonial .testimonial-text {
  color: #666;
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
}
#page-home .pane-testimonial .testimonial .testimonial-text img.quote-open {
  float: none;
  position: relative;
  height: 16px;
  top: -8px;
  opacity: 0.6;
}
#page-home .pane-testimonial .testimonial .testimonial-org-image {
  margin-top: 10px;
}
#page-home .pane-testimonial .testimonial .testimonial-org-image img {
  max-width: 150px;
}
#page-home .pane-testimonial .testimonial .testimonial-credit {
  display: flex;
  color: #333;
  padding-bottom: 15px;
}
#page-home .pane-testimonial .testimonial .testimonial-credit a {
  color: #333;
}
#page-home .pane-testimonial .testimonial .testimonial-credit img {
  max-width: 100px;
  min-width: 100px;
  max-height: 100px;
  border-radius: 50%;
}
#page-home .pane-testimonial .testimonial .testimonial-credit .name {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-left: 10px;
  position: relative;
}
#page-home .pane-testimonial .testimonial .testimonial-credit .designation {
  font-size: 14px;
  line-height: 1;
}
#page-home .pane-testimonial .testimonial .testimonial-credit img.client-logo {
  border-radius: 0;
}
#page-home .pane-testimonial .customer-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}
#page-home .pane-testimonial .customer-logos img {
  max-width: 175px;
  padding: 0 20px 20px 0;
}
#page-home .pane-testimonial-2 {
  padding-top: 50px;
  background: #dedcee;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedcee), color-stop(1, #fff));
  background: -ms-linear-gradient(bottom, #dedcee, #fff);
  background: -moz-linear-gradient(center bottom, #dedcee 0%, #fff 100%);
  background: -o-linear-gradient(#fff, #dedcee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#dedcee', GradientType=0);
}
#page-home .pane-testimonial-3 {
  padding-top: 50px;
  background: #FFFCDD;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFCDD), color-stop(1, #fff));
  background: -ms-linear-gradient(bottom, #FFFCDD, #fff);
  background: -moz-linear-gradient(center bottom, #FFFCDD 0%, #fff 100%);
  background: -o-linear-gradient(#fff, #FFFCDD);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#FFFCDD', GradientType=0);
}
#page-home .pane-two {
  padding: 100px 30px;
  background-color: #fff;
}
#page-home .pane-two .feature-image {
  margin: 0;
  width: 90%;
}
#page-home .pane-two .feature-image img {
  border-radius: 50%;
  width: 100%;
  box-shadow: 0 0 5px 2px #ddd;
}
#page-home .pane-two .title {
  font-size: 35px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
#page-home .pane-two .descr {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}
#page-home .pane-two .feature-use {
  padding: .8em 0;
}
#page-home .pane-two .feature-use .see-all-features {
  text-decoration: underline;
  color: #D81B60;
  /* margin-top: 20px; */
  font-family: Lato, sans-serif;
  font-weight: 700;
  /* font-style: italic; */
  font-size: 18px;
}
#page-home .pane-two .feature-use .feature-header {
  font-family: Lato, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}
#page-home .pane-two .feature-use p {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 15px;
}
#page-home .pane-two .head {
  margin: 80px 0;
  text-align: center;
}
#page-home .pane-two .head .title {
  font-size: 50px;
  font-family: Lato, sans-serif;
  font-weight: 700;
}
#page-home .pane-two .head .subtext {
  margin-top: 10px;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}
#page-home .pane-two .item-spacer {
  margin-bottom: 100px;
}
#page-home .pane-two .image {
  color: #ccc;
  text-align: center;
}
#page-home .pane-two .image-right {
  color: #ccc;
  text-align: center;
}
#page-home .pane-two .image-left {
  color: #ccc;
  text-align: center;
}
#page-home .pane-two .feature-image-flat {
  margin: 0;
  width: 100%;
  text-align: center;
}
#page-home .pane-two .feature-image-flat img {
  width: 100%;
  box-shadow: 0 0 5px 2px #f3f3f3;
}
#page-home .pane-two .action {
  margin-top: 20px;
}
#page-home .pane-three {
  background-color: #efefef;
  padding: 40px 100px;
  font-family: Lato, sans-serif;
}
#page-home .pane-three .head {
  font-family: Lato, sans-serif;
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 10px;
}
#page-home .pane-three .price {
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 40px;
}
#page-home .pane-three .price-details {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 40px;
}
#page-home .pane-three .price-details span {
  font-weight: 700;
}
#page-home .pane-three .signup-details {
  padding-top: 5px;
}
#page-home .pane-three .signup-details span {
  font-weight: 400;
}
#page-home .pane-press {
  background-color: #efefef;
  padding: 40px 100px;
  font-family: Lato, sans-serif;
  background-color: #333;
  color: #efefef;
}
#page-home .pane-press .head {
  font-family: Lato, sans-serif;
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 10px;
}
#page-home .pane-press .price {
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 40px;
}
#page-home .pane-press .price-details {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 40px;
}
#page-home .pane-press .price-details span {
  font-weight: 700;
}
#page-home .pane-press .signup-details {
  padding-top: 5px;
}
#page-home .pane-press .signup-details span {
  font-weight: 400;
}
#page-home .pane-press a {
  color: deepskyblue;
  font-size: 22px;
  line-height: 1.1;
}
#page-home .pane-press .price-details {
  color: #ccc;
}
@media (max-width: 768px) {
  #page-home .masthead .detail {
    font-size: 16px;
  }
  #page-home .pane-testimonial {
    padding: 0 80px 40px 80px;
  }
  #page-home .dashboard-pane .orgs-list .org .title {
    padding: 10px;
  }
  #page-home .dashboard-pane .orgs-list .org .title a {
    font-size: 15px;
  }
  #page-home .dashboard-pane .orgs-list .org .org-image {
    min-width: 100px;
  }
  #page-home .dashboard-pane .orgs-list .org .about-org {
    min-height: 100px;
    padding: 10px;
    line-height: 1.5;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #page-home .masthead {
    background-position: 0 42px;
  }
  #page-home .masthead .head {
    font-size: 26px;
  }
  #page-home .masthead .detail {
    font-size: 14px;
  }
  #page-home .pane-class-types {
    padding: 30px 0 40px 0;
  }
  #page-home .pane-class-types .class-types {
    font-size: 18px;
  }
  #page-home .pane-class-types .class-types div {
    padding: 5px;
  }
  #page-home .pane-who-are-you .targets .targets-row div {
    padding: 10px;
    font-size: 13px;
  }
  #page-home .pane-testimonial {
    padding: 0 20px 40px 20px;
    margin-bottom: 0;
  }
  #page-home .pane-testimonial .testimonial-credit .name {
    margin-left: 0;
    margin-bottom: 10px;
  }
  #page-home .pane-two .feature-image {
    width: 100%;
  }
  #page-home .pane-two .title {
    margin-top: 20px;
    font-size: 30px;
  }
  #page-home .pane-press {
    padding: 20px;
  }
}
