@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

 ::-moz-selection {
  background: #aae7ea;
  text-shadow: none;
}

::selection {
  background: #aae7ea;
  text-shadow: none;
}

::-moz-selection {
  background: #aae7ea;
  text-shadow: none;
}

::selection {
  background: #aae7ea;
  text-shadow: none;
}

::placeholder {
  color: #666666;
}

::-webkit-input-placeholder {
  color: #666666;
}

:-moz-placeholder {
  color: #666666;
}

:-moz-placeholder {
  color: #666666;
}

:-ms-input-placeholder {
  color: #666666;
}


/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */



   

:root {
  --black: #222222;
  --white: #ffffff;
  --darkblue: #0d1242;
  --blue: #0896b8;
  --cyan: #54cfd6;
  --orange: #f2661c;
  --lightorange: #ffa361;
  --lightgrey: #f4f3f1;
}

.darkblue {
  color: var(--white);
  background-color: var(--darkblue);
}

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

.cyan {
  background-color: var(--cyan);
}

.orange {
  color: var(--white);
  background-color: var(--orange);
}

.lightorange {
  background-color: var(--lightorange);
}

.lightgrey {
  background-color: var(--lightgrey);
}

.orange-font {
  color: var(--orange);
}

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




.no-scroll {
  overflow: hidden;
}

body {
  min-height: 100%;
  position: relative;
  color: var(--black);
  font-size: 16px;
  line-height: 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body a:link {
  color: var(--black);
	text-decoration: none;
	  -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
body a:visited {
  color: var(--black);
}
body a:hover {
  color: var(--black);
}
body a:active {
  color: var(--black);
}

p {
/*  text-indent: 20px;
*/  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  margin: 0 0 10px 0;
}



/*p:first-of-type{
  text-indent: initial;
}
*/
p.no-indent {
  text-indent: initial;
}

b, strong {
  font-weight: 500;
}

.uppercase{
  text-transform: uppercase;
}




h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  margin: 80px 0 0 0;
  color: var(--white)
}

h1.entry-title {
    color: var(--black);
    margin: 0px;
}

h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-top: 0px
}

h2 {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 10px;
}

h3 {
  font-size: 22px;
  line-height: 30px;
/*  text-indent: 30px;
*/  margin-bottom: 20px;
}

/*h3:first-of-type {
  text-indent: initial;
}*/

h4 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}


ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  list-style: none;
}



/*Form Styling
================================== */


input[type=email], input[type=number], input[type=password], input[type=submit], input[type=tel], input[type=text], textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}	

input, textarea, select {
  outline: none;
  border-radius: 0;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
  margin: 0;
}
input, input[type=email], input[type=text], input[type=textarea], input[type=tel], input[type=password], textarea {
  padding: 12px 18px 12px 18px;
  border-radius: 30px;
  border: none;
  box-sizing: border-box;
  border: 2px solid var(--lightgrey);
  float: left;
  width: 100%;
  background-color: var(--lightgrey);
  font-size: 14px;
  line-height: 20px;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  margin-bottom: 10px;
}

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  margin-right: 7px;
  margin-bottom: 20px;
}



input:focus, textarea:focus, select:focus {
  background-color: #fff;
  border-color: #f5f7f9;
}


select {
background: url(../img/down-arrow-01.svg) no-repeat right;
  width: 100%!important;
  color: #414141;
  height: 50px;
  background-color: #f5f7f9;
  font-size: 14px;
  line-height: 30px;
  position: relative;
  border: none;
  padding: 8px 15px 9px;
  border: 1px solid #f6f6f7;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
border-radius: 0px;
margin-bottom: 10px;
}

.grecaptcha-badge { visibility: hidden; }




/* Contact Form 7
================================== */


.wpcf7 form .wpcf7-response-output {
	margin: 20px 0;
    width: 100%;
    float: left;
    padding: 12px 18px;
    background: #f4f3f1;
    border: 2px solid var(--lightgrey);
    font-size: 14px;
    line-height: 20px;
    border-radius: 30px;
    box-sizing: border-box;
}

.wpcf7-not-valid-tip {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffd4d4;
    background: #ffd4d4;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #aae7ea;
    background: #aae7ea;
}


.wpcf7 .ajax-loader {
    background-color: #aae7ea;
    opacity: 1;
    margin: 22px 10px 0px 0px;
    float: left;
}



.ul-heading {
  margin: 16px 0 10px 0;
  text-indent: 0px;
  font-weight: 500;
}


.pull-out-quote {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--white);
}


.pull-out-quote.right {
    background-position: top right;
    bottom: -180px;
    right: 30px;
    height: 330px;
    width: 400px;
}

.pull-out-quote.left {
    background-position: top left;
    bottom: -180px;
    left: 30px;
    height: 330px;
    width: 400px;
}

.pull-out-quote.right .content,
.pull-out-quote.left .content{
    width: 220px;
    position: absolute;
    left: 130px;
    top: 80px;
}



.pull-out-quote h3 {
  text-indent: -.5em;
margin-bottom: 0px;
}

.pull-out-quote h3:first-of-type {
  text-indent: -.5em
}

.pull-out-quote h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin: 10px 0px 0px 0px;
}


.pull-out-quote.orange-bubble {
	background-image: url(../img/orange-bubble.svg);
}

.pull-out-quote.blue-bubble {
    background-image: url(../img/blue-bubble.svg);
}


.orange-separator {
  width: 100%;
  float: left;
}
.orange-separator .inner {
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}


.entry-header {
    margin-bottom: 20px;
}


#wrap {
  float: left;
  min-height: calc(100vh - 320px);
  width: 100%;
  position: relative;
  z-index: 1;
}

main {
  float: left;
  width: 100%;
  margin-top: 80px;
}

header {
  width: 100%;
  float: left;
  position: fixed;
  z-index: 200;
  background: rgb(84,207,214);
    background: -moz-linear-gradient(90deg, rgba(84,207,214,1) 50%, rgba(242,102,28,1) 50%);
    background: -webkit-linear-gradient(90deg, rgba(84,207,214,1) 50%, rgba(242,102,28,1) 50%);
    background: linear-gradient(90deg, rgba(84,207,214,1) 50%, rgba(242,102,28,1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#54cfd6",endColorstr="#f2661c",GradientType=1);
}

header ul li {
  display: inline-block;
  margin: 0;
  padding-left: 0px;
  font-size: 16px;
  font-weight: 500;
}

header a:link,
header a:visited {
  color: var(--white);
}

header a:hover,
header a:active {
  color: var(--blue);
}

.inner {
  margin: 0 auto;
  width: 1280px;
}
header .inner {
  width: 1240px;
  height: 80px;
  background: var(--cyan);
}

img {
  max-width: 100%;
  height: auto;
}


.brand-small {
  /* display: none; */
  float: left;
  padding: 20px 0 0 0 ;
  margin-right: 40px;
}

.page-template-template-home .brand-small {
	display: none;
}




.nav-right {
  float: right;
  position: relative;
  height: 80px;
  background-color: var(--orange);
  border-radius: 40px 0px 0px 40px;
  line-height: 80px;	
}

.nav-right  a:hover,
.nav-right  a:active {
  color: var(--lightorange);
}


.nav-right ul li {
  margin-right: 0px;
  margin-left: 40px;
}


.nav-left {
  float: left;
  border-radius: 1000px;
}





/*Menu Left Desktop */



#nav-menu-1 {
	position: relative;
}

#nav-menu-1-left {
    position: absolute;
    height: 80px;
	top: 0px;
    left: 60px;
}

.page-template-template-home #nav-menu-1-left {
    left: -20px;
}




#nav-menu-1-left li ul a {
    color: var(--black);
    display: inline-block;
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    background: #fff;
    border-bottom: var(--lightgrey) 1px solid!important;
    font-weight: 400;
}

#nav-menu-1-left ul li {
  display: inline-block;
  float: left;
  position: relative;
}


#nav-menu-1-left ul li a {
    color: var(--white);
    display: inline-block;
    height: 80px;
    text-align: center;
    padding: 0 16px;
    line-height: 80px;
}


#nav-menu-1-left .menu-item-has-children a:after {
	font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f078";
    display: block;
    width: 20px;
    height: 20px;
    float: right;
    margin: 0 0px 0px 5px;
}

#nav-menu-1-left ul li.current-menu-item > a {
 	color: var(--blue);
}

#nav-menu-1-left ul li:hover > a {
 	color: var(--blue);
	background: #aae7ea
}


#nav-menu-1-left ul li ul li a {
  width: 200px;
  text-align: left;
}

#nav-menu-1-left ul li ul li a:hover {
	border-bottom:#d7d7d7 1px solid;
}

#nav-menu-1-left .sub-menu a:after {
    display: none;
}




/* level 3 */
#nav-menu-1 li ul {
  display: none;
  position: absolute;
  left: 0;
  z-index: 300;
  width: 200px;
  padding: 0px;
  height: 40px;
}

#nav-menu-1-left li ul a {
    color: var(--black);
    display: inline-block;
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
	background: #fff;
	border-bottom:#d7d7d7 1px solid!important
}

#nav-menu-1-left li ul a:hover {
	background: #fafafb;
}

#nav-menu-1-left li:hover > ul {
  display: block;
}

/* level three */
#nav-menu-1-left li ul ul {
    left: 240px;
    top: 0px;
	border-left: #d7d7d7 1px solid;
}













/* Sub Page Scroll Navigation. */

.sub-nav-margin {
  margin-top: 80px
}

#sub-nav {
  width: 100%;
  float: left;
  position: fixed;
  z-index: 101;
  background-color: var(--white);
  border-bottom: 1px solid var(--lightgrey);
}

#sub-nav .inner {
  width: 1240px;
}

#sub-nav ul li {
  display: inline-block;
  padding-left: 0px;
  font-size: 16px;
  line-height: 80px;
  margin-right: 40px;
}

#sub-nav a:link,
#sub-nav a:visited {
  color: var(--blue);
}

#sub-nav a:hover,
#sub-nav a:active {
  color: var(--cyan);
}



/* Mobile Navigation. */

.mobile-menu-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  display: none;
  z-index: 1;
}

#mobile-menu ul li {
  padding: 0px 40px;
}

#mobile-menu .nav {
    padding: 0px;
    line-height: 40px;
    margin-top: 80px;
	opacity: 0;
}


#mobile-menu .nav a:link,
#mobile-menu .nav a:link,
#mobile-menu .nav a:visited,
#mobile-menu .nav a:active {
  color: var(--white);
  font-size: 20px;
}


#mobile-menu .nav ul{
    margin-top: 30px;
}

#mobile-menu ul.sub-menu {
    margin-top: 0px
}

#mobile-menu ul.sub-menu li {
    padding: 0px 20px;
}


#mobile-menu-layer-01 {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  transition: 0.5s cubic-bezier(0.52, 0.175, 0.45, 1.06);
  transform: translate3d(-150vw, 0, 0);
  transition-delay: .2s;
  background: var(--cyan);
  display: none;
}

#mobile-menu-layer-01.show-layer-01{
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
  opacity: 1;
}

#mobile-menu-layer-01.hide-layer-01  {
  transform: translate3d(-100vw, 0, 0);
  transition-delay: 0s;
}

#mobile-menu .sub-menu {
    display: none;
}


#mobile-menu-layer-01 .menu-item-has-children a:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f078";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0px 0px 0px 10px;
}

#mobile-menu-layer-01 .menu-item-has-children.active a:after  {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f077";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0px 0px 0px 10px;
}

#mobile-menu-layer-01 .sub-menu a:after,
#mobile-menu-layer-01 .menu-item-has-children.active .sub-menu a:after {
    display: none;
}



.hamburger {
  padding: 28px 12px 22px 25px;
}

.hamburger:focus {
  outline: 0px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}









.image-mask-style-01 {
  overflow: hidden;
}

.image-mask-style-03 {
  clip-path: circle(400px at center);
}

.image-mask-style-02 {
  border-radius: 50%;
  overflow: hidden;
  padding-bottom: 100%;
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.image-mask-style-02.margin-top {
  margin-top: 15vh;
}







.button {
    font-weight: 500;
    display: inline-block;
    padding: 0px 40px;
    font-size: 18px;
    line-height: 60px;
    height: 60px;
    margin: 20px 12px 0px 0px;
    color: var(--orange);
    cursor: pointer;
    outline: none;
    border-radius: 30px;
    border-width: 0px;
	  width: auto;
    background-color: var(--white);
      -webkit-transition: all .3s ease-out;
      -moz-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

.button:hover, .button:active, .button:focus {
    color: var(--white);
    background-color: var(--lightorange);
}

.button.blue { 
  background-color: var(--blue);
  color: var(--white);
}

.button.blue:hover, .button.blue:active, .button.blue:focus {
  color: var(--white);
  background-color: var(--cyan);
}

.button.blue-font { 
  background-color: var(--white);
  color: var(--blue);
}

.button.blue-font:hover, .button.blue-font:active, .button.blue-font:focus {
  color: var(--white);
  background-color: var(--cyan);
}


.button.cyan-font { 
  background-color: var(--white);
  color: var(--cyan);
}

.button.cyan-font:hover, .button.cyan-font:active, .button.cyan-font:focus {
  color: var(--white);
  background-color: var(--blue);
}


.fa-chevron-down,
.fa-chevron-right {
  margin-left: 10px;
}




.page-content {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}

.page-content p a,
.page-content ul a {
    color: #161616;
    box-shadow: inset 0 -1px 0 #0896b8;
    -webkit-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
    text-decoration: none;
}

.page-content ul a:hover, 
.page-content p a:hover {
    color: #0896b8;
}



.senior-students-content p a{
    color: #ffffff;
    box-shadow: inset 0 -1px 0 #ffffff;
    -webkit-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
    text-decoration: none;
}

.page-content ul {
  margin: 0px 0px 0px 15px;
  list-style-position: outside;
  padding: 0px;
}
.page-content ul li {
  margin: 0px 0px 4px 0px;
}

.page-content li {
  list-style-image: url(../img/orange-icon.svg);
  padding-inline-start: 10px;
}

.page-content.blue li {
  list-style-image: url(../img/white-icon.svg);
}

.top {
  background-image: url(../img/dark-blue-circle.svg);
  background-position: bottom center;
  height: 280px;
  color: var(--white);
}


.top.homepage {
  height: 70vh;
  min-height: 680px;
  padding-top: 80px
}

.top.homepage .inner {
  width: 1580px;
}

.top.homepage h1 {
  font-size: 60px;
  line-height: 70px;
  margin: 60px 0px 0px 0px 
}

.top.homepage .content {
  padding: 0px 80px 0px 150px;
}







.full-width,
.one-grid,
.two-grid,
.three-grid,
.two-of-three-grid,
.four-grid,
.five-grid,
.three-of-five-grid,
.six-grid {
  float: left;
  height: auto;
  position: relative;
  padding: 0px 20px
}

.full-width,
.one-grid {
  width: calc(100%);
}

.two-grid {
  width: calc(50% - 40px);
}

.three-grid {
  width: calc(33.333% - 40px);
}

.two-of-three-grid {
  width: calc(66.666% - 40px);
}

.three-of-five-grid {
  width: calc(60% - 40px);
}

.four-grid {
  width: calc(25% - 40px);
}

.five-grid {
  width: calc(20% - 40px);
}

.six-grid {
  width: calc(16.666% - 40px);
}




.margin-base-0 {
  margin-bottom: 0px;
}


.margin-base-20 {
  margin-bottom: 20px !important;
}

.margin-minus-40 {
  margin: -40px 0 0 0;
}

.margin-minus-120 {
  margin: -120px 0 0 0;
}

.margin-minus-240 {
  margin: -200px 0 0 0;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-base-100 {
  padding: 100px 0 100px 0;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-base-100{
  padding-bottom: 100px ;
}






.senior-students .inner {
  width: 1320px;
  position: relative;
  height: 760px;
}

.senior-students .two-grid {
  width: 620px;
  height: 620px;
}

.senior-students .two-grid {
  position: absolute;
  top: 140px
}

.senior-students .two-grid.right{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 800px;
  height: 800px
}

.senior-students-content {
  padding: 160px 100px 0px 260px
}

.image .senior-students-content  {
  padding: 0px
}

.senior-students-background {
  color: var(--white);
  background-image: url(../img/cyan-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 1;
}





.teachers {
  margin: 20px 0px;
}

.teachers .inner {
  width: 1080px;
  position: relative;
}

.teachers .two-grid {
  width: 600px;
  height: 600px;
}

.teachers .two-grid.image{
  position: absolute;
  right: 0px
}

.teachers-content {
  padding: 120px 60px 0px 100px;
}
.image .teachers-content {
    padding: 0px;
}

.teachers-background {
  color: var(--white);
  background-image: url(../img/orange-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 1;
}





.public .inner {
  width: 1240px;
  position: relative;
  height: 560px;
}

.public .two-grid {
  width: 620px;
  height: 620px;
  padding: 40px;
}

.public .two-grid{
  position: absolute;
}

.public .two-grid.right{
  position: absolute;
  right: 0px;
  height: 420px
}

.public-content {
  padding: 50px 60px 0px 180px
}

.image .public-content  {
  padding: 0px
}

.public-background {
  color: var(--white);
  background-image: url(../img/blue-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 1;
}



.corporate {
	

  	position: relative;
}

.corporate .inner {
	position: relative;
	display: flex;
	align-items: center;
  	width: 1240px;
	background-color: red;
}

.corporate .two-grid {
  width: 620px;
  height: 620px;
}


.corporate .two-grid.right{
  position: absolute;
  display: flex;
  align-items: center;
  right: 0px;
  background-color: tan;
}

/* .corporate-content {
  padding: 50px 60px 0px 180px
}

.image .corporate-content  {
  padding: 0px
} */

.corporate-background {
  color: var(--white);
  background-image: url(../img/blue-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}


.social {
  margin: 15px 0 28px 0
}

.social a:link {
  border-radius: 16px;
  display: inline-block;
  height: 32px;
  line-height: 34px;
  text-align: center;
  width: 32px;
  background-color: var(--white);
  font-size: 16px;
  margin: 0px 15px 0px 0px;
  color: var(--cyan);
}

.social a:link:last-child {
  margin: 0px 0px 15px 0px;
}
.social a:visited {
  color: var(--cyan);
}
.social a:hover {
  color: var(--blue);
}
.social a:active {
  color: var(--cyan);
}

.contact-form {
    float: left;
    margin-top: 20px;
    width: 100%;
}




/* Testimonials Section */

.testimonials-slider {
    position: relative;
    padding-top: 60px; /* Space for navigation at top */
}

.testimonials-slider.two-grid {
    padding: 0px;
	padding-top: 70px;
}

@media only screen and (min-width: 800px) {
.testimonials-slider.two-grid {
	margin-left: 20px
}
}

.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next {
    position: absolute;
    top: 22px;
    bottom: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--orange);
    text-align: center;
}

/* Hide default Swiper arrows */
.testimonials-slider .swiper-button-prev:after,
.testimonials-slider .swiper-button-next:after {
    display: none;
}

/* Add Font Awesome arrows */
.testimonials-slider .swiper-button-prev:before,
.testimonials-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    display: block;
}

.testimonials-slider .swiper-button-prev:before {
    content: "\f053"; /* chevron-left */
}

.testimonials-slider .swiper-button-next:before {
    content: "\f054"; /* chevron-right */
}

.testimonials-slider .swiper-button-prev {
    left: 0px;
}

.testimonials-slider .swiper-button-next {
    left: 48px; /* Position next to prev button */
    right: auto;
}

/* Hide pagination */
.testimonials-slider .swiper-pagination {
    display: none;
}

.testimonials-section {
    position: relative;
    display: block;

}

.testimonial-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.testimonial-author strong {
    margin-bottom: 4px;
}







footer {
  position: relative;
  padding: 80px 0px 0px 0px ;
  height: 240px;
  float: left;
  width: 100%;
  background-color: var(--cyan);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}

.page-template-template-home footer {
    padding: 160px 0px 0px;
}



footer  a:link,
footer  a:visited,
footer  a:active {
  color: var(--white);
}

footer.minus-margin {
  padding: 160px 0px 0px 0px ;
}

footer  a:hover{
  color: var(--blue);
}

footer ul{ 
  margin-bottom: 20px;
}

footer h4 {
  text-transform: uppercase;
  margin: 0px 0px 10px 0px;
}

footer h5 {
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}

.copyright {
  font-size: 12px;
  line-height: 12px;
}




@media only screen and (max-width: 1440px) {

body,
p {
    font-size: 15px;
    line-height: 24px;
  }


header .inner,
#sub-nav .inner {
  width: 1060px;
}
header ul li {
  font-size: 14px;
}

#sub-nav ul li {
  font-size: 14px;
  margin-right: 30px;
}
	
#nav-menu-1-left ul li a {
    padding: 0 12px;
}

.inner {
  width: 1100px;
}

.top {
  height: 220px;
}
.top.homepage {
  height: 60vh;
  min-height: 580px;
}

.top.homepage .inner {
  width: 1340px;
}
.top.homepage .content {
  padding: 0px 90px 0px 120px;
}
.brand {
  width: 240px;
}

.senior-students .inner {
  width: 1180px;
  height: 740px;
}
.senior-students .two-grid {
  width: 600px;
  height: 600px;
}

.senior-students .two-grid.right {
  width: 740px;
  height: 740px;
}
.senior-students-content {
  padding: 140px 100px 0px 260px;
}

.teachers .inner {
  width: 980px;
}

.teachers .two-grid {
  width: 560px;
  height: 560px;
}

.public .inner {
    width: 1180px;
    position: relative;
    height: 560px;
}

.public .two-grid.right {
    height: 400px;
}

.public-content {
  padding: 60px 80px 0px 180px;
}

h1 {
  font-size: 30px;
  line-height: 40px;
  margin: 60px 0 0 0;
}

.top.homepage h1 {
  font-size: 50px;
  line-height: 58px;
  margin: 40px 0px 0px 0px;
}



h2 {
  font-size: 28px;
  line-height: 32px;
}

h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

h4 {
  font-size: 15px;
  line-height: 24px;
}

.pull-out-quote.right,
.pull-out-quote.left{
    bottom: -200px;
    height: 300px;
    width: 360px;
}

.pull-out-quote.right .content,
.pull-out-quote.left .content{
    left: 105px;
    top: 90px;
}
	


.button {
  font-size: 16px;
  line-height: 50px;
  padding: 0px 30px;
  margin: 10px 10px 0px 0px;
  height: 50px;
}
}



@media only screen and (max-width: 1080px) {

body,
p {
  font-size: 14px;
  line-height: 22px;
}
	
header ul li {
    font-size: 13px;
}

#sub-nav ul li {
    font-size: 13px;
    margin-right: 20px;
}
	

header .inner,
#sub-nav .inner{
  width: calc(100% - 120px);
}

.inner,
.top.homepage .inner{
  width: calc(100% - 80px);
}
	
.senior-students .inner,
.teachers .inner,
.public .inner {
  width: calc(100% - 80px);
}

#nav-menu-1-left ul li a {
    padding: 0 8px;
}

	
.top.homepage h1 {
    font-size: 46px;
    line-height: 54px;
    margin: 40px 0px 0px 0px;
}


.top.homepage .content {
  padding: 0px 40px 0px 0px;
}
	

.senior-students .two-grid.right {
    width: 540px;
    height: 540px;
}
.senior-students-content {
    padding: 80px 40px 0px 150px;
}
.teachers .two-grid {
    width: 460px;
    height: 460px;
}
.teachers-content {
    padding: 80px 40px 20px 80px;
}
	
.public .two-grid.right {
    height: 300px;
}
	
.public-content {
    padding: 20px 120px 0px 220px;
}

.button {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
    margin: 10px 10px 0px 0px;
    height: 40px;
}


}


@media only screen and (max-width: 1030px) {


	#nav-menu-1,
	.nav-right ul li a,
	#sub-nav {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	#mobile-menu-layer-01 {
		display: block;
	}
}



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


header .inner, #sub-nav .inner {
    width: calc(100% - 80px);
}	
	
.senior-students .inner,
.teachers .inner,
.public .inner {
  width: calc(100%);
}


.top.homepage .inner,
.senior-students .inner,
.teachers .inner,
.public .inner {
  height: auto;
}

.full-width,
.one-grid,
.two-grid,
.three-grid,
.two-of-three-grid,
.four-grid,
.five-grid,
.three-of-five-grid,
.six-grid {
  width: 100%;
  padding: 0px
}

.brand {
    width: 38vw;
}

.top {
  margin-top: 0px;
  height: auto;
}
	
.top.no-image {
    margin-top: 0px;
    height: auto;
    min-height: 25vh;
}


h1 {
  font-size: 26px;
  line-height: 34px;
  margin: 40px 0 20px 0;
}

.top.homepage {
  height: 50vh;
  min-height: inherit;
}

.top.homepage h1 {
    font-size: 28px;
    line-height: 38px;
    margin: 20px 60px 0px 0px;
}


.senior-students .two-grid,
.teachers .two-grid,
.teachers .two-grid.image,
.public .two-grid,
.senior-students .two-grid.right,
.public .two-grid.right{
    position: relative;
    width: calc(100% - 80px);
    height: auto;
    padding: 0px;
    top: initial;
    float: initial;
    margin: 0px auto;
}

	
.public .two-grid.right {
    width: calc(100%);
    background-color: var(--blue);
}

.senior-students .two-grid.right {
    width: calc(100%);
    background-color: #54cfd6;
}
	
	
.senior-students .two-grid.image {
    background: none;
    background-image: url("../img/mobile-top-cyan.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
}
	
.image .senior-students-content {
    padding: 20px 40px 0px 40px;
}
	
.teachers .two-grid {
    width: calc(100%);
    background-color: var(--orange);
}

.teachers {
    margin: 0px;
}
	
.teachers .two-grid.image {
    background: none;
    background-image: url(../img/mobile-base-orange.svg);
    background-position: top center;
    background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
}
	
.image .teachers-content {
    padding: 0px 40px 40px 40px;
}

.public-content,
.teachers-content,
.senior-students-content {
  padding: 40px;
}

	
	
.public .two-grid.image {
    background: none;
    background-image: url("../img/mobile-top-blue.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
}
	
.image .public-content {
    padding: 0px 40px 0px 40px;
}
	
	
	
.profile {
    width: 70%;
    margin-bottom: 20px;
}


h2 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 5px;
}
h3 {
  font-size: 16px;
  line-height: 22px;
/*  text-indent: 20px;
*/  margin-bottom: 20px;
}

h4 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
	
	
.pull-out-quote.right {
    margin: 20px 0;
    position: relative;
    bottom: initial;
    right: initial;
    padding: 30px 0 10px 0;
    border-bottom: 2px solid var(--orange);
    color: var(--orange);
    background-position: top left;
    /* background-position-y: -18px; */
    background-size: 30px;
    height: auto;
    width: 100%;
}
	
.pull-out-quote.right .content,
.pull-out-quote.left .content {
    left: initial;
    top: initial;
    width: 100%;
    position: relative;
}
	
.pull-out-quote.left {
    margin: 20px 0;
    position: relative;
    bottom: initial;
    left: initial;
    padding: 30px 0 10px 0;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    background-position: top left;
    /* background-position-y: -18px; */
    background-size: 30px;
	    height: auto;
    width: 100%;
}
	

.pull-out-quote h3 {
    margin: 0 0 0 0;
}

.pull-out-quote h6 {
    font-size: 12px;
    line-height: 16px;
    margin: 5px 0px 0px 0px;
}

.image-mask-style-02 {
    margin-top: 20px;
}
.home .image-mask-style-02 {
    margin-top: 0px;
}
	
.image-mask-style-01 img {
  padding-left: initial;
}

.margin-minus-240,
.margin-minus-120 {
  margin: 20px 0px;
}

.margin-minus-40 {
    margin: 0px;
}


.padding-top-60 {
  padding: 20px 0px;
}

	
.two-grid.top-bubble {
    position: relative;
    top: initial;
    width: 70%;
	float: right;
  	margin-top: 0px;
}
	
	
.homepage .two-grid.top-bubble {
    position: absolute;
    top: initial;
    top: -2vh;
    right: 0;
    width: 50vw;
}
	
.two-grid.top-bubble.padding-top-60 {
  padding: 0px;
}

.page-content ul li {
  margin: 2px;
}

.padding-top-base-100 {
  padding: 40px 0 ;
}
	
.social a:link {
  margin: 0px 10px 0px 0px;
}
	


footer {
  height: auto;
  padding: 40px 0 60px 0;
}
footer.minus-margin {
  padding: 40px 0px;
}
.contact-details {
  display: none;
}
.page-template-template-home footer {
    padding: 40px 0px 60px 0px;
}
}

@media only screen and (max-width: 680px) {
	
.top.homepage h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 20px 40px 0px 0px;
}
.top {
    background-position-x: -220vw;
}
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


