/*.chrome img{
  image-rendering: -webkit-optimize-contrast;
  @include mobile{
    image-rendering: auto;
  }
}*/
html, body {
  background: #EDEDED;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #212721;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

.button {
  line-height: 1;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: color 0.3s ease, background 0.3s ease;
}
.button.green {
  color: #fff;
  background: #304E44;
}
.button.green:hover {
  color: #fff;
  background: #BF742E;
}
.button.sage {
  color: #fff;
  background: #7A968E;
}
.button.sage:hover {
  color: #fff;
  background: #5B3D51;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #EDEDED;
  color: #0E2C28;
  left: 0;
  box-sizing: border-box;
  padding: 50px 50px 30px;
  z-index: 100;
  transition: transform 0.6s ease;
  /*&.hidden{
    @include transform(translateY(-100%));
    @include mobile{
      @include transform(translateY(0%));
    }
  }*/
}
@media only screen and (max-width: 1400px) {
  .header {
    padding: 35px 35px 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    padding: 30px 30px 25px;
  }
}
@media only screen and (max-width: 760px) {
  .header {
    padding: 20px 20px 17px;
  }
}
.header.adjust {
  transform: translateY(-105px);
}
@media only screen and (max-width: 1400px) {
  .header.adjust {
    transform: translateY(-80px);
  }
}
@media only screen and (max-width: 1200px) {
  .header.adjust {
    transform: translateY(-70px);
  }
}
@media only screen and (max-width: 760px) {
  .header.adjust {
    transform: translateY(0px);
  }
}
.header .top {
  position: relative;
}
.header .top .logo {
  padding-top: 9px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0%);
  display: inline-block;
  max-width: 640px;
}
.header .top .logo img {
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .header .top .logo {
    width: 100%;
    padding-top: 0;
    max-width: 400px;
  }
}
.header .top .button {
  float: right;
  font-size: 17px;
  box-sizing: border-box;
  padding: 15px 50px;
}
@media only screen and (max-width: 1400px) {
  .header .top .button {
    font-size: 16px;
    padding: 12px 35px;
  }
}
@media only screen and (max-width: 1200px) {
  .header .top .button {
    font-size: 15px;
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .header .top .button {
    display: none;
  }
}
.header .nav {
  display: block;
  clear: both;
  text-align: center;
  margin-top: 85px;
}
@media only screen and (max-width: 1400px) {
  .header .nav {
    margin-top: 75px;
  }
}
@media only screen and (max-width: 1200px) {
  .header .nav {
    margin-top: 65px;
  }
}
@media only screen and (max-width: 760px) {
  .header .nav {
    margin-top: 40px;
  }
}
.header .nav ul {
  list-style: none;
}
.header .nav ul li {
  display: inline-block;
  margin: 0 25px;
}
@media only screen and (max-width: 1200px) {
  .header .nav ul li {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 760px) {
  .header .nav ul li {
    margin: 0 12px;
  }
}
@media only screen and (max-width: 500px) {
  .header .nav ul li {
    margin: 0 6px;
  }
}
.header .nav ul li a {
  font-size: 20px;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}
.header .nav ul li a:hover {
  color: #7A968E;
}
@media only screen and (max-width: 1200px) {
  .header .nav ul li a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 760px) {
  .header .nav ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 500px) {
  .header .nav ul li a {
    font-size: 12px;
  }
}

.content {
  margin-top: 211px !important;
}
@media only screen and (max-width: 1400px) {
  .content {
    margin-top: 171px !important;
  }
}
@media only screen and (max-width: 1200px) {
  .content {
    margin-top: 146px !important;
  }
}
@media only screen and (max-width: 760px) {
  .content {
    margin-top: 98px !important;
  }
}

.wrapper {
  max-width: 1680px;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media only screen and (max-width: 1400px) {
  .wrapper {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 1200px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 760px) {
  .wrapper {
    padding: 0 20px;
  }
}

.homeIntro {
  padding-top: 30px;
}
.homeIntro h1 {
  color: #fff;
  font-size: 128px;
  text-align: center;
  max-width: 724px;
  line-height: 1;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .homeIntro h1 {
    font-size: 100px;
    max-width: 600px;
  }
}
@media only screen and (max-width: 1200px) {
  .homeIntro h1 {
    font-size: 72px;
  }
}
@media only screen and (max-width: 900px) {
  .homeIntro h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .homeIntro h1 {
    font-size: 40px;
    max-width: 240px;
  }
}
.homeIntro img {
  will-change: top;
  position: relative;
  margin-top: -130px;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .homeIntro img {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 1200px) {
  .homeIntro img {
    margin-top: -74px;
  }
}
@media only screen and (max-width: 900px) {
  .homeIntro img {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 760px) {
  .homeIntro img {
    margin-top: -40px;
  }
}

.halfBoxes {
  margin-top: 100px;
  box-sizing: border-box;
  padding: 0 30px;
}
@media only screen and (max-width: 1200px) {
  .halfBoxes {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 900px) {
  .halfBoxes {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes {
    margin-top: 40px;
    padding: 0;
  }
}
.halfBoxes .oneRow {
  font-size: 0;
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  align-items: center;
}
@media only screen and (max-width: 1300px) {
  .halfBoxes .oneRow {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .halfBoxes .oneRow {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes .oneRow {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}
.halfBoxes .oneRow.inView .image {
  opacity: 1;
}
.halfBoxes .oneRow.inView .text {
  opacity: 1;
}
.halfBoxes .oneRow .left {
  order: 1;
}
.halfBoxes .oneRow .right {
  order: 2;
}
.halfBoxes .oneRow .image, .halfBoxes .oneRow .text {
  vertical-align: middle;
  opacity: 0;
}
.halfBoxes .oneRow .image {
  transition: opacity 1.2s ease;
  box-sizing: border-box;
  padding: 30px;
}
@media only screen and (max-width: 1200px) {
  .halfBoxes .oneRow .image {
    padding: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .halfBoxes .oneRow .image {
    padding: 10px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes .oneRow .image {
    order: 1;
    padding: 0;
  }
}
.halfBoxes .oneRow .image img {
  width: 100%;
}
.halfBoxes .oneRow .text {
  transition: opacity 1.2s ease 0.6s;
  box-sizing: border-box;
  padding: 60px;
  max-width: 640px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .halfBoxes .oneRow .text {
    padding: 40px;
    max-width: 440px;
  }
}
@media only screen and (max-width: 900px) {
  .halfBoxes .oneRow .text {
    padding: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes .oneRow .text {
    order: 2;
    padding: 20px 15px;
    max-width: none;
  }
}
.halfBoxes .oneRow .text p {
  font-size: 38px;
  line-height: 60px;
  color: #0E2C28;
}
@media only screen and (max-width: 1400px) {
  .halfBoxes .oneRow .text p {
    font-size: 32px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .halfBoxes .oneRow .text p {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 900px) {
  .halfBoxes .oneRow .text p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes .oneRow .text p {
    font-size: 16px;
    line-height: 24px;
  }
}
.halfBoxes .oneRow .text a {
  color: #BF742E;
  margin-top: 30px;
  font-size: 24px;
  text-decoration: underline;
  display: inline-block;
  transition: color 0.3s ease;
}
.halfBoxes .oneRow .text a:hover {
  color: #304E44;
}
@media only screen and (max-width: 1400px) {
  .halfBoxes .oneRow .text a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .halfBoxes .oneRow .text a {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .halfBoxes .oneRow .text a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .halfBoxes .oneRow .text a {
    font-size: 14px;
    margin-top: 15px;
  }
}

.banner {
  margin-top: 100px;
}
@media only screen and (max-width: 900px) {
  .banner {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .banner {
    margin-top: 30px;
  }
}
.banner img {
  width: 100%;
}

.title {
  font-size: 72px;
  line-height: 1;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1400px) {
  .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.coursesHome {
  max-width: 1030px;
  margin: 100px auto;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .coursesHome {
    max-width: 720px;
  }
}
@media only screen and (max-width: 900px) {
  .coursesHome {
    margin: 60px auto;
    max-width: 600px;
  }
}
@media only screen and (max-width: 760px) {
  .coursesHome {
    margin: 50px auto 30px;
  }
}
.coursesHome h1 {
  color: #212721;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .coursesHome h1 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .coursesHome h1 {
    margin-bottom: 20px;
  }
}
.coursesHome p {
  font-size: 38px;
  color: #0E2C28;
}
@media only screen and (max-width: 1400px) {
  .coursesHome p {
    font-size: 32px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .coursesHome p {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 900px) {
  .coursesHome p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .coursesHome p {
    font-size: 16px;
    line-height: 24px;
  }
}
.coursesHome .buttons {
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 0;
  margin-top: 60px;
}
@media only screen and (max-width: 1200px) {
  .coursesHome .buttons {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 760px) {
  .coursesHome .buttons {
    margin-top: 30px;
  }
}
.coursesHome .buttons a {
  display: inline-block;
  width: calc(50% - 40px);
  margin: 0 20px;
  font-size: 24px;
  padding: 25px 20px;
}
@media only screen and (max-width: 1400px) {
  .coursesHome .buttons a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .coursesHome .buttons a {
    margin: 0 10px;
    width: calc(50% - 20px);
    font-size: 16px;
    padding: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .coursesHome .buttons a {
    font-size: 14px;
    padding: 18px;
  }
}
@media only screen and (max-width: 760px) {
  .coursesHome .buttons a {
    width: 100%;
    margin-bottom: 15px;
  }
}

.whiteBg {
  background: #fff;
}

.greenBg {
  background: #304E44;
  color: #fff;
}

.faq {
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 0;
}
@media only screen and (max-width: 1200px) {
  .faq {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 900px) {
  .faq {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 760px) {
  .faq {
    padding: 30px 0;
  }
}
.faq .oneFaq {
  width: 33.33%;
  display: inline-block;
  padding: 40px;
  box-sizing: border-box;
  vertical-align: top;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .faq .oneFaq {
    padding: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .faq .oneFaq {
    padding: 25px;
    width: 50%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .faq .oneFaq {
    padding: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 760px) {
  .faq .oneFaq {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
  }
}
.faq .oneFaq h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1400px) {
  .faq .oneFaq h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .faq .oneFaq h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 760px) {
  .faq .oneFaq h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.faq .oneFaq p {
  box-sizing: border-box;
  padding-left: 35px;
  color: #606060;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 1400px) {
  .faq .oneFaq p {
    font-size: 16px;
    line-height: 28px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .faq .oneFaq p {
    font-size: 14px;
    line-height: 24px;
    padding-left: 25px;
  }
}
@media only screen and (max-width: 760px) {
  .faq .oneFaq p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
    padding-left: 0;
  }
}
.faq .oneFaq p a {
  text-decoration: underline;
  color: #304E44;
}

.eventsHome {
  font-size: 0;
  padding: 0 0 30px;
}
@media only screen and (max-width: 760px) {
  .eventsHome {
    padding-bottom: 20px;
  }
}
.eventsHome center {
  padding-bottom: 60px;
}
.eventsHome a.button {
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 14px 40px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: #BF742E;
  transition: color 0.3s ease, background 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .eventsHome a.button {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .eventsHome a.button {
    font-size: 14px;
  }
}
.eventsHome a.button:hover {
  color: #fff;
  background: #304E44;
}
.eventsHome .oneEvent {
  display: inline-block;
  width: 33.33%;
  padding: 0 10px 20px;
  box-sizing: border-box;
  vertical-align: top;
}
@media only screen and (max-width: 760px) {
  .eventsHome .oneEvent {
    width: 100%;
    padding: 0 0 20px;
  }
}
.eventsHome .oneEvent.first .text {
  background: #CFCCC6;
}
.eventsHome .oneEvent.second .text {
  background: #AEA990;
}
.eventsHome .oneEvent.third .text {
  background: #84A39A;
}
.eventsHome .oneEvent .imageHolder {
  overflow: hidden;
  position: relative;
}
.eventsHome .oneEvent .imageHolder:hover .image {
  transform: scale(1.05);
}
.eventsHome .oneEvent .imageHolder span {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 110px;
  width: 110px;
  z-index: 1;
  font-size: 38px;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
  background: #304E44;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  line-height: 34px;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .imageHolder span {
    height: 80px;
    width: 80px;
    line-height: 25px;
    font-size: 30px;
    padding: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .imageHolder span {
    height: 60px;
    width: 60px;
    line-height: 18px;
    font-size: 22px;
    padding: 10px;
  }
}
.eventsHome .oneEvent .imageHolder span small {
  font-size: 22px;
  display: block;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .imageHolder span small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .imageHolder span small {
    font-size: 13px;
  }
}
.eventsHome .oneEvent .image {
  transition: transform 0.6s ease;
  transform: scale(1.01);
  transform-origin: center;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .image {
    height: 280px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .image {
    height: 220px;
  }
}
.eventsHome .oneEvent .text {
  box-sizing: border-box;
  padding: 35px 40px;
  color: #0E2C28;
  min-height: 450px;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .text {
    padding: 25px 30px;
    min-height: 350px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .text {
    padding: 20px 25px;
  }
}
@media only screen and (max-width: 760px) {
  .eventsHome .oneEvent .text {
    padding: 18px 24px 20px;
  }
}
.eventsHome .oneEvent .text h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .text h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .eventsHome .oneEvent .text h2 {
    font-size: 16px;
  }
}
.eventsHome .oneEvent .text p {
  font-size: 18px;
  font-family: "Crimson Text", serif;
  line-height: 30px;
  margin-bottom: 60px;
  max-width: 380px;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .text p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
.eventsHome .oneEvent .text a.link {
  font-size: 18px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .eventsHome .oneEvent .text a.link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventsHome .oneEvent .text a.link {
    font-size: 14px;
  }
}
.eventsHome .oneEvent .text a.link:hover {
  color: #fff;
}

.ourSchool {
  padding: 100px 0 150px;
  font-size: 0;
}
@media only screen and (max-width: 1400px) {
  .ourSchool {
    padding: 100px 0 120px;
  }
}
@media only screen and (max-width: 1200px) {
  .ourSchool {
    padding: 80px 0 100px;
  }
}
@media only screen and (max-width: 900px) {
  .ourSchool {
    padding: 60px 0 90px;
  }
}
@media only screen and (max-width: 760px) {
  .ourSchool {
    padding: 50px 0 60px;
  }
}
.ourSchool .oneHalf {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 40px;
}
@media only screen and (max-width: 1200px) {
  .ourSchool .oneHalf {
    padding: 0 20px;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 760px) {
  .ourSchool .oneHalf {
    padding: 0;
    width: 100%;
  }
}
.ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider img {
  outline: none;
}
.ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots {
  text-align: left;
  position: absolute;
  bottom: -35px;
  left: -7px;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots {
    bottom: -25px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0%);
    text-align: center;
  }
}
.ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots li {
  display: inline-block;
  margin: 0 7px;
  background: transparent;
  border: 2px solid #fff;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots li {
    margin: 0 5px;
    width: 5px;
    height: 5px;
    border-width: 1px;
  }
}
.ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: -1px;
  left: -1px;
  font-size: 0;
  background: transparent;
  border: none;
}
.ourSchool .schoolHalves .schoolSliderWrapper .schoolSlider .slick-dots li.slick-active {
  background: #fff;
}
.ourSchool .schoolHalves .schoolText .inner {
  margin-top: 120px;
  padding-left: 20px;
  box-sizing: border-box;
  max-width: 510px;
}
@media only screen and (max-width: 1400px) {
  .ourSchool .schoolHalves .schoolText .inner {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .ourSchool .schoolHalves .schoolText .inner {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 900px) {
  .ourSchool .schoolHalves .schoolText .inner {
    margin-top: 0px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 760px) {
  .ourSchool .schoolHalves .schoolText .inner {
    margin-top: 50px;
  }
}
.ourSchool .schoolHalves .schoolText .inner p {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 1400px) {
  .ourSchool .schoolHalves .schoolText .inner p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .ourSchool .schoolHalves .schoolText .inner p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .ourSchool .schoolHalves .schoolText .inner p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
  }
}
.ourSchool .schoolHalves .schoolText .inner p.intro {
  font-size: 38px;
  line-height: 50px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1400px) {
  .ourSchool .schoolHalves .schoolText .inner p.intro {
    font-size: 30px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 1200px) {
  .ourSchool .schoolHalves .schoolText .inner p.intro {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .ourSchool .schoolHalves .schoolText .inner p.intro {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 760px) {
  .ourSchool .schoolHalves .schoolText .inner p.intro {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}

.ourTeam {
  font-size: 0;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1200px) {
  .ourTeam {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 760px) {
  .ourTeam {
    margin-bottom: 20px;
  }
}
.ourTeam .oneTeam {
  width: 50%;
  box-sizing: border-box;
  padding: 0 30px;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1200px) {
  .ourTeam .oneTeam {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 760px) {
  .ourTeam .oneTeam {
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.ourTeam .oneTeam img {
  width: 100%;
}
.ourTeam .oneTeam .text {
  padding: 25px 30px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 27px;
  max-width: 580px;
}
@media only screen and (max-width: 1200px) {
  .ourTeam .oneTeam .text {
    padding: 20px 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .ourTeam .oneTeam .text {
    padding: 20px 0;
  }
}
.ourTeam .oneTeam h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .ourTeam .oneTeam h3 {
    margin-bottom: 3px;
  }
}
.ourTeam .oneTeam h3 span {
  font-family: "Crimson Text", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .ourTeam .oneTeam h3 span {
    font-size: 12px;
  }
}
.ourTeam .oneTeam h3.sub {
  color: #AEA990;
}
.ourTeam .oneTeam p {
  font-family: "Crimson Text", serif;
}
@media only screen and (max-width: 760px) {
  .ourTeam .oneTeam p {
    font-size: 14px;
    line-height: 20px;
  }
}

.sayHello {
  margin: 150px auto 0;
  padding-bottom: 100px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1400px) {
  .sayHello {
    max-width: 640px;
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1200px) {
  .sayHello {
    max-width: 480px;
    margin-top: 100px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .sayHello {
    margin-top: 40px;
    padding-bottom: 20px;
    max-width: 300px;
  }
}
.sayHello.coloured {
  color: #304E44;
  margin: 120px auto 20px;
}
@media only screen and (max-width: 1400px) {
  .sayHello.coloured {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .sayHello.coloured {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 760px) {
  .sayHello.coloured {
    margin: 60px auto 40px;
  }
}
.sayHello.coloured a {
  color: #BF742E;
}
.sayHello.coloured a:hover {
  color: #304E44;
}
.sayHello p {
  font-size: 38px;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .sayHello p {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 1200px) {
  .sayHello p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 760px) {
  .sayHello p {
    font-size: 16px;
    line-height: 24px;
  }
}
.sayHello a {
  transition: color 0.3s ease;
  display: block;
  font-size: 22px;
  margin-top: 5px;
  text-decoration: underline;
}
@media only screen and (max-width: 1400px) {
  .sayHello a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .sayHello a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 760px) {
  .sayHello a {
    font-size: 16px;
  }
}
.sayHello a.tel {
  text-decoration: none;
  margin-top: 70px;
}
@media only screen and (max-width: 1400px) {
  .sayHello a.tel {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .sayHello a.tel {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 760px) {
  .sayHello a.tel {
    margin-top: 30px;
  }
}
.sayHello a:hover {
  color: #7A968E;
}

.footer {
  background: #304E44;
  color: #fff;
  padding: 120px 0 100px;
}
@media only screen and (max-width: 1400px) {
  .footer {
    padding: 100px 0 80px;
  }
}
@media only screen and (max-width: 1400px) {
  .footer {
    padding: 80px 0 60px;
  }
}
@media only screen and (max-width: 900px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer .logo {
  width: 70%;
  max-width: 620px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1400px) {
  .footer .logo {
    margin-bottom: 60px;
    max-width: 540px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .logo {
    margin-bottom: 50px;
    max-width: 480px;
  }
}
@media only screen and (max-width: 900px) {
  .footer .logo {
    margin-bottom: 40px;
    max-width: 400px;
  }
}
@media only screen and (max-width: 760px) {
  .footer .logo {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .logo a img {
  width: 100%;
}
.footer .top, .footer .bottom {
  font-size: 0;
}
.footer .top .left, .footer .top .right, .footer .bottom .left, .footer .bottom .right {
  display: inline-block;
}
.footer .top .left, .footer .bottom .left {
  width: 65%;
}
@media only screen and (max-width: 760px) {
  .footer .top .left, .footer .bottom .left {
    width: 100%;
  }
}
.footer .top .right, .footer .bottom .right {
  width: 35%;
}
@media only screen and (max-width: 760px) {
  .footer .top .right, .footer .bottom .right {
    width: 100%;
  }
}
.footer .top .left, .footer .top .right {
  vertical-align: top;
}
@media only screen and (max-width: 1200px) {
  .footer .top .left {
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 760px) {
  .footer .top .left {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.footer .top .left p {
  max-width: 550px;
  font-size: 18px;
  line-height: 30px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .footer .top .left p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .top .left p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .footer .top .left p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
  }
}
.footer .top .left .social {
  margin-top: 40px;
}
@media only screen and (max-width: 760px) {
  .footer .top .left .social {
    margin-top: 25px;
  }
}
.footer .top .left .social a {
  display: inline-block;
  margin-right: 30px;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .footer .top .left .social a {
    margin-right: 20px;
  }
}
.footer .top .left .social a:hover {
  opacity: 0.5;
}
.footer .top .left .social a img {
  height: 28px;
}
@media only screen and (max-width: 1400px) {
  .footer .top .left .social a img {
    height: 24px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .top .left .social a img {
    height: 20px;
  }
}
.footer .top .right {
  font-size: 0;
}
.footer .top .right ul {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
.footer .top .right ul li {
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .footer .top .right ul li {
    margin-bottom: 10px;
  }
}
.footer .top .right ul li a {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .footer .top .right ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .top .right ul li a {
    font-size: 14px;
  }
}
.footer .top .right ul li a:hover {
  color: #7A968E;
}
.footer .bottom {
  margin-top: 40px;
}
@media only screen and (max-width: 760px) {
  .footer .bottom {
    margin-top: 20px;
  }
}
.footer .bottom .left, .footer .bottom .right {
  vertical-align: bottom;
}
.footer .bottom .left p {
  font-size: 14px;
  line-height: 18px;
  font-family: "Crimson Text", serif;
}
@media only screen and (max-width: 1200px) {
  .footer .bottom .left p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 760px) {
  .footer .bottom .left p {
    font-size: 12px;
  }
  .footer .bottom .left p br {
    display: none;
  }
}
.footer .bottom .left p a:hover {
  text-decoration: underline;
}
.footer .bottom .right {
  font-size: 0;
}
@media only screen and (max-width: 760px) {
  .footer .bottom .right {
    margin-top: 30px;
  }
}
.footer .bottom .right .oneLogo {
  display: inline-block;
  width: 33.33333%;
  vertical-align: bottom;
}
.footer .bottom .right .oneLogo img {
  max-width: 100px;
}
@media only screen and (max-width: 1200px) {
  .footer .bottom .right .oneLogo img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 760px) {
  .footer .bottom .right .oneLogo img {
    max-width: 60px;
  }
}

.pageHeader {
  position: relative;
  height: 650px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1400px) {
  .pageHeader {
    height: 550px;
  }
}
@media only screen and (max-width: 1200px) {
  .pageHeader {
    height: 450px;
  }
}
@media only screen and (max-width: 760px) {
  .pageHeader {
    height: 280px;
  }
}
.pageHeader .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
}
.pageHeader .inner h1 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .pageHeader .inner h1 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .pageHeader .inner h1 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
}
.pageHeader .inner h2 {
  line-height: 1;
  font-size: 72px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .pageHeader .inner h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .pageHeader .inner h2 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 760px) {
  .pageHeader .inner h2 {
    font-size: 36px;
  }
}

.twoCourses {
  font-size: 0;
}
.twoCourses .oneCourse {
  width: 50%;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 40px 30px;
  color: #fff;
  font-size: 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .twoCourses .oneCourse {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .twoCourses .oneCourse {
    font-size: 24px;
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 900px) {
  .twoCourses .oneCourse {
    font-size: 20px;
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 760px) {
  .twoCourses .oneCourse {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .twoCourses .oneCourse {
    font-size: 14px;
    width: 100%;
    padding: 20px;
  }
}
.twoCourses .oneCourse.left {
  background: #304E44;
}
.twoCourses .oneCourse.left:hover {
  background: #BF742E;
}
.twoCourses .oneCourse.right {
  background: #7A968E;
}
.twoCourses .oneCourse.right:hover {
  background: #5B3D51;
}

.pageIntro {
  max-width: 1030px;
  margin: 100px auto;
  text-align: center;
  font-size: 38px;
  color: #0E2C28;
}
@media only screen and (max-width: 1400px) {
  .pageIntro {
    font-size: 32px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .pageIntro {
    font-size: 24px;
    line-height: 36px;
    margin: 80px auto;
  }
}
@media only screen and (max-width: 900px) {
  .pageIntro {
    font-size: 18px;
    line-height: 30px;
    margin: 70px auto;
  }
}
@media only screen and (max-width: 760px) {
  .pageIntro {
    font-size: 16px;
    line-height: 24px;
    margin: 50px auto;
  }
}

.courseBoxes .oneRow {
  font-size: 0;
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  align-items: center;
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}
.courseBoxes .oneRow.level1 .image span, .courseBoxes .oneRow.level1 .text .inner .button {
  background: #304E44;
}
.courseBoxes .oneRow.level1 .text .inner h2 {
  color: #304E44;
}
.courseBoxes .oneRow.level2 .image span, .courseBoxes .oneRow.level2 .text .inner .button {
  background: #304160;
}
.courseBoxes .oneRow.level2 .text .inner h2 {
  color: #304160;
}
.courseBoxes .oneRow.level3 .image span, .courseBoxes .oneRow.level3 .text .inner .button {
  background: #5B3D51;
}
.courseBoxes .oneRow.level3 .text .inner h2 {
  color: #5B3D51;
}
.courseBoxes .oneRow.level4 .image span, .courseBoxes .oneRow.level4 .text .inner .button {
  background: #806C2E;
}
.courseBoxes .oneRow.level4 .text .inner h2 {
  color: #806C2E;
}
.courseBoxes .oneRow.level5 .image span, .courseBoxes .oneRow.level5 .text .inner .button {
  background: #BF742E;
}
.courseBoxes .oneRow.level5 .text .inner h2 {
  color: #BF742E;
}
.courseBoxes .oneRow .left {
  order: 1;
}
.courseBoxes .oneRow .right {
  order: 2;
}
.courseBoxes .oneRow .image, .courseBoxes .oneRow .text {
  vertical-align: middle;
}
.courseBoxes .oneRow .image {
  box-sizing: border-box;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .image {
    order: 1;
    min-height: 280px;
  }
}
.courseBoxes .oneRow .image span {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 18px;
  box-sizing: border-box;
  padding: 14px 40px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
@media only screen and (max-width: 1200px) {
  .courseBoxes .oneRow .image span {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .image span {
    font-size: 12px;
  }
}
.courseBoxes .oneRow .text {
  background: #fff;
  height: 100%;
  align-items: center;
  display: flex;
}
.courseBoxes .oneRow .text .inner {
  padding: 80px 40px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  max-width: 450px;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .text .inner {
    padding: 40px 30px;
  }
}
.courseBoxes .oneRow .text .inner h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1000px) {
  .courseBoxes .oneRow .text .inner h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .text .inner h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
.courseBoxes .oneRow .text .inner h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1000px) {
  .courseBoxes .oneRow .text .inner h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .text .inner h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.courseBoxes .oneRow .text .inner p {
  font-family: "Crimson Text", serif;
  font-size: 18px;
  line-height: 26px;
  color: #606060;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  .courseBoxes .oneRow .text .inner p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .text .inner p {
    font-size: 14px;
    line-height: 22px;
  }
}
.courseBoxes .oneRow .text .inner a {
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 14px 40px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1200px) {
  .courseBoxes .oneRow .text .inner a {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .courseBoxes .oneRow .text .inner a {
    font-size: 14px;
  }
}
.courseBoxes .oneRow .text .inner a:hover {
  opacity: 0.8;
}

.eventBoxes {
  font-size: 0;
}
.eventBoxes .oneEvent {
  display: inline-block;
  width: 33.33%;
  padding: 0 10px 20px;
  box-sizing: border-box;
  vertical-align: top;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1100px) {
  .eventBoxes .oneEvent {
    width: 50%;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent {
    width: 100%;
    padding: 0 0 20px;
    margin-bottom: 10px;
  }
}
.eventBoxes .oneEvent .imageHolder {
  overflow: hidden;
  position: relative;
}
.eventBoxes .oneEvent .imageHolder:hover .image {
  transform: scale(1.05);
}
.eventBoxes .oneEvent .imageHolder span {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 110px;
  width: 110px;
  z-index: 1;
  font-size: 38px;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
  background: #304E44;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  line-height: 34px;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .imageHolder span {
    height: 80px;
    width: 80px;
    line-height: 25px;
    font-size: 30px;
    padding: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventBoxes .oneEvent .imageHolder span {
    height: 60px;
    width: 60px;
    line-height: 18px;
    font-size: 22px;
    padding: 10px;
  }
}
.eventBoxes .oneEvent .imageHolder span small {
  font-size: 22px;
  display: block;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .imageHolder span small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventBoxes .oneEvent .imageHolder span small {
    font-size: 13px;
  }
}
.eventBoxes .oneEvent .image {
  transition: transform 0.6s ease;
  transform: scale(1.01);
  transform-origin: center;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .image {
    height: 280px;
  }
}
.eventBoxes .oneEvent .text {
  box-sizing: border-box;
  padding: 35px 40px;
  color: #0E2C28;
  text-align: center;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .text {
    padding: 25px 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .eventBoxes .oneEvent .text {
    padding: 20px 25px;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent .text {
    padding: 18px 24px 20px;
  }
}
.eventBoxes .oneEvent .text h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .text h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent .text h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
.eventBoxes .oneEvent .text h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
  color: #806C2E;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .text h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent .text h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.eventBoxes .oneEvent .text p {
  font-family: "Crimson Text", serif;
  font-size: 18px;
  line-height: 26px;
  color: #606060;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .text p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent .text p {
    font-size: 14px;
    line-height: 22px;
  }
}
.eventBoxes .oneEvent .text a.button {
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 14px 40px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: #BF742E;
  transition: color 0.3s ease, background 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .eventBoxes .oneEvent .text a.button {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .eventBoxes .oneEvent .text a.button {
    font-size: 14px;
  }
}
.eventBoxes .oneEvent .text a.button:hover {
  color: #fff;
  background: #304E44;
}

.standardPage {
  max-width: 1000px;
  padding: 40px 0;
  box-sizing: border-box;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .standardPage {
    padding: 10px 0;
  }
}
.standardPage.errorPage {
  text-align: center;
  padding: 40px 0 80px;
}
@media only screen and (max-width: 760px) {
  .standardPage.errorPage {
    padding: 30px 0 60px;
  }
}
.standardPage.errorPage h1 {
  font-size: 34px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 760px) {
  .standardPage.errorPage h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.standardPage h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 40px;
}
@media only screen and (max-width: 1400px) {
  .standardPage h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 760px) {
  .standardPage h1 {
    font-size: 18px;
    margin-top: 30px;
  }
}
.standardPage h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: #806C2E;
}
@media only screen and (max-width: 1400px) {
  .standardPage h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .standardPage h2 {
    font-size: 14px;
  }
}
.standardPage p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 760px) {
  .standardPage p {
    font-size: 14px;
    line-height: 22px;
  }
}
.standardPage p a {
  color: #0E2C28;
  text-decoration: underline;
}
.standardPage ul li, .standardPage ol li {
  font-size: 16px;
  line-height: 30px;
}
@media only screen and (max-width: 760px) {
  .standardPage ul li, .standardPage ol li {
    font-size: 14px;
    line-height: 22px;
  }
}

.gallery {
  font-size: 0;
  margin-bottom: 100px;
}
@media only screen and (max-width: 760px) {
  .gallery {
    margin-bottom: 20px;
  }
}
.gallery .image {
  display: inline-block;
  width: 30%;
  box-sizing: border-box;
  padding: 0 10px 20px;
  vertical-align: middle;
}
.gallery .image.middle {
  width: 40%;
}
@media only screen and (max-width: 760px) {
  .gallery .image {
    width: 100% !important;
    padding: 0 0 20px;
  }
}
.gallery .image img {
  width: 100%;
}

.contactBoxes {
  margin-bottom: 100px;
}
@media only screen and (max-width: 760px) {
  .contactBoxes {
    margin-bottom: 20px;
  }
}
.contactBoxes .oneRow {
  font-size: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  align-items: center;
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow {
    grid-template-columns: 1fr;
  }
}
.contactBoxes .oneRow .left {
  order: 1;
}
.contactBoxes .oneRow .right {
  order: 2;
}
.contactBoxes .oneRow .image, .contactBoxes .oneRow .text {
  vertical-align: middle;
}
.contactBoxes .oneRow .image {
  box-sizing: border-box;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .image {
    order: 1;
    height: 280px;
  }
}
.contactBoxes .oneRow .image.mapHolder #map {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contactBoxes .oneRow .text {
  background: #fff;
  height: 100%;
}
.contactBoxes .oneRow .text .inner {
  padding: 120px 50px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
  max-width: 550px;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner {
    padding: 80px 50px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 600px) {
  .contactBoxes .oneRow .text .inner {
    padding: 40px 30px;
  }
}
.contactBoxes .oneRow .text .inner h1, .contactBoxes .oneRow .text .inner h2 {
  font-size: 38px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner h1, .contactBoxes .oneRow .text .inner h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner h1, .contactBoxes .oneRow .text .inner h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
.contactBoxes .oneRow .text .inner h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
  color: #BF742E;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }
}
.contactBoxes .oneRow .text .inner form > input, .contactBoxes .oneRow .text .inner form > select, .contactBoxes .oneRow .text .inner form > textarea {
  display: block;
  font-size: 14px;
  padding: 14px 20px;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 4px;
  outline: none;
  border: 1px solid rgba(96, 96, 96, 0.3);
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner form > input, .contactBoxes .oneRow .text .inner form > select, .contactBoxes .oneRow .text .inner form > textarea {
    font-size: 13px;
  }
}
.contactBoxes .oneRow .text .inner form > label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: #AEA990;
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner form > label {
    margin-bottom: 3px;
    font-size: 13px;
  }
}
.contactBoxes .oneRow .text .inner form .signup {
  display: none;
  margin-top: 15px;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner form .signup {
    margin-bottom: 20px;
  }
}
.contactBoxes .oneRow .text .inner form .signup label {
  position: relative;
  top: -1px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  margin-left: 7px;
  color: #212721;
  display: inline-block;
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner form .signup label {
    font-size: 13px;
  }
}
.contactBoxes .oneRow .text .inner form .signup input {
  display: inline-block;
  opacity: 0.75;
}
.contactBoxes .oneRow .text .inner form button {
  float: right;
  -webkit-appearance: none;
  border: none;
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 14px 40px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: #BF742E;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .contactBoxes .oneRow .text .inner form button {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner form button {
    float: none;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner form button {
    font-size: 14px;
  }
}
.contactBoxes .oneRow .text .inner form button:hover {
  background: #304E44;
}
.contactBoxes .oneRow .text .inner form p.small {
  font-size: 9px;
  line-height: 15px;
  margin-top: 35px;
  margin-right: 140px;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner form p.small {
    margin-right: 0;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner form p.small {
    margin-top: 20px;
  }
}
.contactBoxes .oneRow .text .inner form p.small a {
  display: inline;
}
.contactBoxes .oneRow .text .inner form p.response {
  font-size: 14px;
  margin-top: 30px;
  color: #BF742E;
}
.contactBoxes .oneRow .text .inner > p {
  font-size: 18px;
  line-height: 30px;
  color: #606060;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner > p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner > p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
  }
}
.contactBoxes .oneRow .text .inner > ul {
  margin-bottom: 30px;
  list-style: disc;
  margin-left: 18px;
}
.contactBoxes .oneRow .text .inner > ul li {
  font-size: 18px;
  line-height: 30px;
  color: #606060;
}
@media only screen and (max-width: 1000px) {
  .contactBoxes .oneRow .text .inner > ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 760px) {
  .contactBoxes .oneRow .text .inner > ul li {
    font-size: 14px;
    line-height: 22px;
  }
}
.contactBoxes .oneRow .text .inner .social {
  margin-top: 10px;
}
.contactBoxes .oneRow .text .inner .social a {
  display: inline-block;
  margin-right: 30px;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .contactBoxes .oneRow .text .inner .social a {
    margin-right: 20px;
  }
}
.contactBoxes .oneRow .text .inner .social a:hover {
  opacity: 0.5;
}
.contactBoxes .oneRow .text .inner .social a img {
  height: 24px;
}
@media only screen and (max-width: 1400px) {
  .contactBoxes .oneRow .text .inner .social a img {
    height: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .contactBoxes .oneRow .text .inner .social a img {
    height: 18px;
  }
}

.g-recaptcha {
  margin-bottom: 20px;
  display: block;
}

.articlePage {
  font-size: 0;
  background: #fff;
  margin-bottom: 50px;
}
.articlePage .articleImages {
  width: 50%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
.articlePage .articleImages .videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.articlePage .articleImages .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.articlePage .articleImages img {
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .articlePage .articleImages img {
    display: none;
  }
  .articlePage .articleImages img:nth-of-type(1) {
    display: block;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleImages {
    width: 100%;
  }
}
.articlePage .mobileImages {
  margin-top: 20px;
  display: none;
}
@media only screen and (max-width: 760px) {
  .articlePage .mobileImages {
    display: block;
  }
}
.articlePage .mobileImages img {
  width: 100%;
}
.articlePage .articleText {
  width: 50%;
  margin: 0 auto;
  padding: 100px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText {
    padding: 80px;
  }
}
@media only screen and (max-width: 1000px) {
  .articlePage .articleText {
    padding: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText {
    width: 100%;
    padding: 30px;
    margin-top: 10px;
  }
}
.articlePage .articleText h2, .articlePage .articleText .date {
  color: #AEA990;
  line-height: 32px;
  font-size: 22px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText h2, .articlePage .articleText .date {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText h2, .articlePage .articleText .date {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.articlePage .articleText h2 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText h2 {
    margin-bottom: 10px;
  }
}
.articlePage .articleText .intro {
  font-size: 18px;
  line-height: 30px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText .intro {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText .intro {
    font-size: 16px;
    line-height: 24px;
  }
}
.articlePage .articleText .blogTitle {
  font-size: 38px;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText .blogTitle {
    font-size: 28px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText .blogTitle {
    font-size: 24px;
    line-height: 32px;
  }
}
.articlePage .articleText .articleBody {
  margin-top: 80px;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText .articleBody {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText .articleBody {
    margin-top: 40px;
  }
}
.articlePage .articleText p, .articlePage .articleText div {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText p, .articlePage .articleText div {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.articlePage .articleText h3 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
  padding-top: 10px;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText h3 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}
.articlePage .articleText .quote {
  font-size: 18px;
  line-height: 26px;
  font-family: "Crimson Text", serif;
  color: #606060;
}
@media only screen and (max-width: 1200px) {
  .articlePage .articleText .quote {
    font-size: 14px;
    line-height: 22px;
  }
}
.articlePage .articleText strong {
  font-weight: 700;
}
.articlePage .articleText a {
  text-decoration: underline;
}
.articlePage .articleText em {
  font-style: italic;
}
.articlePage .articleText .book {
  margin-top: 50px;
}
.articlePage .articleText .book .button {
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 14px 40px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: #BF742E;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 1400px) {
  .articlePage .articleText .book .button {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media only screen and (max-width: 760px) {
  .articlePage .articleText .book .button {
    font-size: 14px;
  }
}
.articlePage .articleText .book .button:hover {
  background: #304E44;
}
.articlePage .articleText ul {
  display: block;
  list-style: disc;
  font-size: 18px;
  line-height: 30px;
  margin: 10px 0 20px 0px;
  list-style-position: inside;
}
.articlePage .articleText ul li {
  display: block;
  display: list-item;
  margin-top: 10px;
}
.articlePage .articleText ul ul {
  list-style: circle;
  margin: 0 0 0 30px;
  list-style-position: inside;
}
.articlePage .articleText ol {
  display: block;
  list-style: decimal;
  font-size: 18px;
  line-height: 30px;
  margin: 10px 0 20px 0px;
  list-style-position: inside;
}
.articlePage .articleText ol li {
  display: block;
  display: list-item;
  margin-top: 10px;
}
.articlePage .articleText ol ol {
  list-style: upper-roman;
  margin: 0 0 0 30px;
  list-style-position: inside;
}

.cookieBar {
  left: 50%;
  position: absolute;
  transform: translate(-50%, 200%);
  position: fixed;
  bottom: 20px;
  width: 90%;
  max-width: 740px;
  border-radius: 10px;
  background: #fff;
  color: #0E2C28;
  padding: 20px 20px 18px 22px;
  box-sizing: border-box;
  font-size: 0;
  border: 1px solid #ededed;
  z-index: 5000;
  transition: transform 0.4s ease;
}
.cookieBar.show {
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 760px) {
  .cookieBar {
    text-align: center;
    padding-top: 10px;
  }
}
.cookieBar .cookieInfo {
  display: inline-block;
}
@media only screen and (max-width: 760px) {
  .cookieBar .cookieInfo {
    display: block;
    margin-bottom: 15px;
  }
}
.cookieBar .cookieInfo p {
  font-size: 13px;
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 900px) {
  .cookieBar .cookieInfo p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 760px) {
  .cookieBar .cookieInfo p {
    margin-top: 10px;
  }
}
.cookieBar .cookieInfo p a {
  text-decoration: underline;
}
.cookieBar .cookieButton {
  display: inline-block;
  float: right;
  margin-top: 9px;
}
.cookieBar .cookieButton a {
  padding: 10px 25px 10px;
  font-size: 12px;
}
@media only screen and (max-width: 760px) {
  .cookieBar .cookieButton {
    float: none;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

.instagramWrapper {
  margin: 50px auto;
}
@media only screen and (max-width: 900px) {
  .instagramWrapper {
    margin: 0 auto 30px;
  }
}
.instagramWrapper h2 {
  color: #5B3D51;
}
.instagramWrapper h2 img {
  vertical-align: top;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
@media only screen and (max-width: 760px) {
  .instagramWrapper h2 img {
    margin-right: 10px;
  }
}
.instagramWrapper .instagramFeed {
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 900px) {
  .instagramWrapper .instagramFeed {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.instagramWrapper .instagramFeed a {
  display: inline-block;
  width: calc(16.666% - 25px);
  box-sizing: border-box;
  position: relative;
  margin: 10px;
  position: relative;
  height: 0;
  padding-top: calc(16.666% - 25px);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .instagramWrapper .instagramFeed a {
    width: calc(50% - 20px);
    padding-top: calc(50% - 20px);
    margin: 10px;
  }
}
.instagramWrapper .instagramFeed a img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}