:root {
  --dark-blue-color: #0c2131;
  --dark-blue-color-lighter: #122839;
  --light-blue-color: #5ac9e8;
  --mid-blue-color: #7117cc;
  --nav-background-color: #472486;
  --orange-gradient: linear-gradient(45deg, #ffc770, #ff9a41, #ffc770) border-box;
  --cyan-color: #5ac9e8;
  --purple-color: #e33fff;
  --blue-gradient: linear-gradient(90deg, #5ac9e8, #e33fff, #5ac9e8, #e33fff) border-box;
  --light-blue-text-color: #a7b5c8;
  --mid-blue-text-color: #798391;
  --black-color: #111;
  --orange-color: #ff9a41;
  --multi-gradient: linear-gradient(-45deg, #38a4ff, #6648bd, #ffa900) border-box;
  --blue-stripes: repeating-linear-gradient(45deg, var(--dark-blue-color-lighter), var(--dark-blue-color-lighter) 4px, var(--dark-blue-color) 4px, var(--dark-blue-color) 8px);
  --light-blue-stripes: repeating-linear-gradient(45deg, var(--light-blue-color), var(--light-blue-color) 4px, var(--mid-blue-color) 4px, var(--mid-blue-color) 8px);
  --outer-glow: 0 0 24px #6066a5 inset, 0 0 12px #009fff70;
  --outer-glow-less: 0 0 12px #6066a5 inset, 0 0 6px #009fff70;
}
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: #fefefe;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: var(--cyan-color);
  font-weight: 600;
}
a:hover {
  text-decoration: none;
  color: #52585e;
}
section.horizontal-rule {
  padding: 0 5%;
}
hr {
  display: block;
  margin: 25px 0;
  height: 1px;
  background: #eee;
  width: 100%;
  border: none;
}
.max-width {
  max-width: 1150px;
  margin: 0 auto;
}
a.button {
  display: inline-block;
  padding: 0 16px;
  background: var(--cyan-color);
  color: #fff;
  font-size: 0.9375em;
  font-weight: 500;
  transition: all 0.3s;
  /*	box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 0 12px rgba(255,255,255,0.0) inset; */
  height: 48px;
  line-height: 48px;
}
a.std-button,
.ccm-form .btn-primary,
button.std-button,
select.button {
  background: var(--cyan-color);
  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);
  text-transform: uppercase;
  background-size: 150%;
  background-position: center right;
}
a.std-button.fade {
  background: #ed499d;
  color: #fff;
}
a.std-button:hover,
.ccm-form .btn-primary:hover,
button.std-button:hover,
a.button:hover {
  transition: all 0.3s;
  background-position: center left;
}
a.std-button.outlined {
  background: transparent;
  position: relative;
  padding: 15px 30px;
  text-shadow: none;
  color: #fff;
  transition: all 0.3s;
  animation: glow 4s linear infinite;
  border-radius: 12px;
}
a.std-button.outlined.solid {
  background: var(--dark-blue-color-lighter);
}
@keyframes glow {
  0% {
    box-shadow: var(--outer-glow);
  }
  50% {
    box-shadow: var(--outer-glow-less);
  }
  100% {
    box-shadow: var(--outer-glow);
  }
}
@keyframes rotate {
  0% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 200% 200%;
    background-position: center right;
    filter: brightness(1.5);
  }
  100% {
    background-size: 100% 100%;
  }
}
.outlined:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  background: var(--blue-gradient);
  background-position: center left;
  -webkit-mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  transition: all 0.5s;
  background-size: 100% 100%;
  animation: rotate 3s linear infinite;
}
.outlined:after {
  filter: blur(3px);
}
a.std-button.outlined:hover {
  background: transparent;
}
a.std-button.outlined.solid:hover {
  background: var(--dark-blue-color);
}
a.std-button.smaller {
  font-size: 1em;
  padding: 10px 20px;
}
span.nowrap {
  white-space: nowrap;
}
h1 {
  font-weight: 600;
  font-style: normal;
  color: var(--dark-blue-color);
  margin: 30px 0;
  font-size: 2.5em;
  letter-spacing: 0em;
  line-height: 1em;
  position: relative;
  text-transform: uppercase;
}
h2 {
  font-weight: 500;
  font-style: normal;
  color: #52585e;
  margin: 15px 0;
  font-size: 2em;
  letter-spacing: 0em;
  line-height: 1em;
  text-transform: uppercase;
}
h3 {
  font-weight: 500;
  font-style: normal;
  color: #52585e;
  margin: 15px 0;
  font-size: 1.375em;
  letter-spacing: 0em;
  line-height: 1em;
}
h4 {
  color: #52585e;
  font-size: 1.125em;
}
p {
  line-height: 1.75em;
  margin: 15px 0;
  color: #52585e;
  font-size: 1em;
}
ul li {
  color: #52585e;
}
p.button {
  margin-top: 30px;
}
p strong {
  font-weight: 600;
}
blockquote {
  padding: 15px 5%;
  background: var(--purple-color);
  position: relative;
  margin: 30px 0;
  border-radius: 12px;
}
blockquote:after,
blockquote:before {
  content: '\f10e';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  bottom: 0;
  right: 5%;
  font-weight: 700;
  font-size: 50px;
  transform: translate(0, 20%);
  color: #fefefe;
}
blockquote:before {
  color: var(--purple-color);
  transform: translate(5px, calc(22%));
}
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: #ffffff !important;
}
blockquote p:nth-of-type(2):before {
  content: '\f178';
  font-family: 'Font Awesome 5 Pro';
  margin-right: 5px;
}
/* HEADER */
#header-spacer.opaque {
  height: 120px;
  background: var(--dark-blue-color);
}
header#main-header.nav-up {
  transform: translateY(-100%);
}
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: 800;
  transition: all 0.3s;
}
/* Bottom Header */
header#main-header .bottom-header {
  padding: 0 5%;
  background: rgba(12, 33, 49, 0.9);
  position: relative;
  height: auto;
  transition: all 0.3s;
}
header#main-header.transparent-bg .bottom-header {
  background: transparent;
}
header#main-header .bottom-header .wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  height: 120px;
  max-width: 1440px;
}
header#main-header.nav-up div.logo a {
  padding: 7px 0 0;
}
header#main-header div.logo {
  width: 140px;
  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 svg,
header#main-header div.logo a img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.3s;
}
/* Logo Animation */
@keyframes gradient-animation {
  0% {
    stop-color: #a85ca3;
  }
  50% {
    stop-color: #5ac9e8;
  }
  100% {
    stop-color: #a85ca3;
  }
}
.st1 {
  display: inline;
  stroke: url(/application/themes/aurora/css/#SVGID_5_);
}
#SVGID_5_ stop:nth-child(1) {
  animation: gradient-animation 3s infinite;
}
/* MAIN NAV */
nav#main-nav.desktop {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 100%;
  max-width: 860px;
}
nav#main-nav.desktop ul {
  display: flex;
  list-style: none;
  color: #fff;
  justify-content: flex-end;
}
nav#main-nav.desktop ul > li {
  z-index: 10;
}
nav#main-nav.desktop ul li {
  margin: 0 2px;
  /*position:relative;*/
}
nav#main-nav.desktop ul li a {
  color: #fff;
  display: block;
  padding: 0.375em 1em;
  font-size: 1em;
  transition: all 0.3s;
  border-radius: var(--button-border-radius);
  font-weight: 500;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0), 0 1px 2px rgba(0, 0, 0, 0);
  text-transform: uppercase;
}
nav#main-nav.desktop ul li a img {
  display: none;
}
nav#main-nav.desktop ul li:hover > a,
nav#main-nav.desktop ul li > a.nav-path-selected,
nav#main-nav.desktop ul li:hover > .nav-wrapper a {
  border-radius: 3px;
  color: var(--cyan-color);
  /*clip-path: ~"polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%)";*/
}
/* Sub Nav */
nav#main-nav.desktop .nav-dropdown:hover > .subnav {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
/* First Level */
nav#main-nav.desktop div.subnav {
  padding: 5px 0;
  position: absolute;
  top: 37px;
  right: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.5s;
  width: 100%;
}
/* Second Level */
nav#main-nav ul li div.expand {
  display: none;
}
nav#main-nav.desktop ul ul div.subnav {
  right: 200px;
  top: 0;
  padding: 0 5px 0 0;
}
nav#main-nav.desktop ul ul {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: var(--nav-background-color);
  overflow: hidden;
  padding: 5px;
  border-radius: 5px;
}
nav#main-nav.desktop ul ul li {
  margin: 5px;
  width: calc(33.333% - 10px);
}
nav#main-nav.desktop ul ul li a {
  border-radius: 0;
  font-size: 0.75em;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  padding: 5px;
}
nav#main-nav.desktop ul ul li a span {
  display: block;
}
nav#main-nav.desktop ul ul li a span.title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
}
nav#main-nav.desktop ul ul li a span.subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan-color);
}
nav#main-nav.desktop ul ul li:hover a {
  background: var(--mid-blue-color) !important;
  box-shadow: none !important;
}
nav#main-nav.desktop ul ul li a img {
  display: block;
  width: 64px;
  height: 64px;
  margin-right: 10px;
  border-radius: 3px;
}
nav#main-nav.desktop div.subnav.portrait {
  width: 300px;
}
nav#main-nav.desktop div.subnav.portrait ul {
  flex-direction: column;
}
nav#main-nav.desktop div.subnav.portrait ul li {
  width: 100%;
}
/* MOBILE BURGER */
#mobile-burger {
  display: none;
  flex-direction: column;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 5%;
  top: 50px;
  transform: translateY(-50%);
  justify-content: center;
  z-index: 900;
  cursor: pointer;
}
#mobile-burger span {
  width: 100%;
  height: 4px;
  background: #fff;
  display: block;
  margin: 3px auto;
  transition: all 0.3s;
  border-radius: 3px;
}
#mobile-burger:hover span {
  background: var(--cyan-color);
}
#mobile-burger.opened span {
  background: #fff;
  border-radius: 3.5px;
}
#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 */
div.blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: none;
}
div.blackout.reveal {
  display: block;
}
nav#mobile-nav {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  z-index: 850;
  max-width: 400px;
  padding: 90px 0 0 0;
  transform: translateX(100%);
  transition: all 0.3s;
}
nav#mobile-nav.opened {
  transform: translateX(0);
}
nav#mobile-nav.nav-up {
  top: 75px;
}
nav#mobile-nav ul {
  list-style: none;
}
nav#mobile-nav ul li {
  position: relative;
  border-bottom: 1px solid #333;
}
nav#mobile-nav img,
nav#mobile-nav .subtitle {
  display: none;
}
nav#mobile-nav .nav-wrapper {
  display: flex;
  justify-content: space-between;
}
nav#mobile-nav ul li a {
  color: #fff;
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  display: block;
  transition: all 0.3s;
  font-weight: 300;
  font-size: 1.25em;
  width: calc(100% - 48px);
}
nav#mobile-nav ul a:hover {
  color: var(--cyan-color);
}
/* 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;
}
nav#mobile-nav ul li div.expand.opened .wrapper:before {
  transform: scaleY(-1);
}
nav#mobile-nav ul li div.expand .wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: var(--cyan-color);
  border-radius: 50%;
}
nav#mobile-nav ul li div.expand .wrapper:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 8px;
  background: var(--black-color);
  clip-path: polygon(1px 0, calc(100% - 1px) 0,100% 1px, 50% 100%, 0 1px);
  transition: all 0.3s;
}
/* Subnav */
nav#mobile-nav ul ul {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--dark-blue-color);
}
nav#mobile-nav ul ul li {
  border-bottom: none;
}
nav#mobile-nav ul ul li a {
  height: 48px;
  line-height: 48px;
  font-size: 1em;
}
nav#mobile-nav ul ul li:hover > a {
  background: #f0f0f0;
}
/* SLIDER */
/* MAIN IMAGE */
/* MOBILE VIEW */
@media screen and (max-width: 1023px) {
  header#main-header div.logo a svg,
  header#main-header div.logo a img {
    height: auto;
    transition: all 0.3s;
    padding-top: 10px;
  }
  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: #fefefe;
  border-top: 1px solid #ffffff;
}
section.standard-panel .max-width {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
section.icon-list-alt .wrapper {
  background: var(--dark-blue-color);
}
section.icon-list-alt .icon,
section.icon-list-alt .icon:nth-of-type(2) {
  background: var(--dark-blue-color);
  padding: 30px 30px 80px 30px;
  flex: 0 0 33.333%;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  max-width: 480px;
}
section.icon-list-alt .icon .image {
  transform: none;
}
section.icon-list-alt .icon .image span {
  background: none;
  box-shadow: none;
  height: 70px;
  width: 90px;
}
section.icon-list-alt .icon i {
  background: var(--orange-gradient);
  /* Clip the background to the text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5em;
}
section.icon-list-alt .info h4 {
  color: #fff;
  text-transform: uppercase;
}
section.icon-list-alt .info p {
  color: var(--light-blue-text-color);
}
section.icon-list-alt .icon .info p.button {
  bottom: 30px;
}
@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%;
  }
}
/* 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, #f0f0f0 0%, #f0f0f0 33%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 33%, rgba(240, 240, 240, 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: #f0f0f0;
}
div.person p.position {
  font-size: 0.875em;
  margin: 0;
  font-weight: 700;
  color: #52585e;
  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 {
  background: var(--blue-gradient);
  background-size: 200%;
  background-position: right;
}
section.social-media .max-width {
  max-width: 1150px;
}
section.social-media h2 {
  color: #fff;
  letter-spacing: 0em;
}
section.social-media p {
  color: #fff;
  font-weight: 500;
}
section.social-media ul li a {
  color: #115886;
  background: #fff;
  border-radius: 3px;
}
section.social-media ul li a:hover {
  background: var(--cyan-color);
}
/* FOOTER */
footer#footer {
  padding: 50px 5% 90px 5%;
  background: var(--dark-blue-color);
  color: var(--light-blue-color);
}
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: #3a3e43;
  font-weight: 500;
}
footer#footer p.contact a {
  margin: 0 10px;
}
footer#footer .address p {
  color: #949bb8;
  margin: 0;
  font-size: 0.875em;
}
footer#footer p.copyright,
footer#footer p.terms {
  font-size: 0.875em;
  color: #949bb8;
}
footer#footer p.credit {
  font-size: 0.75em;
  color: #949bb8;
}
footer#footer a {
  transition: all 0.3s;
  color: #fff;
  font-weight: 500;
}
footer#footer a:hover {
  color: var(--cyan-color);
}
/* CALL TO ACTION */
div.call-to-action {
  margin-bottom: 30px;
}
div.call-to-action p {
  margin-top: 0;
  font-size: 1.5em;
}
div.call-to-action p.cta {
  font-size: 1em;
  max-width: 640px;
  margin: 1em auto;
}
div.call-to-action p,
div.call-to-action a {
  color: #fff;
}
/* FOOTER NAV */
section.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: all 1s;
  z-index: 500;
}
section.footer-nav.visible {
  transform: translateY(0);
}
nav.footer-nav ul {
  list-style: none;
  display: flex;
}
nav.footer-nav ul li {
  margin: 0 10px;
}
nav.footer-nav ul li a {
  color: var(--dark-blue-color);
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  display: block;
}
nav.footer-nav ul li a:hover {
  color: var(--cyan-color);
}
nav.footer-nav ul li a i {
  display: block;
  font-size: 18px;
}
section.footer-nav .ccm-block-social-links {
  font-size: 2em;
}
section.footer-nav .ccm-block-social-links a {
  color: var(--dark-blue-color);
}
/* 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: #52585e;
}
div.view-contact-form {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}
section.contact-form {
  padding: 0 5%;
}
section.contact-form.modal-form {
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
section.contact-form.modal-form.opened {
  opacity: 1;
  pointer-events: all;
}
section.contact-form.modal-form .max-width {
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  max-height: 80vh;
  overflow-y: auto;
  width: 100%;
  border-radius: 12px;
}
.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: #6a7279;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 1.375em;
  display: none;
}
section.contact-form .form-group {
  margin-bottom: 20px;
}
section.contact-form .form-group.captcha {
  transform: scale(0.75);
  transform-origin: top left;
  margin-bottom: 0;
}
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, #6fd0ff 0%, #5e57c8 35%, #6fd0ff 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 #6fd0ff, 0 0 2px #6fd0ff;
}
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: #52585e;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background: #ececec;
  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: #52585e;
  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,
div.input.enquiry:after {
  top: 10px !important;
  transform: none !important;
  content: '\f303';
}
section.contact-form textarea {
  min-height: 247px;
}
/* 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: #f1f1f1;
  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: #f6f6f6;
  outline: none;
  border: 2px solid #ed499d;
}
section.contact-form label,
.store-product-block label,
.store-checkout-page label {
  line-height: 1.5em;
  margin: 0 0 5px 0;
  color: #52585e;
  font-size: 1em;
  font-weight: 500;
  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: #fefefe !important;
}
.gm-style .gm-style-iw-t::after {
  background: #fefefe !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: #52585e;
  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: #fefefe;
  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: #f1f1f1;
}
section.testimonials .max-width {
  max-width: 1150px;
}
/* SINGLE TESTIMONIAL */
section.single-testimonial {
  padding: 0 5%;
  margin: 75px 0;
}
section.single-testimonial .testimonial-wrapper {
  border-radius: 12px;
  background: var(--purple-color);
  padding: 30px 5%;
  position: relative;
}
section.single-testimonial .testimonial-wrapper:before,
section.single-testimonial .testimonial-wrapper:after {
  content: '\f10e';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  bottom: 0;
  right: 5%;
  font-weight: 700;
  font-size: 72px;
  transform: translate(0, 40%);
  color: #fefefe;
}
section.single-testimonial .testimonial-wrapper:before {
  color: var(--purple-color);
  transform: translate(5px, calc(45%));
}
section.single-testimonial .testimonial-paragraph p {
  font-weight: 500;
  font-size: 1.25em;
  color: #fff;
  max-width: 800px;
}
section.single-testimonial p.author {
  color: #fff;
}
/* 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: #f0f0f0;
}
a.socials-item {
  color: #52585e;
}
a.socials-item:hover {
  color: #f0f0f0;
}
/* 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 p.introduction {
  font-weight: 500;
  margin-bottom: 30px;
}
section.blog-content ul {
  list-style: none;
  margin: 20px 0;
}
section.blog-content ul li,
.cke_wysiwyg_div ul li {
  color: #6a7279;
  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: 3px;
  left: 0;
  font-size: 12px;
}
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 #cbcbcb;
  padding-bottom: 10px;
}
/* SITE ADMIN */
section.admin-panel {
  padding: 45px 5%;
  margin: 45px 0;
}
section.admin-panel h3 {
  color: #52585e;
}
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: 500;
  font-style: normal;
  text-transform: uppercase;
  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: #fefefe;
}
.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: #f0f0f0;
}
.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: #ed499d;
}
@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: #ed499d;
}
/* 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(254, 254, 254, 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(254, 254, 254, 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: #f0f0f0;
  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 {
  background: var(--blue-stripes);
}
section.blog-page-list .max-width {
  max-width: 1150px;
}
section.blog-page-list .blog-page-list-item {
  border-bottom: 1px solid #2a5475;
}
.blog-page-list-item .image a:after {
  color: #fafafa;
}
section.title-block p.author,
.blog-page-list-item .info p {
  color: #fff;
  font-weight: 500;
}
section.title-block p.author,
.blog-page-list-item .info p.author {
  display: flex;
  font-size: 11px;
  align-items: center;
  color: var(--cyan-color);
  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: var(--blue-gradient);
  font-size: 0.875em;
  font-weight: 500;
  background-size: 400%;
}
.blog-page-list-item .info p.author span,
section.title-block p.author span {
  color: #222528;
}
.blog-page-list-item .info p.author span {
  color: #fff;
}
.blog-page-list-item:hover .info h4 a {
  color: var(--cyan-color);
}
/* BLOG LIST SHARING */
div.list-sharing-icon {
  color: var(--cyan-color);
}
a.socials-item {
  color: #52585e;
}
a.socials-item:hover {
  color: #ed499d;
}
.blog-page-list-item a.socials-item {
  color: #fff;
}
.blog-page-list-item a.socials-item:hover {
  color: var(--cyan-color);
}
/* IMAGE SLIDER */
.ccm-image-slider-text p strong {
  color: #fff;
  text-shadow: 0 0 24px var(--cyan-color);
}
/* GALLERY */
section.gallery {
  padding: 0 5%;
  margin: 45px 0;
}
section.gallery.grid .gallery-wrapper {
  max-width: 1650px;
  margin: 0 auto;
}
section.gallery.grid .ccm-block-gallery-image {
  position: relative;
}
section.gallery.grid .ccm-block-gallery-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
section.gallery.grid a:hover .ccm-block-gallery-image:before {
  background: rgba(0, 0, 0, 0);
}
section.gallery .row {
  display: flex;
  flex-wrap: wrap;
}
section.gallery a.image {
  display: block;
  width: 24%;
  margin: 0.5%;
}
section.gallery a.image img {
  display: block;
  width: 100%;
  height: auto;
}
/* YOUTUBE VIDEO */
section.youtube-video {
  margin: 75px 0;
  padding: 0 5%;
}
section.youtube-video iframe {
  border: none;
}
/* Client Briefs */
.briefs {
  position: relative;
  width: 100%;
  height: auto;
  padding: 40px 4%;
}
.briefs .max-width {
  max-width: 900px;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
.briefs ul {
  display: flex;
  position: relative;
  width: 100%;
  list-style: none;
  justify-content: center;
}
.briefs li {
  width: 25%;
}
.briefs .tab {
  padding: 10px 15px;
  background: var(--dark-blue-color-lighter);
  color: #fefefe;
  border-radius: 9px;
  font-weight: 500;
  width: 90%;
  cursor: pointer;
}
.briefs .tab:hover {
  background: var(--mid-blue-color);
  transition: all 0.3s;
}
.tab-1-form,
.tab-2-form,
.tab-3-form,
.tab-4-form {
  display: none;
}
.tab-1-form .max-width,
.tab-2-form .max-width,
.tab-3-form .max-width,
.tab-4-form .max-width {
  max-width: 900px;
  width: 100%;
  position: relative;
}
.display-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
.tab-1-form .ccm-dashboard-express-form,
.tab-2-form .ccm-dashboard-express-form,
.tab-3-form .ccm-dashboard-express-form,
.tab-4-form .ccm-dashboard-express-form {
  display: flex;
  flex-direction: column;
}
.tab-1-form section.contact-form,
.tab-2-form section.contact-form,
.tab-3-form section.contact-form,
.tab-4-form section.contact-form {
  padding: 0;
}
.briefs .alert-success {
  background: #3c9cf9;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  color: #fefefe;
  font-weight: 600;
}
@media only screen and (max-width: 650px) {
  .briefs ul {
    flex-direction: column;
  }
  .briefs li {
    width: 100%;
    margin-bottom: 10px;
  }
  .briefs .tab {
    width: 100%;
  }
}
