/*
# ------------------------------------------------------
# 		VARIABLES
# ------------------------------------------------------
*/
:root {
  --primary: #0a1529;
  --secondary: #123585;
  --white: #fff;
  --off-white: #f3f6fb;
  --light-blue: #818fb2;
  --blue: #123585;
  --pink: #fb3e6c;
  --black: #0a1529;
  --charcoal: #515760; }

html, body {
  width: 100vw;
  /*overflow-x: hidden; */ }

@keyframes fadeIn {
  to {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; } }
body {
  font-family: "Albert Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 150%;
  background: var(--black);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-animation: fadeIn 3s forwards;
  -webkit-animation: fadeIn 3s forwards;
  animation: fadeIn 3s forwards; }

h1, h2, h3, h4, h5, h6, h7, p, ul, ol, li {
  margin: 0;
  padding: 0; }

h1 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400; }

h2 {
  font-family: "Albert Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: -1px;
  padding-bottom: 1rem; }
  @media (min-width: 992px) {
    h2 {
      font-size: 3.5rem; } }

h3 {
  font-family: "Albert Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  padding-bottom: 2.5rem; }
  @media (min-width: 992px) {
    h3 {
      font-size: 1.5rem; } }

p {
  padding-bottom: 2rem;
  line-height: 180%;
  font-size: 1.15rem; }

a {
  color: var(--secondary);
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer; }
  a:hover {
    text-decoration: none;
    color: var(--pink); }

img {
  display: block;
  max-width: 100%; }

blockquote {
  padding: 1.5rem 0; }
  blockquote p {
    font-size: 3rem;
    color: var(--pink);
    font-weight: 700;
    line-height: 130%; }

p.shaped img {
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-image: url(/site/img/shaped-mask.svg);
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1; }
p.shaped:before {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: url("/site/img/shaped-bg.svg");
  background-size: contain;
  background-repeat: no-repeat; }

/*
# ------------------------------------------------------
# 		ADMIN ADDITIONS
# ------------------------------------------------------
*/
.editBtn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  position: absolute !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  z-index: 550; }
  .editBtn a {
    color: var(--yellow) !important; }
  .editBtn:hover {
    color: var(--yellow) !important; }

div:hover > .editBtn {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1; }
  div:hover > .editBtn a {
    color: var(--yellow) !important; }

.mobile-break {
  display: block; }
  @media (min-width: 992px) {
    .mobile-break {
      display: inline; } }

.mobile-hide {
  display: none; }
  @media (min-width: 992px) {
    .mobile-hide {
      display: inline; } }

.blue {
  color: var(--blue) !important; }
  .blue:hover {
    color: var(--pink) !important; }

.pink {
  color: var(--pink) !important; }

.hide {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  /*overflow: hidden; */ }

.highlight {
  color: var(--pink) !important; }

.btn {
  border-radius: 30px;
  padding: 10px 30px;
  border: solid 2px var(--pink);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background: var(--pink);
  color: var(--white); }

@media (min-width: 992px) {
  .curved-bottom {
    padding-bottom: 0;
    z-index: 10;
    position: relative; }
    .curved-bottom .container {
      position: relative;
      z-index: 10; }
    .curved-bottom .curved-bottom-bit {
      position: absolute;
      width: 100vw;
      height: 40vw;
      z-index: 3;
      bottom: -5vw;
      overflow-x: hidden; }
      .curved-bottom .curved-bottom-bit:before {
        display: block;
        border-radius: 100%;
        background: var(--off-white);
        content: '';
        height: 100%;
        width: 190vw;
        left: -45vw;
        position: absolute; } }
.curved-bottom + div {
  padding-top: 13vw; }

.blue-bg {
  background: var(--blue);
  color: var(--white); }
  @media (min-width: 992px) {
    .blue-bg {
      padding-top: 10vw !important; } }

.header {
  background: var(--white);
  padding: 20px 0 5px 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: auto; }
  @media (min-width: 992px) {
    .header {
      position: sticky;
      top: 0;
      z-index: 20; } }
  .header h2 {
    font-size: 3rem;
    color: var(--blue);
    font-weight: 700;
    padding: 0; }
    .header h2 span {
      /*color: var(--light-blue); font-size: 60%; font-weight: 400; */ }
  .header h3 {
    top: -0.5rem;
    color: var(--pink);
    position: relative;
    padding: 0; }
    .header h3 a {
      color: var(--pink); }
  .header p {
    padding-bottom: 0; }
  .header a {
    text-decoration: none; }
    .header a span {
      -moz-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
    .header a:hover {
      color: var(--pink); }
      .header a:hover span {
        color: var(--pink); }

@media (min-width: 992px) {
  .nav-holder {
    -webkit-align-items: center;
    align-items: center; } }

.nav-block {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--blue);
  z-index: 90;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none; }
  .nav-block a {
    color: var(--white); }
  @media (min-width: 992px) {
    .nav-block {
      position: inherit;
      left: inherit;
      top: inherit;
      width: auto;
      height: auto;
      background: none;
      z-index: inherit;
      display: block;
      text-align: inherit;
      color: inherit;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
      -moz-transition: none;
      -o-transition: none;
      -webkit-transition: none;
      transition: none;
      pointer-events: auto; }
      .nav-block a {
        color: inherit; } }
  .nav-block .contact-details {
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: relative; }
    @media (min-width: 992px) {
      .nav-block .contact-details a {
        color: var(--pink); } }
    .nav-block .contact-details a.blue {
      color: var(--white) !important; }
      @media (min-width: 992px) {
        .nav-block .contact-details a.blue {
          color: var(--blue) !important; } }
  .nav-block .nav ul {
    list-style-type: none;
    width: 100%;
    padding-bottom: 50px; }
    .nav-block .nav ul li {
      line-height: 240%; }
      .nav-block .nav ul li a {
        font-size: 2rem; }
  @media (min-width: 992px) {
    .nav-block .nav {
      width: 100%;
      position: relative; }
      .nav-block .nav ul {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        padding-bottom: 10px; }
        .nav-block .nav ul li a {
          display: block;
          padding: 10px;
          text-decoration: none;
          font-size: inherit; }
        .nav-block .nav ul li:last-child a {
          padding-right: 0; }
        .nav-block .nav ul li.active > a, .nav-block .nav ul li.active-child > a, .nav-block .nav ul li:hover > a {
          color: var(--pink); }
        .nav-block .nav ul li:last-child > a {
          border-radius: 30px;
          padding: 10px 30px;
          border: solid 2px var(--pink);
          -moz-transition: all 0.6s ease-in-out;
          -o-transition: all 0.6s ease-in-out;
          -webkit-transition: all 0.6s ease-in-out;
          transition: all 0.6s ease-in-out;
          background: var(--pink);
          color: var(--white);
          padding: 5px 20px;
          background: var(--pink);
          color: var(--white);
          margin-left: 20px; }
        .nav-block .nav ul li:last-child:hover > a {
          color: var(--pink);
          background: transparent; } }

@media (min-width: 992px) {
  .scrolled .contact-details {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    display: none; } }

.page-content {
  background: var(--white); }

.footer {
  background: var(--black);
  color: var(--white); }
  .footer a {
    color: var(--white); }
  .footer .footer-intro {
    background: var(--blue);
    padding: 3rem 0;
    color: var(--white); }
    .footer .footer-intro .highlight {
      font-size: 2rem;
      color: var(--white) !important; }
      .footer .footer-intro .highlight a {
        color: var(--pink) !important;
        text-decoration: none; }
    .footer .footer-intro p {
      padding: 0; }
  .footer .footer-inner {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    .footer .footer-inner img {
      max-width: 350px; }

.footer-disclaimers {
  background: #000;
  text-align: right;
  padding: 10px 30px 10px 30px; }
  .footer-disclaimers a {
    color: var(--charcoal);
    text-decoration: none; }
    .footer-disclaimers a:hover {
      color: var(--pink); }
  .footer-disclaimers p {
    padding: 0; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: auto;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  font-size: 2rem;
  color: var(--pink); }

.scrolled .back-to-top {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  pointer-events: auto; }

.section-block {
  padding: 50px 0;
  position: relative; }

.intro-section {
  background: var(--off-white);
  padding-top: 15px; }
  .intro-section .col-lg-5 {
    margin: 0 30px 15px 30px; }
  .intro-section .col-lg-7 {
    order: 2; }
  @media (min-width: 992px) {
    .intro-section {
      padding-bottom: 10px;
      padding-top: 50px; }
      .intro-section .col-lg-5 {
        margin: inherit; }
      .intro-section .col-lg-7 {
        order: inherit; } }
  .intro-section .btn {
    background: var(--pink);
    color: var(--white); }
    .intro-section .btn:hover {
      color: var(--pink);
      background: transparent; }

@media (min-width: 992px) {
  .about-us {
    padding: 200px 0 150px 0; } }

.off-white-bg {
  background: var(--off-white); }

.services {
  background: var(--blue);
  position: relative; }
  .services .row {
    background: var(--off-white);
    position: relative; }
    @media (min-width: 992px) {
      .services .row {
        top: -100px;
        border-radius: 20px; }
        .services .row:after {
          position: relative;
          display: block;
          content: '';
          width: 100%;
          border: solid 1px var(--white);
          top: 50px;
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
          opacity: 0.5;
          margin: 0 100px; } }
  .services .services-intro {
    padding: 50px 0 10px 0; }
  .services .service .service-inner {
    padding: 0 20px !important;
    text-align: center; }
    .services .service .service-inner img {
      margin: 0 0 10px 0;
      max-width: 50%;
      margin: 0 auto 10px auto;
      display: none; }
    .services .service .service-inner h3 {
      font-size: 1.4rem;
      font-weight: 700;
      padding-bottom: 0.5rem;
      color: var(--pink);
      line-height: 100%;
      line-height: 130%; }
    .services .service .service-inner .service-intro {
      line-height: 150%; }
      .services .service .service-inner .service-intro p {
        line-height: 150%; }
    @media (min-width: 992px) {
      .services .service .service-inner {
        padding: 0; } }
  @media (min-width: 992px) {
    .services .service {
      position: relative; }
      .services .service:after {
        display: block;
        content: '';
        width: 1px;
        height: 80%;
        top: 10%;
        border-right: solid 1px var(--pink);
        position: absolute;
        right: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
        opacity: 0.5; }
		.services .service:last-child::after {
			border-right: 0;
		}
      .services .service:nth-child(3n+1):after {
        display: none; } }

.cmsdev-form label {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden; }
.cmsdev-form button.btn {
  background: var(--pink) !important; }
.cmsdev-form .form-control[required] {
  position: relative; }
  .cmsdev-form .form-control[required]:after {
    position: absolute;
    content: '*';
    color: var(--pink);
    right: 10px;
    top: 10px;
    display: block;
    z-index: 2;
    font-size: 100px; }
.cmsdev-form .form-response i {
  color: var(--pink); }
.cmsdev-form .has-error input, .cmsdev-form .has-error textarea {
  border-color: var(--pink) !important; }

.nav-opener {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 20px;
  overflow: hidden;
  z-index: 100; }
  @media (min-width: 992px) {
    .nav-opener {
      display: none; } }
  .nav-opener span {
    width: 100%;
    display: block;
    height: 2px;
    border-radius: 3px;
    background: var(--black);
    left: 0;
    position: absolute;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .nav-opener span:nth-child(1) {
      top: 0; }
    .nav-opener span:nth-child(2) {
      top: 9px; }
    .nav-opener span:nth-child(3) {
      bottom: 0; }

.mobile-visible {
  /* Icon 3 */ }
  .mobile-visible .nav-opener span {
    background: var(--white); }
  .mobile-visible .nav-opener span:nth-child(1) {
    top: 0; }
  .mobile-visible .nav-opener span:nth-child(2), .mobile-visible .nav-opener span:nth-child(3) {
    top: 5px; }
  .mobile-visible .nav-opener span:nth-child(1) {
    width: 0%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; }
  .mobile-visible .nav-opener span:nth-child(2) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px; }
  .mobile-visible .nav-opener span:nth-child(3) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px; }
  .mobile-visible .nav-block {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    pointer-events: auto; }

.gmap {
  background: var(--pink);
  width: 100%;
  height: 100%;
  min-height: 300px; }

.client-portal-opener {
  position: relative;
  padding-top: 20px; }

.section-login {
  padding: 50px 0; }
  .section-login .form {
    background: var(--off-white); }
    @media (min-width: 992px) {
      .section-login .form {
        padding: 20px; } }
  .section-login .form-group {
    margin: 0;
    position: relative; }
    .section-login .form-group label {
      display: block; }
    .section-login .form-group .form-control {
      width: 100%; }
    .section-login .form-group button {
      border: solid 3px var(--pink);
      border-radius: 50%;
      background: var(--pink);
      position: absolute;
      right: 5px;
      top: 4px;
      z-index: 10;
      width: 30px;
      height: 30px;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      color: var(--white);
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .section-login .form-group button:hover {
        background: var(--white);
        color: var(--pink); }

.bootbox-body h3 {
  padding: 0;
  color: var(--pink); }
.bootbox-body p {
  line-height: 130%;
  padding: 0; }
