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,
input,
button,
select,
textarea {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
/* 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;
}
/* general
***********************************************************************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #ffffff;
  color: #444444;
  font-family: 'Pontano Sans', Arial, Helvetica, Sans-Serif;
}
h1,
.as-h1 {
  color: #000000;
  font-size: 2rem;
  line-height: 1.5em;
  margin-bottom: 30px;
}
h2,
.as-h2 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 15px;
}
h3,
.as-h3 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 10px;
}
h4,
.as-h4 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
a {
  color: #ff6f12;
  text-decoration: underline;
}
html.no-touch a:hover {
  color: #f69252;
}
p {
  font-size: 1.15rem;
  line-height: 1.7em;
  margin-bottom: 30px;
}
b,
strong {
  font-weight: bold;
}
i,
em {
  font-style: italic;
}
::selection {
  background: #ff6f12;
  color: #ffffff;
  text-decoration: none;
}
::-moz-selection {
  background: #ff6f12;
  color: #ffffff;
  text-decoration: none;
}
.no-margin {
  margin: 0;
}
.table > thead > tr > th {
  color: #000000;
  font-weight: bold;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 10px 15px;
}
/* container
***********************************************************************************************************************/
.container.padded {
  padding-top: 60px;
  padding-bottom: 60px;
}
.container.padded-md {
  padding-top: 30px;
  padding-bottom: 30px;
}
/* separator
***********************************************************************************************************************/
.separator {
  border-top: 1px solid #eeeeee;
  clear: both;
  display: block;
  height: 0;
  margin-bottom: 30px;
  position: relative;
}
.separator:before,
.separator:after {
  background: #ff6f12;
  border: 1px solid #ffffff;
  border-radius: 50%;
  content: ".";
  display: block;
  text-indent: -999999px;
  overflow: hidden;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
}
.separator:before {
  left: 0;
}
.separator:after {
  right: 0;
}
/* form
***********************************************************************************************************************/
input.date,
input.email,
input.text,
textarea {
  border: 1px solid #eeeeee;
  line-height: normal;
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
}
textarea {
  height: 100px;
  resize: vertical;
}
button {
  cursor: pointer;
}
form .row {
  margin-bottom: 20px;
}
form .row:last-of-type {
  margin: 0;
}
.wpcf7-form-control-wrap,
.wpcf7-not-valid-tip {
  display: block;
}
.wpcf7-not-valid-tip {
  padding-top: 10px;
}
span.wpcf7-list-item {
  display: block;
  margin: 0 0 0.5em 0;
}
span.wpcf7-list-item.last {
  margin-bottom: 0;
}
/* next section
***********************************************************************************************************************/
.next-section {
  color: #ffffff;
  display: block;
  font-size: 4em;
  opacity: 0.5;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 98;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.next-section span:before {
  width: auto;
  margin: 0;
}
html.no-touch .next-section:hover {
  color: #ffffff;
  opacity: 1;
}
/* header
***********************************************************************************************************************/
#header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}
#header #header__content {
  max-width: 1170px;
  margin: 0 auto;
}
/* logo
***********************************************************************************************************************/
#logo {
  background: url('img/logo.svg') 0 0 no-repeat;
  background-size: contain;
  display: block;
  float: left;
  width: 227px;
  height: 50px;
  text-indent: -999999px;
  overflow: hidden;
  margin: 15px;
}
/* nav
***********************************************************************************************************************/
#nav a {
  color: #000000;
  display: block;
  text-decoration: none;
}
#nav-toggle {
  display: none;
  float: right;
  width: 50px;
  height: 50px;
  margin: 15px;
  position: relative;
  z-index: 99;
}
#nav-toggle .icon {
  color: #999999;
  display: block;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#nav-toggle .on-open {
  opacity: 0;
  visibility: hidden;
}
html.nav-open #nav-toggle .on-open {
  opacity: 1;
  visibility: visible;
}
html.nav-open #nav-toggle .on-close {
  opacity: 0;
  visibility: hidden;
}
/* login my sfg
***********************************************************************************************************************/
#login-my-sfg {
  background: #999999;
  border-radius: 0 0 2px 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: block;
  font-size: 0.6875rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5em 0.75em;
  position: absolute;
  top: 0;
  right: 15px;
}
html.no-touch #login-my-sfg:hover {
  background-color: #666666;
}
body.scrolled #login-my-sfg {
  opacity: 0;
  visibility: hidden;
}
/* alert
***********************************************************************************************************************/
.wrapper.alert {
  background: #6a8f0c;
  margin: 1px 0;
}
#alert {
  color: #ffffff;
  padding: 40px 0;
}
#alert h2 {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 0.3em;
}
#alert p {
  font-size: 1.2em;
  line-height: 1.4em;
  padding-bottom: 0.5em;
}
#alert p:last-child {
  padding-bottom: 0;
}
#alert a,
#alert strong {
  color: #ffffff;
}
/* usp
***********************************************************************************************************************/
.wrapper.usp {
  height: 100%;
  min-height: 400px;
}
.wrapper.usp .grid-container {
  max-width: 100%;
  padding: 0;
}
#usp {
  color: #ffffff;
  height: 100%;
}
#usp ul {
  background: #000000;
  height: 100%;
  list-style: none;
  position: relative;
}
#usp ul li {
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#usp li.active {
  pointer-events: auto;
  opacity: 1;
}
#usp li .content {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#usp li .image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#usp li .text {
  width: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#usp li .text h2 {
  color: #ffffff;
  font-size: 2.5em;
  line-height: 1.2em;
  text-shadow: 0 0 20px #000000;
  margin-bottom: 0.5em;
}
#usp li .text p {
  font-size: 1.4em;
  line-height: 1.4em;
  text-shadow: 0 0 20px #000000;
}
#usp li .text .more {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  display: none;
  white-space: nowrap;
  margin-top: 30px;
  padding: 15px 30px;
  position: relative;
}
#usp li .text .more span {
  display: none;
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#usp li .text .more span:before {
  margin: 0;
}
html.no-touch #usp li .text .more:hover {
  background-color: #ffffff;
  color: #000000;
  padding-right: 50px;
}
html.no-touch #usp li .text .more:hover span {
  display: block;
}
#usp .prev,
#usp .next {
  color: #ffffff;
  display: block;
  font-size: 4em;
  text-align: center;
  padding: 20px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  z-index: 98;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#usp .prev {
  left: 0;
}
#usp .next {
  right: 0;
}
html.no-touch #usp .prev:hover,
html.no-touch #usp .next:hover {
  opacity: 1;
}
/* content
***********************************************************************************************************************/
#content {
  position: relative;
}
/* home
***********************************************************************************************************************/
#home {
  padding: 60px 0 30px 0;
}
#home .image {
  display: block;
  overflow: hidden;
  padding-top: 50%;
  position: relative;
}
#home .image span {
  color: #ff6f12;
  font-size: 4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#home h2 {
  text-align: center;
}
#home p {
  margin-bottom: 0;
}
#home p a {
  display: block;
  text-decoration: none;
}
#home #apply {
  border-top: 1px solid #eeeeee;
  color: #000000;
  font-size: 1.5em;
  line-height: 2.2em;
  text-align: center;
  margin-top: 20px;
  padding-top: 40px;
}
#home #apply a {
  background: #ff6f12;
  border-radius: 40px;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  margin-left: 15px;
  padding: 0 30px;
}
/* ratings
***********************************************************************************************************************/
#ratings {
  border-top: 1px solid #eeeeee;
  padding: 40px 0 20px 0;
}
#ratings h2 {
  color: #999999;
  font-size: 1.3rem;
  padding: 0 0 20px 120px;
}
#ratings .items {
  padding: 0 70px;
  position: relative;
}
#ratings .items .item h4 {
  font-size: 1.3rem;
  text-transform: none;
  padding: 0 50px;
}
#ratings .items .item .text {
  padding: 0 50px 10px 50px;
  position: relative;
}
#ratings .items .item p {
  font-size: 1.2rem;
  line-height: 1.4em;
  text-align: left;
}
#ratings .items .item i {
  color: #999999;
  font-size: 1.3rem;
  display: block;
  position: absolute;
}
#ratings .items .item i.start {
  top: 0;
  left: 0;
}
#ratings .items .item i.end {
  bottom: 0;
  right: 0;
}
#ratings .prev,
#ratings .next {
  background: #999999;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
#ratings .prev span,
#ratings .next span {
  color: #ffffff;
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#ratings .prev {
  left: 0;
}
#ratings .next {
  right: 0;
}
html.no-touch #ratings .prev,
html.no-touch #ratings .next {
  opacity: 0.8;
}
html.no-touch #ratings .prev:hover,
html.no-touch #ratings .next:hover {
  opacity: 1;
}
/* page
***********************************************************************************************************************/
#page ul,
#page ol {
  margin-bottom: 15px;
}
#page ul li,
#page ol li {
  font-size: 1.15rem;
  line-height: 1.5em;
  margin-bottom: 15px;
}
#page ul li .icon,
#page ol li .icon {
  color: #ff6f12;
}
#page ul.schools,
#page ol.schools {
  border-top: 1px solid #eeeeee;
  margin-bottom: 30px;
}
#page ul.schools li,
#page ol.schools li {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0 !important;
  padding: 12px 0;
  position: relative;
}
#page ul.schools li .distance,
#page ol.schools li .distance {
  border: 1px solid #ff6f12;
  border-radius: 2px;
  color: #ff6f12;
  display: block;
  font-size: 0.8125em;
  font-weight: bold;
  width: 60px;
  text-align: center;
  padding: 2px 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/* image
***********************************************************************************************************************/
img.alignnone,
img.alignleft,
img.alignright {
  border: 1px solid #eeeeee;
  padding: 1px;
}
img.alignleft {
  float: left;
  margin: 5px 60px 0 0;
}
img.alignright {
  float: right;
  margin: 5px 0 0 60px;
}
img.size-full {
  width: 100%;
  height: auto;
}
/* address
***********************************************************************************************************************/
#address {
  border: 1px solid #eeeeee;
  color: #000000;
  padding: 30px;
  position: relative;
}
/* social
***********************************************************************************************************************/
#social {
  background: #353535;
  color: #ffffff;
  padding: 30px 0;
}
#social #social__faq {
  float: left;
}
#social #social__follow {
  float: right;
}
#social #social__follow a {
  background: #ffffff;
  border-radius: 50%;
  color: #000000;
  font-size: 1.2rem;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 10px;
}
html.no-touch #social #social__follow a.social__follow--fb:hover {
  color: #335795;
}
html.no-touch #social #social__follow a.social__follow--li:hover {
  color: #03659a;
}
html.no-touch #social #social__follow a.social__follow--tw:hover {
  color: #4099ff;
}
/* person
***********************************************************************************************************************/
.person img {
  border-radius: 50%;
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.person h2 {
  text-align: center;
}
/* students
***********************************************************************************************************************/
#students #students__header {
  background: #222222 url('img/student-pattern.svg') 0 0 no-repeat;
  background-size: 100% auto;
  color: #ffffff;
}
#students #students__header #students__header__filters {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
#students #students__header #students__header__filters #students__header__filters__title {
  color: #ffffff;
  font-size: 1.7rem;
}
#students #students__header #students__header__filters .students__header__filter {
  font-size: 1.15rem;
  margin-left: 30px;
}
#students #students__header #students__header__filters .students__header__filter label {
  opacity: 0.7;
}
#students #student__list {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
#students #student__list .student {
  width: 20%;
  padding: 15px;
}
#students #student__list .student .student__meta {
  text-align: center;
}
#students #student__list .student .student__meta .student__meta__photo {
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin-bottom: 15px;
}
#students #student__list .student .student__meta .student__meta__photo figure {
  border-radius: 50%;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
#students #student__list .student .student__meta .student__meta__photo figure img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* student
***********************************************************************************************************************/
#student #student__header {
  background: #222222 url('img/student-pattern.svg') 0 0 no-repeat;
  background-size: 100% auto;
}
#student #student__meta {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
#student #student__meta #student__meta__photo {
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 90px;
  margin-right: 25px;
}
#student #student__meta #student__meta__photo figure {
  border-radius: 50%;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
#student #student__meta #student__meta__photo figure img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#student #student__meta .student__meta__text {
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1em;
  margin-right: 15px;
  margin-bottom: 0;
  padding-right: 19px;
  position: relative;
}
#student #student__meta .student__meta__text:after {
  background: #ffffff;
  border-radius: 50%;
  content: '';
  width: 4px;
  height: 4px;
  opacity: 0.4;
  overflow: hidden;
  position: absolute;
  bottom: 8px;
  right: 0;
}
#student #student__meta .student__meta__text:last-of-type {
  margin-right: 0;
  padding-right: 0;
}
#student #student__meta .student__meta__text:last-of-type:after {
  display: none;
}
#student #student__meta .student__meta__text.student__meta__text--light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  padding-top: 0.3em;
}
#student #student__meta #student__meta__return {
  margin-left: auto;
}
#student .student__block {
  margin-bottom: 30px;
}
#student .student__block .student__block__header {
  background: #f2f2f2;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 15px;
  position: relative;
}
#student .student__block .student__block__header .student__block__title {
  margin-bottom: 0;
}
#student .student__block .student__block__header .student__block__controls {
  margin-left: auto;
}
#student .student__block .student__block__content {
  border-bottom: 1px solid #dddddd;
}
#student .student__block .student__block__content.student__block__content--padded {
  padding: 15px;
}
#student .student__block .student__block__content .table {
  margin-bottom: 0;
}
#student #student__log {
  border-top: 1px solid #dddddd;
}
#student #student__log .student__log__entry {
  border-bottom: 1px solid #dddddd;
}
#student #student__log .student__log__entry:last-child {
  border-bottom: none;
}
#student #student__log .student__log__entry .student__log__entry__meta {
  display: flex;
  flex-direction: row;
  font-size: 0.875rem;
  padding: 15px;
}
#student #student__log .student__log__entry .student__log__entry__meta .student__log__entry__meta__date {
  margin-right: 10px;
}
#student #student__log .student__log__entry .student__log__entry__meta .icon {
  opacity: 0.7;
  font-size: 0.8125em;
  vertical-align: top;
  margin: 0.15em 0.5em 0 0;
}
#student #student__log .student__log__entry .student__log__entry__note {
  padding: 0 15px 15px 15px;
}
#student #student__log .student__log__entry .student__log__entry__note p {
  font-size: 1rem;
}
#student #student__log .student__log__entry .student__log__entry__note p:last-child {
  margin-bottom: 0;
}
/* footer
***********************************************************************************************************************/
#footer {
  background: #fafafa;
  padding: 60px 0;
}
#footer #footer-services li {
  font-size: 1.15rem;
  line-height: 1.7em;
  margin-bottom: 0.55em;
}
#footer .icon {
  color: #999999;
  font-size: 0.875rem;
  margin-right: 0.5em;
}
/* disclaimer
***********************************************************************************************************************/
#disclaimer {
  border-top: 1px solid #eeeeee;
  color: #999999;
  padding: 30px 0;
}
#disclaimer a {
  color: #999999;
  text-decoration: none;
}
html.no-touch #disclaimer a:hover {
  color: #000000;
}
#disclaimer p {
  font-size: 1rem;
  margin-bottom: 0;
}
#disclaimer ul {
  float: right;
}
#disclaimer ul li {
  float: left;
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 15px;
}
/* animations
***********************************************************************************************************************/
.wrapper,
#header {
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}
#usp li {
  -webkit-transition: all 1500ms linear;
  transition: all 1500ms linear;
}
/* clearfix
***********************************************************************************************************************/
.clearfix:after,
ul:after,
ol:after,
#header__content:after,
#content:after,
#home:after,
#page:after,
#social:after,
#footer:after,
#disclaimer:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
* html .clearfix,
* html ul,
* html ol,
* html #header__content,
* html #content,
* html #home,
* html #page,
* html #social,
* html #footer,
* html #disclaimer {
  height: 1%;
  overflow: visible;
}
*:first-child + html .clearfix,
*:first-child + html ul,
*:first-child + html ol,
*:first-child + html #header__content,
*:first-child + html #content,
*:first-child + html #home,
*:first-child + html #page,
*:first-child + html #social,
*:first-child + html #footer,
*:first-child + html #disclaimer {
  min-height: 1px;
}
