@charset "utf-8";
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42Vksj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksj.ttf) format('truetype');
}
/******* DEFINING VARIABLES *******/
/******* GENERAL LESS *******/
.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.float_breaker:after {
  content: "";
  clear: both;
  display: block;
}
.shadow_one {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.4));
}
.shadow_two {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
}
.shadow_three {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
}
.shadow_four {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
}
.no_shadow {
  -webkit-filter: none;
  filter: none;
}
.margin_top_5 {
  margin-top: 5px;
}
.margin_top_10 {
  margin-top: 10px;
}
.margin_top_15 {
  margin-top: 15px;
}
.margin_top_20 {
  margin-top: 20px;
}
.margin_top_30 {
  margin-top: 30px;
}
.margin_top_40 {
  margin-top: 40px;
}
.margin_top_60 {
  margin-top: 60px;
}
.margin_top_100 {
  margin-top: 100px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .margin_top_100 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .margin_top_100 {
    margin-top: 60px;
  }
}
/* width */
::-webkit-scrollbar {
  width: 11px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #4fa67c;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #111;
}
/* width */
div::-webkit-scrollbar {
  width: 9px;
}
/* Track */
div::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
div::-webkit-scrollbar-thumb {
  background: #d0aa34;
}
/* Handle on hover */
div::-webkit-scrollbar-thumb:hover {
  background: #111;
}
.background_basics {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
}
.text_link {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  color: #4fa67c;
  transition: 0.3s ease;
}
.text_link:hover,
.text_link:active {
  color: #111;
}
.text_link.two {
  color: #ddd;
}
.text_link.two:hover,
.text_link.two:active {
  color: #4fa67c;
}
.text_link.three {
  color: #d0aa34;
}
.text_link.three:hover,
.text_link.three:active {
  color: #4fa67c;
}
.text_link.liked {
  color: #4fa67c;
}
.coloured_text {
  color: #4fa67c;
}
.coloured_text.yellow {
  color: #d0aa34;
}
.coloured_text.white {
  color: #fff;
}
.big_text {
  font-size: 1.3rem;
}
.bolden {
  font-weight: 700;
}
.semi_bolden {
  font-weight: 600;
}
.medium_bolden {
  font-weight: 500;
}
.center_content {
  text-align: center;
}
.user_select_false {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}
.preloader > div {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fa67c;
  font-size: 1.1rem;
  display: inline-flex;
  font-family: 'Space Grotesk', sans-serif;
}
.preloader > div > div:last-child {
  flex: 1;
  padding: 0 0 0 10px;
}
.preloader > div img {
  width: 35px;
}
::selection {
  background: #d0aa34;
}
::-moz-selection {
  background: #d0aa34;
}
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: #111;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
}
body.darken {
  background: #d0aa34;
}
p {
  margin: 0;
  line-height: 140%;
}
li {
  margin: 0;
}
a {
  text-decoration: none;
  border: none;
  color: inherit;
}
img {
  border: none;
  display: block;
}
.headerCrossStyling {
  padding: 0;
  margin: 0;
}
h1 {
  padding: 0;
  margin: 0;
  font-size: 3.6rem;
  letter-spacing: -1px;
  line-height: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 2.8rem;
  }
}
h2 {
  padding: 0;
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: -1px;
  line-height: 105%;
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
}
h3 {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #d0aa34;
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 1.35rem;
  }
}
h4 {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  line-height: 110%;
}
h5,
h6 {
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 105%;
}
.page_not_found {
  padding: 200px 40px;
  text-align: center;
}
.page_not_found > div {
  max-width: 580px;
  margin: 0 auto;
}
.page_not_found > div h1 {
  color: #4fa67c;
  font-size: 10rem;
}
.page_not_found > div h1.yellow {
  color: #d0aa34;
}
.page_not_found > div h1.white {
  color: #fff;
}
.page_not_found > div h3 {
  font-weight: 700;
  margin: 10px 0;
}
.page_not_found > div > div {
  margin: 30px 0 0 0;
}
/******* INPUT LESS *******/
::-webkit-input-placeholder {
  color: #d5d5d5;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #d5d5d5;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #d5d5d5;
}
:-ms-input-placeholder {
  color: #d5d5d5;
}
.asterisk {
  font-weight: 700;
  margin: 0 0 0 5px;
  color: #4fa67c;
}
.button {
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  padding: 13px 35px;
  transition: 0.3s ease;
  background: #d0aa34;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border: none;
  font-size: 0.9rem;
  position: relative;
}
.button:hover {
  background: #4fa67c;
}
.button:active {
  color: #2f674c;
}
.button.white {
  background: #fff;
  color: #d0aa34;
}
.button.white:hover {
  background: #d0aa34;
  color: #fff;
}
.button.white:active {
  background: #2f674c;
  color: #fff;
}
.button.square {
  padding: 13px 15px;
}
.button.clear {
  padding: 13px 9px;
  background: none;
  color: #d0aa34;
  font-size: 1.2rem;
}
.button.clear:hover {
  color: #4fa67c;
}
.button.clear:active {
  color: #2f674c;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .button.clear {
    padding: 13px 7px;
  }
}
@media only screen and (max-width: 480px) {
  .button.clear {
    padding: 7px;
    text-align: right;
  }
}
.button.full {
  display: flex;
}
.button.full > div {
  flex: 1;
}
.button.transparent_effect {
  background: rgba(7, 0, 1, 0.1);
  color: #fff;
  padding: 13px 15px;
}
.button.transparent_effect:hover {
  background: #070001;
}
.button.transparent_effect:active {
  background: #070001;
}
.textbox {
  padding: 20px;
  background: none;
  transition: 0.3s ease;
  resize: vertical;
  outline: none;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #d5d5d5;
  color: #111;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}
.textbox:hover {
  border-color: #d0aa34;
}
.textbox:focus {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  background: #fff;
  border-color: #4fa67c;
  color: #2f674c;
}
.textbox.error {
  border-right: 8px solid #d0aa34;
}
.textbox.for_textarea {
  min-height: 200px;
}
.textbox.auto_width {
  width: auto;
}
.textbox_with_button {
  position: relative;
}
.textbox_with_button > div:first-child .textbox {
  padding-right: 55px;
}
.textbox_with_button > div:last-child {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.textbox_with_button > div:last-child .button {
  width: 55px;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 15px;
  padding: 15px 10px;
}
.textbox_with_button > div:last-child .preloader {
  padding: 9px 0 9px 9px;
}
.textbox_password {
  position: relative;
}
.textbox_password > div:first-child .textbox {
  padding-right: 55px;
}
.textbox_password > div:last-child {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 5px;
}
.textbox_password > div:last-child a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  color: #d0aa34;
  padding: 8px;
  transition: 0.3s ease;
}
.textbox_password > div:last-child a span:last-child {
  display: none;
}
.textbox_password > div:last-child a:hover {
  color: #4fa67c;
}
.switch_holder {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  display: inline-flex;
  background: #fff;
  border: 1px solid #d0aa34;
  border-radius: 30px;
  padding: 8px;
}
.switch_holder:after {
  content: "";
  clear: both;
  display: block;
}
.switch_holder > a.switch {
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  float: left;
  display: inline-flex;
  padding: 13px 35px;
  transition: 0.3s ease;
  background: none;
  color: #4fa67c;
  text-transform: uppercase;
  text-align: center;
  border-radius: 30px;
  border: none;
  font-size: 0.9rem;
}
.switch_holder > a.switch:hover {
  color: #d0aa34;
}
.switch_holder > a.switch:active {
  color: #d0aa34;
  background: #d0aa34;
}
.switch_holder > a.switch.active {
  background: #4fa67c;
  color: #fff;
}
.switch_holder.wide {
  display: flex;
}
.switch_holder.wide > a.switch {
  flex: 1;
  display: block;
}
.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  background: #fff;
  color: #111;
  padding: 15px 25px;
  transition: 0.3s ease;
  border: 1px solid #d5d5d5;
}
.checkbox > div {
  font-weight: 600;
  padding: 0 5px;
}
.checkbox > div:first-child > div {
  border-radius: 10px;
  background: #eee;
  position: relative;
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}
.checkbox > div:first-child > div > div {
  position: absolute;
  top: -0.5px;
  left: 6px;
  opacity: 0;
  z-index: 1;
}
.checkbox > div:first-child > div > div i {
  font-size: 0.6rem;
  color: #111;
}
.checkbox:hover {
  border-color: #d0aa34;
  color: #d0aa34;
}
.checkbox:hover > div:first-child > div {
  background: #d0aa34;
}
.checkbox:hover > div:first-child > div > div {
  opacity: 1;
}
.checkbox:hover > div:first-child > div > div i {
  color: #fff;
}
.checkbox.checked {
  border-color: #d0aa34;
  background: #d0aa34;
  color: #fff;
}
.checkbox.checked > div:first-child > div {
  background: #fff;
}
.checkbox.checked > div:first-child > div > div {
  opacity: 1;
}
.checkbox.checked > div:first-child > div > div i {
  color: #d0aa34;
}
.checkbox_domain.float_all {
  margin: -5px;
}
.checkbox_domain.float_all:after {
  content: "";
  clear: both;
  display: block;
}
.checkbox_domain.float_all .checkbox {
  float: left;
  margin: 5px;
}
.field_box {
  position: relative;
  text-align: left;
}
.field_box > div:first-child {
  font-weight: 600;
  margin: 0 0 10px 0;
}
.frm_err > div {
  display: table;
  width: 100%;
  max-width: 900px;
  color: #fff;
  background: #d0aa34;
  margin: 0 0 10px 0;
  font-size: 0.9rem;
}
.frm_err > div > div {
  display: table-cell;
  vertical-align: middle;
}
.frm_err > div > div:first-child {
  width: 40px;
  background: #111;
  color: #d0aa34;
  text-align: center;
}
.frm_err > div > div:last-child {
  font-weight: 600;
  padding: 20px 30px 20px 10px;
  text-align: left;
}
.floating_frm_err {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  text-align: center;
  background: #4fa67c;
  color: #fff;
  display: none;
}
.floating_frm_err > div {
  display: table;
  font-size: 1.1rem;
  margin: 0 auto;
}
.floating_frm_err > div > div {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}
.floating_frm_err > div i {
  font-size: 1.4rem;
}
.frm_success {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  text-align: center;
  background: #111;
  color: #fff;
  display: none;
}
.frm_success > div {
  display: table;
  font-size: 1.1rem;
  margin: 0 auto;
}
.frm_success > div > div {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}
.frm_success > div i {
  font-size: 1.4rem;
}
.icon_counter {
  overflow: visible;
}
.icon_counter span {
  font-weight: 700;
  position: absolute;
  z-index: 1;
  top: 3px;
  right: 3px;
  background: #111;
  color: #fff;
  padding: 3px 7px;
  border-radius: 30px;
  display: block;
  font-size: 0.6rem;
}
.editorjs_holder {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
}
.datetime {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.datetime > div {
  padding: 0 5px;
}
.datetime > div:nth-child(2) {
  flex: 1;
}
.datetime > div:nth-child(3) {
  padding: 0 0 0 5px;
}
.datetime > div:nth-child(4) {
  border-left: 1px solid #d0aa34;
  padding: 0 5px 0 30px;
}
.datetime > div:nth-child(5) {
  font-weight: 700;
}
.datetime.equal_widths > div {
  flex: 1;
}
/******* MEDIA LESS *******/
.dropzone_holder {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 10px;
  position: relative;
}
.dropzone_holder .media_dropzone {
  width: 100%;
  min-height: 170px;
  border: 2px dashed #d0aa34;
  padding: 5px;
  transition: 0.3s ease;
  display: flex;
  flex-wrap: wrap;
}
.dropzone_holder .media_dropzone .dz-preview {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  text-align: center;
  display: inline-block;
  margin: 5px;
  overflow: hidden;
  background: #111;
  position: relative;
  height: 147px;
  flex-basis: 147px;
}
.dropzone_holder .media_dropzone .dz-preview .dz-image {
  width: 100%;
  height: 100%;
}
.dropzone_holder .media_dropzone .dz-preview .dz-image img {
  max-width: 200px;
  min-height: 147px;
}
.dropzone_holder .media_dropzone .dz-preview .dz-details {
  display: none;
  opacity: 0;
}
.dropzone_holder .media_dropzone .dz-preview .dz-progress {
  background: #fff;
  -webkit-filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.15));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dropzone_holder .media_dropzone .dz-preview .dz-progress > span {
  background: #4fa67c;
  height: 12px;
  width: 0;
  display: block;
}
.dropzone_holder .media_dropzone .dz-preview .dz-error-message {
  display: none;
  background: #4fa67c;
  position: absolute;
  color: #fff;
  bottom: 4px;
  padding: 10px;
  font-size: 0.8rem;
}
.dropzone_holder .media_dropzone .dz-preview .dz-success-mark {
  display: none;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}
.dropzone_holder .media_dropzone .dz-preview .dz-success-mark svg {
  width: 30px;
}
.dropzone_holder .media_dropzone .dz-preview .dz-error-mark {
  display: none;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}
.dropzone_holder .media_dropzone .dz-preview .dz-error-mark svg {
  width: 30px;
}
.dropzone_holder #disp_message {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 0 40px;
}
.dropzone_holder #disp_message > div {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  height: 100%;
}
.dropzone_holder #disp_message > div > div {
  padding: 10px;
  color: #d0aa34;
}
.dropzone_holder #disp_message > div > div:first-child {
  font-size: 1.8rem;
}
.dropzone_holder #disp_message > div > div:last-child {
  font-weight: 600;
  text-align: left;
}
.dropzone_holder #disp_message.hide {
  display: none;
}
.dropzone_holder.dragover {
  background: #fff;
  padding: 20px;
}
.dropzone_holder.dragover .media_dropzone {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.25);
  border: 3px dashed #4fa67c;
  min-height: 150px;
}
.dropzone_holder.dragover #disp_message > div > div {
  color: #d0aa34;
}
.dropzone_holder:hover {
  background: #fff;
}
.dropzone_holder:hover .media_dropzone {
  border-color: #4fa67c;
}
.dropzone_holder:hover #disp_message > div > div {
  color: #4fa67c;
}
.dropzone_holder:active {
  background: #fff;
}
.dropzone_holder:active .media_dropzone {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.25);
  border: 3px solid #d0aa34;
}
.dropzone_holder:active #disp_message > div > div {
  color: #d0aa34;
}
/******* CUSTOM LESS *******/
.blinds {
  position: fixed;
  z-index: 14;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0 0, 0, 0.8);
}
.image_shade {
  background: #4fa67c;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.banner {
  position: fixed;
  display: flex;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 40px 20px 40px;
  transition: 0.3s ease;
}
.banner > div:first-child {
  flex: 1;
}
.banner > div:first-child > a {
  display: inline-flex;
}
.banner > div:first-child > a > img {
  width: 320px;
}
.banner > div:first-child > a > img:first-child {
  display: none;
}
.banner > div:nth-child(2) {
  padding: 0 30px;
}
.banner > div:nth-child(2):after {
  content: "";
  clear: both;
  display: block;
}
.banner > div:nth-child(2) .button {
  float: left;
  margin: 0 0 0 5px;
}
.banner > div:nth-child(2) .button:last-child {
  margin: 0 0 0 20px;
}
.banner > div:last-child > .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}
.banner > div:last-child > .hamburger > div:first-child > div {
  margin: -1.5px;
}
.banner > div:last-child > .hamburger > div:first-child > div:after {
  content: "";
  clear: both;
  display: block;
}
.banner > div:last-child > .hamburger > div:first-child > div > div {
  display: block;
  float: left;
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #d0aa34;
  margin: 2.5px;
  transition: 0.3s ease;
}
.banner > div:last-child > .hamburger > div:last-child {
  padding: 0 0 0 10px;
  color: #fff;
  text-transform: uppercase;
}
.banner > div:last-child > .hamburger:hover > div:first-child > div > div {
  background: #fff;
}
.banner > div:last-child > .hamburger:hover > div:last-child {
  color: #d0aa34;
}
.banner.active {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  background: #fff;
  border-bottom: 1px solid #d5d5d5;
  padding: 35px 40px;
}
.banner.active > div:first-child > a > img:first-child {
  display: block;
}
.banner.active > div:first-child > a > img:last-child {
  display: none;
}
.banner.active > div:last-child > .hamburger > div:last-child {
  color: #4fa67c;
}
.banner.active > div:last-child > .hamburger:hover > div:first-child > div > div {
  background: #4fa67c;
}
.banner.active > div:last-child > .hamburger:hover > div:last-child {
  color: #d0aa34;
}
@media only screen and (max-width: 480px) {
  .banner.active {
    padding: 30px;
  }
}
.banner.putaway {
  opacity: 0;
  top: -300px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .banner > div:nth-child(2) .button {
    display: none;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .banner {
    padding: 20px;
  }
  .banner > div:first-child > a > img {
    width: 260px;
  }
  .banner > div:nth-child(2) {
    padding: 0 5px;
  }
  .banner > div:nth-child(2) .button {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .banner {
    padding: 20px;
  }
  .banner > div:first-child > a > img {
    width: 220px;
  }
  .banner > div:nth-child(2) {
    padding: 0 5px;
  }
  .banner > div:nth-child(2) .button {
    display: none;
  }
}
.footer {
  margin: -0.5px 0 0 0;
}
.footer > div:first-child {
  text-align: center;
  border-top: 1px solid #d5d5d5;
  padding: 20px;
}
.footer > div:first-child > div {
  display: inline-flex;
}
.footer > div:first-child > div:after {
  content: "";
  clear: both;
  display: block;
}
.footer > div:first-child > div > a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  float: left;
  color: #d5d5d5;
  transition: 0.3s ease;
  font-size: 1.4rem;
  margin: 0 0 0 40px;
}
.footer > div:first-child > div > a:first-child {
  margin: 0;
}
.footer > div:first-child > div > a:hover {
  color: #d0aa34;
}
.footer > div:nth-child(2) {
  padding: 100px 120px;
  background: #2f674c;
}
.footer > div:nth-child(2) > div {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.footer > div:nth-child(2) > div > div:first-child img {
  width: 150px;
}
.footer > div:nth-child(2) > div > div:nth-child(2) {
  flex: 1;
  padding: 0 0 0 30px;
  color: #93ceb1;
}
.footer > div:nth-child(2) > div > div:nth-child(2) > p {
  max-width: 300px;
  margin: 0 auto;
}
.footer > div:nth-child(2) > div > div:nth-child(n+3) {
  padding: 0 0 0 60px;
}
.footer > div:nth-child(2) > div > div > h4 {
  margin: 0 0 15px 0;
  color: #d0aa34;
}
.footer > div:last-child {
  padding: 20px 120px;
  background: #d0aa34;
  color: #fff;
}
.footer > div:last-child > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer > div:last-child > div > div:first-child {
  flex: 1;
  padding: 0 20px 0 0;
  font-size: 0.9rem;
}
.footer > div:last-child > div > div:last-child {
  text-align: right;
}
.footer > div:last-child > div > div:last-child > a {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-size: 0.8rem;
}
.footer > div:last-child > div > div:last-child > a > div {
  padding: 0 5px;
}
.footer > div:last-child > div > div:last-child > a img {
  width: 130px;
}
.footer a.footer_link {
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  margin: 0 0 10px 0;
  color: #fff;
}
.footer a.footer_link:hover {
  color: #d0aa34;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .footer > div:nth-child(2) > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }
  .footer > div:nth-child(2) > div > div:first-child img {
    margin: 0 auto;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) {
    padding: 0;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) > p {
    max-width: 100%;
  }
  .footer > div:nth-child(2) > div > div:nth-child(n+3) {
    padding: 0 0 0 50px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .footer > div:nth-child(2) {
    padding: 100px 80px;
  }
  .footer > div:nth-child(2) > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }
  .footer > div:nth-child(2) > div > div:first-child img {
    margin: 0 auto;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
    text-align: center;
    border-bottom: 1px solid #4fa67c;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) > p {
    max-width: 100%;
  }
  .footer > div:nth-child(2) > div > div:nth-child(3) {
    flex: 0 0 50%;
    padding: 40px 40px 40px 0;
    text-align: right;
  }
  .footer > div:nth-child(2) > div > div:nth-child(4) {
    flex: 0 0 50%;
    padding: 40px 0 40px 40px;
    text-align: left;
    border-left: 1px solid #4fa67c;
  }
  .footer > div:nth-child(2) > div > div:nth-child(5) {
    flex: 0 0 100%;
    padding: 40px 0 0 0;
    text-align: center;
    border-top: 1px solid #4fa67c;
  }
  .footer > div:last-child {
    padding: 20px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .footer > div:nth-child(2) {
    padding: 100px 60px;
  }
  .footer > div:nth-child(2) > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }
  .footer > div:nth-child(2) > div > div:first-child img {
    margin: 0 auto;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
    text-align: center;
    border-bottom: 1px solid #4fa67c;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) > p {
    max-width: 100%;
  }
  .footer > div:nth-child(2) > div > div:nth-child(3) {
    flex: 0 0 50%;
    padding: 40px 30px 40px 0;
    text-align: right;
  }
  .footer > div:nth-child(2) > div > div:nth-child(4) {
    flex: 0 0 50%;
    padding: 40px 0 40px 30px;
    text-align: left;
    border-left: 1px solid #4fa67c;
  }
  .footer > div:nth-child(2) > div > div:nth-child(5) {
    flex: 0 0 100%;
    padding: 40px 0 0 0;
    text-align: center;
    border-top: 1px solid #4fa67c;
  }
  .footer > div:last-child {
    padding: 40px 60px;
  }
  .footer > div:last-child > div > div:first-child {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 0 5px 0;
  }
  .footer > div:last-child > div > div:last-child {
    flex: 0 0 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .footer > div:first-child > div > a {
    margin: 0 0 0 30px;
  }
  .footer > div:nth-child(2) {
    padding: 80px 30px;
  }
  .footer > div:nth-child(2) > div {
    margin: 0;
  }
  .footer > div:nth-child(2) > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }
  .footer > div:nth-child(2) > div > div:first-child img {
    margin: 0 auto;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
    text-align: center;
  }
  .footer > div:nth-child(2) > div > div:nth-child(2) > p {
    max-width: 100%;
  }
  .footer > div:nth-child(2) > div > div:nth-child(n+3) {
    flex: 0 0 100%;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #4fa67c;
  }
  .footer > div:nth-child(2) > div > div:nth-child(5) {
    padding: 40px 0 0 0;
  }
  .footer > div:last-child {
    padding: 40px 30px;
  }
  .footer > div:last-child > div > div:first-child {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 0 5px 0;
  }
  .footer > div:last-child > div > div:last-child {
    flex: 0 0 100%;
    text-align: center;
  }
}
.slideshow {
  height: 100vh;
  min-height: 650px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.slideshow > div {
  position: absolute;
  height: 100%;
  top: 0;
}
.slideshow > div:first-child {
  width: 100%;
  left: 0;
}
.slideshow > div:first-child > .slide {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.slideshow > div:first-child > .slide:first-child {
  display: block;
}
.slideshow > div:first-child > .slide .image_shade {
  background: #2f674c;
  opacity: 0.2;
}
.slideshow > div:nth-child(2) {
  width: 100%;
  left: 0;
  bottom: 100px;
}
.slideshow > div:nth-child(2) > .slide_title {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: none;
  text-align: center;
  z-index: 3;
  text-transform: uppercase;
  padding: 0 60px;
}
.slideshow > div:nth-child(2) > .slide_title > div {
  max-width: 900px;
  margin: 0 auto;
}
.slideshow > div:nth-child(2) > .slide_title > div h1 {
  font-size: 4.3rem;
  letter-spacing: -4px;
  line-height: 95%;
  color: #fff;
}
.slideshow > div:nth-child(2) > .slide_title > div div {
  margin: 20px 0 0 0;
}
.slideshow > div:nth-child(2) > .slide_title:first-child {
  display: block;
}
.slideshow > div:last-child {
  position: absolute;
  z-index: 4;
  bottom: 100px;
  width: 100%;
  height: 1px;
  top: auto;
  display: flex;
}
.slideshow > div:last-child > div {
  flex: 1;
}
.slideshow > div:last-child > div:last-child {
  text-align: right;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .slideshow > div:nth-child(2) > .slide_title {
    padding: 0 40px;
  }
  .slideshow > div:nth-child(2) > .slide_title > div h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .slideshow {
    height: 95vh;
  }
  .slideshow > div:nth-child(2) > .slide_title {
    padding: 0 30px;
  }
  .slideshow > div:nth-child(2) > .slide_title > div h1 {
    font-size: 3.2rem;
  }
}
.navigation {
  position: fixed;
  z-index: 14;
  top: 0;
  right: 0;
  height: 100%;
  display: none;
}
.navigation > div {
  display: flex;
}
.navigation > div > div:last-child {
  background: #2f674c;
  width: 350px;
  height: 100vh;
  overflow-y: auto;
}
.navigation > div > div:last-child > div {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  background: #2f674c;
  margin: 0 0 30px 0;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}
.navigation > div > div:last-child > div > div:first-child {
  font-weight: 600;
  background: #d0aa34;
  padding: 10.5px 30px;
  color: #fff;
  text-transform: uppercase;
}
.navigation .nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #4fa67c;
  color: #fff;
  padding: 20px 30px;
  transition: 0.3s ease;
}
.navigation .nav:hover {
  background: #fff;
  color: #d0aa34;
}
.navigation .nav.active {
  font-weight: 600;
  background: #4fa67c;
}
@media only screen and (max-width: 480px) {
  .navigation > div > div:last-child {
    width: 300px;
    padding: 0 0 50px 0;
  }
}
.section_heading {
  margin: 0 0 40px 0;
  text-align: center;
}
.section_heading > h3 {
  font-weight: 700;
  font-size: 1.6rem;
}
.section_heading > p {
  font-weight: 600;
  color: #d0aa34;
}
.video_player {
  max-width: 900px;
  border-radius: 20px;
  background: #d0aa34;
  margin: 0 auto;
}
.video_player video {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.audio_player {
  background: #d0aa34;
  padding: 30px;
  border-radius: 20px;
}
.audio_player audio {
  width: 100%;
  display: block;
}
.custom_box.one {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d5d5d5;
}
.custom_box.one > div {
  flex: 0 0 50%;
}
.custom_box.one > div:first-child {
  padding: 120px;
}
.custom_box.one > div:last-child {
  flex: 0 0 50%;
}
.custom_box.one > div:last-child > .quick_fact_holder {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.custom_box.one > div:last-child > .quick_fact_holder > .quick_fact {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  flex: 0 0 50%;
  position: relative;
  color: #fff;
}
.custom_box.one > div:last-child > .quick_fact_holder > .quick_fact > div:first-child {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
}
.custom_box.one > div:last-child > .quick_fact_holder > .quick_fact > div:first-child > span {
  display: block;
  margin: 20px 0 0 0;
  transition: 0.3s ease;
}
.custom_box.one > div:last-child > .quick_fact_holder > .quick_fact > div:last-child {
  background: #2f674c;
  background: linear-gradient(180deg, rgba(47, 103, 76, 0) 0%, #0d261a 100%);
  height: 100%;
}
.custom_box.one > div:last-child > .quick_fact_holder > .quick_fact:hover > div:first-child > span {
  padding: 0 0 0 30px;
  color: #d0aa34;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.one > div {
    flex: 0 0 100%;
  }
  .custom_box.one > div:first-child {
    padding: 100px 80px;
  }
  .custom_box.one > div:last-child {
    flex: 0 0 100%;
  }
  .custom_box.one > div:last-child > .quick_fact_holder > .quick_fact {
    height: 300px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.one > div {
    flex: 0 0 100%;
  }
  .custom_box.one > div:first-child {
    padding: 100px 60px;
  }
  .custom_box.one > div:last-child {
    flex: 0 0 100%;
  }
  .custom_box.one > div:last-child > .quick_fact_holder > .quick_fact {
    height: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.one > div {
    flex: 0 0 100%;
  }
  .custom_box.one > div:first-child {
    padding: 80px 30px;
  }
  .custom_box.one > div:last-child {
    flex: 0 0 100%;
  }
  .custom_box.one > div:last-child > .quick_fact_holder > .quick_fact {
    flex: 0 0 100%;
    min-height: 250px;
  }
}
.custom_box.two {
  background: #2f674c;
  padding: 150px 120px;
}
.custom_box.two > div {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.custom_box.two > div h3 {
  color: #fff;
}
.custom_box.two.thinner {
  padding: 100px 120px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.two {
    padding: 130px 80px;
  }
  .custom_box.two.thinner {
    padding: 100px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.two {
    padding: 120px 60px;
  }
  .custom_box.two.thinner {
    padding: 100px 60px;
  }
  .custom_box.two.for_home {
    padding: 120px 60px 150px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.two {
    padding: 100px 30px;
  }
  .custom_box.two.thinner {
    padding: 100px 30px;
  }
  .custom_box.two.for_home {
    padding: 100px 30px 150px 30px;
  }
}
.custom_box.three {
  position: relative;
}
.custom_box.three > div:first-child {
  position: absolute;
  left: 200px;
  bottom: 0;
}
.custom_box.three > div:first-child > img {
  width: 420px;
}
.custom_box.three > div:last-child {
  margin: 0 0 0 670px;
  width: 500px;
  padding: 120px 0;
}
.custom_box.three > div:last-child > div {
  margin: 20px 0 0 0;
}
.custom_box.three > div:last-child h1 {
  color: #fff;
}
.custom_box.three > div:last-child .button {
  margin: 0 0 0 7px;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom_box.three > div:first-child {
    left: 60px;
  }
  .custom_box.three > div:last-child {
    margin: 0 0 0 525px;
    width: 485px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.three > div:first-child {
    left: 60px;
  }
  .custom_box.three > div:first-child > img {
    width: 330px;
  }
  .custom_box.three > div:last-child {
    margin: 0 0 0 400px;
    width: 330px;
  }
  .custom_box.three > div:last-child h1 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.three > div:first-child {
    top: -100px;
    left: 0;
    width: 100%;
    bottom: auto;
    text-align: center;
  }
  .custom_box.three > div:first-child > img {
    width: 330px;
    margin: 0 auto;
  }
  .custom_box.three > div:last-child {
    margin: 0;
    width: 100%;
    padding: 376px 0 0 0;
  }
  .custom_box.three > div:last-child > div {
    margin: 0;
    padding: 0 60px 80px 60px;
    text-align: center;
    background: #2f674c;
  }
  .custom_box.three > div:last-child h1 {
    font-size: 3rem;
    padding: 80px 60px 20px 60px;
    background: #2f674c;
    text-align: center;
  }
  .custom_box.three > div:last-child .button {
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.three > div:first-child {
    top: -100px;
    left: 0;
    width: 100%;
    bottom: auto;
    text-align: center;
  }
  .custom_box.three > div:first-child > img {
    width: 330px;
    margin: 0 auto;
  }
  .custom_box.three > div:last-child {
    margin: 0;
    width: 100%;
    padding: 376px 0 0 0;
  }
  .custom_box.three > div:last-child > div {
    margin: 0;
    padding: 0 30px 80px 30px;
    text-align: center;
    background: #2f674c;
  }
  .custom_box.three > div:last-child h1 {
    font-size: 2.6rem;
    padding: 80px 30px 20px 30px;
    background: #2f674c;
    text-align: center;
  }
  .custom_box.three > div:last-child .button {
    margin: 0;
  }
}
.custom_box.four {
  padding: 120px;
  border: solid #d5d5d5;
  border-width: 1px 0;
}
.custom_box.four > div {
  display: flex;
  flex-wrap: wrap;
}
.custom_box.four > div > div {
  flex: 0 0 50%;
}
.custom_box.four > div > div:first-child {
  padding: 0 120px 0 0;
}
.custom_box.four > div > div:first-child h3 {
  color: #111;
}
.custom_box.four > div > div:last-child > div {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.custom_box.four > div > div:last-child > div > div:first-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  flex: 1;
  height: 100%;
}
.custom_box.four > div > div:last-child > div > div:last-child {
  flex: 0 0 100px;
}
.custom_box.four > div > div:last-child > div > div:last-child > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100px;
  background-image: url(/media/images/default/custom_bg_one.jpg);
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom_box.four > div > div:last-child > div > div:last-child {
    flex: 0 0 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.four {
    padding: 120px 80px;
  }
  .custom_box.four > div > div {
    flex: 0 0 100%;
  }
  .custom_box.four > div > div:first-child {
    padding: 0 0 80px 0;
  }
  .custom_box.four > div > div:last-child > div > div:first-child {
    height: 360px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.four {
    padding: 100px 60px;
  }
  .custom_box.four > div > div {
    flex: 0 0 100%;
  }
  .custom_box.four > div > div:first-child {
    padding: 0 0 60px 0;
  }
  .custom_box.four > div > div:last-child > div > div:first-child {
    height: 330px;
  }
  .custom_box.four > div > div:last-child > div > div:last-child {
    flex: 0 0 60px;
  }
  .custom_box.four > div > div:last-child > div > div:last-child > div {
    height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.four {
    padding: 80px 30px;
  }
  .custom_box.four > div > div {
    flex: 0 0 100%;
  }
  .custom_box.four > div > div:first-child {
    padding: 0 0 30px 0;
  }
  .custom_box.four > div > div:last-child > div > div:first-child {
    height: 300px;
  }
  .custom_box.four > div > div:last-child > div > div:last-child {
    flex: 0 0 40px;
  }
  .custom_box.four > div > div:last-child > div > div:last-child > div {
    height: 60px;
  }
}
.custom_box.five {
  border: solid #d5d5d5;
  border-width: 1px 0;
}
.custom_box.five > div {
  display: flex;
  flex-wrap: wrap;
}
.custom_box.five > div > div:first-child {
  flex: 0 0 120px;
}
.custom_box.five > div > div:first-child > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100%;
  background-image: url(/media/images/default/custom_bg_one.jpg);
}
.custom_box.five > div > div:nth-child(2) {
  flex: 1;
}
.custom_box.five > div > div:nth-child(2) > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.custom_box.five > div > div:last-child {
  flex: 0 0 50%;
  padding: 120px;
}
.custom_box.five > div > div:last-child h3 {
  color: #111;
}
.custom_box.five.with_margin_bottom {
  margin: 0 0 120px 0;
}
@media only screen and (max-width: 480px) {
  .custom_box.five.with_margin_bottom {
    margin: 0 0 100px 0;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.five.with_margin_bottom {
    margin: 0 0 80px 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom_box.five > div > div:first-child {
    flex: 0 0 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.five > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:first-child > div {
    height: 80px;
  }
  .custom_box.five > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:nth-child(2) > div {
    height: 360px;
  }
  .custom_box.five > div > div:last-child {
    flex: 0 0 100%;
    padding: 120px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.five > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.five > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:nth-child(2) > div {
    height: 330px;
  }
  .custom_box.five > div > div:last-child {
    flex: 0 0 100%;
    padding: 100px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.five > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.five > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.five > div > div:nth-child(2) > div {
    height: 300px;
  }
  .custom_box.five > div > div:last-child {
    flex: 0 0 100%;
    padding: 80px 30px;
  }
}
.custom_box.six {
  padding: 120px 120px 120px 0;
  border: solid #d5d5d5;
  border-width: 1px 0;
}
.custom_box.six > div {
  display: flex;
  flex-wrap: wrap;
}
.custom_box.six > div > div:first-child {
  flex: 0 0 120px;
}
.custom_box.six > div > div:first-child > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100%;
  background-image: url(/media/images/default/custom_bg_one.jpg);
}
.custom_box.six > div > div:nth-child(2) {
  flex: 0 0 360px;
}
.custom_box.six > div > div:nth-child(2) > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.custom_box.six > div > div:nth-child(3) {
  flex: 1;
  padding: 0 0 0 60px;
}
.custom_box.six > div > div:nth-child(3) h3 {
  color: #111;
}
.custom_box.six > div > div:last-child {
  flex: 1;
  padding: 0 0 0 60px;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom_box.six > div > div:first-child {
    flex: 0 0 80px;
  }
  .custom_box.six > div > div:last-child {
    flex: 0 0 100%;
    padding: 80px 0 0 120px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.six {
    padding: 120px 0;
  }
  .custom_box.six > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:first-child > div {
    height: 80px;
  }
  .custom_box.six > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:nth-child(2) > div {
    height: 360px;
  }
  .custom_box.six > div > div:nth-child(3) {
    flex: 0 0 100%;
    padding: 80px 80px 20px 80px;
  }
  .custom_box.six > div > div:last-child {
    flex: 0 0 100%;
    padding: 0 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.six {
    padding: 100px 0;
  }
  .custom_box.six > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.six > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:nth-child(2) > div {
    height: 330px;
  }
  .custom_box.six > div > div:nth-child(3) {
    flex: 0 0 100%;
    padding: 80px 60px 20px 60px;
  }
  .custom_box.six > div > div:last-child {
    flex: 0 0 100%;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.six {
    padding: 80px 0;
  }
  .custom_box.six > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.six > div > div:nth-child(2) {
    flex: 0 0 100%;
  }
  .custom_box.six > div > div:nth-child(2) > div {
    height: 300px;
  }
  .custom_box.six > div > div:nth-child(3) {
    flex: 0 0 100%;
    padding: 60px 30px 20px 30px;
  }
  .custom_box.six > div > div:last-child {
    flex: 0 0 100%;
    padding: 0 30px;
  }
}
.custom_box.seven {
  padding: 120px;
  border: solid #d5d5d5;
  border-width: 1px 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.seven {
    padding: 120px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.seven {
    padding: 100px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.seven {
    padding: 80px 30px;
  }
}
.custom_box.eight {
  border: solid #d5d5d5;
  border-width: 1px 0;
  padding: 120px 120px 120px 0;
}
.custom_box.eight > div {
  display: flex;
  flex-wrap: wrap;
}
.custom_box.eight > div > div {
  flex: 1;
  padding: 0 0 0 60px;
}
.custom_box.eight > div > div:first-child {
  flex: 0 0 120px;
  padding: 0;
}
.custom_box.eight > div > div:first-child > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 100%;
  background-image: url(/media/images/default/custom_bg_one.jpg);
}
.custom_box.eight > div > div h3 {
  color: #111;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom_box.eight > div > div:first-child {
    flex: 0 0 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .custom_box.eight {
    padding: 120px 0;
  }
  .custom_box.eight > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.eight > div > div:first-child > div {
    height: 80px;
  }
  .custom_box.eight > div > div:nth-child(2) {
    padding: 60px 30px 60px 80px;
  }
  .custom_box.eight > div > div:nth-child(3) {
    padding: 60px 80px 60px 30px;
  }
  .custom_box.eight > div > div:last-child {
    flex: 0 0 100%;
    padding: 0 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.eight {
    padding: 100px 0;
  }
  .custom_box.eight > div > div {
    flex: 0 0 100%;
  }
  .custom_box.eight > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.eight > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.eight > div > div:nth-child(2) {
    padding: 60px 60px 20px 60px;
  }
  .custom_box.eight > div > div:nth-child(3) {
    padding: 20px 60px;
  }
  .custom_box.eight > div > div:last-child {
    padding: 20px 60px 0 60px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.eight {
    padding: 80px 0;
  }
  .custom_box.eight > div > div {
    flex: 0 0 100%;
  }
  .custom_box.eight > div > div:first-child {
    flex: 0 0 100%;
  }
  .custom_box.eight > div > div:first-child > div {
    height: 60px;
  }
  .custom_box.eight > div > div:nth-child(2) {
    padding: 60px 30px 20px 30px;
  }
  .custom_box.eight > div > div:nth-child(3) {
    padding: 20px 30px;
  }
  .custom_box.eight > div > div:last-child {
    padding: 20px 30px 0 30px;
  }
}
.custom_box.border_top_only {
  border-width: 1px 0 0 0;
}
.custom_box.include_margin_bottom {
  margin-bottom: 100px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .custom_box.include_margin_bottom {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .custom_box.include_margin_bottom {
    margin-bottom: 60px;
  }
}
.home_recent_news_event {
  padding: 0 0 120px 0;
}
.home_recent_news_event > div {
  display: flex;
  flex-wrap: wrap;
}
.home_recent_news_event > div > div:first-child {
  flex: 1;
  padding: 120px 120px 0 120px;
}
.home_recent_news_event > div > div:first-child .news_events_holder {
  display: flex;
  flex-wrap: wrap;
  margin: 5px -15px -15px -15px;
}
.home_recent_news_event > div > div:first-child .news_events_holder > div {
  flex: 0 0 50%;
  padding: 15px;
}
.home_recent_news_event > div > div:first-child .news_events_holder > div:first-child {
  flex: 0 0 100%;
}
.home_recent_news_event > div > div:last-child {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
}
.home_recent_news_event > div > div:last-child > div:first-child {
  font-weight: 700;
  padding: 10px 30px 10px 60px;
  text-transform: uppercase;
  background: #d0aa34;
  color: #fff;
}
.home_recent_news_event > div > div:last-child > div:last-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  flex: 1;
  position: relative;
}
.home_recent_news_event > div > div:last-child > div:last-child > div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  color: #fff;
}
.home_recent_news_event > div > div:last-child > div:last-child > div h3 {
  font-weight: 400;
  color: #fff;
}
.home_recent_news_event > div > div:last-child > div:last-child > div > div {
  font-weight: 600;
  margin: 10px 0 0 0;
  text-transform: uppercase;
}
.home_recent_news_event > div > div:last-child > div:last-child > div > div h5 {
  font-weight: 600;
  color: #d0aa34;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .home_recent_news_event > div > div:first-child .news_events_holder > div {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .home_recent_news_event {
    padding: 0 0 100px 0;
  }
  .home_recent_news_event > div > div:first-child {
    flex: 0 0 100%;
    padding: 100px 80px;
  }
  .home_recent_news_event > div > div:last-child {
    flex: 0 0 100%;
    height: 400px;
  }
  .home_recent_news_event > div > div:last-child > div:first-child {
    padding: 10px 80px;
  }
  .home_recent_news_event > div > div:last-child > div:last-child > div {
    padding: 50px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .home_recent_news_event {
    padding: 0 0 100px 0;
  }
  .home_recent_news_event > div > div:first-child {
    flex: 0 0 100%;
    padding: 100px 60px;
  }
  .home_recent_news_event > div > div:first-child .news_events_holder > div {
    flex: 0 0 100%;
  }
  .home_recent_news_event > div > div:last-child {
    flex: 0 0 100%;
    height: 380px;
  }
}
@media only screen and (max-width: 480px) {
  .home_recent_news_event {
    padding: 0 0 60px 0;
  }
  .home_recent_news_event > div > div:first-child {
    flex: 0 0 100%;
    padding: 80px 30px;
  }
  .home_recent_news_event > div > div:first-child .news_events_holder > div {
    flex: 0 0 100%;
  }
  .home_recent_news_event > div > div:last-child {
    flex: 0 0 100%;
    height: 380px;
  }
  .home_recent_news_event > div > div:last-child > div:first-child {
    padding: 10px 30px;
  }
  .home_recent_news_event > div > div:last-child > div:last-child > div {
    padding: 50px 30px;
  }
}
.news_events_holder {
  margin: 30px 0 0 0;
}
.news_events_holder .news {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  border: 1px solid #d5d5d5;
  padding: 30px;
  background-color: #fff;
  transition: 0.3s ease;
}
.news_events_holder .news > div:first-child {
  flex: 1;
}
.news_events_holder .news > div:first-child > div {
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.news_events_holder .news > div:first-child > div > div:first-child {
  padding: 0 10px 0 0;
  color: #4fa67c;
}
.news_events_holder .news > div:first-child > div > div:last-child {
  border-left: 1px solid #d5d5d5;
  padding: 0 0 0 10px;
  color: #d0aa34;
}
.news_events_holder .news > div:first-child h4 {
  font-weight: 400;
  margin: 5px 0 0 0;
  transition: 0.3s ease;
}
.news_events_holder .news > div:last-child {
  padding: 0 0 0 20px;
  color: #d5d5d5;
}
.news_events_holder .news:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  border-color: #fff;
}
.news_events_holder .news:hover > div:first-child h4 {
  color: #d0aa34;
}
.news_events_holder .news:hover > div:last-child {
  color: #d0aa34;
}
.main_news_events_holder {
  margin: -20px;
  display: flex;
  flex-wrap: wrap;
}
.main_news_events_holder .news {
  flex: 0 0 33.33%;
  padding: 20px;
}
.main_news_events_holder .news > a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  border: 1px solid #d5d5d5;
  padding: 30px;
  background-color: #fff;
  transition: 0.3s ease;
  height: 100%;
}
.main_news_events_holder .news > a > div:first-child {
  flex: 1;
}
.main_news_events_holder .news > a > div:first-child > div {
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.main_news_events_holder .news > a > div:first-child > div > div:first-child {
  padding: 0 10px 0 0;
  color: #4fa67c;
}
.main_news_events_holder .news > a > div:first-child > div > div:last-child {
  border-left: 1px solid #d5d5d5;
  padding: 0 0 0 10px;
  color: #d0aa34;
}
.main_news_events_holder .news > a > div:first-child h4 {
  font-weight: 400;
  margin: 5px 0 0 0;
  transition: 0.3s ease;
}
.main_news_events_holder .news > a > div:last-child {
  padding: 0 0 0 20px;
  color: #d5d5d5;
}
.main_news_events_holder .news > a:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  border-color: #fff;
}
.main_news_events_holder .news > a:hover > div:first-child h4 {
  color: #d0aa34;
}
.main_news_events_holder .news > a:hover > div:last-child {
  color: #d0aa34;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .main_news_events_holder .news {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .main_news_events_holder .news {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .main_news_events_holder .news {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .main_news_events_holder .news {
    flex: 0 0 100%;
    padding: 15px;
  }
}
.main_news_events_holder .event {
  flex: 0 0 33.33%;
  padding: 20px;
}
.main_news_events_holder .event > div {
  border: 1px solid #d5d5d5;
  padding: 30px;
  background-color: #fff;
  transition: 0.3s ease;
  height: 100%;
}
.main_news_events_holder .event > div > div {
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.main_news_events_holder .event > div > div > div:first-child {
  padding: 0 10px 0 0;
  color: #4fa67c;
}
.main_news_events_holder .event > div > div > div:nth-child(2) {
  padding: 0 10px;
  border: solid #d5d5d5;
  border-width: 0 1px;
}
.main_news_events_holder .event > div > div > div:last-child {
  padding: 0 0 0 10px;
  color: #d0aa34;
}
.main_news_events_holder .event > div h4 {
  font-weight: 400;
  margin: 5px 0 0 0;
  transition: 0.3s ease;
}
.main_news_events_holder .event > div:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  border-color: #fff;
}
.main_news_events_holder .event > div:hover h4 {
  color: #d0aa34;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .main_news_events_holder .event {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .main_news_events_holder .event {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .main_news_events_holder .event {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .main_news_events_holder .event {
    flex: 0 0 100%;
    padding: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .main_news_events_holder {
    padding: -15px;
  }
}
.page_heading {
  padding: 180px 0 0 120px;
}
.page_heading > div:first-child {
  position: relative;
  z-index: 1;
}
.page_heading > div:first-child h4 {
  font-weight: 600;
  color: #fff;
}
.page_heading > div:first-child h2 {
  color: #d0aa34;
  margin: 5px 0 0 0;
  max-width: 600px;
  font-weight: 500;
}
.page_heading > div:first-child > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 600px;
  margin: 60px 0 0 0;
}
.page_heading > div:last-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .page_heading {
    padding: 180px 0 0 80px;
  }
  .page_heading > div:first-child > div {
    height: 500px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .page_heading {
    padding: 180px 0 0 60px;
  }
  .page_heading > div:first-child h2 {
    padding: 0 60px 0 0;
    font-size: 2.3rem;
  }
  .page_heading > div:first-child > div {
    height: 380px;
  }
}
@media only screen and (max-width: 480px) {
  .page_heading {
    padding: 150px 0 0 30px;
  }
  .page_heading > div:first-child h2 {
    padding: 0 30px 0 0;
    font-size: 2.3rem;
  }
  .page_heading > div:first-child > div {
    height: 320px;
  }
  .page_heading > div:last-child {
    height: 70%;
  }
}
.randomised_pages_display {
  display: flex;
  flex-wrap: wrap;
}
.randomised_pages_display > div {
  flex: 0 0 25%;
}
.randomised_pages_display > div > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 400px;
}
.randomised_pages_display > div > div > div:first-child {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 40px;
}
.randomised_pages_display > div > div > div:first-child > h4 {
  color: #fff;
}
.randomised_pages_display > div > div > div:first-child > div {
  margin: 20px 0 0 0;
}
.randomised_pages_display > div > div > div:last-child {
  background: #2f674c;
  background: linear-gradient(180deg, rgba(47, 103, 76, 0) 0%, #0d261a 100%);
  height: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .randomised_pages_display > div {
    flex: 0 0 50%;
  }
  .randomised_pages_display > div > div {
    height: 320px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .randomised_pages_display > div {
    flex: 0 0 50%;
  }
  .randomised_pages_display > div > div {
    height: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .randomised_pages_display > div {
    flex: 0 0 100%;
  }
  .randomised_pages_display > div > div {
    height: 260px;
  }
  .randomised_pages_display > div > div > div:first-child {
    padding: 40px 30px;
  }
}
.capsule_holder {
  max-width: 900px;
  margin: 0 auto;
}
.capsule_holder .capsule {
  background: #fff;
  margin: 30px 0 0 0;
}
.capsule_holder .capsule:first-child {
  margin: 0;
}
.capsule_holder .capsule > a {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  background: #fff;
  padding: 60px;
  border: 1px solid #d5d5d5;
  text-decoration: none;
  transition: 0.3s ease;
}
.capsule_holder .capsule > a > div:first-child {
  flex: 1;
}
.capsule_holder .capsule > a > div:last-child {
  color: #d5d5d5;
}
.capsule_holder .capsule > a > div:last-child i:last-child {
  display: none;
}
.capsule_holder .capsule > a:hover {
  border-color: #d0aa34;
  color: #d0aa34;
}
.capsule_holder .capsule > a:hover > div:last-child {
  color: #d0aa34;
}
.capsule_holder .capsule > div {
  padding: 0 60px;
  overflow-y: hidden;
  height: 0;
  border: solid #d5d5d5;
  border-width: 0 1px;
  transition: 0.3s ease;
}
.capsule_holder .capsule.active > a > div:last-child i:first-child {
  display: none;
}
.capsule_holder .capsule.active > a > div:last-child i:last-child {
  display: block;
}
.capsule_holder .capsule.active > div {
  height: auto;
  overflow-y: visible;
  padding: 60px;
  border-width: 0 1px 1px 1px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .capsule_holder .capsule > a {
    padding: 50px;
  }
  .capsule_holder .capsule > div {
    padding: 0 50px;
  }
  .capsule_holder .capsule.active > div {
    padding: 50px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .capsule_holder .capsule > a {
    padding: 50px 40px;
  }
  .capsule_holder .capsule > div {
    padding: 0 40px;
  }
  .capsule_holder .capsule.active > div {
    padding: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .capsule_holder .capsule > a {
    padding: 40px 30px;
  }
  .capsule_holder .capsule > div {
    padding: 0 30px;
  }
  .capsule_holder .capsule.active > div {
    padding: 30px;
  }
}
.advance_content > p {
  margin: 10px 0;
}
.advance_content > p a {
  color: #4fa67c;
  transition: 0.3s ease;
}
.advance_content > p a:hover {
  font-weight: 600;
  color: #111;
  border-bottom: 3px solid #4fa67c;
}
.advance_content li {
  margin: 8px 0 0 0;
}
.advance_content li:first-child {
  margin: 0;
}
.advance_content > h3 {
  font-weight: 700;
  margin: 30px 0 0 0;
}
.advance_content > h4 {
  margin: 20px 0 0 0;
}
.advance_content > .image {
  margin: 30px 0;
}
.advance_content > .image > div:first-child {
  position: relative;
  overflow: hidden;
}
.advance_content > .image > div:first-child img {
  width: 100%;
}
.advance_content > .image > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
}
.advance_content > .image > div:nth-child(2) > div:first-child {
  font-size: 1.1rem;
  color: #4fa67c;
}
.advance_content > .image > div:nth-child(2) > div:nth-child(2) {
  flex: 1;
  padding: 0 10px;
}
.advance_content > .image > div:nth-child(2) > div:nth-child(2) > div {
  height: 1px;
  background: #4fa67c;
}
.advance_content > .image > div:nth-child(2) > div:last-child h5 {
  font-weight: 700;
  color: #d0aa34;
}
.advance_content > .embed {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  margin: 30px 0;
  background: #fff;
}
.advance_content > .embed > div:first-child iframe {
  width: 100%;
}
.advance_content > .embed.with_caption > div:last-child {
  font-weight: 700;
  padding: 30px;
}
.advance_content > table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
}
.advance_content > table tr th {
  border: 1px solid #fff;
  color: #fff;
  padding: 15px;
  background: #4fa67c;
  text-align: left;
}
.advance_content > table tr td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}
.advance_content > .delimiter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 39px 0;
}
.advance_content > .delimiter > div:first-child,
.advance_content > .delimiter > div:last-child {
  flex: 1;
}
.advance_content > .delimiter > div:first-child > div,
.advance_content > .delimiter > div:last-child > div {
  height: 1px;
  background: #ccc;
}
.advance_content > .delimiter > div:nth-child(2) i {
  margin: 0 5px;
  color: #4fa67c;
}
.advance_content > .quote {
  margin: 50px 0;
  background: #4fa67c;
  padding: 55px 100px;
  position: relative;
  color: #fff;
}
.advance_content > .quote > div {
  position: absolute;
  right: 100px;
  top: -21px;
  font-size: 2.1rem;
  color: #d0aa34;
  transform: rotate(180deg);
}
.advance_content > .quote h3 {
  color: #fff;
}
.advance_content > .quote p {
  font-weight: 700;
  margin: 5px 0 0 0;
  color: #fff;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .advance_content > .quote {
    padding: 55px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .advance_content > .quote {
    padding: 55px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .advance_content > .quote {
    padding: 55px 30px;
  }
}
.advance_content > .link {
  margin: 30px 0;
}
.advance_content > .link > a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  background: #4fa67c;
  color: #fff;
  transition: 0.3s ease;
  padding: 40px 0 0 0;
}
.advance_content > .link > a > div:first-child {
  font-size: 1.2rem;
  padding: 0 40px;
}
.advance_content > .link > a > div:nth-child(2) {
  padding: 0 40px;
}
.advance_content > .link > a > div:last-child {
  font-weight: 600;
  border-top: 1px solid #ddd;
  padding: 20px 40px;
  margin: 30px 0 0 0;
  font-size: 0.9rem;
}
.advance_content > .link > a:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.07));
  background: #fff;
  color: #111;
}
.advance_content > .attachment {
  margin: 30px 0;
}
.advance_content > .attachment > a {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease;
}
.advance_content > .attachment > a > div {
  padding: 15px;
}
.advance_content > .attachment > a > div:first-child {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding: 25px 20px;
}
.advance_content > .attachment > a > div:nth-child(2) {
  flex: 1;
}
.advance_content > .attachment > a > div:last-child {
  color: #eee;
}
.advance_content > .attachment > a:hover {
  background: #d0aa34;
}
.advance_content > .attachment > a:hover > div:last-child {
  color: #fff;
}
.advance_content > .attachment.doc > a > div:first-child,
.advance_content > .attachment.docx > a > div:first-child {
  background: #295394;
}
.advance_content > .attachment.ppt > a > div:first-child,
.advance_content > .attachment.pptx > a > div:first-child {
  background: #c54830;
}
.advance_content > .attachment.xls > a > div:first-child,
.advance_content > .attachment.xlsx > a > div:first-child {
  background: #1f6e43;
}
.advance_content > .attachment.pdf > a > div:first-child {
  background: #f20f00;
}
.advance_content > .attachment.rtf > a > div:first-child {
  background: #157efb;
}
.advance_content > .attachment.txt > a > div:first-child {
  background: #000;
}
.advance_content > :first-child {
  margin-top: 0;
}
.return_link {
  margin: 0 0 30px 0;
}
.return_link > div {
  display: table;
  background: #111;
  color: #fff;
  border-radius: 30px;
}
.return_link > div > div {
  display: table-cell;
  vertical-align: middle;
}
.return_link > div > div:last-child {
  font-weight: 600;
  padding: 0 40px 0 15px;
}
.deletion_centre {
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.deletion_centre > div {
  display: table;
  max-width: 600px;
  height: 100%;
  margin: 0 auto;
}
.deletion_centre > div > div {
  display: table-cell;
  vertical-align: middle;
}
.deletion_centre > div > div > .deletion_centre_inner {
  border-radius: 30px;
  background: #4fa67c;
}
.deletion_centre > div > div > .deletion_centre_inner > div:first-child {
  padding: 60px;
  text-align: center;
  color: #fff;
}
.deletion_centre > div > div > .deletion_centre_inner > div:first-child h3 {
  font-weight: 600;
  margin: 0 0 5px 0;
}
.deletion_centre > div > div > .deletion_centre_inner > div:first-child span {
  font-weight: 600;
  color: #111;
}
.deletion_centre > div > div > .deletion_centre_inner > div:last-child {
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
}
.deletion_centre > div > div > .deletion_centre_inner > div:last-child > div {
  display: inline-block;
}
.deletion_centre > div > div > .deletion_centre_inner > div:last-child > div:after {
  content: "";
  clear: both;
  display: block;
}
.deletion_centre > div > div > .deletion_centre_inner > div:last-child > div > .button {
  float: left;
  margin: 2.5px;
}
.get_started_on_plan {
  background: #fff;
  padding: 100px 60px;
  border-radius: 30px;
  text-align: center;
}
.nadine_awards {
  margin: -65px 0 0 0;
  padding: 0 120px 100px 120px;
}
.nadine_awards > div {
  display: flex;
  flex-wrap: wrap;
}
.nadine_awards > div > div:first-child > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -10px;
}
.nadine_awards > div > div:first-child > div > div {
  padding: 0 10px;
}
.nadine_awards > div > div:first-child > div > div img {
  width: 100%;
  max-width: 170px;
  max-height: 100px;
  transition: 0.3s ease;
}
.nadine_awards > div > div:first-child > div > div img:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
}
.nadine_awards > div > div:nth-child(2) {
  flex: 1;
  padding: 0 10px 0 20px;
}
.nadine_awards > div > div:nth-child(2) > div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fa67c;
}
.nadine_awards > div > div:nth-child(2) > div > div:last-child {
  flex: 1;
}
.nadine_awards > div > div:nth-child(2) > div > div:last-child > div {
  height: 0.5px;
  background: #4fa67c;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .nadine_awards {
    margin: -50px 0 0 0;
    padding: 0 90px 90px 90px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .nadine_awards {
    margin: -50px 0 0 0;
    padding: 0 60px 90px 60px;
  }
  .nadine_awards > div {
    flex-direction: column-reverse;
  }
  .nadine_awards > div > div:first-child {
    flex: 0 0 100%;
  }
  .nadine_awards > div > div:first-child > div {
    display: inline-flex;
  }
  .nadine_awards > div > div:nth-child(2) {
    flex: 0 0 100%;
    padding: 10px 0;
  }
  .nadine_awards > div > div:nth-child(2) > div {
    flex-direction: row-reverse;
  }
  .nadine_awards > div > div:nth-child(2) > div > div:first-child i {
    transform: rotate(180deg);
  }
  .nadine_awards > div > div:last-child {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .nadine_awards {
    margin: -50px 0 0 0;
    padding: 0 30px 90px 30px;
  }
  .nadine_awards > div {
    flex-direction: column-reverse;
  }
  .nadine_awards > div > div:first-child {
    flex: 0 0 100%;
  }
  .nadine_awards > div > div:first-child > div {
    display: inline-flex;
  }
  .nadine_awards > div > div:nth-child(2) {
    flex: 0 0 100%;
    padding: 10px 0;
  }
  .nadine_awards > div > div:nth-child(2) > div {
    flex-direction: row-reverse;
  }
  .nadine_awards > div > div:nth-child(2) > div > div:first-child i {
    transform: rotate(180deg);
  }
  .nadine_awards > div > div:last-child {
    flex: 0 0 100%;
  }
}
.menu_available.for_options {
  position: relative;
}
.menu_holder {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 50px;
  border-radius: 20px;
  background: #fff;
  padding: 30px 0;
  min-width: 200px;
  display: none;
}
.menu_holder.for_options {
  max-width: 280px;
  bottom: auto;
  top: 50px;
}
.menu_holder.for_options > div {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300px;
}
.menu_holder.for_options .checkbox {
  display: flex;
  border-radius: 0;
  white-space: nowrap;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  background: white;
}
.menu_holder.for_options .checkbox > div:last-child {
  flex: 1;
}
.menu_holder.for_options .checkbox:hover {
  background: #d0aa34;
  color: #111;
}
.menu_holder.for_options .checkbox:hover > div:first-child > div {
  background: #d0aa34;
}
.menu_holder.for_options .checkbox:hover > div:first-child > div > div {
  opacity: 1;
}
.menu_holder.for_options .checkbox.checked {
  background: #fff;
  color: #4fa67c;
}
.menu_holder.for_options .checkbox.checked > div:first-child > div {
  background: #4fa67c;
}
.menu_holder.for_options .checkbox.checked > div:first-child > div > div {
  opacity: 1;
}
.menu_holder.for_options .checkbox.checked > div:first-child > div > div i {
  color: #fff;
}
.services_holder > div {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -30px;
}
.services_holder > div > div {
  flex: 0 0 33.33%;
  padding: 5px;
  position: relative;
}
.services_holder > div > div > div {
  text-align: center;
  padding: 25px;
  transition: 0.3s ease;
}
.services_holder > div > div > div > div:first-child {
  display: inline-block;
}
.services_holder > div > div > div > div:first-child > img {
  width: 100%;
  max-width: 70px;
  margin: -10px 0 0 0;
}
.services_holder > div > div > div > div:last-child h4 {
  margin: 10px 0;
}
.services_holder > div > div > div:hover {
  background: #d0aa34;
  padding: 60px;
  border-radius: 30px;
  margin: -20px;
}
.contact_holder {
  padding: 120px;
  border-top: 1px solid #d5d5d5;
}
.contact_holder > div {
  display: flex;
  flex-wrap: wrap;
}
.contact_holder > div > div:first-child {
  flex: 0 0 30%;
  padding: 0 100px 0 0;
}
.contact_holder > div > div:last-child {
  flex: 1;
  padding: 0 0 0 100px;
  border-left: 1px solid #d5d5d5;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_holder {
    padding: 120px 80px;
  }
  .contact_holder > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 80px 0;
  }
  .contact_holder > div > div:last-child {
    flex: 0 0 100%;
    padding: 80px 0 0 0;
    border-top: 1px solid #d5d5d5;
    border-left: none;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .contact_holder {
    padding: 100px 60px;
  }
  .contact_holder > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 60px 0;
  }
  .contact_holder > div > div:last-child {
    flex: 0 0 100%;
    padding: 60px 0 0 0;
    border-top: 1px solid #d5d5d5;
    border-left: none;
  }
}
@media only screen and (max-width: 480px) {
  .contact_holder {
    padding: 80px 30px;
  }
  .contact_holder > div > div:first-child {
    flex: 0 0 100%;
    padding: 0 0 30px 0;
  }
  .contact_holder > div > div:last-child {
    flex: 0 0 100%;
    padding: 30px 0 0 0;
    border-top: 1px solid #d5d5d5;
    border-left: none;
  }
}
.gallery_holder {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.gallery_holder > .image {
  flex: 0 0 25%;
  padding: 20px;
}
.gallery_holder > .image > div {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 250px;
}
.gallery_holder > .image > div span {
  font-weight: 600;
  opacity: 0;
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 2;
  transition: 0.3s ease;
  text-align: center;
  width: 100%;
}
.gallery_holder > .image > div:hover .image_shade {
  background: #2f674c;
  opacity: 0.7;
}
.gallery_holder > .image > div:hover span {
  opacity: 1;
  bottom: 50px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery_holder > .image {
    flex: 0 0 33.33%;
  }
  .gallery_holder > .image > div {
    height: 230px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .gallery_holder > .image {
    flex: 0 0 50%;
  }
  .gallery_holder > .image > div {
    height: 230px;
  }
}
@media only screen and (max-width: 480px) {
  .gallery_holder > .image {
    flex: 0 0 100%;
    padding: 15px;
  }
  .gallery_holder > .image > div {
    height: 230px;
  }
}
@media only screen and (max-width: 480px) {
  .gallery_holder {
    margin: -15px;
  }
}
.gallery_button_holder {
  margin: 30px 0 0 0;
  text-align: center;
}
.image_viewer {
  display: none;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.image_viewer > div:first-child {
  display: table;
  width: 100%;
  height: 100%;
}
.image_viewer > div:first-child > div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
}
.image_viewer > div:first-child > div > div {
  display: inline-block;
  margin: 0 auto;
}
.image_viewer > div:first-child > div > div img {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  max-height: 95vh;
  max-width: 100%;
}
.image_viewer > div:nth-child(2) {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}
.image_viewer > div:nth-child(3) {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
}
.image_viewer > div:nth-child(4) {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
}
.image_viewer > div .button {
  padding: 10px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .image_viewer {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 480px) {
  .image_viewer {
    padding: 0 50px;
  }
}
.news_heading {
  padding: 240px 120px 120px 120px;
  background: #2f674c;
  color: #fff;
}
.news_heading > div {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .news_heading {
    padding: 240px 80px 120px 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .news_heading {
    padding: 240px 60px 100px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .news_heading {
    padding: 240px 30px 80px 30px;
  }
}
.news_content {
  max-width: 950px;
  margin: 0 auto;
}
/******* SCHOOLS LESS *******/
.school_heading > div {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
}
.school_heading > div:first-child {
  height: 600px;
}
.school_heading > div:last-child {
  padding: 50px 30px;
  text-align: center;
}
.school_heading > div:last-child h2 {
  color: #d0aa34;
  font-weight: 500;
}
.schools_holder {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.schools_holder > .school {
  flex: 0 0 33.33%;
  padding: 20px;
}
.schools_holder > .school > a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  background: #fff;
  border: 1px solid #d5d5d5;
  transition: 0.3s ease;
  height: 100%;
}
.schools_holder > .school > a > div:first-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 230px;
}
.schools_holder > .school > a > div:nth-child(2) {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 30px;
  background-image: url(/media/images/default/custom_bg_one.jpg);
}
.schools_holder > .school > a > div:last-child {
  padding: 30px;
}
.schools_holder > .school > a:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .schools_holder > .school {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .schools_holder > .school {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .schools_holder {
    margin: -15px;
  }
  .schools_holder > .school {
    flex: 0 0 100%;
    padding: 15px;
  }
}
.school_section {
  padding: 50px 120px 120px 120px;
  display: flex;
  flex-wrap: wrap;
}
.school_section > div:first-child {
  flex: 0 0 300px;
}
.school_section > div:first-child > div {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  background: #fff;
}
.school_section > div:first-child > div > div:first-child {
  height: 15px;
  background: #2f674c;
}
.school_section > div:first-child > div > div:last-child .school_sidebar_link_holder {
  transition: 0.3s ease;
}
.school_section > div:first-child > div > div:last-child .school_sidebar_link {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 30px;
  color: #2f674c;
  transition: 0.3s ease;
}
.school_section > div:first-child > div > div:last-child .school_sidebar_link:hover {
  background: #4fa67c;
  color: #fff;
}
.school_section > div:first-child > div > div:last-child .school_sidebar_link.active {
  font-weight: 700;
  background: #d0aa34;
  color: #fff;
}
.school_section > div:last-child {
  flex: 1;
  border-left: 1px solid #d5d5d5;
  padding: 0 0 0 120px;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .school_section > div:first-child {
    flex: 0 0 260px;
  }
  .school_section > div:last-child {
    padding: 0 0 0 80px;
  }
  .school_section .capsule > a {
    padding: 50px 40px;
  }
  .school_section .capsule > div {
    padding: 0 40px;
  }
  .school_section .capsule.active > div {
    padding: 40px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .school_section {
    padding: 50px 80px 120px 80px;
  }
  .school_section > div:first-child {
    flex: 0 0 100%;
  }
  .school_section > div:first-child > div > div:last-child .school_sidebar_link_holder {
    display: none;
  }
  .school_section > div:last-child {
    border-left: none;
    border-top: 1px solid #d5d5d5;
    padding: 60px 0 0 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .school_section {
    padding: 50px 60px 100px 60px;
  }
  .school_section > div:first-child {
    flex: 0 0 100%;
  }
  .school_section > div:first-child > div > div:last-child .school_sidebar_link_holder {
    display: none;
  }
  .school_section > div:last-child {
    border-left: none;
    border-top: 1px solid #d5d5d5;
    padding: 60px 0 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .school_section {
    padding: 50px 30px 80px 30px;
  }
  .school_section > div:first-child {
    flex: 0 0 100%;
  }
  .school_section > div:first-child > div > div:last-child .school_sidebar_link_holder {
    display: none;
  }
  .school_section > div:last-child {
    border-left: none;
    border-top: 1px solid #d5d5d5;
    padding: 40px 0 0 0;
  }
}
.school_contacts_holder .school_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #fff;
  border: 1px solid #d5d5d5;
  margin: 0 0 10px 0;
  padding: 0 10px 0 30px;
  transition: 0.3s ease;
}
.school_contacts_holder .school_contact:last-child {
  margin: 0;
}
.school_contacts_holder .school_contact > div {
  padding: 20px 10px;
}
.school_contacts_holder .school_contact > div:first-child {
  flex: 0 0 40px;
  padding: 10px 0 10px 10px;
}
.school_contacts_holder .school_contact > div:nth-child(2) {
  flex: 1;
}
.school_contacts_holder .school_contact > div h5 {
  font-weight: 700;
  color: #d0aa34;
}
.school_contacts_holder .school_contact:hover {
  border-color: #d0aa34;
  color: #d0aa34;
}
.school_contacts_holder .school_contact:hover > div h5 {
  color: #4fa67c;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .school_contacts_holder .school_contact {
    padding: 0 10px 0 20px;
  }
  .school_contacts_holder .school_contact > div:last-child {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .school_contacts_holder .school_contact {
    padding: 0 10px 0 20px;
  }
  .school_contacts_holder .school_contact > div:last-child {
    display: none;
  }
}
.school_contact_form > div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px -10px -10px;
}
.school_contact_form > div:nth-child(2) > div {
  flex: 0 0 50%;
  padding: 10px;
}
.school_contact_form > div:nth-child(2) > div:nth-child(n+5) {
  flex: 0 0 100%;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .school_contact_form > div:nth-child(2) > div {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .school_contact_form > div:nth-child(2) > div {
    flex: 0 0 100%;
  }
}
.faculty_holder {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.faculty_holder > .faculty_member {
  flex: 0 0 50%;
  padding: 10px;
}
.faculty_holder > .faculty_member > div {
  background: #fff;
  border: 1px solid #d5d5d5;
  transition: 0.3s ease;
  min-height: 130px;
  height: 100%;
}
.faculty_holder > .faculty_member > div > div:first-child {
  font-weight: 600;
  padding: 15px 30px;
  font-size: 0.8rem;
  background: #4fa67c;
  color: #fff;
  transition: 0.3s ease;
}
.faculty_holder > .faculty_member > div > div:last-child {
  padding: 30px;
}
.faculty_holder > .faculty_member > div:hover {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
}
.faculty_holder > .faculty_member > div:hover > div:first-child {
  background: #d0aa34;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .faculty_holder > .faculty_member {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .faculty_holder > .faculty_member {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .faculty_holder > .faculty_member {
    flex: 0 0 100%;
    padding: 15px;
  }
  .faculty_holder > .faculty_member > div > div:first-child {
    padding: 15px 30px;
  }
  .faculty_holder > .faculty_member > div > div:last-child {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .faculty_holder {
    margin: -15px;
  }
}
a.school_dropdown_button {
  display: none;
}
a.school_dropdown_button > div {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 20px;
  border: 1px solid #d5d5d5;
  transition: 0.3s ease;
}
a.school_dropdown_button > div > div {
  padding: 10px;
}
a.school_dropdown_button > div > div:first-child {
  flex: 1;
}
a.school_dropdown_button > div > div:last-child {
  color: #d5d5d5;
}
a.school_dropdown_button > div > div:last-child i {
  transition: 0.3s ease;
}
a.school_dropdown_button > div:hover {
  border-color: #d0aa34;
  color: #d0aa34;
}
a.school_dropdown_button > div:hover > div:last-child {
  color: #d0aa34;
}
a.school_dropdown_button.active > div {
  color: #4fa67c;
}
a.school_dropdown_button.active > div > div:last-child i {
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  a.school_dropdown_button {
    display: block;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  a.school_dropdown_button {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  a.school_dropdown_button {
    display: block;
  }
}
.school_map {
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 5px;
  margin: 0 0 20px 0;
}
.school_map iframe {
  width: 100%;
  height: 300px;
  border: none;
  outline: none;
  display: block;
}
.map_details {
  font-weight: 700;
  background: #fff;
  border: 1px solid #d5d5d5;
  margin: 0 0 10px 0;
  padding: 30px;
}
.map_details:last-child {
  margin: 0;
}
.map_details h5 {
  font-weight: 700;
  color: #4fa67c;
}
.map_details h5.yellow {
  color: #d0aa34;
}
.map_details h5.white {
  color: #fff;
}
/******* APPLICATIONS LESS *******/
.application_form_holder .application_section {
  border-top: 1px solid #d5d5d5;
  padding: 60px 0 0 0;
  margin: 60px 0 0 0;
}
.application_form_holder .application_section .application_section_form {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -20px -20px -20px;
}
.application_form_holder .application_section .application_section_form > div {
  flex: 0 0 50%;
  padding: 20px;
}
.application_form_holder .application_section .application_section_declaration {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 20px -20px -20px -20px;
}
.application_form_holder .application_section .application_section_declaration > div {
  flex: 0 0 50%;
  padding: 20px;
}
.application_form_holder .application_section .application_section_declaration > div:first-child .textbox {
  text-transform: uppercase;
}
.application_form_holder .application_section .application_section_declaration > div:last-child > div:after {
  content: "";
  clear: both;
  display: block;
}
.application_form_holder .application_section .application_section_declaration > div:last-child > div > div {
  display: block;
  float: left;
  padding: 20px 30px;
  border: 1px solid #d5d5d5;
  margin: 0 0 0 5px;
}
.application_form_holder .application_section .application_section_declaration > div:last-child > div > div:first-child {
  margin: 0;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .application_form_holder .application_section {
    padding: 60px 0 0 0;
  }
  .application_form_holder .application_section .application_section_form > div {
    flex: 0 0 100%;
  }
  .application_form_holder .application_section .application_section_declaration {
    margin: 30px -10px -10px -10px;
  }
  .application_form_holder .application_section .application_section_declaration > div {
    flex: 0 0 100%;
    padding: 10px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .application_form_holder .application_section {
    padding: 60px 0 0 0;
  }
  .application_form_holder .application_section .application_section_form > div {
    flex: 0 0 100%;
  }
  .application_form_holder .application_section .application_section_declaration {
    margin: 30px -10px -10px -10px;
  }
  .application_form_holder .application_section .application_section_declaration > div {
    flex: 0 0 100%;
    padding: 10px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .application_form_holder .application_section {
    padding: 60px 0 0 0;
  }
  .application_form_holder .application_section .application_section_form > div {
    flex: 0 0 100%;
  }
  .application_form_holder .application_section .application_section_declaration {
    margin: 30px -10px -10px -10px;
  }
  .application_form_holder .application_section .application_section_declaration > div {
    flex: 0 0 100%;
    padding: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .application_form_holder .application_section {
    padding: 40px 0 0 0;
  }
  .application_form_holder .application_section .application_section_form {
    margin: 25px -15px -15px -15px;
  }
  .application_form_holder .application_section .application_section_form > div {
    flex: 0 0 100%;
    padding: 15px;
  }
  .application_form_holder .application_section .application_section_declaration {
    margin: 30px -10px -10px -10px;
  }
  .application_form_holder .application_section .application_section_declaration > div {
    flex: 0 0 100%;
    padding: 10px;
  }
  .application_form_holder .application_section .application_section_declaration > div:last-child > div > div {
    padding: 20px;
  }
}
.application_display_picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 40px;
  margin: 20px 0 0 0;
  border: 1px solid #d5d5d5;
}
.application_display_picture > div {
  font-weight: 600;
}
.application_display_picture > div:first-child {
  flex: 0 0 300px;
}
.application_display_picture > div:first-child > div:first-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  height: 300px;
  display: none;
}
.application_display_picture > div:first-child > div:last-child .media_dropzone {
  height: 240px;
}
.application_display_picture > div:last-child {
  flex: 1;
  padding: 0 0 0 30px;
}
.application_display_picture > div:last-child > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.application_display_picture > div:last-child > div > div:first-child {
  font-weight: 600;
  flex: 1;
}
.application_display_picture > div:last-child > div > div:first-child span {
  color: #d5d5d5;
  font-size: 0.9rem;
}
.application_display_picture > div:last-child > div > div:last-child {
  display: none;
}
.application_display_picture.active > div:first-child {
  flex: 0 0 240px;
}
.application_display_picture.active > div:first-child > div:first-child {
  display: block;
}
.application_display_picture.active > div:first-child > div:last-child {
  display: none;
}
.application_display_picture.active > div:last-child > div > div:last-child {
  display: block;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .application_display_picture > div:last-child > div > div:first-child {
    flex: 0 0 100%;
  }
  .application_display_picture > div:last-child > div > div:last-child {
    flex: 0 0 100%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .application_display_picture > div:first-child {
    flex: 0 0 100%;
  }
  .application_display_picture > div:first-child > div:first-child {
    height: 300px;
    max-width: 300px;
  }
  .application_display_picture > div:last-child {
    flex: 0 0 100%;
    padding: 20px 10px 0 10px;
  }
  .application_display_picture > div:last-child > div {
    text-align: center;
  }
  .application_display_picture > div:last-child > div > div:first-child {
    flex: 0 0 100%;
  }
  .application_display_picture > div:last-child > div > div:last-child {
    flex: 0 0 100%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .application_display_picture {
    padding: 30px 20px;
  }
  .application_display_picture > div:first-child {
    flex: 0 0 100%;
  }
  .application_display_picture > div:first-child > div:first-child {
    height: 300px;
    max-width: 300px;
  }
  .application_display_picture > div:last-child {
    flex: 0 0 100%;
    padding: 10px 10px 0 10px;
  }
  .application_display_picture > div:last-child > div {
    text-align: center;
  }
  .application_display_picture > div:last-child > div > div:first-child {
    flex: 0 0 100%;
  }
  .application_display_picture > div:last-child > div > div:last-child {
    flex: 0 0 100%;
    padding: 20px 0 0 0;
  }
}
/******* AWARDS LESS *******/
.award_notice_box {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  margin: 80px 120px 0 120px;
  border: 1px solid #d5d5d5;
}
.award_notice_box > div:first-child {
  font-size: 3.5rem;
  color: #d0aa34;
  border-left: 10px solid #2f674c;
  padding: 20px 0 20px 30px;
}
.award_notice_box > div:nth-child(2) {
  flex: 1;
  padding: 30px;
  color: #2f674c;
}
.award_notice_box > div:nth-child(2) span {
  margin: 0 10px;
  color: #d0aa34;
}
.award_notice_box > div:last-child {
  padding: 0 30px 0 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .award_notice_box {
    margin: 80px 80px 0 80px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .award_notice_box {
    margin: 80px 60px 0 60px;
  }
  .award_notice_box > div:last-child {
    flex: 0 0 100%;
    padding: 0;
  }
  .award_notice_box > div:last-child .button {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .award_notice_box {
    margin: 80px 30px 0 30px;
  }
  .award_notice_box > div:first-child {
    font-size: 3rem;
    padding: 20px 0 20px 20px;
  }
  .award_notice_box > div:nth-child(2) {
    padding: 20px;
  }
  .award_notice_box > div:last-child {
    flex: 0 0 100%;
    padding: 0;
  }
  .award_notice_box > div:last-child .button {
    display: block;
  }
}
.awards_display_holder {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 100px 100px 100px;
  -webkit-box-shadow: inset 0 -30px 30px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 -30px 30px rgba(0, 0, 0, 0.12);
}
.awards_display_holder .award_display {
  flex: 0 0 33.33%;
  padding: 90px 20px 20px 20px;
}
.awards_display_holder .award_display > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  position: relative;
  padding: 95px 0 0 0;
}
.awards_display_holder .award_display > div > div:first-child {
  position: absolute;
  top: -70px;
  width: 100%;
}
.awards_display_holder .award_display > div > div:first-child > div {
  width: 180px;
  border-radius: 50%;
  padding: 10px;
  background: #fff;
  margin: 0 auto;
}
.awards_display_holder .award_display > div > div:first-child > div img {
  width: 100%;
  margin: 0 auto;
}
.awards_display_holder .award_display > div > div:nth-child(2) {
  padding: 30px;
  text-align: center;
}
.awards_display_holder .award_display > div > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: solid #d5d5d5;
  border-width: 1px 0;
}
.awards_display_holder .award_display > div > div:nth-child(3) > div:first-child {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  background-color: #2f674c;
  overflow: hidden;
  position: relative;
  flex: 0 0 80px;
  height: 80px;
  border-radius: 0 20px 0 0;
}
.awards_display_holder .award_display > div > div:nth-child(3) > div:last-child {
  flex: 1;
  padding: 0 20px;
}
.awards_display_holder .award_display > div > div:nth-child(4) {
  flex: 1;
  padding: 30px;
  text-align: center;
}
.awards_display_holder .award_display > div > div:last-child {
  padding: 10px;
  background: #2f674c;
  color: #fff;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .awards_display_holder {
    padding: 60px 80px 100px 80px;
  }
  .awards_display_holder .award_display {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .awards_display_holder {
    padding: 60px 40px 100px 40px;
  }
  .awards_display_holder .award_display {
    flex: 0 0 50%;
  }
  .awards_display_holder .award_display > div {
    padding: 70px 0 0 0;
  }
  .awards_display_holder .award_display > div > div:first-child > div {
    width: 160px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .awards_display_holder {
    padding: 60px 40px 80px 40px;
  }
  .awards_display_holder .award_display {
    flex: 0 0 100%;
  }
  .awards_display_holder .award_display > div {
    padding: 70px 0 0 0;
  }
  .awards_display_holder .award_display > div > div:first-child > div {
    width: 160px;
  }
}
@media only screen and (max-width: 480px) {
  .awards_display_holder {
    padding: 60px 30px 80px 30px;
  }
  .awards_display_holder .award_display {
    flex: 0 0 100%;
    padding: 90px 0 20px 0;
  }
  .awards_display_holder .award_display > div {
    padding: 40px 0 0 0;
  }
  .awards_display_holder .award_display > div > div:first-child > div {
    width: 130px;
  }
  .awards_display_holder .award_display > div > div:nth-child(4) {
    padding: 20px 30px;
  }
}
.awards_page_header {
  font-weight: 700;
}
.awards_page_header > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4fa67c;
  color: #fff;
}
.awards_page_header > div:first-child > div:last-child {
  flex: 1;
  padding: 0 0 0 30px;
}
.awards_page_header > div:last-child {
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  text-align: center;
  background: #fff;
  padding: 40px;
  color: #2f674c;
}
.awards_page_header > div:last-child > div {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  flex-wrap: wrap;
}
.awards_page_header > div:last-child > div > div:first-child {
  font-size: 2.5rem;
  color: #d0aa34;
}
.awards_page_header > div:last-child > div > div:last-child {
  padding: 0 0 0 30px;
}
.awards_page_header > div:last-child > div > div:last-child span {
  margin: 0 10px;
  color: #d0aa34;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .awards_page_header > div:last-child {
    text-align: left;
  }
  .awards_page_header > div:last-child > div > div:last-child {
    flex: 1;
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .awards_page_header > div:last-child {
    text-align: left;
  }
  .awards_page_header > div:last-child > div > div:last-child {
    flex: 1;
    padding: 0 0 0 20px;
  }
}
.awards_section {
  background: #f0f0f0;
}
.awards_section .empty_state {
  font-weight: 700;
  padding: 80px 120px;
  text-align: center;
  color: #aaa;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .awards_section .empty_state {
    padding: 80px 100px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .awards_section .empty_state {
    padding: 80px 60px;
  }
}
@media only screen and (max-width: 480px) {
  .awards_section .empty_state {
    padding: 80px 30px;
  }
}
