:root {
  --blue-color: #13b6c7;
  --dark-blue-color: #198cbe;
}
img.lazy {
  opacity: 0;
  transition: all 2s;
}
img.lazy.in-viewport {
  opacity: 1;
}
.lazy-content {
  opacity: 1;
  transition: all 2s;
}
.lazy-content.outside-viewport {
  opacity: 0;
}
.x2column.lazy-content .col.image {
  transform: translateX(0);
  transition: all 1s;
}
.x2column.lazy-content.outside-viewport .col.image {
  transform: translateX(-20%) !important;
}
.x2column.lazy-content.outside-viewport .reverse .col.image {
  transform: translateX(20%) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Rajdhani', sans-serif;
  background: #f6f7f9;
  padding-top: 115px;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #1395c7;
  font-weight: 600;
}
a:hover {
  text-decoration: none;
  color: #657378;
}
hr {
  display: block;
  margin: 25px 0;
  height: 1px;
  background: #ffffff;
  width: 100%;
  border: none;
}
.max-width {
  max-width: 1150px;
  margin: 0 auto;
}
a.button {
  display: inline-block;
  padding: 0 16px;
  background: #9cb4bf;
  color: #fafafa;
  font-size: 0.9375em;
  font-weight: 500;
  transition: all 0.3s;
  height: 48px;
  line-height: 48px;
  position: relative;
  text-transform: uppercase;
  border-radius: 4px;
  overflow: hidden;
}
a.button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid var(--blue-color);
  border-right: 10px solid transparent;
}
a.std-button,
.ccm-form .btn-primary,
button.std-button,
select.button {
  background: #198ebe;
  border: 0px;
  color: #fff;
  padding: 15px 30px 15px 30px;
  display: inline-block;
  font-size: 1.125em;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px 4px;
  outline: 0 !important;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  text-shadow: -0.5px -0.5px 0.5px rgba(0, 0, 0, 0.2);
}
a.std-button.fade {
  background: #1395c7;
  color: #fff;
}
a.std-button:hover,
.ccm-form .btn-primary:hover,
button.std-button:hover,
a.button:hover {
  /*	background:darken(@second-color, 7%); */
  background: var(--blue-color);
  transition: all 0.7s;
}
span.nowrap {
  white-space: nowrap;
}
h1,
h2,
h3 {
  max-width: 800px;
  text-wrap: balance;
}
h1 {
  font-weight: 300;
  font-style: normal;
  color: var(--blue-color);
  margin: 2rem 0;
  font-size: 4rem;
  letter-spacing: 0em;
  line-height: 1.25em;
}
h2 {
  font-weight: 300;
  font-style: normal;
  color: var(--blue-color);
  margin: 15px 0;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1.25em;
}
h3 {
  font-weight: 300;
  font-style: normal;
  color: var(--blue-color);
  margin: 15px 0;
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.25em;
}
h4 {
  color: #657378;
  font-size: 1.125em;
}
p {
  line-height: 1.5em;
  margin: 15px 0;
  color: #657378;
  font-size: 1em;
}
ul.styled {
  list-style: none;
  margin: 1.5rem 0;
}
ul li,
ul.styled li {
  color: #657378;
  font-weight: 500;
}
ul.styled li {
  position: relative;
  padding-left: 24px;
  margin: 0.75rem 0;
}
ul.styled li:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 1px;
  left: 0;
}
p.button {
  margin-top: 30px;
}
p strong {
  font-weight: 600;
}
blockquote {
  padding: 15px 5%;
  background: #15a3da;
  position: relative;
  margin: 30px 0;
}
blockquote:after {
  content: '\f10e';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  bottom: 0;
  right: 5%;
  font-weight: 700;
  font-size: 30px;
  transform: translate(0, 20%);
  color: #657378 !important;
}
blockquote p {
  font-weight: 500 !important;
  font-size: 1.25em !important;
  line-height: 1.3em !important;
  color: #fff;
  margin-right: 55px;
}
blockquote p:nth-of-type(2) {
  font-size: 0.8125em !important;
  color: #afe3f7 !important;
}
blockquote p:nth-of-type(2):before {
  content: '\f178';
  font-family: 'Font Awesome 5 Pro';
  margin-right: 5px;
}
/* HEADER */
header#main-header.nav-up {
  transform: translateY(-40px);
}
header#main-header.nav-up nav#main-nav li li a,
header#main-header.nav-up nav#main-nav li li {
  height: 48px;
}
/* Top Header */
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
header#main-header .top-header {
  padding: 0 5%;
  background: var(--blue-color);
}
header#main-header .top-header .wrapper {
  display: flex;
  margin: 0 auto;
  position: relative;
  justify-content: space-between;
}
header#main-header div.contact,
header#main-header div.socials {
  display: flex;
  align-items: center;
  height: 40px;
}
header#main-header div.socials .fa-facebook:before {
  content: '\f39e';
  font-size: 20px;
  top: -2px;
  position: relative;
}
header#main-header div.socials {
  justify-content: flex-end;
}
header#main-header div.contact p {
  margin: 0;
}
header#main-header div.contact a {
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  margin-right: 20px;
  transition: all 0.3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
header#main-header div.contact a:before {
  content: '\f095';
  font-family: 'Font Awesome 5 Pro';
  margin-right: 10px;
  display: inline-block;
  font-size: 1em;
  position: relative;
  font-weight: 700;
}
header#main-header div.contact p.tel a:before {
  top: 1px;
}
header#main-header div.contact p.email a:before {
  content: '\f0e0';
  font-size: 14px;
}
header#main-header div.socials ul {
  list-style: none;
  display: flex;
}
header#main-header div.socials ul li {
  margin: 0 3px;
}
header#main-header div.socials ul li a {
  color: #ffffff;
  display: block;
  padding: 5px;
  transition: all 0.3s;
  font-size: 1.6em;
}
header#main-header div.socials ul li a:hover {
  color: #d7dce5;
}
header#main-header div.contact-button {
  position: absolute;
  right: 0;
  align-self: center;
}
header#main-header div.contact-button a.button {
  display: inline-block;
  padding: 8px;
  background: #00bbd4;
  color: #fafafa;
  font-size: 0.8125em;
  font-weight: 500;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s;
}
header#main-header div.contact-button a.button:hover {
  background: #d400c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 255, 255, 0.3) inset;
}
/* Bottom Header */
header#main-header .bottom-header {
  padding: 0 5%;
  background: #fff;
  position: relative;
  height: auto;
  transition: all 0.3s;
}
header#main-header .bottom-header .wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  height: 90px;
}
header#main-header div.logo {
  width: 220px;
  margin-right: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
header#main-header div.logo a {
  display: block;
  height: auto;
  width: 100%;
  transition: all 0.3s;
}
header#main-header div.logo a img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  header#main-header div.contact {
    display: none;
  }
  header#main-header div.socials {
    border-left: none;
  }
  header#main-header div.socials ul {
    margin-left: -10px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1023px) {
  header#main-header div.logo a svg,
  header#main-header div.logo a img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1200px) {
  header#main-header .top-header {
    padding: 0 10%;
  }
  header#main-header .bottom-header {
    padding: 0 10%;
  }
}
/* MAIN NAV */
div.blackout {
  background: rgba(5, 54, 59, 0.73);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s;
}
div.blackout.reveal {
  opacity: 1;
  transform: translateX(0);
}
nav#main-nav {
  margin-right: -15px;
}
nav#main-nav ul {
  display: flex;
  list-style: none;
}
nav#main-nav ul li {
  margin: 0 5px;
  position: relative;
}
nav#main-nav ul li a {
  color: var(--blue-color);
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15px 15px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative;
}
nav#main-nav ul li li a {
  color: #fff;
}
nav#main-nav ul li a:after {
  content: '';
  display: block;
  height: 4px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--blue-color);
  transition: all 0.3s;
  opacity: 0;
  background-size: 100% 100%;
  position: absolute;
}
nav#main-nav ul li:hover > a:after {
  opacity: 1;
  background-size: 305% 100%;
}
/* sub level nav */
nav#main-nav ul ul {
  position: absolute;
  flex-direction: column;
  width: 280px;
  margin-top: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
nav#main-nav li:hover ul {
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}
nav#main-nav ul li {
  margin: 0;
}
nav#main-nav ul ul li a {
  height: 48px;
  display: flex;
  align-items: :center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  background: var(--dark-blue-color);
  font-size: 0.75em;
}
nav#main-nav ul ul li a:hover {
  color: #fafafa;
  background: #1395c7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav#main-nav ul ul li a:after {
  display: none;
}
/* SHOP SPECIFIC */
nav#main-nav a.shop span {
  display: flex;
}
nav#main-nav a.shop i {
  color: #f6f7f9;
}
/* MOBILE BURGER */
#mobile-burger {
  display: none;
  flex-direction: column;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 5%;
  top: 65px;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  transition: all 0.3s;
}
#mobile-burger.nav-up {
  top: 25px;
}
#mobile-burger span {
  width: 100%;
  height: 4px;
  background: var(--blue-color);
  display: block;
  margin: 3px auto;
  transition: all 0.3s;
  border-radius: 3px;
}
#mobile-burger:hover span {
  background: var(--blue-color);
}
#mobile-burger.opened span:first-of-type {
  transform: translate(0, 10px) rotate(-45deg) scale(0.85);
}
#mobile-burger.opened span:nth-of-type(2) {
  transform: scale(0.5);
  opacity: 0;
}
#mobile-burger.opened span:last-of-type {
  transform: translate(0, -10px) rotate(45deg) scale(0.85);
}
/* MOBILE NAV */
nav#mobile-nav {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 191, 199, 0.2);
  z-index: 850;
  max-width: 375px;
  padding: 0;
  padding-top: 100px;
  transform: translateX(100%);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
nav#mobile-nav.opened {
  transform: translateX(0);
}
nav#mobile-nav ul {
  list-style: none;
}
nav#mobile-nav ul li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav#mobile-nav ul li a {
  color: #fff;
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  display: block;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1em;
}
nav#mobile-nav ul li:hover > a {
  background: #ffffff;
}
/* expand stuff */
nav#mobile-nav ul li div.expand {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-left: 1px solid #ffffff;
}
nav#mobile-nav ul li div.expand.opened .wrapper {
  transform: scaleY(-1);
}
nav#mobile-nav ul li div.expand:hover {
  background: #f6f7f9;
}
nav#mobile-nav ul li div.expand .wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.15);
}
nav#mobile-nav ul li div.expand .wrapper:before {
  content: '\f0dd';
  font-family: 'Font Awesome 5 Pro';
  color: #fafafa;
  font-weight: 700;
  font-size: 1.175em;
  position: relative;
  top: -3px;
}
/* Subnav */
nav#mobile-nav ul ul {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: #ffffff;
}
nav#mobile-nav ul ul li {
  border-bottom: none;
}
nav#mobile-nav ul ul li a {
  height: 40px;
  line-height: 40px;
  font-size: 0.875em;
}
nav#mobile-nav ul li:hover > a {
  background: var(--blue-color);
}
/* SLIDER */
.rslides_nav {
  background: #657378;
}
.rslides_tabs li.rslides_here a {
  background: #657378;
}
/* MAIN IMAGE */
/* MOBILE VIEW */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 94px;
  }
  header#main-header .bottom-header,
  header#main-header div.logo a,
  header#main-header nav#main-nav li a,
  header#main-header nav#main-nav li {
    height: auto;
  }
  header#main-header div.logo a svg,
  header#main-header div.logo a img {
    height: auto;
    transition: all 0.3s;
  }
  header#main-header nav#main-nav li li a,
  header#main-header nav#main-nav li li {
    height: 48px;
  }
  #mobile-burger {
    display: flex;
  }
  nav#main-nav {
    display: none;
  }
  nav#mobile-nav {
    display: block;
  }
}
/* STANDARD PANEL */
section.standard-panel {
  padding: 90px 5%;
  background: #f6f7f9;
  border-top: 1px solid #ffffff;
}
section.standard-panel .max-width {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
/* ICON LIST ON WHITE */
div.icon-list {
  display: flex;
  margin: 50px -1%;
  flex-wrap: wrap;
}
div.icon-list .icon {
  background: transparent;
  margin: 2%;
  padding: 20px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - 30px), 0% 100%);
  clip-path: none;
  flex: 0 0 29.333%;
  text-align: center;
  border-radius: 3px;
  transition: all 0.3s;
}
div.icon-list .icon:hover {
  background: #eef0f2;
}
div.icon-list .icon h4 {
  font-size: 0.9375em;
  font-weight: 700;
  color: #657380;
  letter-spacing: 0em;
}
div.icon-list .icon p {
  font-size: 0.8125em;
  font-weight: 400;
  margin-bottom: 0;
}
div.icon-list .icon div.info {
  position: relative;
}
div.icon-list .icon div.info:before {
  content: '\f0ac';
  font-family: 'Font Awesome 5 Pro';
  font-size: 2.25em;
  display: block;
  margin-bottom: 30px;
  width: 80px;
  margin: 0 auto 30px auto;
  background: #657380;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  color: #52daec;
  font-weight: 300;
}
div.icon-list .icon.support div.info:before {
  content: '\f82d';
  font-weight: 300;
  font-size: 2.25em;
  color: pink;
}
div.icon-list .icon.business div.info:before {
  content: '\f0c0';
  font-weight: 300;
  font-size: 2.25em;
  color: #ceffc0;
}
div.icon-list .icon.pencil div.info:before {
  content: '\f303';
  font-weight: 300;
  font-size: 2.25em;
  color: #fbdd6b;
}
div.icon-list .icon.bullhorn div.info:before {
  content: '\f0a1';
  font-weight: 300;
  font-size: 2.25em;
  color: #cbc0ff;
}
div.icon-list .icon.bell div.info:before {
  content: '\f562';
  font-weight: 700;
  font-size: 2.25em;
  color: #ffb86c;
}
div.icon-list .icon.teacher div.info:before {
  content: '\f51c';
  font-weight: 300;
  font-size: 2.25em;
  color: #c4dbec;
}
@media screen and (max-width: 1023px) {
  div.icon-list .icon {
    flex: 0 0 46%;
  }
}
@media screen and (max-width: 680px) {
  div.icon-list .icon {
    flex: 0 0 96%;
  }
}
section.icon-list-alt .info h4,
section.icon-list-alt .info p {
  color: #657378;
}
/* 2 COLUMN */
/* 2 COLUMN REVERSED */
/* 2 TEXT COLUMNS */
section.two-text-columns .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
.title-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.title-wrapper h2,
.title-wrapper h1 {
  margin-top: 0;
}
.title-wrapper p {
  font-weight: 500;
}
/* OUR PEOPLE */
section.our-people {
  padding: 45px 5%;
  margin: 45px 0;
}
section.our-people .title-wrapper {
  text-align: left;
  max-width: 720px;
  margin: 0;
}
section.our-people h1:after {
  left: 0;
  transform: none;
}
section.our-people .max-width {
  margin: 0 auto;
  text-align: center;
  max-width: 1150px;
}
div.people-list {
  display: flex;
  margin: 0 -1%;
  flex-wrap: wrap;
}
div.person {
  flex: 0 0 23%;
  position: relative;
  margin: 2% 1%;
  transition: all 0.3s;
  overflow: hidden;
  background-image: url(/application/themes/aurora/css/assets/diagonals.png);
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  padding: 10px;
}
div.person:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #f6f7f9 0%, #f6f7f9 33%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 33%, rgba(246, 247, 249, 0.5) 33%);
  transition: all 0.3s;
  opacity: 0.75;
  background-size: 100%;
}
div.person:hover:after {
  opacity: 1;
  background-size: 304%;
}
div.person:hover .image a:after {
  background: rgba(33, 35, 49, 0.25);
}
div.person .image {
  overflow: hidden;
  position: relative;
}
div.person .image a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 35, 49, 0);
  transition: all 0.5s;
}
div.person .image a {
  display: block;
  position: relative;
}
div.person .image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.5);
}
div.person .info {
  padding: 20px 0;
}
div.person h3 {
  color: #fafafa;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.375em;
  text-transform: uppercase;
  margin: 5px 0;
}
div.person h3 a {
  color: #fafafa;
  transition: all 0.3s;
}
div.person:hover a {
  color: #f6f7f9;
}
div.person p.position {
  font-size: 0.875em;
  margin: 0;
  font-weight: 700;
  color: #657378;
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1.2em;
}
@media screen and (max-width: 1024px) {
  div.person {
    flex: 0 0 31.333%;
  }
}
@media screen and (max-width: 800px) {
  div.person {
    flex: 0 0 48%;
  }
  section.our-people {
    padding: 0 5%;
  }
}
/* SOCIAL MEDIA SECTION */
section.social-media .max-width {
  max-width: 1150px;
}
/* FOOTER */
footer#footer {
  padding: 50px 5%;
  background: var(--blue-color);
  color: #fff;
}
footer#footer .max-width {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
footer#footer .logo {
  width: 150px;
  margin: 0 auto 20px;
}
footer#footer .logo a {
  display: block;
}
footer#footer .logo a svg,
footer#footer .logo a img {
  display: block;
  width: 100%;
  height: auto;
}
footer#footer h4 {
  margin-top: 30px;
  font-size: 1.375em;
  display: none;
}
footer#footer p.contact {
  font-size: 1em;
  color: #fff;
  font-weight: 500;
}
footer#footer p.contact a {
  margin: 0 10px;
}
footer#footer p.copyright,
footer#footer p.terms,
footer#footer p {
  font-size: 0.75em;
  color: #fff;
  font-weight: 300;
}
footer#footer p.credit {
  font-size: 0.875em;
  color: #fff;
}
footer#footer a {
  transition: all 0.3s;
  color: #fff;
}
footer#footer a:hover {
  /* color: var(--dark-blue-color); */
  border-bottom: 1px dotted #fff;
}
/* WEEKLY SCHEDULE */
section.weekly-schedule {
  padding: 45px 5%;
  margin: 45px 0;
  text-align: center;
}
section.weekly-schedule .max-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0;
}
section.weekly-schedule .week {
  width: calc(100% - 35px);
  background: #ffffff;
  margin-top: 90px;
  position: relative;
  margin-left: 35px;
}
section.weekly-schedule .week h3 {
  font-size: 1.175em;
}
section.weekly-schedule .week-wrapper {
  display: flex;
  overflow: scroll;
}
section.weekly-schedule .day {
  flex: 0 0 14.285%;
  position: relative;
  border-right: 1px solid #f6f7f9;
  min-width: 120px;
}
section.weekly-schedule .day:nth-of-type(odd) {
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}
section.weekly-schedule .day-title {
  height: 45px;
  background: #f6f7f9;
  display: block;
  width: 100%;
  top: 0;
  position: absolute;
}
section.weekly-schedule .class {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fafafa;
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #f6f7f9;
  transition: all 0.3s;
  z-index: 10;
  cursor: default;
  padding: 0 8px;
}
section.weekly-schedule .class:hover {
  background: #f6f7f9;
  z-index: 100;
  transform: scale(1.05);
}
section.weekly-schedule .class a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.weekly-schedule .class h4 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1em;
  font-size: 1em;
}
section.weekly-schedule .class p {
  margin: 0;
  color: #657378;
  line-height: 1.2em;
  font-size: 0.875em;
}
section.weekly-schedule .class:hover p {
  color: #fafafa;
}
section.weekly-schedule .class .description {
  position: relative;
  position: absolute;
  bottom: 0;
  transform: translateY(0);
  width: 100%;
  padding: 5px;
  z-index: 1;
  background: #f6f7f9;
  opacity: 0;
  transition: all 0.3s;
}
section.weekly-schedule .class:hover .description {
  opacity: 1;
  transform: translateY(100%);
}
.time-marker {
  position: absolute;
  right: -5px;
  width: calc(100% + 55px);
  transform: translate(0, -100%);
  border-bottom: 1px solid #ffffff;
  z-index: 1;
  cursor: default;
}
.time-marker p {
  font-size: 0.8125em;
  text-align: left;
  margin: 0;
  color: #ffffff;
}
/* YOUTUBE VIDEO */
section.single-video {
  margin: 45px 0;
  padding: 45px 5%;
  background-color: #ffffff;
  background-image: url(/application/themes/aurora/css/assets/diagonals.png);
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
section.single-video .max-width {
  max-width: 1150px;
  margin: 0 auto;
  filter: saturate(0.2);
}
/* CONTACT FORM */
::-webkit-input-placeholder {
  color: #657378;
}
section.contact-form {
  padding: 45px 5%;
  background-color: #ffffff;
  background-image: url(/application/themes/aurora/css/assets/diagonals.png);
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background: #fafafa;
}
section.contact-form .max-width {
  margin: 0 auto;
}
.centered-info {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
section.contact-form .ccm-block-express-form {
  padding: 0;
  margin: 45px 0;
  border-radius: 3px;
}
section.contact-form .ccm-block-express-form form {
  max-width: 1150px;
  margin: 0 auto;
}
section.contact-form .ccm-dashboard-express-form {
  display: flex;
  margin: 0 -2.5% 0 -2.5%;
}
section.contact-form fieldset {
  width: 95%;
  margin: 0 2.5%;
  border: none;
}
section.contact-form fieldset legend {
  color: #7e8d92;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 1.375em;
  display: none;
}
section.contact-form .form-group {
  margin-bottom: 20px;
}
section.contact-form input {
  font-family: 'Rajdhani', sans-serif;
}
section.contact-form select,
.list-filter select,
.store-product-block select,
.store-checkout-page select {
  padding: 12px;
  font-family: 'Rajdhani', sans-serif;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(158deg, #fbb80c 0%, #f07c4c 35%, #eb5b82 100%);
  color: #fff;
  border-radius: 3px;
  width: 100%;
  height: 47px;
  font-size: 1.125em;
  background-position: right .7em top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: 12px auto, 100%;
  transition: all 0.3s;
}
section.contact-form select:hover,
.list-filter select:hover,
.store-product-block select:hover,
.store-checkout-page select:hover,
.store-checkout-page select:focus {
  box-shadow: 0 0 12px #e1cb3b, 0 0 2px #e1cb3b;
}
section.contact-form input[type=text],
section.contact-form input[type=tel],
section.contact-form input[type=email],
section.contact-form textarea,
.store-product-block input,
.store-checkout-page input[type=email],
.store-checkout-page input[type=text],
.store-checkout-page input[type=number],
.store-checkout-page input[type=tel],
.store-checkout-page textarea {
  padding: 14px 14px 14px 40px;
  border: none;
  border-radius: 3px;
  transition: all 0.3s;
  font-size: 1em;
  color: #657378;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background: #e1e4eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-family: 'Rajdhani', sans-serif;
  border: 2px solid transparent;
}
section.contact-form div.input,
.store-checkout-page div.input {
  position: relative;
}
section.contact-form div.input:after,
.store-checkout-page div.input:after {
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #657378;
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.25em;
  transition: all 0.3s;
  font-weight: 300;
}
div.input.first-name:after,
div.input.last-name:after,
div.input.name:after {
  content: '\f007';
}
div.input.email:after {
  content: '\f2b6';
}
div.input.phone-number:after {
  content: '\f095';
}
div.input.address:after {
  content: '\f3c5';
}
div.input.search:after {
  content: '\f002';
}
div.input.message:after {
  top: 10px !important;
  transform: none !important;
  content: '\f303';
}
section.contact-form textarea {
  min-height: 245px;
}
/* Hide arrow icon in IE browsers */
section.contact-form select::-ms-expand {
  display: none;
}
section.contact-form input[type=text]:hover,
section.contact-form input[type=tel]:hover,
section.contact-form input[type=email]:hover,
.store-checkout-page input[type=number]:hover,
section.contact-form textarea:hover,
.store-product-block input:hover,
.store-checkout-page input[type=email]:hover,
.store-checkout-page input[type=text]:hover,
.store-checkout-page input[type=tel]:hover,
.store-checkout-page textarea:hover {
  background: #e7e9ef;
  border: 2px solid #fff;
}
section.contact-form input[type=text]:focus,
section.contact-form input[type=tel]:focus,
section.contact-form input[type=email]:focus,
.store-checkout-page input[type=number]:focus,
section.contact-form textarea:focus,
.store-product-block input:focus,
.store-checkout-page input[type=email]:focus,
.store-checkout-page input[type=text]:focus,
.store-checkout-page input[type=tel]:focus,
.store-checkout-page textarea:focus {
  background: #edeff3;
  outline: none;
  border: 2px solid #1395c7;
}
section.contact-form label,
.store-product-block label,
.store-checkout-page label {
  line-height: 1.5em;
  margin: 0 0 5px 0;
  color: #657378;
  font-size: 1em;
  font-weight: 400;
  display: inline-block;
  user-select: none;
}
section.contact-form span.small {
  font-size: 0.65em;
  color: #ed6b68;
}
section.contact-form .form-actions {
  margin-top: 30px;
  padding: 0 2px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  section.contact-form .ccm-dashboard-express-form {
    flex-direction: column;
    margin: 0 -2.5% 0 -2.5%;
  }
  section.contact-form textarea {
    min-height: 150px;
  }
}
/* LIST FILTER */
div.list-filter {
  margin-bottom: 20px;
}
div.list-filter .inline-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.list-filter select {
  min-width: 200px;
}
/* GOOGLE MAP */
section.google-map #googleMapCanvas {
  height: 70vh !important;
  min-height: 400px;
}
.gm-style-iw-c {
  background: #f6f7f9 !important;
}
.gm-style .gm-style-iw-t::after {
  background: #f6f7f9 !important;
}
.infoWindow {
  font-family: 'Rajdhani', sans-serif;
  padding: 20px;
}
.gm-style-iw-d::-webkit-scrollbar {
  display: none;
}
.infoWindow h3 {
  margin: 0 0 5px 0;
}
.infoWindow p {
  font-weight: 400;
  margin: 5px 0;
}
/* YOUTUBE FEED */
section.youtube-feed {
  padding: 45px 5%;
  margin: 45px 0;
}
section.youtube-feed .max-width {
  max-width: 1650px;
  margin: 0 auto;
}
ul.youtube-channel-feed {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 45px;
}
ul.youtube-channel-feed li {
  flex: 0 0 23%;
  margin: 1%;
}
ul.youtube-channel-feed li a {
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
ul.youtube-channel-feed li a:before {
  content: '\f04b';
  font-family: 'Font Awesome 5 pro';
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 10;
  font-size: 2em;
  transition: all 0.3s;
}
ul.youtube-channel-feed li a:hover:before {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
}
ul.youtube-channel-feed li a img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
ul.youtube-channel-feed li .video-title {
  padding: 10px 0;
}
ul.youtube-channel-feed li .video-title h4 {
  font-weight: 500;
  color: #657378;
  line-height: 1.2em;
  font-size: 0.875em;
}
@media screen and (max-width: 1200px) {
  ul.youtube-channel-feed li {
    flex: 0 0 31.333%;
  }
}
@media screen and (max-width: 900px) {
  ul.youtube-channel-feed li {
    flex: 0 0 48%;
  }
}
@media screen and (max-width: 540px) {
  ul.youtube-channel-feed li {
    flex: 0 0 98%;
  }
}
/* MEMBERSHIP OPTIONS */
section.membership-options {
  padding: 45px 5%;
  margin: 0;
  background-color: #f6f7f9;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}
section.membership-options .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
section.membership-options .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
section.membership-options .membership-option {
  background: #bda459;
  position: relative;
  margin: 2%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 2px 4px rgba(255, 255, 255, 0.22) inset, 0 4px 3px 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  padding-bottom: 100px;
  width: 300px;
}
section.membership-options .membership-option.silver {
  background: #abb6bb;
}
section.membership-options .membership-option.bronze {
  background: #c17e4d;
}
section.membership-options .membership-option:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
section.membership-options .membership-option .image {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  transform: rotate(-30deg);
}
section.membership-options .membership-option .image span {
  /*display: flex;
	padding: 0;
	background: rgba(255,255,255,0.2);
	width: 72px;
	height: 72px;
	line-height: 60px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 auto 20px auto;*/
}
section.membership-options .membership-option .image i {
  font-size: 90px;
  color: #d0c192;
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.1);
}
section.membership-options .membership-option.silver .image i {
  color: #c0c8cc;
}
section.membership-options .membership-option.bronze .image i {
  color: #d5a988;
}
section.membership-options .membership-option .info {
  position: relative;
  z-index: 10;
}
section.membership-options .membership-option p {
  color: #262626;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
  cursor: default;
  line-height: 1.4em;
}
section.membership-options .membership-option p.price {
  font-size: 2em;
  font-weight: 700;
}
section.membership-options .membership-option .heading {
  display: flex;
  height: 70px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
section.membership-options .membership-option h4 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2em;
  color: #262626;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  line-height: 1em;
  cursor: default;
}
.membership-option div.button {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 10;
  display: flex;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
section.membership-options .std-button.fade {
  color: #262626;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px -1px 1px 0px rgba(255, 255, 255, 0.2), 0 0 16px 0 rgba(255, 255, 255, 0.2) inset;
}
section.membership-options .std-button.fade:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.4), 0px -1px 1px 0px rgba(0, 0, 0, 0.2), 0 0 16px 0 rgba(255, 255, 255, 0.2) inset;
}
/* TESTIMONIALS */
section.testimonials {
  background: #e7e9ef;
}
section.testimonials .max-width {
  max-width: 1150px;
}
/* STANDARD PAGE LIST */
/* BLOG PAGE LIST */
/* PAGE SHARING */
div.page-sharing {
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
  width: 100%;
}
div.page-sharing div.list-socials {
  transform: translateX(140%);
  transition: all 0.7s;
}
div.page-sharing.viewing div.list-socials {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.7s;
  margin-right: 10px;
}
div.page-sharing a.socials-item,
div.page-sharing div.list-sharing-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}
/* BLOG LIST SHARING */
div.list-sharing-icon {
  color: #f6f7f9;
}
a.socials-item {
  color: #657378;
}
a.socials-item:hover {
  color: #f6f7f9;
}
/* BLOG CONTENT */
body.blog-post {
  overflow: scroll;
}
body.blog-post section.title-block {
  padding: 45px 5% 0 5%;
  margin: 45px 0;
  text-align: center;
}
body.blog-post section.title-block .max-width {
  max-width: 720px;
  margin: 0 auto;
}
section.blog-content {
  padding: 0 5%;
  margin: 45px 0;
}
section.blog-content ul {
  list-style: none;
  margin: 20px 0;
}
section.blog-content ul li,
.cke_wysiwyg_div ul li {
  color: #7e8d92;
  padding-left: 30px;
  position: relative;
  line-height: 1.2em;
  margin: 10px 0;
}
section.blog-content ul li:before,
.cke_wysiwyg_div ul li:before {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 0;
  left: 0;
}
section.blog-content .max-width {
  max-width: 720px;
  margin: 0 auto;
}
section.blog-content img,
.std-form .cke_inner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}
section.title-block p.author {
  margin-top: 30px;
}
/* PAGE SHARING */
section.page-sharing {
  padding: 0 5%;
  margin: 45px 0;
}
section.page-sharing .max-width {
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid #b9c1d0;
  padding-bottom: 10px;
}
/* SITE ADMIN */
section.admin-panel {
  padding: 45px 5%;
  margin: 45px 0;
}
section.admin-panel h3 {
  color: #657378;
}
section.admin-panel .max-width {
  border: 1px solid #eee;
  background: #fbfbfb;
  padding: 30px;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1em;
}
nav.page-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav.page-nav ul li {
  margin: 0 2px 5px 2px;
}
ul.list {
  list-style: none;
  margin: 30px 0;
}
.std-form .flex-wrapper {
  display: flex;
}
.std-form .flex-wrapper .form-group {
  margin-right: 10px;
}
.std-form div.form-input {
  margin-top: 10px;
}
.std-form label,
.ccm-block-express-form label,
.ccm-block-express-form span.text-muted {
  display: inline-block;
  font-size: 0.875em;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 5px;
}
.std-form input,
.std-form textarea,
.ccm-block-express-form input,
.ccm-block-express-form textarea {
  border: none;
  padding: 10px;
  font-size: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: 15px;
  color: #657380;
  width: 100%;
  box-shadow: 0 0 0 3px rgba(117, 180, 179, 0), 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
  border-radius: 3px;
  transition: all 0.3s;
}
.std-form input:focus,
.std-form textarea:focus,
.ccm-block-express-form input:focus,
.ccm-block-express-form textarea:focus {
  outline: none;
}
.std-form div.checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.std-form input[type=checkbox] {
  width: auto;
  margin: 0 0 0 10px;
}
.std-form .ccm-file-selector {
  margin: 0 0 20px 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -ms-border-radius: 2px;
  color: #ffffff;
  background-color: #3f9edc;
  text-align: center;
  font-size: 18px;
  line-height: 1.42857143;
  -webkit-transition: .1s linear all;
  -o-transition: .1s linear all;
  transition: .1s linear all;
  cursor: pointer;
}
.std-form .ccm-item-selector-loaded {
  display: flex;
  align-items: center;
  padding: 8px;
  text-align: left;
  background-color: #3f9edc;
}
.std-form .ccm-item-selector-loaded .btn-group {
  display: flex;
  align-items: center;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded a.btn {
  padding-left: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.std-form .cke_editor {
  margin-bottom: 20px !important;
}
section.admin-panel .cke_top {
  top: 105px;
  z-index: 1000;
  position: sticky;
}
.std-form .cke_wysiwyg_div {
  background-color: #f6f7f9;
}
.std-form button {
  font-family: 'Rajdhani', sans-serif;
}
.std-form button[type="submit"] {
  margin: 20px 0 5px 0;
  background: #111;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}
.std-form button.ccm-item-selector-reset {
  border: none;
  background: red;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.std-form button.ccm-item-selector-reset .fa-times-circle:before {
  content: '\f00d';
}
.std-form .image-picker {
  margin-top: 20px;
}
.std-form .form-group-inline {
  display: inline-block;
  margin: 0 10px 20px 0;
}
.std-form .date-picker input {
  margin-bottom: 5px;
}
.std-form .ccm-file-manager-list-thumbnail {
  display: block;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded img {
  max-height: 60px;
  max-width: 60px;
  display: block;
}
.std-form select {
  padding: 10px;
  min-width: 200px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}
/* DEFAULT CONTENT (view.php)*/
section.default-content {
  padding: 15px 5%;
  margin: 45px 0;
}
section.default-content .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
/* STAFF PROFILE */
ul.personal-social-links {
  list-style: none;
  display: flex;
  margin: 15px 0;
}
ul.personal-social-links li {
  margin-right: 10px;
}
ul.personal-social-links a {
  font-size: 1.75em;
}
/* PREV NEXT */
section.next-prev {
  padding: 0 5% 45px 5%;
}
section.next-prev .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
.blog-post section.next-prev .max-width {
  max-width: 720px;
}
.next-previous-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  image-rendering: -moz-crisp-edges;
  background-color: #ffffff;
}
.next-previous-link {
  width: 50%;
}
.next-previous-link a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.next-previous-link a:hover {
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0);
}
.next-previous-link a:hover .info p {
  color: #f6f7f9;
}
.next-previous-link.next a {
  text-align: right;
  justify-content: flex-end;
  height: 100%;
}
.next-previous-link.prev a {
  text-align: left;
}
.next-previous-link .info {
  padding: 0 20px;
  max-width: 300px;
}
.next-previous-link .info h4 {
  line-height: 1em;
}
.next-previous-link .info p {
  margin: 0;
}
.next-previous-link.next.info {
  text-align: right;
}
.next-previous-link a img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 3px;
  image-rendering: auto;
}
h4.parent-link {
  padding: 10px 0;
  text-align: right;
}
h4.parent-link a:hover {
  color: #1395c7;
}
@media screen and (max-width: 600px) {
  .next-previous-link a img {
    display: none;
  }
  .next-previous-link .info {
    padding: 0;
  }
}
/* FAQS */
section.faq .max-width {
  max-width: 720px;
}
.ccm-faq-block-links ol li a:hover {
  color: #1395c7;
}
/* GOOGLE REVIEWS */
section.google-reviews {
  margin: 0;
  padding: 45px 5%;
  background-size: cover;
  min-height: 66vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
section.google-reviews:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 247, 249, 0.75);
}
section.google-reviews .max-width {
  max-width: 1150px;
  margin: 0 auto;
}
div#google-reviews {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  justify-content: flex-start;
}
div.reviews-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 10;
  max-width: calc(90vw);
}
div.review-item {
  flex: 0 0 100%;
  text-align: center;
  background-image: url(/application/themes/aurora/css/assets/diagonals-4px.png);
  image-rendering: -moz-crisp-edges;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(246, 247, 249, 0.75);
}
div.review-item img {
  width: 72px;
  height: 72px;
  image-rendering: auto;
}
div.review-inner {
  max-width: 720px;
  margin: 0 auto;
}
div.review-meta {
  color: #fafafa;
}
div.review-stars ul {
  list-style: none;
  display: flex;
  color: #bb9a35;
  margin: 0 auto;
  justify-content: center;
}
div.review-stars ul li {
  margin: 0 2px;
}
div.reviews-controls {
  display: flex;
  justify-content: center;
  color: #f6f7f9;
  font-size: 28px;
  margin-top: 10px;
  z-index: 10;
  position: relative;
}
div.reviews-controls div {
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
div.reviews-controls div:hover {
  color: #fafafa;
}
/* STANDARD PAGE LIST */
/* BLOG PAGE LIST */
section.blog-page-list .max-width {
  max-width: 1150px;
}
section.blog-page-list .blog-page-list-item {
  border-bottom: 1px solid #ffffff;
}
.blog-page-list-item .image a:after {
  color: #fafafa;
}
.blog-page-list-item .info h4 a {
  color: #657378;
}
section.title-block p.author,
.blog-page-list-item .info p.author {
  display: flex;
  font-size: 11px;
  align-items: center;
  color: #1395c7;
  font-weight: 500;
  margin: 0 0 15px 0;
  cursor: default;
  text-align: center;
  justify-content: center;
}
p.author img.u-avatar {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  margin-right: 8px;
}
.blog-page-list-item .info p.author {
  justify-content: flex-start;
}
.blog-page-list-item .info p.topic {
  letter-spacing: 0.02em;
  color: #fafafa;
  background: #fbb80c;
  background: linear-gradient(158deg, #fbb80c 0%, #f07c4c 35%, #eb5b82 100%);
  font-size: 0.875em;
  font-weight: 500;
}
.blog-page-list-item .info p.author span,
section.title-block p.author span {
  color: #363e41;
}
.blog-page-list-item:hover .info h4 a {
  color: #1395c7;
}
/* BLOG LIST SHARING */
div.list-sharing-icon {
  color: #1395c7;
}
a.socials-item {
  color: #657378;
}
a.socials-item:hover {
  color: #1395c7;
}
/* OLD STYLE 2 COLUMN PAGE */
section.main-content {
  padding: 0 5%;
  margin: 45px 0;
}
section.main-content .row {
  display: flex;
}
section.main-content .lhs {
  width: 60%;
}
section.main-content .rhs {
  width: 35%;
  margin-left: 5%;
}
section.main-content .lhs img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
section.main-content ul {
  margin: 15px 0;
  list-style: none;
}
section.main-content ul li {
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1.75em;
  margin: 1em 0;
  position: relative;
  padding-left: 25px;
}
section.main-content ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-color);
}
@media screen and (max-width: 860px) {
  section.main-content .row {
    flex-direction: column;
  }
  section.main-content .lhs {
    width: 100%;
  }
  section.main-content .rhs {
    width: 100%;
    margin-left: 0;
  }
}
