@charset "UTF-8";
/*
	CSS Document for Accepted v.1.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 {
  --accepted-blue: #326cb3;
  --accepted-yellow: #f1b80e;

  --accepted-blue-rgb: 50,108,179;
  --accepted-yellow-rgb: 241,184,14;

  --default-text: #333;
  --warning-red: #f00;

  --global-padding: 2rem;
  --global-padding-half: 1rem;
  --global-padding-double: 4rem;
  --global-border-radius: .4rem;
  --global-box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
  --global-box-shadow-half: 0 .5rem 1rem rgba(0,0,0,.25);
  --global-column-gap: 2rem;

  --default-transition: all .125s ease-out;
  }

@media only screen and (min-width: 319px) and (max-width: 479px) {
:root {
    --global-padding: 1.5em;
    --global-padding-half: .75em;
    --global-padding-double: 3em;
  }
}

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

  General Settings

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

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

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

::selection {
  background: var(--accepted-blue);
  color: white;
  }

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

html {
  scroll-padding-top: 12rem;
  scroll-behavior: smooth;
  }

body {
	background: white;
	font: 10px/20px 'Poppins', sans-serif;
	color: var(--default-text);
	}

a {
	color: var(--accepted-blue);
	font-weight: 700;
	text-decoration: none;

  &:hover { color: var(--accepted-yellow); }
	}

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

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

	h2 {
  	margin-bottom: 1em;
  	font-size: 3.6em;
  	line-height: 1.2em;

    &.inverted { color: var(--accepted-yellow); }

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

  h3 {
    margin-bottom: 1.2em;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.6em;
    }

  h4,
  h5 {
    margin-bottom: 1.6em;
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.75em;

    &.alt { color: var(--default-text); }
    }

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

	p {
    &.lg {
      font-size: 2.4em;
      line-height: 1.55em;
      }

    &.light { font-weight: 200; }
    }

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

	ul li {
    list-style: square outside;

    &::marker { color: var(--accepted-yellow); }
  }

	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%;
	vertical-align: middle;
	image-rendering: optimizeQuality;
	}

	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: 2.4em;
	font-style: italic;
	font-weight: 200;
	line-height: 1.8em;

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

strong { font-weight: 700; }

em,
cite {
	font-style: italic;
	}

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

sup {
	position: relative;
	top: -.6em;
	}

sub {
	position: relative;
	bottom: -.6em;
	}

hr {
	clear: both;
	width: 100%;
	height: 0;
	margin: var(--global-padding-double) 0;
	border: none;
	border-top: .1rem solid var(--accepted-yellow);
	font-size: 1.7em;
	line-height: 1.6em;
	}

table.default {
  border-collapse: collapse;

  thead {
    tr {
      th {
        background: var(--accepted-yellow);
        border-bottom: none;
        color: var(--default-text);
        font-weight: 700;
        text-align: left;

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

  th.overhead {
    background: var(--accepted-yellow);
    color: white;
    }

  tr:first-child th:first-child {
    border-bottom: 1px solid var(--accepted-yellow);
    text-align: left;
    }

  tr:last-child td { border-bottom: 1px solid var(--accepted-yellow); }

  td, th {
    display: table-cell;
    padding: .5em .75em;
    border: 1px solid white;
    }

  tr:nth-child(even) td {
    background: rgba(var(--accepted-blue-rgb),.1);
    }

  .bg-blank {
    background: white !important;
    }

  .bg-highlight {
    background: rgba(var(--accepted-blue-rgb),.1) !important;
    }
  }

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;

  &.overflowing {
    box-shadow: inset -20px 0 10px -10px rgba(0,0,0,.2), inset 20px 0 10px -10px rgba(0,0,0,.2);
    }
  }

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

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

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

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

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

  .download-form {
    input { background: white; }
    }

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

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type="file"]:focus,
  textarea:focus {
    background: white;
    }

select {
  padding: .5rem 1rem;
  border: 1px solid rgba(var(--accepted-blue-rgb),.3);
  font-size: 1em;
  }

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

input[type="submit"],
input[type="button"],
button,
.button {
	display: inline-block;
  background: linear-gradient(to top, rgba(255,255,255,1) 50%, var(--accepted-yellow) 50%);
  background-size: 100% 210%;
  background-position: center top;
  transition: all .125s ease-out;
	margin-bottom: .25em;
	padding: .6rem 3.5rem;
	color: var(--default-text); !important;
  border: none;
	border-bottom: 2px solid var(--accepted-yellow);
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	-webkit-appearance: none;
	}

	input[type="submit"]:hover,
	input[type="button"]:hover,
	button:hover,
	.button:hover {
    background-position: center bottom;
		box-shadow: var(--global-box-shadow);
		transform: scale(1.05);
		}

.button, button {
  &.lg {
    padding: 1rem 3.5rem;
    font-size: 1.33em;
    }

  &.inverted {
    background: var(--accepted-blue);
    color: white !important;
    border-bottom: 2px solid var(--accepted-blue);
    }

  &:hover {
    background: white !important;
    color: var(--default-text); !important;
    }

  &.read-more,
  &.with-icon {
    i {
      margin-left: .5em;
      opacity: .75;
      }
    }

  &.back-button {
    i {
      margin-right: .5em;
      opacity: .75;
      }
    }
  }

.required { color: var(--accepted-yellow); }

.read-more-inline {
  white-space: nowrap;

  i {
    margin-left: .125em;
    opacity: .75;
  }
}

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

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

  Additional Classes and Overrides

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

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

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

/* -------------------------------------------------------------
  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; }

.smallquote {
  border-left: 2px solid var(--accepted-yellow);
  margin-left: 1em;
  padding: .5em 1em;
  font-weight: 700;
}

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

.shaded { background: #eee; }

.shaded-yellow { background: rgba( var(--accepted-yellow-rgb),.05 ); }

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

.blue { color: var(--accepted-blue); }

.yellow { color: var(--accepted-yellow); }

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

.full-width { 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-top-sides {
  padding-top: var(--global-padding);
  padding-left: var(--global-padding);
  padding-right: var(--global-padding);
  }

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

.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-double-top-sides {
  padding-top: var(--global-padding-double);
  padding-left: var(--global-padding-double);
  padding-right: var(--global-padding-double);
  }

.padding-double-bottom-sides {
  padding-bottom: var(--global-padding-double);
  padding-left: var(--global-padding-double);
  padding-right: 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);
  }

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

.padding-half-bottom-sides {
  padding-bottom: var(--global-padding-half);
  padding-left: var(--global-padding-half);
  padding-right: 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;

  @media only screen and (min-width: 320px) and (max-width: 639px) {
    width: 100%;
    float: none;
    margin-right: 0;
    }
  }

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

  @media only screen and (min-width: 320px) and (max-width: 639px) {
    width: 100%;
    float: none;
    margin-left: 0;
    }
  }

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

.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;
  }

.white-space-nowrap {
  white-space: nowrap;
}

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

ul.blank {
  padding: 0;

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

.column-count-2 {
  column-count: 2;
  column-gap: var(--global-column-gap);
  }

.column-count-3 {
  column-count: 3;
  column-gap: var(--global-column-gap);
  }

.column-count-4 {
  column-count: 4;
  column-gap: var(--global-column-gap);
  }

.column-count-6 {
  column-count: 6;
  column-gap: var(--global-column-gap);
  }

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

.notification {
  background: var(--warning-red);
  margin-bottom: 1.61em;
  padding: .5rem 1rem;
  color: white;

  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;

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

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

  Layout Settings - Default

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

header {
  background: white;
	width: 100%;
	height: 10rem;

    @media only screen and (min-width: 319px) and (max-width: 1023px) {
      height: 8rem;
      }

	position: fixed;
	top: 0;
	z-index: 10000;

  .plc {
  	max-width: 144rem;
  	height: 100%;
  	margin: 0 auto;
  	display: flex;
  	align-items: center;
    justify-content: space-between;
  	}

  .header-logo {
    padding: 0 var(--global-padding);

    a { margin: 0; }

    img {
      width: 20rem;

      @media only screen and (min-width: 319px) and (max-width: 639px) {
        width: 15rem;
        }
      }
    }

  .header-nav { padding: 0 var(--global-padding); }

  &.scrolled { box-shadow: var(--global-box-shadow); }

  &.nav-up {
    top: -12rem;
    opacity: 0;

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

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

/* Navigation  */

nav {
  width: 100%;

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

  li {
    margin-left: .125em;
    list-style: none;

    &:hover > a {
      background-position: center bottom;
      }
    }

  a {
    background: linear-gradient(to bottom, white 50%, var(--accepted-yellow) 50%);
    background-size: 100% 200%;
    background-position: center top;
    transition: all .25s ease-out;
    padding: .75rem 1.5rem;
    color: var(--default-text);;
    font-weight: 400;
    position: relative;
    overflow: hidden;

    &:hover {
      background-position: center bottom;
      color: var(--default-text);;
      }

    &.current {
      color: var(--accepted-blue);
      font-weight: bold;
      border-bottom: 2px solid var(--accepted-yellow);
      }
    }

  .consult {
    a {
      background: linear-gradient(to left, var(--accepted-yellow) 50%, var(--accepted-blue) 50%);
      background-size: 400% 100%;
      background-position: right bottom;
      transition: all .25s ease-out;

      &:hover {
        background-position: left bottom;
        color: white;
        }

      i {
        margin-left: .25em;
        opacity: .75;
        }
      }
    }
  }

/* Sub-Menus  */

nav {
  ul {
    ul {
      background: var(--accepted-yellow);
      width: auto;
      margin: 0;
      padding: 0;
      box-shadow: var(--global-box-shadow);
      clip-path: inset(0px -5rem -5rem -5rem);
      font-size: 1em;
      list-style: none;
      position: absolute;
      z-index: 10;
      top: 3.4rem; /* Positioning: Calculate with top level horizontal list height */
      overflow: auto;

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

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

        a {
          background: linear-gradient(to right, white 50%, var(--accepted-yellow) 50%);
          background-size: 200% 100%;
          background-position: right bottom;
          transition: all .125s ease-out;
          display: block;
          float: none;
          margin: 0;
          padding: .5em 1em;
          box-shadow: none !important;

          &:hover {
            background-position: left bottom;
            color: var(--default-text); !important;
            box-shadow: none !important;
            }
          }
        }
      }
    }
  }

/* Drop-Downs */

.dropdown {
  > a { border-bottom: 1px solid white; }

  &:hover > a {
    border-bottom: 1px solid var(--accepted-yellow);
    }

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

  &.shop {
    i { opacity: 1; }
  }
  }

span.count {
  background: var(--accepted-blue);
  padding: 0 .5em;
  color: #fff;
  font-weight: 700;
  }

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 .align-right ul {
	  text-align: right;
    right: 0; /* Position dropdown to be right-aligned */
	  }

/* Hamburger Icon */

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

    &:hover { opacity: .5; }
  }

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

.contents {
  width: 100%;
	margin: 0 auto;
	}

  /*
	.child .contents .plc {
  	max-width: 144rem;
  	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%;
    }

@media only screen and (min-width: 320px) 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;
    }
}

.title-wrapper {
  padding-top: 15rem;
  position: relative;

  @media only screen and (min-width: 320px) and (max-width: 799px) {
    padding-top: 7rem;
  }

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    padding: 3rem 2rem 0 2rem;
    }

  .title {
    max-width: 75%;
    margin: 0;
    color: #999;
    font-size: 6.4em;
    font-weight: 100;
    letter-spacing: -0.0125em;
    line-height: 1.1em;
    text-wrap: pretty;

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

.breadcrumb {
  width: 100%;
  display: block;
  min-height: 3.2rem;
  margin: 4rem 0 0 0;
  border-top: 1px solid rgba(var(--accepted-blue-rgb),.25);
  border-right: 3.2rem solid var(--accepted-yellow);
  color: #999;
  font-size: 1.6em;
  font-weight: normal;
  line-height: 1.75em;
  text-align: right;

  .breadcrumb-wrapper {
    display: inline-block;
    padding: .125em .75em;
    background: rgba(var(--accepted-blue-rgb),.1);

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

    .breadcrumb-item:first-of-type {
      cursor: text;

      a:first-of-type {
        pointer-events: none;
        }
      }
    }

  i {
    margin: 0 .25em;

    &.fa-home { margin: 0; }
    }

  a {
    color: #999;
    font-weight: normal;

    &:hover { color: var(--accepted-yellow); }
    }
  }

section.default {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;

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

.final-cta {
  clear: both;
  color: white;

  .plc {
    background: var(--accepted-blue);
    max-width: 144rem;
    margin: var(--global-padding) auto;
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    display: flex;
    align-items: center;
    }

  .icon {
    text-align: center;
    transform: translateX(2em);

    img { max-height: 25rem; }
    }

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    .icon { display: none; }
    }

  h2 {
    margin-bottom: .75em;
    color: var(--accepted-yellow);

    i { display: none; }

    @media only screen and (min-width: 320px) and (max-width: 767px) {
      display: flex;
      align-items: top;

      i {
        display: inline-block;
        margin-top: 3rem;
        margin-left: .25em;
        color: white;
        text-align: right;
      }
    }
  }

  .button.consult i { margin-right: .25em; }

  }

footer {
	clear: both;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10rem;
	overflow: hidden;
  font-size: .9em;

  .plc {
  	max-width: 144rem;
  	margin: 0 auto;
		}

  h3 {
    color: var(--default-text);;
    font-weight: 200;
    }

  .footer-logo {
    img { max-width: 14rem; }
    }

  .footer-contact {
    i {
      margin-right: .5em;
      opacity: .75;
      }
    }

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

  .copyright { opacity: .5; }

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

  .sister-companies {
    a:hover { opacity: .5; }
    }
  }

@media only screen and (min-width: 320px) and (max-width: 1099px) {
  .footer-company {
    width: 100%;
    margin-bottom: var(--global-padding);
    border-bottom: 1px solid #ccc;
  }

  .footer-links {
    width: 100%;
    }
  }

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

  Swiper

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

.swiper-pagination {
  padding: .5rem 0 1rem 0;

  &.review { position: relative; }

  .swiper-pagination-bullet {
    background: rgba(0,0,0,.4);
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .25em !important;
    margin-left: .25em !important;
    border-radius: 0;
    }

  .swiper-button-prev,
  .swiper-button-next {
    width: 24px;
    height: 24px;
    color: var(--default-text);;
    background: var(--accepted-yellow);
    padding: var(--global-padding);

    &:hover {
      background: white;
      border-bottom: 2px solid var(--accepted-yellow);
      box-shadow: 0 .5rem 1rem rgba(0,0,0,.35) !important;
      }

    &:after {
      font-size: 1.4em;
      }
    }
  }

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

  Hero

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

@keyframes kenburns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.2) translate(-5%, -5%) rotate(1deg);
  }
}

.hero {
  width: 100%;
  max-width: 100%;
  min-height: 70rem;
  margin: 0 auto;
  margin-top: 10rem;

    @media only screen and (min-width: 320px) and (max-width: 1023px) {
      margin-top: 8rem;
    }

  text-align: center;

  .plc {
    width: 100%;
    max-width: 144rem;
    height: 100%;
    min-height: 70rem;
    margin: 0 auto;
    padding-top: var(--global-padding-double);
    padding-bottom: var(--global-padding-double);
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    }

  .hero-background {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url("../jpg/bg-hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    /*animation: kenburns 20s ease-in-out infinite alternate;*/
  }

  .hero-main {
    padding: var(--global-padding-double);

    .hero-text { color: white; }

    h1 {
      margin-bottom: .5em;
      color: white;
      font-size: 6em;
      font-weight: 200;
      letter-spacing: -0.03125em;
      line-height: 1.1em;

      span { color: var(--accepted-yellow); }
      }

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

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

  .hero-button-set {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--global-padding);

    a {
      background: linear-gradient(to top, rgba(255,255,255,.15) 50%, var(--accepted-yellow) 50%);
      background-size: 100% 210%;
      background-position: center top;
      backdrop-filter: blur(1rem);

      width: calc(30% - var(--global-padding-half));
      padding: var(--global-padding-double) var(--global-padding);
      border-bottom: 2px solid var(--accepted-yellow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: var(--default-text);;
      font-size: 2.4em;
      font-weight: 400;
      line-height: 1.4em;

      @media only screen and (min-width: 640px) and (max-width: 1023px) {
        width: calc(50% - var(--global-padding-half));
      }
      @media only screen and (min-width: 320px) and (max-width: 639px) {
        width: calc(100% - var(--global-padding-half));
        padding: var(--global-padding);
      }

      &:hover {
        background-position: center bottom;
        box-shadow: var(--global-box-shadow);
        color: white;
        transform: scale(1.05);
        }
      }

    i {
      margin: .5em 0 .75em 0;
      opacity: 1;
      color: white;
    }
  }
}

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

  Layout Settings - Home

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

.home-tagline {
  text-align: center;

  .plc {
    max-width: 132rem;
    margin: 0 auto;
    overflow: auto;
    }

  p { text-wrap: pretty; }
  }

.home-featured-in {
  .plc {
    max-width: 144rem;
    margin: 0 auto;
    border-top: 1px solid var(--accepted-yellow);
    overflow: auto;
    }
  }

@media only screen and (min-width: 320px) and (max-width: 1023px) {
  .home-featured-in-text {
    width: 100%;
    padding-bottom: var(--global-padding);
    text-align: center;
    }

  .home-featured-in-logos {
    width: 100%;
    padding-top: 0;
    }
  }

.home-consultants {
  position: relative;

  .plc {
    background: #efefef;
    max-width: 144rem;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: var(--global-box-shadow);
    }

  .swiper-consultant {
    width: 100%;
    padding: 2rem 4rem 4rem 4rem;

    .swiper-slide {
      a {
        background: rgba(var(--accepted-yellow-rgb),.1);
        background: white;
        display: block;
        padding: var(--global-padding);
        border: 1px solid #ddd;
        font-weight: normal;
        color: var(--default-text);;
        text-align: center;

        &:hover {
          background: rgba(var(--accepted-yellow-rgb),1);
          border: 1px solid var(--accepted-yellow);
          box-shadow: 0 1rem 2rem rgba(0,0,0,.25) !important;
          transform: scale(1.05);

          .area span {
            background: #666;
          }
        }
      }

      img {
        max-width: 50%;
        margin-bottom: 1.5em;
        border: 1px solid var(--accepted-yellow);
        border-radius: 50%;
        }

      h3 { font-size: 1.7em; }

      .one-liner {
        font-size: 1.5em;
        text-wrap: pretty;
      }

      .area {
        font-size: 1.2em;
        text-transform: uppercase;

        span {
          display: inline-block;
          background: var(--accepted-yellow);
          margin: .1rem;
          padding: .125em .5em;
          color: white;
          font-weight: 700;

          i { margin-right: .125em; }
          }
        }
      }
    }
  }

.home-reviews {
  .home-reviews-wrapper { position: relative; }

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    overflow: auto;
    }

  .swiper-review-background {
    background: url("../svg/bg-review-quote.svg") no-repeat;
    background-position: top right;
    background-size: 10rem;
    padding-right: 10rem;
    }

  .swiper-review {
    padding-bottom: 2rem;

    .review-item {
      background: rgba(var(--accepted-blue-rgb),.1);
      height: auto;
      padding: var(--global-padding-double);
      border: 1px solid rgba(var(--accepted-blue-rgb),.2);

      blockquote {
        margin: 0 0 1.5em 0;
        font-size: 1.8em;
        font-style: normal;
        font-weight: 200;
        line-height: 1.8em;
        text-wrap: pretty;
        }

      p.author {
        margin: 0 0 1rem 0;
        color: var(--accepted-blue);

        i {
          margin-right: .25em;
          }
        }

      p.consultant {
        margin: 0;
        padding-top: 1rem;
        border-top: 1px dashed #999;
        }
      }
    }
  }


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

  Layout Settings - About

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

/* About Us */

.about-us-intro {
  div { text-align: center; }

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    img { max-width: 50%; }
    }
}

.about-us-features {
  clear: both;
  .plc {
    background: rgba(var(--accepted-yellow-rgb),1);
    max-width: 144rem;
    margin: 0 auto;
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    }

  h2 { color: var(--default-text);; }

  .icon-bg {
    display: inline-block;
    background: rgba(255,255,255,.2);
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.2em;
    text-align: center;
    line-height: 10rem;
    }

  i {
    display: inline-block;
    color: white;
    vertical-align: middle;
    }

  .about-us-features-set {
    display: flex;
    flex-wrap: wrap;
  }

  @media only screen and (min-width: 320px) and (max-width: 1023px) {
    .about-us-features-item { width: 100%; }
    }
  }

/* Team */

.about-team-intro-image {
  text-align: center;

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    img { max-width: 50%; }
    }
  }

.team-advantage {
  .advantage-block {
    display: flex;

    &:nth-child(even) {
      .icon {
        order: 2;
        }
      }

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

      .icon {
        text-align: left;

        p { margin: 0; }
        }

      &:nth-child(even) {
        .icon { order: -1; }
        }
      }
    }
  }

/* Team - Single */

.about-team-single {
  .plc {
    padding-bottom: 0 !important;
    display: flex;
    flex-wrap: wrap;

    .consultant-header {
      background: rgba(var(--accepted-blue-rgb),.1);
      margin-bottom: 0;
      border-right: 1rem solid white;
      border-left: 1rem solid white;
      display: flex;
      justify-content: space-evenly;
      gap:  var(--global-padding-double);

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

      .consultant-photo {
        text-align: center;

        .linkedin {
          margin: 0;
          font-size: 2em;

          i {
            margin-right: .125em;
            opacity: .75;
            color: var(--default-text);;
            }
          }
        }

      .quote-wrapper {
        background: url("../svg/bg-review-quote.svg") no-repeat;
        background-position: right top;
        background-size: 6rem;
        padding-right: 6rem;
        text-align: right;
        position: relative;

        @media only screen and (min-width: 320px) and (max-width: 1023px) {
          background-position: center top;
          background-size: 3rem;
          padding: 3rem 0 0 0;
          text-align: center;
          }
        }

        img {
          width: 100%;
          max-width: 50rem !important;
          min-width: 36rem;
          border: 1px solid var(--accepted-yellow);
          border-radius: 50%;

          @media only screen and (min-width: 320px) and (max-width: 1023px) {
            width: 100%;
            max-width: 50rem;
            }
          }

      blockquote {
        margin: 0 auto 1.6em auto;
        padding: var(--global-padding-half) var(--global-padding-double);
        border-right: 1px solid rgba(var(--accepted-blue-rgb),1);
        color: var(--default-text);;
        font-size: 2.4em;
        font-style: normal;
        line-height: 1.6em;
        text-wrap: pretty;

        @media only screen and (min-width: 320px) and (max-width: 1023px) {
          margin-bottom: 1em;
          padding: var(--global-padding-half) 0;
          border-right: none;
          border-top: 1px solid rgba(var(--accepted-blue-rgb),1);
          font-size: 2em;
          }
        }
      }

    .consultant-specialty {
      background: var(--accepted-yellow);
      border-right: 1rem solid white;
      border-left: 1rem solid white;

      @media only screen and (min-width: 320px) and (max-width: 1279px) {
        > div { width: 100%; }
      }

      h3 {
        margin: 0;
        padding-top: .125em;
        color: var(--default-text);;
        }

      ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: .4rem;

        @media only screen and (min-width: 320px) and (max-width: 1279px) {
          margin-top: 1.6em;
        }

        li {
          background: rgba(255,255,255,.9);
          padding: .25em 1em;
          list-style: none;
          text-wrap: wrap;

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

    .client-review-wrapper {
      background: url("../svg/bg-review-quote.svg") no-repeat;
      background-position: left 2rem;
      background-size: 6rem;
      padding-left: 6rem;
      }

    .client-review {
      background: rgba(var(--accepted-blue-rgb),.1);
      margin-bottom: var(--global-padding);
      padding: var(--global-padding);
      border: 1px solid rgba(var(--accepted-blue-rgb),.2);

      blockquote {
        margin: 0 0 1.5em 0;
        font-size: 1.8em;
        font-style: normal;
        font-weight: 200;
        line-height: 1.8em;
        text-wrap: pretty;
        }
        }

      p.author {
        margin: 0 0 0;
        color: var(--accepted-blue);

        i { margin-right: .25em; }
        }
      }

    .in-the-media {
      background: rgba(0,0,0,.05);
      border-right: 1rem solid white;
      border-left: 1rem solid white;

      .in-the-media-contents {
        display: flex;
        gap: var(--global-padding-double);

        @media only screen and (min-width: 800px) and (max-width: 1279px) {
          }

        @media only screen and (min-width: 320px) and (max-width: 799px) {
          flex-direction: column;
          gap: 1rem;

          div {
            width: 100%;
            padding-bottom: 0 !important;
            }
          }
        }

      h2 { margin: 0; }

      h4 { color: var(--default-text);; }

      ul {
        padding-left: 0;

        li {
          list-style: none;
          margin-bottom: .5rem;
          padding-bottom: .5rem;
          border-bottom: 1px solid #ccc;

          &:last-child {
            border-bottom: none;
            }
          }
        }

      i {
        margin-right: .5em;
        color: var(--default-text);;
        }
      }
    }

.school-list {
  padding-left: 0;
  font-size: 1.5em;
  columns: 3;
  column-gap: 4rem;

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

  li {
    list-style: none;
    break-inside: avoid;
    text-indent: -1em;
    padding-left: 1em;
    }
  }

/* In the News */

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

  h4 { color: var(--default-text);; }

  .meta {
    font-size: .8em;

    p { margin: 0; }

    i { margin-right: .25em; }
    }
  }

/* Testimonials */

.about-testimonials-intro {
  .consultant-list {
    column-count: 3;

    @media only screen and (min-width: 960px) and (max-width: 1279px) {
      column-count: 2;
    }
    @media only screen and (min-width: 320px) and (max-width: 959px) {
      column-count: 1;
    }
  }

  .icon {
    @media only screen and (min-width: 320px) and (max-width: 767px) {
      img { max-width: 50%; }
      }
    }
  }

.about-testimonials-general {
  .plc {
    clear: both;
    background: url("../svg/bg-review-quote.svg") no-repeat;
    background-position: right var(--global-padding) top var(--global-padding-double);
    background-size: 10rem;
    max-width: 144rem;
    margin: 0 auto 2rem auto;
    padding: var(--global-padding-double) 12rem var(--global-padding) var(--global-padding);
    border-top: 1px solid #ccc;
    column-count: 3;
    column-gap: 2rem;

    &.consultant-single {
      border-top: none;
    }

    &.single-column {
      column-count: 1;
    }

    &.double-column {
      column-count: 2;
    }

    @media only screen and (min-width: 768px) and (max-width: 1279px) {
      column-count: 2;
    }
    @media only screen and (min-width: 320px) and (max-width: 767px) {
      column-count: 1;
    }

    .review-item-wrapper {
      border-bottom: var(--global-padding) solid white;
      break-inside: avoid;
      }

    .review-item {
      background: rgba(var(--accepted-blue-rgb),.1);
      height: auto;
      padding: var(--global-padding-double);
      border: 1px solid rgba(var(--accepted-blue-rgb),.2);

      blockquote {
        margin: 0 0 1.5em 0;
        font-size: 1.8em;
        font-style: normal;
        font-weight: 200;
        line-height: 1.8em;
        text-wrap: pretty;
        }

      p.author {
        margin: 0 0 1rem 0;
        color: var(--accepted-blue);

        i { margin-right: .25em; }
        }

      p.consultant {
        margin: 0;
        padding-top: 1rem;
        border-top: 1px dashed #999;
        }

      &.consultant-single {
        padding-bottom: 2.75rem;

        p.author {
          display: flex;
          align-items: baseline;
          gap: .25em;
        }

      }

      }
    }
  }

.about-testimonials-back-button {
  .plc {
    padding: 0 var(--global-padding) !important;
    }
  }

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

  Layout Settings - Goals

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

  .goals-list-set {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--global-padding);

    a {
      background: linear-gradient(to top, rgba(255,255,255,.15) 50%, var(--accepted-yellow) 50%);
      background-size: 100% 210%;
      background-position: center top;

      width: calc(33% - var(--global-padding-half));
        @media only screen and (min-width: 640px) and (max-width: 1023px) {
          width: calc(50% - var(--global-padding-half));
        }
        @media only screen and (min-width: 320px) and (max-width: 639px) {
          width: calc(100% - var(--global-padding-half));
        }

      padding: var(--global-padding-double) var(--global-padding);
      border-bottom: 2px solid var(--accepted-yellow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: var(--default-text);;
      font-size: 2.4em;
      font-weight: 400;
      line-height: 1.4em;
      text-align: center;

      &:hover {
        background-position: center bottom;
        box-shadow: var(--global-box-shadow);
        transform: scale(1.05);

        i { color: var(--accepted-yellow); }
        }
      }

    i {
      margin: .5em 0 .25em 0;
      opacity: 1;
      color: white;
    }
  }






.goals-intro {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;

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


.goals-intro-image {

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    img { max-width: 50%; }
    }
  }

.goals-free-guides {
  background: rgba(var(--accepted-blue-rgb),.1);
  overflow: auto;

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    }
  }

.goals-sample-essays {
  overflow: auto;

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    }
  }

.goals-services {
  background: rgba(var(--accepted-yellow-rgb),1);
  overflow: auto;

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    }

  h2 { color: var(--default-text); }

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    .goals-services-icon {
      padding: var(--global-padding);

      img {
        width: 50%;
        max-width: 50% !important;
        }
      }
  }

  .goals-services-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--global-padding);

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

    .goals-services-item {
      width: 100%;
      background: white;
      padding: var(--global-padding);
      padding-bottom: 0;
      border: 1px solid #eaeaea;

      display: flex;
      justify-content: space-between;

      .info {
        width: 80%;
        }

      .image {
        width: 15em;
        padding-left: var(--global-padding-double);
        }

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

        .info { width: 100%; }

        .image {
          padding-left: 0;
          order: -1;
          }
        }

    }
  }
}

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

  Layout Settings - Services

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

.services-intro {
  overflow: auto;

  .plc {
    max-width: 144rem;
    margin: 0 auto;
    }

  @media only screen and (min-width: 320px) and (max-width: 767px) {
    .services-intro-icon {
      padding: var(--global-padding);

      img {
        width: 50%;
        max-width: 50% !important;
        }
      }
  }
}

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

  Layout Settings - Resources

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

.free-guide {
  clear: both;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;

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

  .free-guide-cover {
    img {
      box-shadow: var(--global-box-shadow);
      }
    }

  .download-form {
    background: rgba(var(--accepted-yellow-rgb),.1);
    }
  }

.sample-essay {
  clear: both;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;

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

.sample-essay-wrap {
  background: rgba(var(--accepted-blue-rgb),.05);
  border: .1rem solid rgba(var(--accepted-blue-rgb),.2);

  i {
    margin-top: 1em;
    color: var(--accepted-yellow);
    font-size: 6em;
  }
}

table.deadlines {
  th, td {
    text-align: center !important;

    &:first-child {
      text-align: left !important;
    }
  }
}

.podcast-cta {
  clear: both;
  color: white;

  .plc {
    background: var(--accepted-yellow);
    max-width: 144rem;
    margin: var(--global-padding) auto;
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    display: flex;
    align-items: center;
    justify-content: center;

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

  h3 {
    text-align: center;
    white-space: nowrap;

    @media only screen and (min-width: 768px) {
      margin: 0;
    }

    i {
      margin-right: .25em;
      color: white;
      }
    }

  .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;

    a {
      &:hover {
        box-shadow: var(--global-box-shadow);
        transform: scale(1.05);
        transition: var(--default-transition);
      }
    }
  }
}

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

  Layout Settings - Free Consultation

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

.free-consultation {
  overflow: auto;
  border-bottom: 1px solid var(--accepted-blue);
  }

.free-consultation-text {
  img {
    width: 100%;
    max-width: 20rem !important;
    min-width: 15rem;
    margin-bottom: 2em;
    border: 1px solid var(--accepted-yellow);
    border-radius: 50%;

    @media only screen and (min-width: 320px) and (max-width: 1023px) {
      width: 100%;
      max-width: 50rem;
      }
    }
}

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

  Layout Settings - Job Openings

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

.job-openings {
  overflow: auto;
  border-bottom: 1px solid var(--accepted-blue);
  }

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

  Layout Settings - Shopify

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

table.product-comparison {
  thead {
    tr {
      th {
        text-align: center;

        &:first-child {
          text-align: left;
          background: none;
          }
      }
    }
  }

  td {
    text-align: center;

    &:first-child {
      text-align: left;
      }
    }
  }

.product-single-image {
  img {
    width: 100%;
    max-width: 30rem;
  }
}

.product-footnote {
  font-size: .8em !important;
  font-style: italic !important;
}

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

  Layout Settings - Blog

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

.post {
  margin-bottom: var(--global-padding-double);
  padding-bottom: var(--global-padding-double);
  border-bottom: 1px solid var(--accepted-yellow);

  &:last-of-type {
    border-bottom: none;
    }

  h2 {

    a {
      font-weight: 200;

      strong {
        font-weight: 200;
      }
    }
  }

  .post-date {
    display: inline-block;
    background: var(--accepted-blue);
    padding: var(--global-padding-half) var(--global-padding);
    margin-left: -2rem;
    color: white;
    font-size: 1.4em;

    i {
      opacity: .75;
      margin-right: .25em;
    }

    a {
      color: white;
      }
    }

  .post-cover-image {
    img {
      width: 100%;
      height: auto;
      border: 1px solid rgba(var(--accepted-blue-rgb),.3);
    }
  }

  .meta {
    font-size: 1.4em;

    .post-category,
    .post-tags {
      display: grid;
      grid-template-columns: 3rem auto;

      .icon {
      }

      .list {
        a {
          background: rgba(var(--accepted-blue-rgb),.1);
          display: inline-block;
          margin-bottom: .4rem;
          padding: 0 .5em;

          &:hover {
            background: var(--accepted-yellow);
            color: #444;
          }
          }
        }
      }

  }

  .entry.single {
    h1 {
      font-size: 3.6em;
      line-height: 1.2em;

      a { font-weight: 200; }
      }

    h2 {
      font-size: 2em;
      font-weight: 700;
      line-height: 1.6em;
      }

    .wp-block-image {
      width: 100%;

      img {
        width: 100%;
        height: auto;
        border: 1px solid rgba(var(--accepted-blue-rgb),.3);
        }
      }
    }

  /* Minor overrides */

  figure {
    * {
      font-size: 1em;
    }
  }

}

.blog-sidebar {
  h3 {
    color: #444;
    font-weight: normal;

    i {
      margin-right: .5em;
      color: var(--accepted-yellow);
    }
  }

  .widget {}
}

.category-info {
  background: rgba(var(--accepted-yellow-rgb),.2);
  margin-bottom: 6rem;
  padding: var(--global-padding-half) var(--global-padding);
  border: 1px solid rgba(var(--accepted-yellow-rgb),.5);

  p {
    margin: 0;
    font-weight: 200;
    line-height: 1.4em;

    span {
      background: var(--accepted-yellow);
      padding: 0 .2rem;
      font-weight: normal;

      i {
        opacity: .5;
        }
      }
    }
  }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--accepted-yellow);
  gap: 4rem;

  .footer-nav-prev {
    width: calc(50% - 2rem);

    i {
      margin-right: .5em;
      opacity: .75
      }

    span {
      font-weight: normal;
      }
    }

  .footer-nav-next {
    width: calc(50% - 2rem);
    text-align: right;

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

    span {
      font-weight: normal;
      }
    }

  a {
    display: inline-block;
    background: linear-gradient(to top, rgba(255,255,255,.15) 50%, var(--accepted-yellow) 50%);
    background-size: 100% 210%;
    background-position: center top;
    transition: all .125s ease-out;
    margin-bottom: .25em;
    padding: .6rem 3.5rem;
    color: var(--default-text); !important;
    border: none;
    border-bottom: 2px solid var(--accepted-yellow);

    &:hover {
      background-position: center bottom;
      box-shadow: var(--global-box-shadow);
      transform: scale(1.05);
      }
    }

    p { margin: 0; }
  }

.footer-nav.single-post span.post-title {
  display: block;
  color: var(--default-text);;
  border-bottom: none;
  }

.blog-search-form {
  p {
    font-size: 1.7rem;
    display: flex;
    }

  button {
    padding: .5rem 2rem;
    height: 48px;
  }

  input[type="text"] {
    min-width: 60%;
    max-width: 600px !important;
    height: 48px;
    }
  }

.tagcloud {
  a {
    display: inline-block;
    margin-right: .25em;
  }
}

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

  Layout Settings - Error Pages

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

section.error-page {
  .plc {
    padding-top: 18rem;
  }

  h1 {
    max-width: 75%;
    color: #999;
    font-size: 6.4em;
    font-weight: 100;
    letter-spacing: -0.0125em;
    line-height: 1.1em;
    text-wrap: pretty;

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

}


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

  Reusable Components

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

.featured-logo-set {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  justify-content: center;
  align-items: center;
  }

.video-wrapper {
  margin-bottom: 3.22em;
  border: .1rem solid rgba(var(--accepted-blue-rgb),.5);

  &.margin-none { margin-bottom: 0; }
  }

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

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

.component-faqs {
  clear: both;

  .plc {
    background: rgba(var(--accepted-blue-rgb),.1);
    max-width: 144rem;
    margin: 0 auto;
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    overflow: auto;
    }

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

  h2 { color: var(--default-text);; }

  @media only screen and (min-width: 640px) and (max-width: 767px) {
    .faq-icon {
      padding-top: 0;
      text-align: left;
      }

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

.component-awards-recognition {
  .plc {
    max-width: 144rem;
    margin: 0 auto;
    border-right: 1rem solid white;
    border-left: 1rem solid white;
    }

  .awards-recognition-list {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: .5rem;

    @media only screen and (min-width: 768px) and (max-width: 1023px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
    @media only screen and (min-width: 640px) and (max-width: 767px) {
      grid-template-columns: 1fr 1fr;
    }
    @media only screen and (min-width: 320px) and (max-width: 639px) {
      grid-template-columns: 1fr;
    }

    li {
      background: linear-gradient(to top, rgba(var(--accepted-yellow-rgb),1) 50%, rgba(var(--accepted-blue-rgb),.1) 50%);
      background-size: 100% 200%;
      background-position: center top;
      border: 1px solid #eee;
      width: 100%;
      list-style: none;
      position: relative;
      transition: all .125s ease-out;

      &:hover {
        background-position: center bottom;
        box-shadow: var(--global-box-shadow);
        border: 1px solid rgba(var(--accepted-blue-rgb),0);
        transform: scale(1.05);
        z-index: 100;

        * { color: var(--default-text); !important; }

        .media { border-top: 1px solid rgba(255,255,255,.1); }
      }

      a {
        display: block !important;
        height: 100%;
        padding: var(--global-padding);
        font-weight: normal;
        }

      span {
        display: block;

        &.title {
          font-weight: bold;
          padding-bottom: .25em;
          }

        &.media {
          width: 100%;
          padding-top: .5em;
          border-top: 1px solid rgba(0,0,0,.1);
          color: var(--default-text);;
          font-size: .8em;
          line-height: 1.6em;
          display: flex;
          align-items: baseline;

          i { margin-right: .5em; }
          }
        }
      }
    }
  }

.component-team-lineup {
  clear: both;

  .plc {
    overflow: auto;
    background: #efefef;
    max-width: 144rem;
    margin: 0 auto 6rem auto;
    box-shadow: var(--global-box-shadow);
    }

  .team-set {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--global-padding);
    opacity: 1;
    transition: opacity .2s ease-in-out;

    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
    @media only screen and (min-width: 640px) and (max-width: 1023px) {
      grid-template-columns: 1fr 1fr;
    }
    @media only screen and (min-width: 320px) and (max-width: 639px) {
      grid-template-columns: 1fr;
    }

    a {
      background: rgba(var(--accepted-yellow-rgb),.1);
      background: white;
      width: 100%;
      display: block;
      padding: var(--global-padding);
      border: 1px solid #ddd;
      font-weight: normal;
      color: var(--default-text);;
      text-align: center;


      &.team-item {
        display: none;
        opacity: 0;
        transition: all .2s ease-in-out;
      }

      &.show {
        display: block;
        opacity: 1;

        @media only screen and (min-width: 320px) and (max-width: 639px) {
          display: flex;
          flex-wrap: nowrap;
          align-items: flex-start;
          text-align: left;

          img {
            max-width: 33.33% !important;
            height: auto !Important;
            margin-right: var(--global-padding);
          }
        }
      }

      &:hover {
        background: rgba(var(--accepted-yellow-rgb),1);
        border: 1px solid var(--accepted-yellow);
        box-shadow: 0 1rem 2rem rgba(0,0,0,.25) !important;
        transform: scale(1.05);

        .area span {
          background: #666;
        }
      }
    }

    img {
      max-width: 65%;
      margin-bottom: 1.5em;
      border: 1px solid var(--accepted-yellow);
      border-radius: 50%;
      }

    h3 { font-size: 1.7em; }

    .one-liner {
      font-size: 1.5em;
      text-wrap: pretty;
      }

    .area {
      font-size: 1.2em;
      text-transform: uppercase;

      span {
        display: inline-block;
        background: var(--accepted-yellow);
        margin: .1rem;
        padding: .125em .5em;
        color: white;
        font-weight: 700;

        i { margin-right: .125em; }
        }
      }
    }
  }

.filter-controls {
  margin-bottom: 1.6em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1em;

  p { margin: 0; }

  .filters {
    margin: 0;
    margin-bottom: 1.6em;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.7em;

    button {
      background: #ccc;
      margin: 0 .4rem .4rem 0rem;
      padding: .125em 1em;
      border: none;
      color: #999;
      font-weight: normal;

      &:hover {
        background: var(--accepted-yellow) !important;
        color: var(--default-text) !important;
        box-shadow: var(--global-box-shadow-half);
        }

      &.active {
        background: var(--accepted-blue);
        color: white;
        }
      }
    }
  }

.component-guides-set {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: var(--global-padding);

  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media only screen and (min-width: 640px) and (max-width: 767px) {
    grid-template-columns: 1fr 1fr;
  }
  @media only screen and (min-width: 320px) and (max-width: 639px) {
    grid-template-columns: 1fr;
  }

  .guides-item {
    background: rgba(var(--accepted-blue-rgb),.1);
    width: 100%;
    padding: var(--global-padding-half);
    border: 1px solid #ccc;
    display: block;
    text-align: center;

    @media only screen and (min-width: 320px) and (max-width: 639px) {
      display: flex;
      text-align: left;
      align-items: center;

      img { max-width: 25%; }

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

    &:hover {
      background: #eee;
      border-color: #eee;
      color: var(--default-text);
      box-shadow: 0 1rem 2rem rgba(0,0,0,.25) !important;
      transform: scale(1.05);
    }

    p {
      margin: 0;
      padding: 1rem 1rem 0 1rem;
      }
  }
}

.component-sample-essays-set {
  font-size: 2em;
  line-height: 1.5em;

  a {
    background: var(--accepted-blue);
    margin-bottom: 1px;
    padding: 1em 1.5em;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .25em;

    &:hover {
      background: var(--accepted-yellow);
      color: var(--default-text);
      box-shadow: var(--global-box-shadow);

      i { color: var(--default-text); }
    }
  }

  i {
    display: block;
    margin-right: .5em;
    color: var(--accepted-yellow);
  }
}

table.sortable-table {
  th {
    &::after {
      display: inline;
      font-family: 'Font Awesome 6 Sharp';
      font-weight: 300;
      opacity: .5;
      margin-left: .25em;
      content: "\00a0\e60d";
    }

    &.sort-asc, &.sort-desc {
      background-color: var(--accepted-yellow);
      color: var(--default-text);

      &::after {
        display: inline;
        font-family: 'Font Awesome 6 Sharp';
        font-weight: 900;
        opacity: .5;
        margin-left: .25em;
      }
    }

    &.sort-asc::after { content: "\00a0\f106"; }

    &.sort-desc::after { content: "\00a0\f107"; }
  }
}

.table-wrapper.selectivity-index {
  max-height: 80vh;
  margin-bottom: 1.6em;
  border: 1px solid #ccc;
  }

table.selectivity-index {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 1.5em;

  thead {
    position: sticky;
    top: 0;
    }

  tr:nth-child(odd) td { background: rgba(var(--accepted-yellow-rgb),.1); }

  th, td {
    padding: .5em .75em;
    text-align: right;

    &:first-child {
      text-align: left;
      }
    }

  th {
    background-color: var(--accepted-blue);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.125s ease-out;

    &:hover {
    background-color: var(--accepted-yellow);
    color: var(--default-text);
    }
  }

  &.medical {
    th:nth-child(2), th:nth-child(9),
    td:nth-child(2), td:nth-child(9) {
      text-align: left;
    }
  }
}






/* -------------------------------------------------------------
  Lightbox
------------------------------------------------------------- */

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

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

  a {
    width: calc(20% - 1em);

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

    margin: 0 1em 1em 0;

    &:hover { filter: grayscale(1); }
    }
  }

.ajax-popup {
	background: white;
	max-width: 80%;
	position: relative;
	overflow: hidden;
	margin: 4rem auto;
	padding: 3em;
	text-align: left;
	box-shadow: var(--global-box-shadow);

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

/* -------------------------------------------------------------
  Tabs
------------------------------------------------------------- */

.pseudo-tab {
	position: relative;
	padding: 0;
	zoom: 1;
}

.pseudo-tab-nav {
    margin: 0 .5rem -.1rem .5rem;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;

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

    &.centered-tabs { justify-content: center; }

    li {
      list-style: none;
      position: relative;
      margin-top: .5rem;
      margin-right: .5rem;
      padding: 0;
      line-height: 1.5em;

      @media only screen and (min-width: 319px) and (max-width: 959px) {
        margin: 0;
        white-space: normal;
        }

      &.ui-tabs-selected {
        margin-bottom: 0;
        padding-bottom: .1rem;
        }

      &.ui-state-active a {
				background: white !important;
				border-bottom: .1rem solid white;
				color: var(--accepted-blue);
        pointer-events: none;

				}

      a {
        height: 100%;
        float: left;
        background: #ddd;
        padding: .75rem 2rem;
        border: .1rem solid #ccc;
        color: #999;
        font-weight: normal;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: baseline;

        @media only screen and (min-width: 319px) and (max-width: 959px) {
          width: 100% !important;
          float: none;
          display: block;
          margin-top: .1rem;
          }

        &:hover {
          background: var(--accepted-blue) !important;
          border-color: var(--accepted-blue);
          color: white;
          }
        }

      i {
  			margin-right: .75rem;
  			opacity: .75;
			  }

			&.ui-tabs-selected a { cursor: pointer; }

			&.ui-state-disabled a,
			&.ui-state-processing a {
				cursor: text;
				}
      }
    }

  .pseudo-tab-content {
		clear: both;
		display: block;
		margin: 0;
		border-width: 0;
		border-top: 1px solid #ccc;
		}




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

  .ui-tabs-nav {
    margin: 0 .5rem -.1rem .5rem;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;

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

    &.centered-tabs { justify-content: center; }

    li {
      list-style: none;
      position: relative;
      margin-top: .5rem;
      margin-right: .5rem;
      padding: 0;
      white-space: nowrap;

      @media only screen and (min-width: 319px) and (max-width: 959px) {
        margin: 0;
        white-space: normal;
        }

      &.ui-tabs-selected {
        margin-bottom: 0;
        padding-bottom: .1rem;
        }

      &.ui-state-active a {
				background: white !important;
				border-bottom: .1rem solid white;
				color: var(--accepted-blue);

        &:hover {
  				background: var(--accepted-blue) !important;
  				border-color: var(--accepted-blue);
  				cursor: default;
				  }
				}

      a {
        height: 100%;
        float: left;
        background: #ddd;
        padding: .5rem 2rem;
        border: .1rem solid #ccc;
        color: #999;
        font-weight: normal;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: baseline;
        white-space: wrap;

        @media only screen and (min-width: 319px) and (max-width: 959px) {
          width: 100% !important;
          float: none;
          display: block;
          margin-top: .1rem;
          }

        &:hover {
          background: var(--accepted-blue) !important;
          border-color: var(--accepted-blue);
          color: white;
          }
        }

      i {
  			margin-right: .75rem;
  			opacity: .75;
			  }

			&.ui-tabs-selected a { cursor: pointer; }

			&.ui-state-disabled a,
			&.ui-state-processing a {
				cursor: text;
				}
      }
    }

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

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

  &.ui-tabs-collapsible { cursor: pointer; }
  }

/* -------------------------------------------------------------
  Accordion
------------------------------------------------------------- */

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

  * { outline: none; }

  h3 {
		background: url("../png/bg-plus.png") 0 11px no-repeat;
		margin: 0;
		padding: 0 0 0 2rem;
    font-size: 1.7em;
    line-height: 1.8em;

    &.ui-accordion-header-active {
      background-image: url("../png/bg-minus.png");

      a { color: var(--accepted-yellow); }
      }

    a {
			display: inline-block;
			clear: both;
			}
		}

  article {
    background: white;
		overflow: hidden;
		clear: both;
    margin: 1.6em 0;
    padding: var(--global-padding);
    padding-bottom: 0;
		}
	}

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

  Animations

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

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

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

  Media Queries

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

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

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

a.open { display: inline-block; }

a.close {
  background: none;
  display: block;
  padding: 0;
  color: #666;
  font-size: 4.8rem;
  position: absolute;
  top: 2rem;
  right: 2rem;

  &:hover { color: white; }
  }

/* Responsive Menu Overlay */

.overlay {
  background-color: var(--accepted-yellow);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 1rem solid white;
  position: fixed;
  top: 0;
  right: -105%;
  z-index: 1000000000;
  overflow-x: hidden;
  transition: .2s;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

    @media only screen and (min-width: 640px) and (max-width: 1023px) {
      width: 50%;
      box-shadow: var(--global-box-shadow);
    }
  }

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

    li {
      width: auto;
      height: auto;
      overflow: auto;
      margin: 0;
      padding: 1.5rem;
      border-bottom: 1px solid white;

      &:last-child { border-bottom: 0; }

      a {
        background: none;
        display: inline-block;
        padding: .5em;
        color: var(--default-text);;

        &.current {
          background: none;
          color: var(--accepted-blue);
          }

        &:hover {
          color: var(--default-text);;
          box-shadow: none;
          }
        }

      &.dropdown {
        a { border: none !important; }

        &:hover {
          a { border: none; }
        }
      }
    }

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

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

        a,
        &:hover a {
          background: linear-gradient(to right, white 50%, var(--accepted-yellow) 50%);
          background-size: 200% 100%;
          background-position: right top;
          display: inline-block;
          color: var(--default-text);;

          &:hover {
            background-position: left top;
            color: var(--default-text);;
          }
        }
      }
    }
  }
}

nav ul li a:hover {
  color: var(--accepted-blue);
}

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