@charset "UTF-8";
/*
	CSS Document for Stratus Admissions Counseling v.2.0
	Copyright 2024 Neuro-Designs. All rights reserved.
	www.neuro-designs.com
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
  }

body { line-height: 1; }

ol, ul {
	list-style: none;
  }

blockquote, q {
	quotes: none;
  }

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
  }

table {
	border-collapse: collapse;
	border-spacing: 0;
  }

/* -------------------------------------------------------------

  CSS Variables

------------------------------------------------------------- */

:root {
  --stratus-blue: #313790;
  --stratus-red: #f13c23;
  --stratus-grey: #6d6e70;
  --stratus-dark-blue: #252b68;

  --stratus-red-rgb: 241,60,35;
  --stratus-blue-rgb: 49,55,144;
  --stratus-grey-rgb: 109,110,112;
  --stratus-dark-blue-rgb: 37,43,104;

  --global-padding: 2rem;
  --global-padding-half: 1rem;
  --global-padding-double: 4rem;
  --global-padding-4x: 8rem;
  --global-border-radius: .4rem;
  --global-box-shadow: 0 2.5rem 5rem rgba(0,0,0,.35);
  }

/* -------------------------------------------------------------

  General Settings

------------------------------------------------------------- */

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
  }

*,
*:before,
*:after { /* Box Sizing Settings */
  box-sizing: border-box;
  }

::selection {
  background: var(--stratus-red);
  color: #fff;
  }

html,
body {
  height: 100%;
  font-size: 62.5%;
  }

body {
	background: #fff;
	font: 10px/20px 'Nunito Sans', sans-serif;
	color: #444;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	}

a {
	color: var(--stratus-red);
	font-weight: 700;
	text-decoration: none;
	}

	a:hover { color: #999; }

	.contents a:not([class]),
  footer a:not([class]) {
    border-bottom: 2px solid rgba(255,255,255,0);
    }

  .contents a:not([class]):hover,
  footer a:not([class]):hover {
  	border-bottom: 2px solid var(--stratus-red);
    }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .8em;
  color: var(--stratus-blue);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	}

	h1 {
  	font-size: 4.8em;
  	line-height: 1em;
	  }

	h2 {
  	margin-bottom: 1em;
  	font-size: 2.4em;
  	line-height: 1.45em;
    }

    h2.inverted { color: var(--stratus-red); }

    h2.lg {
      margin-bottom: .5em;
      font-size: 3.2em;
      line-height: 1.2em;
      }

      h2::before {
        display: block;
        background: var(--stratus-red);
        width: 48px;
        height: .5rem;
        margin-bottom: 0.375em;
        content: '';
        }

        .text-align-center h2::before,
        h2.text-align-center::before {
          display: block;
          margin-left: auto;
          margin-right: auto;
          }

        h2.inverted::before, h2.blue-stripe::before { background: var(--stratus-blue); }

        h2.lg::before { margin-bottom: .25em; }

        h2.blank::before { display: none; }

  h3 {
    margin-bottom: 1.2em;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2em;
    line-height: 1.8em;
  }

  h4,
  h5 {
    margin-bottom: 1.6em;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.7em;
    line-height: 1.8em;
    }

p,
pre,
figure,
table,
ul,
ol {
	margin-bottom: 1.6em;
	font-size: 1.7em;
	line-height: 1.8em;
	}

	p.lg { font-size: 2.2em; }

	p.intro {
  	color: var(--stratus-red);
  	margin-bottom: 1.2em;
  	font-size: 2.4em;
  	font-weight: 100;
  	line-height: 1.6em;
	  }

ul,
ol {
	padding-left: 2em;
	}

	ul li { list-style: disc outside; }

	ol li { list-style: decimal outside; }

	ul ul,
	ul ol,
	ol ul,
	ol ol {
		margin: 0;
		font-size: 1em;
		}

		ol ul li { list-style: disc; }

img {
	max-width: 100%;
  height: auto;
	vertical-align: middle;
	image-rendering: optimizeQuality;
  object-fit: contain;
	}

	figure img { width: 100%; /* inherit <figure>'s width */ }

	figcaption {
  	margin-top: .5em;
  	color: #999;
  	font-size: .8em;
  	font-style: italic;
  	text-align: center;
  	}

blockquote {
	margin: 0 0 1.6em 0;
	font-size: 1.7em;
	font-style: italic;
	font-weight: 200;
	line-height: 1.8em;
	}

strong { font-weight: 700; }

em,
cite {
	font-style: italic;
	}

small,
sup,
sub { font-size: 0.8em; }

sup {
	position: relative;
	top: -0.6em;
	}

sub {
	position: relative;
	bottom: -0.6em;
	}

hr {
	clear: both;
	width: 100%;
	height: 0;
	margin: 3em 0 3em 0;
	border: none;
	border-top: 1px solid var(--stratus-red);
	font-size: 1.7em;
	line-height: 1.6em;
	}

table.default thead tr th {
background: #eee;
border-bottom: none;
color: var(--stratus-blue);
font-weight: 700;
text-align: left;
vertical-align: middle;
}

table.default thead th.overhead {
  background: var(--stratus-red);
  color: #fff;
}

table.default thead tr:first-child th:first-child {
  text-align: left;
  vertical-align: bottom;
  border-bottom: 1px solid var(--stratus-red);
  }

table.default thead tr:last-child th { border-bottom: 1px solid var(--stratus-red); }

table.default td,
table.default th {
  display: table-cell;
  padding: .5em 0.75em;
  border: 1px solid #ccc;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
   }

/* -------------------------------------------------------------

  Default Input Settings (encapsulate with <p> when possible)

------------------------------------------------------------- */

input,
textarea,
select {
	font-family: 'Nunito Sans', sans-serif;
	outline: none;
	}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  max-width: 100%;
	background: rgba(0,0,0,.05);
  padding: 1rem 1rem !important;
	border: 1px solid rgba(0,0,0,.015);
	font-size: 1em;
	}

	textarea {
		max-width: 100%;
		min-height: 6em;
		}

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  textarea:focus {
    background: rgba(var(--stratus-blue-rgb),.15);
    border-bottom: 1px solid rgba(var(--stratus-blue-rgb),.5);
    }

select { font-size: 1em; }

input[type="search"] { -webkit-appearance: none; }

input[type="submit"],
input[type="button"],
button,
.button {
	display: inline-block;
	background: var(--stratus-red);
	margin-bottom: .25em;
	padding: .5rem 3rem;
	color: #fff !important;
	border: 1px solid var(--stratus-red);
	border-radius: var(--global-border-radius);
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	-webkit-appearance: none;
	}

	input[type="submit"]:hover,
	input[type="button"]:hover,
	button:hover,
	.button:hover {
		background: #fff !important;
		color: var(--stratus-red) !important;
		box-shadow: var(--global-box-shadow);
		transform: scale(1.05);
		}

    .button.lg { font-size: 1.33em; }

    .button.inverted { background: var(--stratus-blue); }

      .button.inverted:hover { background: #fff !important; }

.required { color: var(--stratus-red); }

input.grey {
  background: #ccc;
  border-color: #ccc;
  color: #999;
  }

/* -------------------------------------------------------------

  Additional Classes and Overrides

------------------------------------------------------------- */

#CybotCookiebotDialog ul li { list-style: none; }

/* -------------------------------------------------------------
  Sizings
------------------------------------------------------------- */

.size-lg { font-size: 1.33em; }

/* -------------------------------------------------------------
  Font Stylings
------------------------------------------------------------- */

.text-normal { font-weight: normal; }

.text-align-center { text-align: center; }

.text-align-right { text-align: right; }

.text-underline { text-decoration: underline; }

.text-linethrough { text-decoration: line-through; }

.text-uppercase { text-transform: uppercase; }

.text-monospace { font-family: monospace; }

/* -------------------------------------------------------------
  Colors
------------------------------------------------------------- */

.shaded { background: #eee; }

.shaded-red { background: rgba( var(--stratus-red-rgb),.05 ); }

.shaded-blue { background: rgba( var(--stratus-blue-rgb),.05 ); }

/* -------------------------------------------------------------
  Box Model
------------------------------------------------------------- */

.width-full { width: 100%; }

.hidden { display: none !important; }

.overflow-hidden { overflow: hidden; }

.margin-none { margin: 0; }

  .margin-none-top { margin-top: 0; }

.margin { margin: 1em; }

.margin-top { margin-top: 1em; }

.margin-bottom { margin-bottom: 1em; }

.margin-half-bottom { margin-bottom: .5em; }

.margin-double-bottom { margin-bottom: 2em; }

.margin-left { margin-left: 1em; }

.margin-right { margin-right: 1em; }

.margin-sides {
  margin-left: 1em;
  margin-right: 1em;
  }

.margin-top-bottom {
  margin-top: 1em;
  margin-bottom: 1em;
  }

/*
  Note: When considering responsive layouts that may adjust itself
  significantly and look undesireable when stacked, consider using
  individual/paired padding classes instead of .padding
*/

.padding { padding: var(--global-padding); }

.padding-top { padding-top: var(--global-padding); }

.padding-bottom { padding-bottom: var(--global-padding); }

.padding-left { padding-left: var(--global-padding); }

.padding-right { padding-right: var(--global-padding); }

.padding-sides {
  padding-left: var(--global-padding);
  padding-right: var(--global-padding);
  }

.padding-top-bottom {
  padding-top: var(--global-padding);
  padding-bottom: var(--global-padding);
  }

.padding-4x { padding: var(--global-padding-4x); }

.padding-4x-top { padding-top: var(--global-padding-4x); }

.padding-4x-bottom { padding-bottom: var(--global-padding-4x); }

.padding-4x-left { padding-left: var(--global-padding-4x); }

.padding-4x-right { padding-right: var(--global-padding-4x); }

.padding-4x-sides {
  padding-left: var(--global-padding-4x);
  padding-right: var(--global-padding-4x);
  }

.padding-4x-top-bottom {
  padding-top: var(--global-padding-4x);
  padding-bottom: var(--global-padding-4x);
  }

.padding-double { padding: var(--global-padding-double); }

.padding-double-top { padding-top: var(--global-padding-double); }

.padding-double-bottom { padding-bottom: var(--global-padding-double); }

.padding-double-left { padding-left: var(--global-padding-double); }

.padding-double-right { padding-right: var(--global-padding-double); }

.padding-double-sides {
  padding-left: var(--global-padding-double);
  padding-right: var(--global-padding-double);
  }

.padding-double-top-bottom {
  padding-top: var(--global-padding-double);
  padding-bottom: var(--global-padding-double);
  }

.padding-half { padding: var(--global-padding-half); }

.padding-half-top { padding-top: var(--global-padding-half); }

.padding-half-bottom { padding-bottom: var(--global-padding-half); }

.padding-half-left { padding-left: var(--global-padding-half); }

.padding-half-right { padding-right: var(--global-padding-half); }

.padding-half-sides {
  padding-left: var(--global-padding-half);
  padding-right: var(--global-padding-half);
  }

.padding-half-top-bottom {
  padding-top: var(--global-padding-half);
  padding-bottom: var(--global-padding-half);
  }

.border { border: 1px solid #ccc; }

.border-top { border-top: 1px solid #ccc; }

.border-right { border-right: 1px solid #ccc; }

.border-bottom { border-bottom: 1px solid #ccc; }

.border-left { border-left: 1px solid #ccc; }

/* -------------------------------------------------------------
  Alignment & Positioning
------------------------------------------------------------- */

.image-align-left { /* For use with images in paragraphs */
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
  }

.image-align-right { /* For use with images in paragraphs */
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
  }

.clear-both { clear: both !important; }

.clear-left { clear: left !important; }

.clear-right { clear: right !important; }

.float-left { float: left !important; }

.float-right { float: right !important; }

.float-center {
  clear: both;
  float: none !important;
  margin: 0 auto;
  }

/* -------------------------------------------------------------
  Lists
------------------------------------------------------------- */

ul.blank { padding: 0; }

	ul.blank li {
		padding: 0;
		list-style: none;
		position: relative;
		}

.column-count-2 {
  column-count: 2;
  column-gap: 2rem;
  }

.column-count-3 {
  column-count: 3;
  column-gap: 2rem;
  }

.column-count-4 {
  column-count: 4;
  column-gap: 2rem;
  }

.column-count-6 {
  column-count: 6;
  column-gap: 2rem;
  }

/* -------------------------------------------------------------
  Others
------------------------------------------------------------- */

.notification {
  background: #f00;
  color: #fff;
  margin-bottom: 1.61em;
  padding: .5rem 1rem;
  }

  .notification p { margin: 0; }

/* Responsive Video Embed Container */

.embed-container {
  max-width: 100%;
  height: 0;
  margin-bottom: 3.2em;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  }

  .embed-container iframe,
  .embed-container object,
  .embed-container embed {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    }

/* -------------------------------------------------------------

  Layout Settings - Default

------------------------------------------------------------- */

span.anchor {
	display: block;
	visibility: hidden;
	height: 130px;
	margin-top: -130px;
	}

.wrapper { padding: 0; }

header {
  background: rgba(255,255,255,0);
	width: 100%;
	height: 115px;
	border-top: 5px solid var(--stratus-red);
	position: fixed;
	top: 0;
	z-index: 1000;
	}

	header.scrolled {
  	background: rgba(255,255,255,.95);
  	box-shadow: var(--global-box-shadow);
  	}

	header .plc {
  	max-width: 1320px;
  	height: 100%;
  	margin: 0 auto;
  	display: flex;
  	align-items: center;
  	}

  	header .header-logo a { margin: 0; }

  	header .header-logo svg { width: 180px; }

    	header .header-logo svg path { transition: fill .3s ease; }

    	header .header-logo svg path.logo-blue { fill: var(--stratus-blue); }

    	header .header-logo svg path.logo-grey { fill: var(--stratus-grey); }

  	header:not(.scrolled) .header-logo svg path { fill: #fff !important; }

    header .header-logo a:hover svg path { fill: var(--stratus-red) !important; }

/* Navigation  */

nav { width: 100%; }

nav ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  position: relative;
  }

  nav li {
    margin-left: .25em;
    list-style: none;
    }

  nav a {
    padding: .75rem 2rem;
    border-radius: var(--global-border-radius);
    border-bottom: 2px solid rgba(var(--stratus-red-rgb),0);
    color: #fff;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    }

    header.scrolled nav a { color: #333; }

    nav a.current,
    nav .free-consultation a {
      background: var(--stratus-red);
      color: #fff !important;
      }

    nav a:hover,
    nav li:hover a {
      color: #fff !important;
      }

    nav .free-consultation a:hover {
      background: var(--stratus-grey);
    }

nav a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--global-border-radius);
  z-index: -2;
  }

nav a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--stratus-red);
  border-radius: var(--global-border-radius);
  transition: all .3s;
  z-index: -1;
  }

  nav .free-consultation a:before { background-color: var(--stratus-grey); }

nav a:hover:before,
nav li:hover a:before {
  height: 100%;
  }

  nav .dropdown a:hover:before,
  nav li.dropdown:hover a:before {
    height: 120%;
    }

.nav-up {
  top: -120px;
  opacity: 0;
  }

.nav-down {
  top: 0;
  opacity: 1;
  }

/* Sub-Menus  */

nav ul ul {
  background: var(--stratus-red);
  width: auto;
	margin: 0;
	padding: 0;
	box-shadow: var(--global-box-shadow);
	font-size: 1em;
	list-style: none;
	position: absolute;
	z-index: 10;
	top: 38px; /* Positioning: Calculate with top level horizontal list height */
	overflow: auto;
	}

	nav ul ul ul {
		top: 0;
		left: 100%; /* Position the sub menus to right */
		}

  nav ul ul li {
    height: auto;
    display: block;
    float: none; /* Appear below the previous one. */
    margin: 0;
    padding: 0;
    }

    nav ul ul li a {
    	display: block;
    	float: none;
    	margin: 0;
    	padding: .5em 1em;
    	color: #fff;
    	box-shadow: none !important;
    	}

    nav ul ul li a:hover {
    	background: #fff !important;
    	color: #333 !important;
    	box-shadow: none !important;
    	}

/* Drop-Downs */

.dropdown:hover > a {
  border-bottom: 1px solid var(--stratus-red);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  }

.dropdown:hover > a:after,
.dropdown:hover > a:before {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  }

.dropdown i {
  margin-left: .5em;
  opacity: .5;
  }

nav ul ul,
nav ul li:hover ul ul,
nav ul ul li:hover ul ul { /* Hide all the dropdowns (submenus) */
  visibility: hidden;
	display: block;
	opacity: 0;
	transition: all .2s ease-out;
	}

nav ul li:hover ul,
nav ul ul li:hover ul ,
nav ul ul li ul li:hover ul { /* Display the submenus only when li are hovered */
  visibility: visible;
	display: block;
	opacity: 1;
	transition: all .2s ease-out;
	}

nav ul ul {
  border-top-right-radius: var(--global-border-radius);
  border-bottom-left-radius: var(--global-border-radius);
  border-bottom-right-radius: var(--global-border-radius);
  }

  nav ul ul a { border-radius: 0 !important; }

  nav ul .align-right ul {
	  text-align: right;
    right: 0; /* Position dropdown to be right-aligned */
	  }

    nav ul .align-right ul {
      border-top-right-radius: 0;
      border-top-left-radius: var(--global-border-radius);
      }

.text-cart {
  display: none;
  margin-left: .5em;
  }

/* Hamburger Icon */

a.open {
  display: none;
  float: right;
  color: #666;
  font-size: 2.8em;
  position: relative;
  }

  a.open:hover { opacity: .5; }

  a.close {
    display: none;
    font-weight: normal;
    }

.contents {
  width: 100%;
  min-height: 30vh;
	margin: 0 auto;
	}

	.child .contents .plc {
  	max-width: 1320px;
  	margin: 0 auto;
    }

	.col-1,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9,
	.col-10,
	.col-11,
	.col-12,
	.col-1-4,
	.col-1-3,
	.col-1-2,
	.col-2-3,
	.col-3-4,
	.col-full,
	.col-half {
		float: left;
		}

  /* Note: When nested, all column widths are counted relative to parent element */

  .col-1 { width: 8.333333%; }

  .col-2 { width: 16.666667%; }

  .col-3,
  .col-1-4 {
    width: 25%;
    }

  .col-4,
  .col-1-3 {
    width: 33.333333%;
    }

  .col-5 { width: 41.666665%; }

  .col-6,
  .col-1-2,
  .col-half {
    width: 50%;
    }

  .col-7 { width: 58.333333%; }

  .col-8,
  .col-2-3 {
    width: 66.666667%;
    }

  .col-9,
  .col-3-4 {
    width: 75%;
    }

  .col-10 { width: 83.333333%; }

  .col-11 { width: 91.666667%; }

  .col-12,
  .col-full {
    width: 100%;
    }

.title-wrapper {
  margin-top: 0 !important;
  padding-top: 20rem;
  background: url("../images/hero-slide-2.jpg") center center no-repeat;
  background-size: cover;
  }

  .title-wrapper .plc {
    max-width: 1320px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem 2rem;
    }

  .title-wrapper .title {
    max-width: 75%;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 7.2em;
    font-weight: 200;
    line-height: 1.1em;
    }

  .title-wrapper .parent {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 4.2em;
    line-height: 1.25em;
    }

  .title-wrapper .parent a { color: rgba(255,255,255,.5); }

  .title-wrapper .parent a:hover { color: var(--stratus-red); }

  .title-wrapper .error {
    color: var(--stratus-red);
    font-weight: 700;
    }

    .title-wrapper .error span {
      display: block;
      color: #fff;
      font-size: .6em;
      font-weight: 300;
      }

footer {
  background: var(--stratus-dark-blue);
	clear: both;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 24rem;
	overflow: hidden;
  color: #fff;
  font-size: .875em;
	}

	footer .plc {
  	max-width: 1320px;
  	margin: 0 auto;
		}

    footer h3 { color: var(--stratus-red); }

		footer .footer-logo img { max-width: 140px; }

		footer .social-buttons a,
		footer .social-buttons a:hover {
  		border-bottom: none;
  		}

    footer .social-buttons i { margin-right: .25em; }

  footer .blank a {
    color: #fff;
    font-weight: normal;
    }

  footer hr {
    margin-top: 2em;
    margin-bottom: .5em;
    border-top: 5px solid rgba(255,255,255,.1);
    }

  footer .copyright,
  footer .legal {
    }

  footer .copyright { color: rgba(255,255,255,.5); }

  .newsletter-bar { background: var(--stratus-red); }

    .newsletter-bar .plc {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      }

    .newsletter-bar h2 {
      margin: 0;
      color: var(--stratus-blue);
      color: #fff;
      font-size: 2.2em;
      font-weight: 400;
      text-align: left;
      }

    .newsletter-bar p {
      min-width: 250px;
      margin: 0;
      text-align: right;
      }

.table-wrapper {
  min-width: 100%;
  overflow: auto;
  }

/* -------------------------------------------------------------

  Hero

------------------------------------------------------------- */

.hero {
  background: var(--stratus-blue) url("../images/hero-slide-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  min-height: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }

  .hero-header { height: 12rem; }

  .hero-main { }

    .hero-main .plc {
      max-width: 1320px;
      height: 100%;
      margin: 0 auto;
      margin-bottom: 4rem;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      }

      .hero-main h1 {
        margin-bottom: .25em;
        color: var(--stratus-red);
        font-size: 5.5em;
        font-weight: 900;
        text-transform: uppercase;
        }

        .hero-main h1 span { color: white; }

        .hero-main h1::before {
          display: block;
          background: white;
          width: 8.333333%;
          min-width: 10rem;
          height: 1rem;
          margin-bottom: .25em;
          content: '';
          }

      .hero-main p {
        font-size: 2rem;
        font-weight: 200;
        }

  .hero-footer {
    background: var(--stratus-red);
    width: 100%;
    text-align: center;
    }

    .hero-footer p {
      color: #fff;
      margin: 0;
      }

    .hero-footer a { color: #fff; }

      .hero-footer a:hover {
        color: rgba(255,255,255,.5);
        border-bottom: 2px solid #fff !important;
        }

/* -------------------------------------------------------------

  Layout Settings - Home

------------------------------------------------------------- */

.home-features { text-align: center; }

  .home-features .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .home-features i {
    margin-bottom: .125em;
    color: var(--stratus-red);
    }

.home-proven-track-record {
  background: url("../images/bg-proven.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  }

  .home-proven-track-record .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .home-proven-track-record h2 { color: #fff; }

  .home-proven-track-record a { color: #fff; }

  .home-proven-track-record a:hover { border-color: #fff !important; }

  .home-proven-track-record .counter-set {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
    }

    .home-proven-track-record .counter-item {
      width: 25%;
      line-height: 1.5em;
      }

      .home-proven-track-record .counter-item span {
        margin-bottom: .5em;
        color: #333;
        font-size: 5em;
        font-weight: 300;
        letter-spacing: -0.0625em;
        }

        .home-proven-track-record .counter-item span span { font-size: 1em; }

.counter {
  animation-duration: 1s;
  animation-delay: 0s;
  }

.home-testimonials {
  background: var(--stratus-blue);
  color: #fff;
  }

  .home-testimonials .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .testimonial-set {
    columns: 3;
    column-gap: 3rem;
    }

    .home-testimonials .testimonial-set {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      }

    .testimonial-item {
      display: inline-block;
      margin-top: 35px;
      margin-bottom: 3rem;
      padding-top: 6rem;
      background: rgba(0,0,0,.025);
      position: relative;
      }

      .testimonial-item:before {
        width: 70px;
        height: 70px;
        background: url("../images/icon-quote-white.svg") center center no-repeat;
        background-color: var(--stratus-red);
        display: block;
        content: '';
        margin: 0;
        border-radius: 50%;
        position: absolute;
        top: -30px;
        left: 20px;
        }

      .home-testimonials .testimonial-item {
        width: calc( 33.33% - 2rem );
        background: rgba(255,255,255,.025);
        }

      .testimonial-item .author {
        margin-bottom: 0;
        color: var(--stratus-blue);
        font-weight: 700;
        }

        /*
        .testimonial-item .author:before {
          content: '— ';
          opacity: .25;
          }*/

        .testimonial-item .author { font-weight: 800; }

        .home-testimonials .testimonial-item .author { color: var(--stratus-red); }

.home-guides { background: #ddd; }

  .home-guides .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .home-guides i {
    color: #999;
    font-size: 15em;
    }

.home-latest-blog-posts {
  background: linear-gradient(to top, #444, #232526);
  color: #fff;
  }

  .home-latest-blog-posts .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .latest-blog-post-set {
    display: flex;
    flex-wrap: wrap;
    }

    .latest-blog-post-item { width: 25%; }

      .latest-blog-post-item h3,
      .latest-blog-post-item p {
        font-size: 1.6em;
        }

        .latest-blog-post-item h3 a:hover { color: #fff; }

  .home-testimonials h2,
  .home-latest-blog-posts h2 {
    color: #fff;
    }

      .home-testimonials h2::before,
      .home-latest-blog-posts h2::before {
        display: block;
        background: var(--stratus-red);
        width: 48px;
        height: .5rem;
        margin-bottom: .5em;
        content: '';
        }

/* -------------------------------------------------------------

  Layout Settings - Services

------------------------------------------------------------- */

.services-selection {
  background: rgba(var(--stratus-blue-rgb),.05);
  overflow: auto;

  .plc {
    max-width: 1320px;
    margin: 0 auto;
    }

  }

.services-set {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2rem;
  }

.service-item {
  background: rgba(0,0,0,.05);
  width: calc(50% - 1rem);
  border-radius: var(--global-border-radius);

  i {
    margin-right: .25em;
    color: var(--stratus-red);
    }

  }

.service-item.cta {
  background: var(--stratus-red);
  color: #fff;

  h3 { color: #fff; }

  i { color: #fff; }

  }

.services-stratus-process {
  background: var(--stratus-blue);
  color: #fff;
  overflow: auto;

  .plc {
    max-width: 1320px;
    margin: 0 auto;
    }

  i {
    margin-right: .25em;
    color: var(--stratus-red);
    }

  * { color: #fff; }

  }

.services-team {
  overflow: hidden;

  img {
    filter: grayscale(100%);
    transition: all .3s ease-out;
    }

    img:hover { filter: none; }
  }

.services-team-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;

  img { width: calc(50% - 1rem); }

  img:first-child { width: 100% !important; }

  }

.schedule-cta {
  background: url("../images/bg-schedule-cta.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
  }

  .home-schedule-cta {
    background: url("../images/bg-schedule-cta-alt.jpg") center center no-repeat;
    background-size: cover;
    color: #fff;
    }

  .schedule-cta .plc,
  .home-schedule-cta .plc {
    max-width: 1320px;
    margin: 0 auto;
    overflow: auto;
    }

  .schedule-cta *,
  .home-schedule-cta * {
    color: #fff;
    }

/* -------------------------------------------------------------

  Layout Settings - Team

------------------------------------------------------------- */

.team-set {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  }

  .team-item {
    width: 50%;
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(255,255,255,1);
    border-radius: var(--global-border-radius);
    position: relative;
    display: flex;
    transition: all .3s;
    }

    .team-item:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      transition: all .3s;
      }

    .team-item:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background-color: var(--stratus-red);
      transition: all .3s;
      z-index: -1;
      }

    .team-item:hover {
      background: var(--stratus-red);
      border-color: var(--stratus-red);
      box-shadow: var(--global-box-shadow);
      z-index: 3;
      }

      .team-item:hover:before { height: 100%; }

      .team-item:hover * { color: #fff; }

      .team-item:hover .button {
        background: #fff !important;
        color: var(--stratus-red) !important;
        }

.team-item .photo { padding: 3rem; }

.team-item .photo img {
  width: 100%;
  border-radius: 50%;
  }

.team-item .info { padding: 3rem 2rem 2rem 0; }

  .team-item .info h3 { margin: 0; }

  .team-item .info p:last-of-type { margin: 0; }

.nolink .team-item {
  flex-direction: column;

  .info { padding: 0 2rem 2rem; }

  .photo img {
    max-width: 50%;
  }

  &:hover {
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(255,255,255,1);
    box-shadow: none;

    h3 { color: var(--stratus-blue); }

    p { color: #444; }

    &:before { height: 0; }
  }
}

.team-bio-photo img {
  width: 100%;
  border-radius: 50%;
  }

  .team-bio-profile h3,
  .team-bio-profile h4 {
    color: var(--stratus-red);
    }

  .team-bio-profile h4 i {
    color: #666;
    margin-right: .25em;
    }

.team-bio-testimonial {
  background: var(--stratus-red);
  color: #fff;
  overflow: auto;
  }

  .team-bio-testimonial h2 { color: #fff; }

  .team-bio-testimonial .testimonial-set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    }

  .team-bio-testimonial .testimonial-item {
    width: calc( 50% - 2rem );
    background: rgba(255,255,255,.1);
    text-align: center;
    }

    .team-bio-testimonial .testimonial-item.stretch { width: 100%; }

    .team-bio-testimonial .testimonial-item:before {
        background-color: #666;
        left: 50%;
        transform: translateX(-50%);
        }

.quote-set {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  }

  .quote-item {
    background: rgba(0,0,0,.1);
    width: calc( 33.33% - 2rem );
    list-style: none;
    }

    .quote-item i {
      margin-right: .25em;
      opacity: .5;
    }


/* -------------------------------------------------------------

  Layout Settings - Deadlines

------------------------------------------------------------- */

table.deadlines { width: 100%; }

	table.deadlines thead tr td {
		background: #eee !important;
		border-bottom: none;
		color: var(--stratus-blue);
		font-weight: 700;
		text-align: center;
		vertical-align: middle;
		}

		table.deadlines thead tr:first-child td:first-child {
  		text-align: left;
  		vertical-align: bottom;
  		border-bottom: 1px solid var(--stratus-red);
  		}

		table.deadlines thead tr td.notification {
  		background: var(--stratus-red) !important;
  		color: #fff;
  		}

		table.deadlines thead tr:last-child td { border-bottom: 1px solid var(--stratus-red); }

	table.deadlines tr td {
		display: table-cell;
		padding: .5em 0.75em;
		border: 1px solid #ccc;
		}

		table.deadlines tr td.notification {
  		background: none;
  		color: #999;
  		border-left: 1px dashed var(--stratus-red);
      }

		table.deadlines tr td.early {
			background: var(--stratus-red);
			color: #fff;
			}

		table.deadlines tr td.final {
			background: var(--stratus-blue);
			color: #fff;
			}

	table.deadlines tbody tr td { text-align: center; }

		table.deadlines tbody tr td:first-child { text-align: left; }

span.key {
	width: .75em;
	height: .75em;
	display: inline-block;
	margin-right: .5em;
  }

  span.key.early { background: var(--stratus-red); }

  span.key.final { background: var(--stratus-blue); }

/* -------------------------------------------------------------

  Layout Settings - Events

------------------------------------------------------------- */

.event-set {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  }

  .event-item {
    width: 33.33%;
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(255,255,255,1);
    border-radius: var(--global-border-radius);
    position: relative;
    transition: all .3s;
    font-weight: normal;
    }

    .event-item:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      transition: all .3s;
      }

    .event-item:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background-color: var(--stratus-red);
      transition: all .3s;
      z-index: -1;
      }

    .event-item:hover {
      background: var(--stratus-red);
      border-color: var(--stratus-red);
      box-shadow: var(--global-box-shadow);
      z-index: 3;
      }

      .event-item:hover:before { height: 100%; }

      .event-item:hover * { color: #fff !important; }

      .event-item:hover .button {
        background: #fff !important;
        color: var(--stratus-red) !important;
        }

.event-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stratus-blue);
  width: 72px;
  height: 72px;
  border-radius: 36px;
  margin-bottom: 1.5em;
  }

  .event-item .icon i {
    color: #fff;
    font-size: 36px;
    }

.event-item p.date {
  margin-bottom: 0.25em;
  font-size: 1.4em;
  font-style: italic;
  color: #333;
  }

  .event-item p.date i {
    margin-right: .5em;
    color: var(--stratus-blue);
    }

  .event-item p.title {
    padding-bottom: 4rem;
    color: var(--stratus-blue);
    }

  .event-item p:last-child {
    margin-bottom: 2rem;
    position: absolute;
    bottom: 0;
    }

.event-item p.title { font-weight: 700; }

/* -------------------------------------------------------------

  Layout Settings - Free Consultation

------------------------------------------------------------- */

.review-set {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  }

  .review-item {
    width: calc(33.33333333% - 2rem);
    background: var(--stratus-red);
    border-radius: var(--global-border-radius);
    }

    .review-item i {
      color: #222;
      opacity: .5;
      }

    .review-item blockquote {
      margin-bottom: 0;
      color: #fff;
      font-weight: 400;
      }

/* -------------------------------------------------------------

  Layout Settings - PPC

------------------------------------------------------------- */

.ppc-hero {
  clear: both;
  background: var(--stratus-blue) url("../images/ppc/ppc-hero-bg-01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  color: #fff;

  .plc {
    padding-top: 10rem;
    display: flex;
    align-items: flex-end;
    }

  .hero-text { margin-bottom: 5rem; }

  .hero-image {
    text-align: center;

    img { max-height: 70rem; }
    }

  h1 {
    margin-bottom: .25em;
    color: #fff;
    font-size: 8.4em;
    line-height: 1.1em;

    &::before {
      display: block;
      background: var(--stratus-red);
      width: 48px;
      height: .5rem;
      margin-bottom: 0.125em;
      content: '';
    }
  }

  @media only screen and (min-width: 320px) and (max-width: 639px) {
    h1 { font-size: 5.4em; }

    .button.lg { font-size: 1em; }
    }
}

.ppc-default {
  clear: both;

  .plc { overflow: auto; }

  h2 {
    margin-bottom: .5em;
    font-size: 5.6em;
    line-height: 1.15em;

    @media only screen and (min-width: 320px) and (max-width: 639px) {
      font-size: 3.6em;
      }

    &::before { margin-bottom: 0.175em; }
  }

  @media only screen and (min-width: 320px) and (max-width: 639px) {
    .button.lg { font-size: 1em; }
    }

  &.intro {
    ul {
      padding: 0;

      li {
        padding: 0;
        list-style: none;
        font-weight: 700;

        i { color: var(--stratus-red); }

        span.normal { font-weight: normal; }
      }
    }
  }

  &.services {
    background: var(--stratus-dark-blue) url("/assets/images/hero-slide-2.jpg");
    background-size: cover;
    color: #fff;

    h2 {
      color: #fff;

      &::before { margin-bottom: 0.175em; }
      }

    .services-set {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;

        @media only screen and (min-width: 768px) and (max-width: 959px) {
          flex-direction: row;
          }

      .services-item {
        background: rgba(0,0,0,.6);
        width: 22.5%;
        padding: 2rem 2rem 0 2rem;
        color: #fff;

        @media only screen and (min-width: 319px) and (max-width: 767px) {
          width: 100%;
          }

        @media only screen and (min-width: 768px) and (max-width: 959px) {
          width: 47.5%;
          }

        @media only screen and (min-width: 960px) and (max-width: 1023px) {
          width: 30%;
          }

        h3 {
          color: #fff;
          line-height: 1.5em;
          }

        p:first-of-type { margin-bottom: .5em; }

        i { color: var(--stratus-red); }
        }
      }
    }

  &.reviews {
    background: #eee;

    .testimonial-set {
      columns: 2;
      column-gap: 3rem;

      @media only screen and (min-width: 320px) and (max-width: 959px) {
        columns: 1;
        }
      }

    .testimonial-item {
      background: rgba(var(--stratus-blue-rgb),.1);

      .testimonial-wrapper {
        display: flex;
        align-items: flex-start;

        img {
          max-width: 120px;
          margin-left: var(--global-padding);
          border-radius: 50%;

          @media only screen and (min-width: 320px) and (max-width: 639px) {
            margin-top: var(--global-padding);
            margin-left: 0;
            }
          }

        @media only screen and (min-width: 320px) and (max-width: 639px) {
          flex-direction: column;
          }

      }
    }

  }
}

.ppc-cta {
  clear: both;

  h2 {
    margin-bottom: .5em;
    font-size: 5.6em;
    line-height: 1.15em;

    @media only screen and (min-width: 320px) and (max-width: 639px) {
      font-size: 3.6em;
      }

    &::before { margin-bottom: 0.175em; }
  }
}

/* -------------------------------------------------------------

  Layout Settings - Blog

------------------------------------------------------------- */

.blog-post-set {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  }

  .blog-post-item {
    width: 33.33%;
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(255,255,255,1);
    border-radius: var(--global-border-radius);

    img { aspect-ratio: 4 / 3; }
    }

.post h2::before { background: var(--stratus-red); }

.blog-post-set .post h2 { margin-bottom: .25em; }

  .blog-post-set .post h2::before { background: var(--stratus-blue); }

.post h2.lg { margin-bottom: .25em; }

  .post h2.lg::before { background: var(--stratus-blue); }

    .post.single h1 {
      margin-bottom: .25em;
      font-size: 3.2em;
      line-height: 1.2em;
      }

      .post.single h1::before {
        display: block;
        background: var(--stratus-blue);
        width: 48px;
        height: .5rem;
        margin-bottom: .375em;
        content: '';
        }

        .post.single h1::before { margin-bottom: .25em; }

.post-date,
.post-author,
.post-category,
.post-tags {
  font-size: 1.4em;
  }

  .post-category {
    display: flex;
    align-items: baseline;
    }

  .post-date { font-style: italic; }

  .post-date i,
  .post-author i,
  .post-category i,
  .post-tags i {
    margin-right: .5em;
    color: var(--stratus-blue);
    }

  .post-tags {
    display: flex;
    align-items: baseline;
    }

  .post-category a,
  .post-tags a {
    display: inline-block;
    background: #999;
    margin-bottom: 3px;
    padding: 0 .5em;
    border: none !important;
    border-radius: 2px;
    color: #fff;
    }

    .post-tags a:hover {
      background: var(--stratus-red);
      color: #fff;
      }

    .post-category a {
      background: var(--stratus-red);
      margin-right: 3px;
      color: #fff;
      }

      .post-category a:hover {
        background: #999;
        border: none !important;
        color: #fff;
        }

.post .entry table {
  width: 100% !important;
  font-size: 1em !important;
  }

.post .entry > table { font-size: 1.7em !important; }

.post .entry table thead tr th {
  background: #eee !important;
  padding: .5em .75em;
  border: 1px solid #ccc !important;
  color: var(--stratus-blue);
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  }

  .post .entry table thead tr th { border-bottom: 1px solid var(--stratus-red) !important; }

.post .entry table tr td {
  display: table-cell;
  padding: .5em .75em;
  border: 1px solid #ccc !important;
  }

.blog-wrapper .sidebar {
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  }

.blog-cta {
  background: url("../images/bg-blog-cta-mba.jpg");
  background-size: cover;
  background-position: center center;
  margin-bottom: 1.6em;
  color: #fff;
  }

  .blog-cta * { color: #fff; }

  .blog-cta h4 {
    margin-bottom: 1em;
    font-size: 2.4em;
    line-height: 1.4em;
    }

      .blog-cta h4::after {
        display: block;
        background: var(--stratus-red);
        width: 48px;
        height: .5rem;
        margin-top: .5em;
        margin-bottom: 0.375em;
        content: '';
        }

  .blog-cta p:last-child { margin: 0; }

  .blog-cta.alt { background: url("../images/bg-blog-cta-law.jpg"); }

  .blog-cta.alt h4::after { background: var(--stratus-blue); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stratus-red);
  }

  .footer-nav > div { width: 50%; }

  .footer-nav-prev {}

    .footer-nav-prev i { margin-right: .5em; }

  .footer-nav-next {}

    .footer-nav-next i { margin-left: .5em; }

  .footer-nav a {
    display: inline-block;
    padding: 2rem;
    border-radius: var(--global-border-radius);
    }

    .footer-nav a:hover { background: #eaeaea; }

    .footer-nav a:hover * { color: #999 !important; }

  .footer-nav p { margin: 0; }

  .footer-nav i { color: #999; }

.footer-nav.single-post span.post-title {
  display: block;
  color: #444;
  border-bottom: none;
  }

.search-bar { border-top: 1px solid var(--stratus-red); }

.blog-search-form {}

  .blog-search-form input[type="text"] {
    min-width: 60%;
    max-width: 600px !important;
    }

/* -------------------------------------------------------------

  Lightbox

------------------------------------------------------------- */

.lightbox-set {
  display: flex;
  flex-wrap: wrap;
  }

  .lightbox-set a {
    width: calc(20% - 1em);
    margin: 0 1em 1em 0;
    }

  .lightbox-set a:hover { filter: grayscale(1); }

.ajax-popup {
	background: #fff;
	max-width: 80%;
	position: relative;
	overflow: hidden;
	margin: 40px auto;
	padding: 3em;
	text-align: left;
	box-shadow: var(--global-box-shadow);
	}

	.ajax-popup.profile-video-wrapper {
  	background: #000;
  	max-width: 80%;
  	padding: 0;
  	border-radius: 0;
    }

/* -------------------------------------------------------------

  Tabs

------------------------------------------------------------- */

.ui-tabs {
	position: relative;
	padding: 0;
	zoom: 1;
	}

.ui-tabs .ui-tabs-nav {
	margin: 0 0 -1px 0;
	padding: 0;
	overflow: hidden;
	}

	.ui-tabs .ui-tabs-nav li {
		list-style: none;
		float: left;
		position: relative;
		padding: 0;
		margin-right: 5px;
		white-space: nowrap;
		}

		.ui-tabs .ui-tabs-nav li a {
			float: left;
			background: #ccc;
			padding: 1.5rem 2rem;
			border: 1px solid #ccc;
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
			color: #999;
			font-weight: normal;
			outline: none;
			}

			.ui-tabs .ui-tabs-nav li i {
  			margin-right: 5px;
  			opacity: .5;
			  }

		.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
			margin-bottom: 0;
			padding-bottom: 1px;
			}

			.ui-tabs .ui-tabs-nav li.ui-state-active a {
				background: #fff !important;
				color: var(--titian-orange);
				border-bottom: 1px solid #fff;
				}

			.ui-tabs .ui-tabs-nav li a:hover {
				background: var(--titian-orange) !important;
				border-color: var(--titian-orange);
				color: #fff;
				}

				.ui-tabs .ui-tabs-nav li.ui-state-active a:hover {
  				background: var(--titian-orange) !important;
  				border-color: var(--titian-orange);
  				cursor: default;
				  }

			.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
			.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
			.ui-tabs .ui-tabs-nav li.ui-state-processing a {
				cursor: text;
				}

			.ui-tabs .ui-tabs-nav li a,
			.ui-tabs.ui-tabs-collapsible
			.ui-tabs-nav li.ui-tabs-selected a {
				cursor: pointer;
				}

	.ui-tabs .ui-tabs-panel {
		clear: both;
		display: block;
		margin: 0;
		padding: 0;
		border-width: 0;
		border-top: 1px solid #ccc;
		}

	.ui-tabs .ui-tabs-hide { display: none !important; }

/* -------------------------------------------------------------

  Accordion

------------------------------------------------------------- */

.accordion {
	margin-bottom: 1.6em;
	font-size: 1em;
	}

	.accordion * { outline: none; }

	.accordion h3 {
		background: url("/assets/images/bg-plus.png") 0 11px no-repeat;
		margin: 0;
		padding: 0 0 0 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.7em;
    line-height: 1.8em;
		}

		.accordion h3.ui-accordion-header-active { background-image: url("/assets/images/bg-minus.png"); }

		.accordion h3 a {
			display: inline-block;
			clear: both;
			}

			.accordion h3 a:hover { color: #ccc; }

			.accordion h3.ui-accordion-header-active a { color: rgba(var(--stratus-red),1) !important; }

	.accordion article {
		overflow: hidden;
		clear: both;
		margin-top: 1.61em;
		padding-left: 20px;
		}

/* -------------------------------------------------------------

  Contract

------------------------------------------------------------- */

body.contract {
	background: #fff;
	border-top: 5px solid var(--stratus-red);
	}

	.contract h1,
	.contract h2 {
		margin-bottom: 1.61em;
		font-size: 2.4em;
		}

	.contract table.services { width: auto; }

	.contract p.float {
		float: left;
		margin-right: 20px;
		}

	.contract p.clear { clear: both; }

	.contract-wrap {
		min-width: 320px;
		max-width: 960px;
		margin: 1.61em auto;
		padding: 1.61em;
		}

table.services { width: 100%; }

	table.services td,
	table.services th {
    padding: .5em 0.75em;
		border: 1px solid #ccc;
		vertical-align: middle;
		}

		table.services th {
			background: #eee;
			border-bottom: 1px solid var(--stratus-red);
			color: var(--stratus-blue);
			font-weight: 700;
			}

table.contract td { text-align: center; }

	table.contract.full { width: 100% !important; }

#user_data p label {
  display: inline-block;
  width: 150px;
  }

  #user_data p input[type="text"] {
    width: 100%;
    max-width: 500px;
    }

#user_data .check label {
  width: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  }

  #user_data .check label input {
    width: 20px !important;
    margin-right: 1rem;
    font-size: 20px;
    }

#your-shopping-cart #form {
  background: rgba(255,255,255,.95) !important;
  padding: 3rem !important;
  z-index: 10000000000 !important;
  }

/* -------------------------------------------------------------

  Animations

------------------------------------------------------------- */

a, input, button, header, textarea { /* general animation */
	transition: all .3s ease-out;
	}

/* -------------------------------------------------------------

  Media Queries

------------------------------------------------------------- */

/* -------------------------------------------------------------
  media-query-320-1024 (Settings for Responsive Menu)
------------------------------------------------------------- */

@media only screen and (min-width: 319px) and (max-width: 1023px) {

header { height: 80px; }

header .header-logo svg { width: 120px; }

.nav-up { opacity: 1; }

a.open { display: inline-block; }

  header.scrolled a.open svg path { fill: #666; }

a.close {
  display: block;
  padding: 0;
  color: rgba(255,255,255,.5);
  font-size: 48px;
  position: absolute;
  top: 3rem !important;
  right: 2rem;
  }

  a.close:hover svg * { fill: #333; }

/* Responsive Menu Overlay */

.text-cart { display: inline; }

.overlay {
  background-color: var(--stratus-red);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: -105%;
  z-index: 1000000000;
  overflow-x: hidden;
  transition: 0.2s;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  }

nav ul {
  width: 100%;
  margin: 6rem 0 3rem 0;
  padding: 0;
  font-size: 2.4em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  }

  nav ul li {
    width: auto;
    height: auto;
    overflow: auto;
    margin: 0;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.5);
    }

    nav ul > li:last-child { border-bottom: none; }

    nav li a:link,
    nav li a:visited {
      display: inline-block;
      padding: .5em;
      border-radius: 0;
      color: #fff;
      }

      nav ul li a.current:link,
      nav ul li a.current:visited {
        background: none;
        color: #333;
        }

      nav ul li a:hover,
      nav ul li:hover a {
        background: none;
        color: #333;
        box-shadow: none;
        }

      nav li.dropdown a { border: none !important; }

        nav li.dropdown a i { color: #999; }

    nav ul ul { /* Override dropdowns on responsive menu */
      background: none;
      display: block;
      position: relative;
      top: 0;
      box-shadow: none;
      visibility: visible;
      opacity: 1;
      }

      nav ul ul li {
        margin: 0;
        padding: 0 2em;
        border-bottom: none !important;
        font-size: 18px;
        line-height: 1.4em;
        text-align: left;
        white-space: normal;
        }

        nav ul ul li a:link,
        nav ul ul li a:visited {
          display: inline-block;
          color: #fff;
	        }

			nav ul ul li a:hover {
  			background: none !important;
  			color: #333;
  			}

      nav ul li.dropdown:hover a { border: none; }

nav ul li.highlight {
  width: auto;
  clear: both;
  display: inline-block;
  }

  nav li.highlight a:link,
  nav li.highlight a:visited {
    background: none;
    color: #fff;
    font-weight: 700;
    }

    nav li.highlight a:hover,
    nav li.highlight:hover a {
      background: none;
      color: #333;
      }

      nav ul li:hover a.current,
      nav ul li a.current:hover {
        background: none !important;
        box-shadow: none;
        }

  .dropdown i { color: #fff !important; }

footer .copyright { width: 100%; }

  footer .copyright p { margin: 0; }

footer .legal {
  width: 100%;
  float: none;
  text-align: left;
  }

} /* End of 320px-1023px Media Query */

/* -------------------------------------------------------------
  media-query-320-479
------------------------------------------------------------- */

@media only screen and (min-width: 319px) and (max-width: 479px) {

:root {
  --global-padding: 1em;
  --global-padding-half: .5em;
  --global-padding-double: 2em;
  --global-padding-4x: 4em;
  }

.header-logo a { font-size: 3.6em; }

h1 { font-size: 4.8em; }

p.intro { font-size: 2.8em }

hr { margin: 1em 0; }

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-1-4,
.col-1-3,
.col-1-2,
.col-2-3,
.col-3-4,
.col-full,
.col-half {
	width: 100%;
  float: none;
  }

.ui-tabs .ui-tabs-nav li {
  float: none;
  display: block;
  margin: 0;
  white-space: normal;
  }

.ui-tabs .ui-tabs-nav li a {
  width: 100% !important;
  float: none;
  display: block;
  margin-top: 1px;
  }

.lightbox-set { flex-direction: column; }

  .lightbox-set a { width: 100%; }

.archive-list { column-count: 1; }

.team-item > div { padding: 1rem !important; }

} /* End of 320px-479px Media Query */

/* -------------------------------------------------------------
  media-query-320-639
------------------------------------------------------------- */

@media only screen and (min-width: 320px) and (max-width: 639px) {

.image-align-left { /* For use with images in paragraphs */
  width: 100%;
  float: none;
  margin-right: 0;
  }

.image-align-right { /* For use with images in paragraphs */
  width: 100%;
  float: none;
  margin-left: 0;
  }

  .hero-main h1 { font-size: 4rem; }

    .hero-main h1::before {
      width: 8.333333%;
      min-width: 5rem;
      height: .5rem;
      margin-bottom: .25em;
      }

      .hero-main p { font-size: 1.8rem; }

.home-proven-track-record .counter-set { flex-direction: column; }

  .home-proven-track-record .counter-item {
    width: 100%;
    padding-top: 80px;
    }

.team-item { width: 100%; }

.title-wrapper { padding-top: 8rem; }

  .title-wrapper .plc {
    padding-top: 2rem;
    padding-bottom: 4rem;
    }

  .title-wrapper .title { font-size: 3.2em; }

.blog-post-item { width: 100%; }

.footer-nav {
  margin-bottom: 0;
  flex-direction: column;
  }

  .footer-nav > div {
    width: 100%;
    text-align: left !important;
    }

  .footer-nav a {
    display: block;
    border-radius: 0;
    }

  .footer-nav .footer-nav-prev { border-bottom: 1px solid #ccc; }

  .footer-nav.single-post { padding-top: 0; }

.event-item { width: 100%; }

.review-item { width: calc(100% - 2rem); }

} /* End of 320px-639px Media Query */

/* -------------------------------------------------------------
  media-query-320-767
------------------------------------------------------------- */

@media only screen and (min-width: 320px) and (max-width: 767px) {

.newsletter-bar .plc { flex-direction: column; }

  .newsletter-bar h2 {
    margin-bottom: 1.6em;
    text-align: center;
    }

  .newsletter-bar p { text-align: center; }

.testimonial-set { columns: 1 !important; }

  .testimonial-item {
    width: 100% !important;
    padding-top: 5rem !important;
    }

.quote-set {
  flex-direction: column;
  }

  .quote-item {
    width: 100%;
    }

  .home-testimonials .testimonial-item { margin-bottom: 2rem; }

.latest-blog-post-item { width: 100%; }

.cycle-slideshow-nav { display: none; }

.services-stratus-process-image img { max-width: 360px; }

} /* End of 320px-767px Media Query */

/* -------------------------------------------------------------
  media-query-320-1023
------------------------------------------------------------- */

@media only screen and (min-width: 320px) and (max-width: 1023px) {

.team-intro { width: 100%; }

.blog-wrapper .spacer { display: none; }

.blog-wrapper .sidebar { width: 100%; }

} /* End of 320px-1023px Media Query */

/* -------------------------------------------------------------
  media-query-320-959
------------------------------------------------------------- */

@media only screen and (min-width: 319px) and (max-width: 959px) {

.team-item { flex-direction: column; }

.team-item .photo {
  width: 100%;
  padding-bottom: 0 !important;
  }

.team-item .info {
  width: 100%;
  padding: 0 2rem 2rem 2rem;
  }

.services-set { flex-direction: column; }

.service-item { width: 100%; }

.services-stratus-process-text,
.services-team-text {
  width: 100%;
}

} /* End of 319px-959px Media Query */

/* -------------------------------------------------------------
  media-query-480-639
------------------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 639px) {

} /* End of 480-639px Media Query */

/* -------------------------------------------------------------
  media-query-480-767
------------------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 767px) {

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-1-4,
.col-1-3,
.col-1-2,
.col-2-3,
.col-3-4,
.col-full,
.col-half {
	width: 100%;
  float: none;
  }

.lightbox-set { flex-direction: row; }

  .lightbox-set a { width: calc(50% - 1em); }

} /* End of 480px-767px Media Query */

/* -------------------------------------------------------------
  media-query-640-767
------------------------------------------------------------- */

@media only screen and (min-width: 640px) and (max-width: 767px) {

.home-proven-track-record .counter-item {
  width: 100%;
  margin-bottom: 8rem;
  }

  .home-proven-track-record .counter-item:last-child { margin-bottom: 0; }

.title-wrapper { padding-top: 10rem; }

.blog-post-item { width: 50%; }

.event-item { width: 50%; }

} /* End of 640px-767px Media Query */

/* -------------------------------------------------------------
  media-query-640-1023
------------------------------------------------------------- */

@media only screen and (min-width: 640px) and (max-width: 1023px) {

.overlay {
  width: 50%;
  box-shadow: 0 0 4rem rgba(0,0,0,.5);
  }

} /* End of 640px-1023px Media Query */

/* -------------------------------------------------------------
  media-query-768-1023
------------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 1023px) {

.col-8,
.col-9,
.col-10 {
  width: 100%;
  }

.footer-summary { width: 50%; }

.home-proven-track-record .counter-item { width: 50%; }

  .home-proven-track-record .counter-item:nth-child(1),
  .home-proven-track-record .counter-item:nth-child(2) {
    margin-bottom: 100px;
    }

.home-testimonials .testimonial-item {
  width: 100%;
  margin-bottom: 0;
  }

  .home-testimonials .testimonial-item:nth-child(3) { flex-grow: 2; }

.latest-blog-post-item { width: 50%; }

.testimonial-set { columns: 2; }

.blog-post-item { width: 50%; }

} /* End of 768px-1023px Media Query */

/* -------------------------------------------------------------
  media-query-1024-1200
------------------------------------------------------------- */

@media only screen and (min-width: 1024px) and (max-width: 1200px) {

.home-proven-track-record .counter-item span { font-size: 4em; }

.free-consultation-form { width: 100%; }

.testimonial-set { columns: 2; }

} /* End of 1024px-1200px Media Query */