/*
    Theme Name: Modular
    Description: Bonfire framework
    Version: 2.0
    Author: Bonfire
    Author URI: http://www.bonfire.com.au
*/
.visual-hide {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*********************
 SCSS variables
 *********************/
/*********************
base element styles
*********************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

*:before, *:after {
  z-index: 1;
}

html {
  height: 100%;
}

body {
  font-size: 100%;
  /* Resets 1em to 10px */
  overflow-x: hidden;
  height: 100%;
  position: relative;
}

.alignleft {
  position: relative;
  float: left;
}

.alignright {
  position: relative;
  float: right;
}

a {
  text-decoration: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a img {
  border: 0px;
}

/*********************
typography
*********************/
/* Default Margin */
html {
  font-size: 6.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Jost*", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 40px;
  font-size: 40rem;
}

h2 {
  font-size: 30px;
  font-size: 30rem;
}

h3 {
  font-size: 20px;
  font-size: 20rem;
}

h4 {
  font-size: 15px;
  font-size: 15rem;
}

h5 {
  font-size: 10px;
  font-size: 10rem;
}

h6 {
  font-size: 7px;
  font-size: 7rem;
}

p {
  margin: 0 0 20px;
  font-size: 18px;
  font-size: 18rem;
  line-height: 1.7;
  font-weight: 400;
  color: #5f6060;
}

@media (max-width: 768px) {
  p {
    font-size: 17px;
    font-size: 17rem;
  }
}

h3, h4, h5, h6 {
  color: #008C99;
  margin: 0 0 20px;
}

small {
  font-size: 80%;
}

strong {
  color: #333;
  font-weight: 600;
}

li {
  font-size: 17px;
  font-size: 17rem;
  list-style-position: inside;
  color: #747474;
  font-weight: 400;
}

input,
textarea {
  font-weight: 400;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #008C99;
}

a:hover {
  opacity: 0.8;
}

blockquote,
blockquote p {
  font-style: italic;
}

blockquote {
  margin: 0 0 20px;
  padding: 20px;
  padding-left: 40px;
  border-left: 2px solid blue;
}

blockquote cite {
  display: block;
}

blockquote cite:before {
  content: "\2014 \0020";
}

figure {
  margin: 0;
}

/*********************
header
*********************/
header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 110px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.page-template-home header {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 1100px) {
  .page-template-home header {
    background: #fff;
    -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 1100px) {
  header {
    background: #fff;
    height: 60px;
  }
  .mob-clicked header {
    left: -260px;
  }
  header:after {
    display: none;
  }
}

.scrolled header {
  background: #fff;
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
  .scrolled header {
    height: 60px;
  }
}

.scrolled header:after {
  opacity: 0;
  top: -100px;
}

.mob-banner img {
  width: 100%;
  height: auto;
}

.logo {
  margin-left: 24px;
  margin-right: 24px;
  display: block;
  height: 110px;
  width: 280px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  z-index: 9;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.scrolled .logo {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.mob-clicked .logo {
  left: -100%;
}

@media (max-width: 1300px) {
  .logo {
    width: 250px;
  }
}

@media (max-width: 1100px) {
  .logo {
    width: 150px;
  }
}

@media (max-width: 400px) {
  .logo {
    width: 140px;
    left: 20px;
  }
  .mob-clicked .logo {
    left: -260px;
  }
  .scrolled .logo {
    left: 20px;
    width: 140px;
  }
}

.phone-menu {
  position: relative;
  margin-right: 24px;
  margin-left: 24px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  color: #008C99;
  font-size: 20px;
  font-size: 20rem;
  display: block;
  z-index: 999;
}

@media (max-width: 1100px) {
  .phone-menu {
    display: none;
  }
}

.page-template-home .phone-menu {
  color: rgba(0, 0, 0, 0.65);
}

.scrolled .phone-menu {
  color: #008C99;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.phone-menu:before {
  position: relative;
  left: -12px;
  content: '\f095';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 25px;
  font-size: 25rem;
  -webkit-transition: top .2s ease-in-out;
  transition: top .2s ease-in-out;
  color: #008C99;
}

.scrolled .phone-menu::before {
  font-size: 25px;
  font-size: 25rem;
}

.phone-menu:hover {
  color: #fff;
}

.phone-menu:hover:before {
  top: -3px;
  -webkit-transition: top .2s ease-in-out;
  transition: top .2s ease-in-out;
}

.header-storebutton {
  background: #c6f0b2;
  font-size: 18px;
  font-size: 18rem;
  padding: 6px 12px;
  border-radius: 12px;
  color: #005566;
  margin-left: 12px;
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-storebutton:hover {
  background: #8DCC70;
  opacity: 1;
}

.page-template-home .header-storebutton {
  background: rgba(0, 85, 102, 0.75);
  color: #fff;
}

.page-template-home .header-storebutton:hover {
  background: #fff;
  color: #005566;
}

.scrolled .header-storebutton {
  color: #005566;
  background: #c6f0b2;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.scrolled .header-storebutton:hover {
  background: #8DCC70;
}

@media (max-width: 1100px) {
  .header-storebutton {
    margin-left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background: #c6f0b2;
    color: #005566;
  }
  .header-storebutton:hover {
    background: #8DCC70;
    opacity: 1;
  }
  .page-template-home .header-storebutton {
    background: #c6f0b2;
    color: #005566;
    margin-right: 0;
  }
  .page-template-home .header-storebutton:hover {
    background: #8DCC70;
  }
}

@media (max-width: 500px) {
  .header-storebutton {
    display: none;
  }
}

.error404 header,
.page-template-notification-page header {
  display: none;
}

.section-contact {
  width: 100%;
  clear: both;
}

.contact-form {
  max-width: 600px;
  margin: 0px 0px 0px 0px;
  margin: auto;
}

.contact-form .gform_wrapper {
  padding: 0px 0px 0px 0px;
}

.gform_wrapper {
  background: #fff;
  /* "Gform" styles */
  /* "Gsection" styles */
  /* "Gfield" styles */
  /* "Ginput" styles */
}

.gform_wrapper ::-webkit-input-placeholder {
  color: #747474;
  font-weight: 600;
  font-family: "Jost*", Helvetica, Arial, sans-serif;
}

.gform_wrapper :-ms-input-placeholder {
  color: #747474;
  font-weight: 600;
  font-family: "Jost*", Helvetica, Arial, sans-serif;
}

.gform_wrapper ::-ms-input-placeholder {
  color: #747474;
  font-weight: 600;
  font-family: "Jost*", Helvetica, Arial, sans-serif;
}

.gform_wrapper ::placeholder {
  color: #747474;
  font-weight: 600;
  font-family: "Jost*", Helvetica, Arial, sans-serif;
}

.gform_wrapper li {
  list-style: none;
}

.gform_wrapper select {
  outline: none;
}

.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper option {
  border: 0;
  width: 100%;
  height: calc(3 * 12px);
  font-size: 16px;
  font-size: 16rem;
  font-family: "Jost*", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #222;
  background: 0;
  outline: none;
}

.gform_wrapper textarea {
  height: 120px;
  resize: vertical;
}

.gform_wrapper select {
  background: 0;
}

.gform_wrapper .gform_title {
  text-align: center;
  position: relative;
  margin: 0 0 48px 0;
  color: #008C99;
  font-size: 30px;
  font-size: 30rem;
}

@media (max-width: 768px) {
  .gform_wrapper .gform_title {
    font-size: 24px;
    font-size: 24rem;
  }
}

.gform_wrapper .gform_description {
  text-align: center;
  display: block;
  font-size: 16px;
  font-size: 16rem;
}

@media (max-width: 768px) {
  .gform_wrapper .gform_description {
    font-size: 16px;
    font-size: 16rem;
  }
}

.gform_wrapper .gform_footer {
  margin: 12px 0px 0px 0px;
}

.gform_wrapper .gform_button {
  width: 100%;
  height: 50px;
  color: #fff;
  border: none;
  border-radius: 4px;
  background: #FF4A26;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 18px;
  font-size: 18rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
}

.gform_wrapper .gform_button:hover {
  background: #ff7559;
}

.gform_wrapper .gsection.gfield {
  border: 0px;
}

.gform_wrapper .gsection_title {
  text-align: left;
  margin: 0;
}

.gform_wrapper .gsection_title:after {
  content: none;
}

.gform_wrapper .gsection_description {
  color: #747474;
}

.gform_wrapper .gfield {
  margin: 0 0 10px;
}

.gform_wrapper .ginput_container {
  padding: 12px 12px 12px 12px;
  border-radius: 4px;
  background-color: rgba(95, 96, 96, 0.1);
}

.gform_wrapper .ginput_container label {
  margin: 0px 0px 0px 12px;
  font-size: 14px;
  font-size: 14rem;
  color: #5f6060;
}

.gform_wrapper .gfield_label {
  font-size: 16px;
  font-size: 16rem;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.gform_wrapper .gfield_description {
  font-size: 14px;
  font-size: 14rem;
  margin: 0px 0px 12px 0px;
  line-height: 2;
  color: #747474;
}

.gform_wrapper .ginput_container_checkbox .gfield_checkbox, .gform_wrapper .ginput_container_checkbox .gfield_radio, .gform_wrapper .ginput_container_radio .gfield_checkbox, .gform_wrapper .ginput_container_radio .gfield_radio {
  border: 0;
  width: 50%;
  max-width: 512px;
}

@media (max-width: 768px) {
  .gform_wrapper .ginput_container_checkbox .gfield_checkbox, .gform_wrapper .ginput_container_checkbox .gfield_radio, .gform_wrapper .ginput_container_radio .gfield_checkbox, .gform_wrapper .ginput_container_radio .gfield_radio {
    max-width: none;
    width: 100%;
  }
}

.gform_wrapper .ginput_container_checkbox .gfield_checkbox li, .gform_wrapper .ginput_container_checkbox .gfield_radio li, .gform_wrapper .ginput_container_radio .gfield_checkbox li, .gform_wrapper .ginput_container_radio .gfield_radio li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gform_wrapper .ginput_container_checkbox .gfield_checkbox li input, .gform_wrapper .ginput_container_checkbox .gfield_radio li input, .gform_wrapper .ginput_container_radio .gfield_checkbox li input, .gform_wrapper .ginput_container_radio .gfield_radio li input {
  margin: 0;
  width: auto;
}

.gform_wrapper .ginput_container_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.gform_wrapper .ginput_container_name span {
  width: 100%;
}

.gform_wrapper .ginput_container_name span:first-of-type {
  margin: 0px 12px 0px 0px;
}

.gform_wrapper .ginput_container_name span:last-of-type {
  margin: 0px 0px 0px 12px;
}

.gform_wrapper .ginput_container_name span input {
  height: calc(4.25 * 12px);
  border-bottom: 1px solid #c7c7c7;
}

.gform_wrapper .ginput_container_name span label {
  margin: 0;
}

.gform_wrapper .ginput_container_multiselect select {
  border: 0;
  width: 50%;
  max-width: 512px;
}

@media (max-width: 768px) {
  .gform_wrapper .ginput_container_multiselect select {
    width: 100%;
    max-width: none;
  }
}

.gform_wrapper .ginput_container_multiselect select option {
  margin: 0px 0px 12px 0px;
  padding: 2px 2px 2px 8px;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gform_wrapper .ginput_container_multiselect select option:checked {
  border: 1px solid transparent;
}

.gform_wrapper .ginput_container_address {
  padding: 0px 0px 12px 0px;
}

.gform_wrapper .ginput_container_address input {
  height: calc(4.25 * 12px);
  border-bottom: 1px solid #c7c7c7;
}

/* Validation styles */
.validation_error {
  padding: 12px 12px 12px 12px;
  margin: 24px 0px 24px 0px;
  font-size: 12px;
  font-size: 12rem;
  color: #bb2222;
  border-radius: 4px;
  background: #efd3d3;
}

.validation_message {
  position: static;
  border-radius: 4px;
  margin: 0px 0px 12px 0px;
  padding: 0px 12px 0px 12px;
  font-size: 15px;
  font-size: 15rem;
  font-weight: 400;
  background: #bb2222;
  width: 180px;
}

@media (max-width: 768px) {
  .validation_message {
    width: 100%;
  }
}

.gform_validation_container {
  display: none;
}

.gfield_error .ginput_container {
  border: 2px solid #bb2222;
  border-bottom-left-radius: 0;
}

@media (max-width: 768px) {
  .gfield_error .ginput_container {
    border-bottom-right-radius: 0;
  }
}

.gfield_error .validation_message {
  color: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bubble-menu .gfield_error .ginput_container {
  border-bottom-left-radius: 0;
  border-bottom-rights-radius: 0;
}

.bubble-menu .gfield_error .validation_message {
  width: 100%;
}

.btn-sidebar-contact {
  position: fixed;
  right: 0;
  top: 50%;
  background: #FF4A26;
  padding: 12px 12px 12px 12px;
  border-radius: 4px 0 0 4px;
  width: 200px;
  z-index: 98;
  cursor: pointer;
  color: #fff;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
  text-align: left;
}

@media (max-width: 768px) {
  .btn-sidebar-contact {
    width: 60px;
    height: 50px;
    padding: 0;
    display: none;
  }
  .btn-sidebar-contact:after {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    font-size: 24rem;
    line-height: 24px;
    padding: 0;
  }
}

.home.scrolled .btn-sidebar-contact, .page.scrolled .btn-sidebar-contact, .archive.scrolled .btn-sidebar-contact, .page.scrolled .btn-sidebar-contact {
  top: calc(100vh/2);
  right: -6px;
  -webkit-transition: right 0.6s ease 0.2s;
  transition: right 0.6s ease 0.2s;
}

@media (max-width: 768px) {
  .home.scrolled .btn-sidebar-contact, .page.scrolled .btn-sidebar-contact, .archive.scrolled .btn-sidebar-contact, .page.scrolled .btn-sidebar-contact {
    right: 0;
  }
}

.scrolled .btn-sidebar-contact:hover {
  right: 0;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}

.btn-sidebar-contact h2 {
  font-size: 24px;
  font-size: 24rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  color: #fff;
}

@media (max-width: 768px) {
  .btn-sidebar-contact h2 {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
}

.btn-sidebar-contact h2:after {
  content: '\f105';
  position: absolute;
  right: 5px;
  top: 7px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media (max-width: 768px) {
  .btn-sidebar-contact h2:after {
    content: '\f073';
    font-size: 25px;
    font-size: 25rem;
    float: left;
    right: 0;
    text-indent: 0;
  }
}

.btn-sidebar-contact span {
  float: left;
  width: 100%;
  font-weight: 100;
  margin: 2px 0 0;
  font-size: 14px;
  font-size: 14rem;
  -webkit-text-stroke: 0.45px;
}

@media (max-width: 768px) {
  .btn-sidebar-contact span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
}

.btn-sidebar-contact-newbooking {
  position: fixed;
  right: 0;
  top: 55%;
  background: #FF4A26;
  padding: 12px 12px 12px 12px;
  border-radius: 4px 0 0 4px;
  width: 200px;
  z-index: 98;
  cursor: pointer;
  color: #fff;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
  text-align: left;
}

.btn-sidebar-contact-newbooking a {
  color: #fff !important;
}

.btn-sidebar-contact-newbooking .fas {
  color: #fff !important;
  display: none;
}

@media (max-width: 768px) {
  .btn-sidebar-contact-newbooking .fas {
    display: block;
    top: 15px;
    left: 20px;
    position: absolute;
  }
}

.btn-sidebar-contact-newbooking .fa-arrow-right:before {
  content: '\f073' !important;
}

@media (max-width: 768px) {
  .btn-sidebar-contact-newbooking {
    width: 60px;
    height: 50px;
    padding: 0;
  }
  .btn-sidebar-contact-newbooking:after {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    font-size: 24rem;
    line-height: 24px;
    padding: 0;
  }
}

.home.scrolled .btn-sidebar-contact-newbooking, .page.scrolled .btn-sidebar-contact-newbooking, .archive.scrolled .btn-sidebar-contact-newbooking, .page.scrolled .btn-sidebar-contact-newbooking {
  top: calc(100vh/1.817);
  right: -6px;
  -webkit-transition: right 0.6s ease 0.2s;
  transition: right 0.6s ease 0.2s;
}

@media (max-width: 768px) {
  .home.scrolled .btn-sidebar-contact-newbooking, .page.scrolled .btn-sidebar-contact-newbooking, .archive.scrolled .btn-sidebar-contact-newbooking, .page.scrolled .btn-sidebar-contact-newbooking {
    right: 0;
  }
}

.scrolled .btn-sidebar-contact-newbooking:hover {
  right: 0;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}

.btn-sidebar-contact-newbooking span {
  font-size: 24px;
  font-size: 24rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  color: #fff;
}

@media (max-width: 768px) {
  .btn-sidebar-contact-newbooking span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
}

.btn-sidebar-contact-newbooking span:after {
  content: '\f105';
  position: absolute;
  right: -30px;
  top: 7px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media (max-width: 768px) {
  .btn-sidebar-contact-newbooking span:after {
    content: '\f073';
    font-size: 25px;
    font-size: 25rem;
    color: #fff;
    float: left;
    right: -30px;
    text-indent: 0;
  }
}

/* "Bubble" contact form */
.bubble-menu {
  background-color: white;
  width: 360px;
  height: auto;
  position: fixed;
  overflow: scroll;
  right: -360px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 24px 24px 24px 24px;
  border-radius: 4px;
  z-index: 1000;
  -webkit-transition: right .2s ease-in-out;
  transition: right .2s ease-in-out;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3), 0px 0px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3), 0px 0px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .bubble-menu {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    margin: 0;
    -webkit-transform: none;
            transform: none;
    z-index: 1000;
  }
}

.con-clicked .bubble-menu {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.bubble-menu .but-close {
  position: absolute;
  padding: 8px 10px;
  right: 22px;
  top: 32px;
  border-radius: 2px;
  cursor: pointer;
  color: #333;
  font-size: 20px !important;
}

.bubble-menu .but-close:hover:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.bubble-menu .but-close:before {
  color: #333;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.bubble-menu .gform_wrapper {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

@media (max-width: 600px) {
  .bubble-menu .gform_wrapper {
    position: fixed;
    top: 50%;
    width: calc(100% - 48px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 0;
  }
}

.bubble-menu .gform_heading .gform_title {
  font-size: 24px;
  font-size: 24rem;
  text-align: left;
  margin: 0px 0px 12px 0px;
  display: inline-block;
  width: 80%;
}

.bubble-menu .gform_heading .gform_description {
  text-align: left;
}

/* Inner-page contact form */
.inner-con {
  float: right;
}

.inner-con .gform_wrapper {
  background: rgba(116, 116, 116, 0.05);
  border-radius: 4px;
  padding: 24px 24px 24px 24px;
}

.inner-con .gform_wrapper li {
  list-style: none;
  position: relative;
}

.inner-con .gform_wrapper .gform_title {
  font-size: 24px;
  font-size: 24rem;
  text-align: center;
  position: relative;
  margin: 0px 0px 12px 0px;
}

.inner-con .gform_wrapper .gform_title:after {
  content: '';
  position: absolute;
  height: 2px;
  border: 0;
  width: 100px;
  display: inline-block;
  left: 50%;
  margin-left: -50px;
  bottom: -12px;
}

@media (max-width: 1000px) {
  .inner-con .gform_wrapper {
    background: rgba(116, 116, 116, 0);
  }
}

.inner-con .gform_wrapper .gform_description {
  text-align: left;
}

.inner-con .gform_footer {
  margin: 12px 0px 0px 0px;
}

.inner-con .gform_button {
  width: 100%;
  height: 50px;
  color: #fff;
  border: none;
  border-radius: 4px;
  background: #FF4A26;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 15px;
  font-size: 15rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-appearance: none;
}

.inner-con .gform_button:hover {
  background: #f22800;
}

.inner-con .privacy {
  margin: 0 0 8px;
  text-align: center;
  font-size: 8px;
  font-size: 8rem;
}

.inner-con .privacy p {
  font-size: 10px;
  font-size: 10rem;
  margin: 0 0 8px;
  text-align: center;
}

/* Landing-page contact form */
.section-landing-content .gform_wrapper {
  padding: 36px 24px 36px 24px;
  background: #fff;
}

.section-landing-content .gform_title {
  text-align: center;
  position: relative;
  margin: 0px 0 25px;
}

.section-landing-content .gform_title:after {
  content: '';
  position: absolute;
  height: 2px;
  border: 0;
  width: 100px;
  display: inline-block;
  left: 50%;
  margin-left: -50px;
  bottom: -12px;
}

/* navigation */
.scrolled .header-nav,
.page-template .header-nav,
.page-template-default .header-nav,
.single-post .header-nav,
.category .header-nav,
.scrolled.home .header-nav,
.error404 .header-nav {
  margin: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 1100px) {
  .scrolled .header-nav {
    padding: 0;
  }
}

.header-nav .menu:after {
  content: "";
  display: table;
  clear: both;
}

/* header navigation main styles */
.header-nav {
  position: relative;
  -webkit-transition: margin-top .2s ease;
  transition: margin-top .2s ease;
  margin-left: auto !important;
}

@media (max-width: 1100px) {
  .header-nav {
    z-index: 99999;
    position: fixed;
    padding: 0;
    top: 0;
    right: -260px;
    height: 100vh;
    background: #008C99;
    width: 260px;
  }
}

@media (max-width: 1100px) {
  .mob-clicked .header-nav {
    right: 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1100px) {
  .header-nav > ul,
  .header-nav > ul > li > ul {
    display: block;
    width: 260px;
  }
}

.header-nav > ul > li,
.header-nav > ul > li > ul > li {
  display: inline-block;
  text-align: left;
  list-style: none;
  position: relative;
  height: 100%;
}

@media (max-width: 1100px) {
  .header-nav > ul > li,
  .header-nav > ul > li > ul > li {
    display: block;
    font-weight: 700;
  }
}

.header-nav > ul > li > ul,
.header-nav > ul > li > ul > li > ul {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 260px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}

@media (max-width: 1100px) {
  .header-nav > ul > li > ul,
  .header-nav > ul > li > ul > li > ul {
    visibility: visible;
    display: block;
    opacity: 1;
    position: static;
    background: transparent;
  }
}

.header-nav > ul > li > ul li,
.header-nav > ul > li > ul > li > ul li {
  width: 100%;
  font-weight: 400;
  pointer-events: auto;
}

.header-nav > ul > li > ul a,
.header-nav > ul > li > ul > li > ul a {
  display: block;
  width: 100%;
  color: #fff;
  line-height: inherit;
}

.scrolled .header-nav > ul > li > ul a, .scrolled
.header-nav > ul > li > ul > li > ul a {
  color: #fff !important;
}

.header-nav > ul > li:hover > ul,
.header-nav > ul > li > ul > li:hover > ul {
  opacity: 1;
  top: 100%;
  pointer-events: auto;
  background: #008C99;
  visibility: visible;
}

.header-nav > ul > li > a,
.header-nav > ul > li > ul > li > a {
  padding: 0 12px;
  display: block;
  height: 110px;
  line-height: 110px;
  background: none;
  color: #005566;
  font-size: 18px;
  font-size: 18rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .header-nav > ul > li > a,
  .header-nav > ul > li > ul > li > a {
    height: 80px;
    line-height: 80px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 1100px) {
  .page-template-home .header-nav > ul > li > a, .page-template-home
  .header-nav > ul > li > ul > li > a {
    color: #fff;
  }
}

.header-nav > ul > li > a:hover,
.header-nav > ul > li > ul > li > a:hover {
  color: #fff;
  background: #005566;
  opacity: 1;
}

@media (max-width: 1100px) {
  .header-nav > ul > li > a:hover,
  .header-nav > ul > li > ul > li > a:hover {
    background: rgba(0, 0, 0, 0.1);
  }
}

.scrolled .header-nav > ul > li > a, .scrolled
.header-nav > ul > li > ul > li > a {
  color: #005566;
}

@media (max-width: 1100px) {
  .scrolled .header-nav > ul > li > a, .scrolled
  .header-nav > ul > li > ul > li > a {
    color: #fff;
  }
}

.scrolled .header-nav > ul > li > a:hover, .scrolled
.header-nav > ul > li > ul > li > a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .header-nav ul > li:last-child > a {
    border-bottom: 1px solid transparent;
    margin-bottom: 25vh;
  }
}

#menu-navigation {
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.scrolled #menu-navigation {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 1100px) {
  #menu-navigation {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* Sidebar Submenu Level (1) */
.header-nav .menu-item-has-children ul li a {
  background: #00838f;
  padding-left: calc(2 * 12px);
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  color: white;
}

/* Sidebar Submenu Level (2) */
.header-nav .menu-item-has-children ul li ul li a {
  font-weight: 400;
  opacity: 0.4;
}

/* header supporting nav elements */
.header-toggle {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: 24px;
  margin-left: 12px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-toggle .slice {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.header-toggle .slice span {
  position: absolute;
  background: #008c99;
  top: 0;
  bottom: 0;
  margin: auto;
  height: calc(100% / 16);
  border-radius: 100px;
  width: 100%;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 400ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 400ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 400ms cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 400ms cubic-bezier(0.77, 0, 0.175, 1);
}

.header-toggle .slice:nth-child(1) span {
  -webkit-transform: translateY(calc(100% * 5));
          transform: translateY(calc(100% * 5));
}

.header-toggle .slice:nth-child(3) span {
  -webkit-transform: translateY(calc(-100% * 5));
          transform: translateY(calc(-100% * 5));
}

.header-toggle.open .slice:nth-child(1) span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-toggle.open .slice:nth-child(2) span {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.header-toggle.open .slice:nth-child(3) span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .header-toggle {
    display: block;
  }
}

#phone-mob {
  position: relative;
  display: none;
  visibility: hidden;
  width: 48px;
  height: 48px;
  z-index: 999;
  margin-left: auto;
}

@media (max-width: 1100px) {
  #phone-mob {
    display: block;
    margin-left: 12px;
  }
}

@media (max-width: 500px) {
  #phone-mob {
    margin-left: auto;
  }
}

@media (max-width: 300px) {
  #phone-mob {
    display: none;
  }
}

#phone-mob:before {
  content: '\f095';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 26px;
  font-size: 26rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #008C99;
  visibility: visible;
}

/*********************
slideshow
*********************/
.section-slideshow {
  position: relative;
  padding: 0;
}

.slide {
  width: 100%;
  background-size: cover;
  background-position: center center;
  height: 80vh;
  z-index: 2;
}

@media (max-width: 1100px) {
  .slide {
    height: 800px;
  }
}

@media (max-width: 768px) {
  .slide {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .slide {
    height: 350px;
  }
}

.slide:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .7;
}

.hero-content {
  position: absolute;
  width: 100%;
  padding: 300px 60px 100px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(12, 60, 63, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(12, 60, 63, 0.7), transparent);
  mix-blend-mode: luminosity;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 140px 30px 40px;
  }
}

.hero-head {
  font-size: 80px;
  font-size: 80rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-shadow: 0px 2px 24px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.hero-head:after {
  display: none;
}

@media (max-width: 1200px) {
  .hero-head {
    font-size: 70px;
    font-size: 70rem;
  }
}

@media (max-width: 1100px) {
  .hero-head {
    font-size: 48px;
    font-size: 48rem;
  }
}

@media (max-width: 768px) {
  .hero-head {
    font-size: 44px;
    font-size: 44rem;
  }
}

@media (max-width: 600px) {
  .hero-head {
    font-size: 32px;
    font-size: 32rem;
  }
}

.hero-text {
  color: #fff;
  font-size: 30px;
  font-size: 30rem;
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 16px;
    font-size: 16rem;
  }
  .hero-text:before, .hero-text:after {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-text {
    font-size: 14px;
    font-size: 14rem;
  }
}

.hero-text:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  top: 50%;
  left: -50px;
  background: #8DCC70;
}

.hero-text:after {
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  top: 50%;
  right: -50px;
  background: #8DCC70;
}

.template-but {
  color: #fff;
  padding: 15px 40px;
  display: inline-block;
  margin: 20px 0 0;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 16rem;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
  background: #FF4A26;
  border-radius: 4px;
}

.template-but:hover {
  background: #ff350d;
  color: #fff;
  opacity: 1;
}

/*********************
footer
*********************/
footer {
  width: 100%;
  background: #005566;
}

.footer-detailsgroup {
  zoom: 1;
}

.footer-detailsgroup:before, .footer-detailsgroup:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.footer-detailsgroup:after {
  clear: both;
}

@media (max-width: 756px) {
  .footer-detailsgroup > div {
    display: block;
    float: none;
    margin: 0;
    width: 100%;
  }
}

.foot-details {
  width: 600px;
  float: left;
  margin-left: calc(50% - 600px);
  padding: 48px 36px 48px 36px;
}

@media (max-width: 1200px) {
  .foot-details {
    margin-left: 0;
    width: 50%;
  }
}

@media (max-width: 756px) {
  .foot-details {
    padding: 24px 36px 24px 36px;
  }
}

.foot-details h2 {
  font-size: 20px;
  font-size: 20rem;
  margin: 12px 0px 12px 0px;
  padding: 12px 0px 12px 0px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-mapgroup {
  float: right;
  width: 50%;
  margin: 0;
  height: 480px;
}

.foot-mapgroup .foot-map-object {
  display: block;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.foot-mapgroup .marker {
  width: 63px;
  height: 78px;
  margin: -78px 0 0 -31px;
}

.foot-add,
.foot-phone {
  display: block;
  position: relative;
  padding: 0px 0px 0px 36px;
  margin: 0px 0px 12px 0px;
  font-size: 16px;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
}

.foot-add:before,
.foot-phone:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  font-size: 20rem;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FF4A26;
}

.social a {
  display: block;
  position: relative;
  padding: 0px 0px 0px 36px;
  margin: 0px 0px 12px 0px;
  font-size: 16px;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
}

.social a i {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  font-size: 20rem;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FF4A26;
}

.foot-add:before {
  content: '\f015';
}

.foot-phone:before {
  content: '\f095';
}

.social .fa, .far, .fas {
  font-family: "Font Awesome 5 Brands";
  font-size: 20px;
  color: #FF4A26;
}

.foot-other {
  color: #957b5f;
  font-size: 10px;
  font-size: 10rem;
}

.foot-other strong {
  color: #957b5f;
}

.foot-affiliate {
  display: inline-block;
  width: 80px;
  height: 30px;
  margin: 20px 20px 0 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer-bargroup {
  width: 100%;
  background: #222;
  padding: 20px 0;
}

.copyright,
.credits {
  color: #bbb;
  font-size: 13px;
  font-size: 13rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .copyright,
  .credits {
    width: 100%;
    margin-bottom: 5px;
  }
}

.copyright {
  float: left;
}

.credits {
  float: right;
}

.footer-nav ul {
  -webkit-columns: 2;
          columns: 2;
}

.footer-nav li {
  color: #008C99;
}

.footer-nav a {
  color: white;
  font-weight: 500;
}

.error404 footer,
.page-template-notification-page footer {
  background: none;
  position: fixed;
  bottom: 0;
}

.error404 footer .footer-detailsgroup,
.page-template-notification-page footer .footer-detailsgroup {
  display: none;
}

.error404 footer .footer-bargroup,
.page-template-notification-page footer .footer-bargroup {
  background: none;
}

.error404 footer .footer-bargroup .wrap .copyright, .error404 footer .footer-bargroup .section-testimonials-content .copyright, .error404 footer .footer-bargroup .section-single-post .copyright, .error404 footer .footer-bargroup .section-staff-member .copyright,
.error404 footer .footer-bargroup .wrap .credits,
.error404 footer .footer-bargroup .section-testimonials-content .credits,
.error404 footer .footer-bargroup .section-single-post .credits,
.error404 footer .footer-bargroup .section-staff-member .credits,
.page-template-notification-page footer .footer-bargroup .wrap .copyright,
.page-template-notification-page footer .footer-bargroup .section-testimonials-content .copyright,
.page-template-notification-page footer .footer-bargroup .section-single-post .copyright,
.page-template-notification-page footer .footer-bargroup .section-staff-member .copyright,
.page-template-notification-page footer .footer-bargroup .wrap .credits,
.page-template-notification-page footer .footer-bargroup .section-testimonials-content .credits,
.page-template-notification-page footer .footer-bargroup .section-single-post .credits,
.page-template-notification-page footer .footer-bargroup .section-staff-member .credits {
  color: white;
}

.error404 footer .footer-bargroup .wrap .copyright a, .error404 footer .footer-bargroup .section-testimonials-content .copyright a, .error404 footer .footer-bargroup .section-single-post .copyright a, .error404 footer .footer-bargroup .section-staff-member .copyright a,
.error404 footer .footer-bargroup .wrap .credits a,
.error404 footer .footer-bargroup .section-testimonials-content .credits a,
.error404 footer .footer-bargroup .section-single-post .credits a,
.error404 footer .footer-bargroup .section-staff-member .credits a,
.page-template-notification-page footer .footer-bargroup .wrap .copyright a,
.page-template-notification-page footer .footer-bargroup .section-testimonials-content .copyright a,
.page-template-notification-page footer .footer-bargroup .section-single-post .copyright a,
.page-template-notification-page footer .footer-bargroup .section-staff-member .copyright a,
.page-template-notification-page footer .footer-bargroup .wrap .credits a,
.page-template-notification-page footer .footer-bargroup .section-testimonials-content .credits a,
.page-template-notification-page footer .footer-bargroup .section-single-post .credits a,
.page-template-notification-page footer .footer-bargroup .section-staff-member .credits a {
  color: #8DCC70;
}

/*********************
featured
*********************/
.section-feature-boxes {
  position: relative;
  text-align: center;
  width: 100%;
  background: #fff;
}

.section-feature-boxes .fa {
  font-size: 72px;
  font-size: 72rem;
  display: block;
  margin: 0 0 30px;
}

.section-feature-boxes .wrap, .section-feature-boxes .section-testimonials-content, .section-feature-boxes .section-single-post, .section-feature-boxes .section-staff-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.feat-item {
  position: relative;
  width: calc(100% / 3);
  height: auto;
  background-size: cover;
  text-align: center;
  padding: 0px 50px;
  vertical-align: top;
}

.feat-item:hover .icon-hr {
  width: 200px;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
}

@media (max-width: 1000px) {
  .feat-item {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .feat-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
  .feat-item:last-of-type {
    margin-bottom: 0;
  }
}

.feat-item h3 {
  color: #008C99;
}

.feat-img {
  width: 250px;
  height: 250px;
  display: inline-block;
  border-radius: 125px;
  background-size: cover;
  margin: 0 0 20px;
  background-position: center;
}

@media (max-width: 1000px) {
  .feat-img {
    width: 150px;
    min-width: 150px;
    height: 150px;
    margin-right: 40px;
  }
}

@media (max-width: 600px) {
  .feat-img {
    margin: 0 0 20px;
  }
}

.feat-title {
  margin: 0 0 5px;
  font-size: 22px;
  font-size: 22rem;
  text-transform: none;
  font-weight: 600;
}

.icon-hr {
  margin: 10px 0;
  height: 2px;
  border: 0;
  width: 100px;
  display: inline-block;
  background: #8DCC70;
  opacity: 0.5;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
}

.feat-text {
  color: #5f6060;
  font-weight: 400;
  font-size: 16px;
  font-size: 16rem;
}

/*********************
logos
*********************/
.section-logos {
  background: #f3f3f3;
  text-align: center;
  padding: 60px 0 60px 0;
}

.logo-wrap {
  margin: 0 auto;
  width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1200px) {
  .logo-wrap {
    width: 700px;
  }
}

@media (max-width: 768px) {
  .logo-wrap {
    width: calc(100% - 60px);
  }
}

.logo-image {
  margin: 0;
  height: 80px;
  width: 140px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: .6;
}

.logo-image:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-image {
    width: 25%;
    height: 80px;
    background-size: 100% auto;
  }
}

@media (max-width: 600px) {
  .logo-image {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .logo-image:nth-of-type(2n+2) {
    margin-right: 0;
  }
}

/*********************
news homepage module
*********************/
.news-home {
  width: 100%;
  clear: both;
}

.news-home .news-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

@media (max-width: 1200px) {
  .news-home .news-slides {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.news-home .news-slide {
  display: inline-block;
  padding: 0;
  margin-right: 20px;
  width: calc((100% - 60px) / 4);
}

.news-home .news-slide:last-of-type {
  margin: 0;
}

.news-home .news-slide:hover .news-image {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .news-home .news-slide {
    width: calc((100% - 20px) / 2);
    margin-bottom: 30px;
  }
  .news-home .news-slide:nth-of-type(2n+2) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .news-home .news-slide {
    width: 100%;
    margin-right: 0;
  }
}

.news-home .news-image {
  width: 100%;
  height: 170px;
  display: inline-block;
  background-size: cover;
  margin: 0 0 20px;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1000px) {
  .news-home .news-image {
    height: 200px;
    margin: 0 0 10px;
  }
}

@media (max-width: 600px) {
  .news-home .news-image {
    height: 150px;
  }
}

.news-home .news-text {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-size: 16rem;
  text-transform: uppercase;
  color: #222;
  text-align: left;
}

@media (max-width: 600px) {
  .news-home .news-text {
    font-size: 18px;
    font-size: 18rem;
  }
}

.news-home .news-date {
  margin: 5px 0 0;
  text-align: left;
  display: block;
  font-size: 13px;
  font-size: 13rem;
  color: #747474;
}

.news-home .news-date span {
  float: right;
  margin-right: 15px;
  color: #b5121b;
  font-weight: 700;
}

/*********************
 testimonials
 *********************/
.section-testimonials {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
  background-attachment: fixed;
}

.section-testimonials:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  opacity: 0.8;
}

.section-testimonials h2 {
  color: #fff;
}

.section-testimonials h2:after {
  background: #fff !important;
}

.test-slide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.test-inner {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.test-img {
  width: 170px;
  height: 170px;
  display: block;
  background-size: cover;
  border-radius: 100px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .test-img {
    width: 120px;
    height: 120px;
  }
}

.test-text {
  margin: 40px 0 13px;
  font-size: 16px;
  font-size: 16rem;
}

.test-inner h5 {
  font-size: 18px;
  font-size: 18rem;
  color: #fff;
}

/* testimonials inner */
.section-testimonials-content {
  color: #000;
}

.testimonial-entry {
  background: #f9f9f9;
  padding: 30px;
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonial-entry h2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 10px 0 0;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-size: 16rem;
}

.testimonial-entry p {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-style: italic;
  color: #222;
}

/*********************
 general layout
*********************/
.page-template-landing-small .site {
  height: auto;
}

.wrap, .section-testimonials-content, .section-single-post, .section-staff-member {
  width: 1200px;
  margin: 0 auto;
  padding: 0px 36px 0px 36px;
  position: relative;
  zoom: 1;
}

.wrap:before, .section-testimonials-content:before, .section-single-post:before, .section-staff-member:before, .wrap:after, .section-testimonials-content:after, .section-single-post:after, .section-staff-member:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.wrap:after, .section-testimonials-content:after, .section-single-post:after, .section-staff-member:after {
  clear: both;
}

@media (max-width: 1200px) {
  .wrap, .section-testimonials-content, .section-single-post, .section-staff-member {
    width: 100%;
  }
}

.section-padded, .section-contact, .section-feature-boxes, .news-home, .section-testimonials, .section-testimonials-content, .section-page-main, .section-landing-content, .section-staff-list, .section-staff-member, .section-gallery, .section-news-list, .section-news-slider {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padded, .section-contact, .section-feature-boxes, .news-home, .section-testimonials, .section-testimonials-content, .section-page-main, .section-landing-content, .section-staff-list, .section-staff-member, .section-gallery, .section-news-list, .section-news-slider {
    padding: 60px 0;
  }
}

.clear {
  clear: both;
}

.alignleft {
  float: left;
  margin: 0px 30px 15px 0px;
}

.alignright {
  float: right;
  margin: 0px 0px 15px 30px;
}

main {
  width: 100%;
  background: #fff;
  padding: 0;
  position: relative;
  overflow: auto;
}

main h1 {
  color: #005566;
}

@media (max-width: 768px) {
  main h1 {
    font-size: 30px;
    font-size: 30rem;
  }
}

@media (max-width: 600px) {
  main h1 {
    font-size: 24px;
    font-size: 24rem;
  }
}

.post ul, .post ol {
  margin-bottom: 20px;
}

.post li {
  font-style: italic;
  margin-left: 24px;
  text-indent: -24px;
  margin-bottom: 10px;
}

.post li:last-child {
  margin-bottom: 0;
}

.content {
  width: 60%;
  float: left;
}

.content img {
  border-radius: 4px;
}

section h2 {
  position: relative;
  margin-bottom: 12px;
  font-size: 26px;
  font-size: 26rem;
  color: #005566;
}

@media (max-width: 768px) {
  section h2 {
    font-size: 24px;
    font-size: 24rem;
  }
}

section h1 {
  margin-bottom: 12px;
}

.page-head {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
}

/* //////////////////////////////////////////////////////// PAGE TEMPLATE */
.section-page-main {
  zoom: 1;
}

.section-page-main:before, .section-page-main:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.section-page-main:after {
  clear: both;
}

.section-page-main .content {
  width: 60%;
}

@media (max-width: 1000px) {
  .section-page-main .content {
    float: none;
    width: 100%;
  }
}

.section-page-main .inner-con {
  width: calc(40% - 40px);
}

@media (max-width: 1000px) {
  .section-page-main .inner-con {
    width: 100%;
    max-width: 600px;
    margin: 60px auto 0;
    float: none;
  }
}

@media (max-width: 1000px) {
  .section-page-main .inner-con .gform_wrapper {
    padding: 0;
  }
}

.error404,
.page-template-notification-page {
  background: #002a33;
}

.error404 .site,
.page-template-notification-page .site {
  height: 100%;
}

.error404 main,
.page-template-notification-page main {
  display: block;
  height: 100%;
  text-align: center;
  background: none;
}

.error404 main .section-page-main,
.page-template-notification-page main .section-page-main {
  width: 500px;
  position: absolute;
  background: #fff;
  border-radius: 12px;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.error404 main .section-page-main .wrap, .error404 main .section-page-main .section-testimonials-content, .error404 main .section-page-main .section-single-post, .error404 main .section-page-main .section-staff-member,
.page-template-notification-page main .section-page-main .wrap,
.page-template-notification-page main .section-page-main .section-testimonials-content,
.page-template-notification-page main .section-page-main .section-single-post,
.page-template-notification-page main .section-page-main .section-staff-member {
  width: 100%;
}

@media (max-width: 768px) {
  .error404 main .section-page-main,
  .page-template-notification-page main .section-page-main {
    width: 100%;
    background: none;
    border-radius: 0;
  }
}

.error404 main h1,
.page-template-notification-page main h1 {
  color: #FF4A26;
  line-height: 1em;
}

@media (max-width: 768px) {
  .error404 main h1,
  .page-template-notification-page main h1 {
    font-size: 48px;
    font-size: 48rem;
  }
}

.error404 main h2,
.page-template-notification-page main h2 {
  color: #008C99;
  line-height: 1em;
}

.error404 main .content,
.page-template-notification-page main .content {
  width: 100%;
  float: none;
}

.error404 main .content p, .error404 main .content a,
.page-template-notification-page main .content p,
.page-template-notification-page main .content a {
  font-size: 20px;
  font-size: 20rem;
}

.error404 main .content p,
.page-template-notification-page main .content p {
  color: #5f6060;
}

@media (max-width: 768px) {
  .error404 main .content p,
  .page-template-notification-page main .content p {
    color: #fff;
  }
}

.error404 main .content a,
.page-template-notification-page main .content a {
  color: #8DCC70;
}

@media (max-width: 768px) {
  .error404 main,
  .page-template-notification-page main {
    text-align: left;
  }
}

/*********************
 default inner page
*********************/
.section-single-post {
  padding: 60px 30px;
}

@media (max-width: 768px) {
  .section-single-post {
    padding: 40px 30px;
  }
}

.section-single-post .content {
  width: 100%;
}

.post-links {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
}

.post-links a[rel="next"], .post-links a[rel="prev"] {
  position: relative;
  font-size: 16px;
  font-size: 16rem;
  display: inline-block;
  width: calc(50% - 10px);
  color: #747474;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-links a[rel="next"]:hover, .post-links a[rel="prev"]:hover {
  color: #333333;
}

@media (max-width: 768px) {
  .post-links a[rel="next"], .post-links a[rel="prev"] {
    font-size: 14px;
    font-size: 14rem;
  }
}

.post-links a[rel="prev"] {
  float: left;
  padding-left: 25px;
}

.post-links a[rel="prev"]:before {
  display: block;
  position: absolute;
  left: 5px;
  top: 3px;
  content: '\f053';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 14px;
  font-size: 14rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-links a[rel="prev"]:hover:before {
  left: 0;
}

.post-links a[rel="next"] {
  float: right;
  padding-right: 25px;
  text-align: right;
}

.post-links a[rel="next"]:after {
  display: block;
  position: absolute;
  right: 5px;
  top: 3px;
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  font-size: 14px;
  font-size: 14rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-links a[rel="next"]:hover:after {
  right: 0;
}

.page-banner {
  width: 100%;
  display: block;
  background-size: cover;
  height: 650px;
  background-repeat: no-repeat;
  position: relative;
  background-position: 0% 50%;
}

.page-banner:before {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(116, 116, 116, 0.5)));
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(116, 116, 116, 0.5));
}

@media (max-width: 768px) {
  .page-banner {
    height: auto;
  }
}

.page-banner .wrap, .page-banner .section-testimonials-content, .page-banner .section-single-post, .page-banner .section-staff-member {
  position: relative;
  height: 650px;
}

@media (max-width: 768px) {
  .page-banner .wrap, .page-banner .section-testimonials-content, .page-banner .section-single-post, .page-banner .section-staff-member {
    height: 450px;
  }
}

@media (max-width: 600px) {
  .page-banner .wrap, .page-banner .section-testimonials-content, .page-banner .section-single-post, .page-banner .section-staff-member {
    height: 400px;
  }
}

.page-banner h1 {
  color: #fff;
}

.page-banner:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  opacity: .8;
  top: 0;
  left: 0;
}

.page-banner .page-header {
  position: absolute;
  bottom: 60px;
  left: 30px;
  margin: 0;
  color: #fff;
  border-bottom: 2px solid #8DCC70;
  font-size: 10px;
  font-size: 10rem;
}

@media (max-width: 768px) {
  .page-banner .page-header {
    bottom: 30px;
  }
}

.page-banner .page-sub {
  color: #fff;
  bottom: 30px;
  position: absolute;
  left: 0;
}

/*********************
homepage
*********************/
.home .section-home-content {
  position: relative;
  display: block;
  width: 100%;
  padding: 120px 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  .home .section-home-content {
    padding: 60px 0;
  }
}

.home .section-home-content:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
  opacity: .8;
  background: #008C99;
}

.home .section-home-content .wrap, .home .section-home-content .section-testimonials-content, .home .section-home-content .section-single-post, .home .section-home-content .section-staff-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 960px) {
  .home .section-home-content .wrap, .home .section-home-content .section-testimonials-content, .home .section-home-content .section-single-post, .home .section-home-content .section-staff-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.home .section-home-content .content-text {
  width: calc(70% - 60px);
  margin-right: 60px;
}

@media (max-width: 1200px) {
  .home .section-home-content .content-text {
    width: calc(100% - 340px);
  }
}

@media (max-width: 960px) {
  .home .section-home-content .content-text {
    width: 100%;
    margin: 0;
  }
}

.home .section-home-content .content-text h1, .home .section-home-content .content-text h2 {
  margin: 0 0 20px;
  z-index: 99;
  color: #fff;
}

@media (max-width: 768px) {
  .home .section-home-content .content-text h1, .home .section-home-content .content-text h2 {
    font-size: 24px;
    font-size: 24rem;
  }
}

.home .section-home-content .content-text strong {
  color: #c6f0b2;
}

.home .section-home-content .content-text p {
  color: #fff;
  margin: 3px 0 20px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .home .section-home-content .content-text p {
    font-size: 15px;
    font-size: 15rem;
  }
}

.home .content-image {
  width: 30%;
  height: 300px;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .home .content-image {
    width: 300px;
  }
}

@media (max-width: 960px) {
  .home .content-image {
    width: 100%;
    height: calc(100vw * 0.5);
    margin-top: 20px;
  }
}

.home .section-opening-hours {
  text-align: center;
  background: #008C99;
  color: #fff;
  padding: 24px 0;
}

.home .section-opening-hours h2 {
  margin: 12px 0 6px;
  color: #c6f0b2;
  font-size: 20px;
  font-size: 20rem;
}

.home .section-opening-hours h2:after {
  display: none;
}

.home .section-opening-hours ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.home .section-opening-hours li {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 6px;
  color: #c6f0b2;
  display: block;
}

@media (max-width: 600px) {
  .home .section-opening-hours li {
    display: block;
  }
}

.home .section-opening-hours li strong {
  color: #fff;
  display: block;
}

/*********************
small landing page
*********************/
.section-landing-hero {
  padding: 0;
  position: relative;
  width: 100%;
  background-size: cover;
  min-height: 400px;
  height: auto;
}

.section-landing-hero .wrap, .section-landing-hero .section-testimonials-content, .section-landing-hero .section-single-post, .section-landing-hero .section-staff-member {
  position: relative;
  height: 650px;
}

@media (max-width: 768px) {
  .section-landing-hero .wrap, .section-landing-hero .section-testimonials-content, .section-landing-hero .section-single-post, .section-landing-hero .section-staff-member {
    height: 450px;
  }
}

@media (max-width: 600px) {
  .section-landing-hero .wrap, .section-landing-hero .section-testimonials-content, .section-landing-hero .section-single-post, .section-landing-hero .section-staff-member {
    height: auto;
    padding: 0 24px;
  }
}

.section-landing-hero .content {
  position: absolute;
  bottom: 40px;
}

@media (max-width: 1200px) {
  .section-landing-hero .content {
    width: auto;
  }
}

@media (max-width: 768px) {
  .section-landing-hero .content {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .section-landing-hero .content {
    bottom: initial;
    position: relative;
    padding-top: calc(60px + 24px);
    padding-bottom: 24px;
  }
}

.section-landing-hero .content h1 {
  display: inline-block;
  margin: 0 0 20px;
  border-bottom: 2px solid #8DCC70;
}

@media (max-width: 768px) {
  .section-landing-hero .content h1 {
    font-size: 24px;
    font-size: 24rem;
  }
}

@media (max-width: 600px) {
  .section-landing-hero .content h1 {
    padding-bottom: 12px;
  }
}

.section-landing-hero .content li {
  padding: 10px 36px;
  list-style: none;
  line-height: 1.5em;
  position: relative;
  color: #fff;
  font-weight: 500;
  margin: 0 0 0 10px;
}

@media (max-width: 600px) {
  .section-landing-hero .content li {
    padding: 6px 0px 6px 30px;
  }
}

.section-landing-hero .content li:before {
  color: #c6f0b2;
  position: absolute;
  content: "\f0a9";
  font-size: 17px;
  font-size: 17rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 600px) {
  .section-landing-hero .content li:before {
    left: -3px;
  }
}

.section-landing-hero .content li a {
  position: relative;
  color: white;
  margin: 4px;
  padding: 2px 0;
  display: inline-block;
  line-height: 1em;
}

.section-landing-hero .content li a:before {
  top: 0px;
  left: -4px;
  right: -4px;
  bottom: 0px;
  z-index: -999;
  position: absolute;
  display: block;
  border-radius: 4px;
  content: '';
  background: rgba(255, 74, 38, 0.9);
}

.section-landing-hero .content p {
  padding: 11px 0;
  position: relative;
  color: #fff;
}

.hero-logo-wrap {
  margin: 30px 0 0;
}

.hero-logo {
  width: 130px;
  height: 100px;
  display: block;
  background-size: 90px;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
}

.section-landing-content.wrap .wrap, .section-landing-content.section-testimonials-content .wrap, .section-landing-content.section-single-post .wrap, .section-landing-content.section-staff-member .wrap, .section-landing-content.wrap .section-testimonials-content, .section-landing-content.section-testimonials-content .section-testimonials-content, .section-landing-content.section-single-post .section-testimonials-content, .section-landing-content.section-staff-member .section-testimonials-content, .section-landing-content.wrap .section-single-post, .section-landing-content.section-testimonials-content .section-single-post, .section-landing-content.section-single-post .section-single-post, .section-landing-content.section-staff-member .section-single-post, .section-landing-content.wrap .section-staff-member, .section-landing-content.section-testimonials-content .section-staff-member, .section-landing-content.section-single-post .section-staff-member, .section-landing-content.section-staff-member .section-staff-member {
  z-index: 999 !important;
}

.section-landing-content {
  clear: both;
}

.section-landing-content .content {
  width: calc(60% - 40px);
}

.section-landing-content .content h1 {
  color: #008C99;
  font-size: 30px;
  font-size: 30rem;
}

@media (max-width: 768px) {
  .section-landing-content .content h1 {
    font-size: 24px;
    font-size: 24rem;
  }
}

@media (max-width: 1200px) {
  .section-landing-content .content {
    width: 100%;
    float: none;
  }
}

.section-landing-content .gform_wrapper {
  position: absolute;
  top: -120px;
  right: 40px;
  width: calc(40% - 40px);
  -webkit-box-shadow: 0 10px 40px rgba(3, 3, 3, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 40px rgba(3, 3, 3, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .section-landing-content .gform_wrapper {
    position: static;
    margin: 80px auto 0;
    top: 0;
    right: 0;
    width: 600px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 768px) {
  .section-landing-content .gform_wrapper {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .section-landing-content .gform_wrapper {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .section-landing-content .gform_wrapper .gform_title {
    font-size: 24px;
    font-size: 24rem;
  }
}

@media (max-width: 600px) {
  .section-landing-content .gform_wrapper .gform_title {
    text-align: left;
  }
}

.section-landing-content .aside {
  float: right;
  width: 40%;
}

.section-landing-features {
  padding: 100px 0;
  width: 100%;
  background: #008C99;
}

@media (max-width: 768px) {
  .section-landing-features {
    padding: 40px 0;
  }
}

.section-landing-features h2 {
  margin: 0 0 12px;
  width: 100%;
  color: #c6f0b2;
  font-size: 24px;
  font-size: 24rem;
}

.section-landing-features p {
  color: white;
}

.section-landing-features .feature-panel {
  float: left;
  width: 50%;
  color: #fff;
}

.section-landing-features .feature-panel:first-child {
  padding: 0 30px 0 0;
}

@media (max-width: 1200px) {
  .section-landing-features .feature-panel:first-child {
    padding: 0;
    margin-bottom: 40px;
  }
}

.section-landing-features .feature-panel:last-child {
  padding: 0 0 0 30px;
}

@media (max-width: 1200px) {
  .section-landing-features .feature-panel:last-child {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .section-landing-features .feature-panel {
    width: 100%;
  }
}

.section-landing-lists {
  padding: 0;
  width: 100%;
  background-attachment: fixed;
  position: relative;
  background-size: cover;
  background-position-x: center;
  background-position-y: 0;
}

@media (max-width: 768px) {
  .section-landing-lists {
    padding: 40px 0;
  }
}

.section-landing-lists:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  background: #008C99;
  opacity: 0.9;
}

.section-landing-lists .list {
  width: 50%;
  float: left;
  padding: 100px 0;
}

.section-landing-lists .list li {
  color: #fff;
  font-size: 18px;
  font-size: 18rem;
  position: relative;
  list-style: none;
  padding: 11px 0 11px 40px;
}

.section-landing-lists .list li:before {
  position: absolute;
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #8DCC70;
}

@media (max-width: 768px) {
  .section-landing-lists .list li {
    font-size: 16px;
    font-size: 16rem;
  }
}

.section-landing-lists .list p {
  color: white;
}

.section-landing-lists .list h4 {
  font-size: 18px;
  font-size: 18rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 0;
}

.section-landing-lists .list h5 {
  color: #008acb;
  margin: 30px 0 17px;
  float: left;
  width: 100%;
}

.section-landing-lists .list h3 {
  color: #c6f0b2;
}

.section-landing-lists .list a {
  color: #8DCC70;
}

.section-landing-lists .list strong {
  color: #c6f0b2;
  font-weight: 600;
}

.section-landing-lists .list:first-child {
  padding: 100px 30px 100px 0;
}

@media (max-width: 768px) {
  .section-landing-lists .list:first-child {
    width: 100%;
    padding: 0;
  }
}

.section-landing-lists .list:last-child {
  padding: 100px 0 100px 30px;
}

@media (max-width: 768px) {
  .section-landing-lists .list:last-child {
    width: 100%;
    padding: 0;
  }
}

.page-template-landing-small .section-landing-lists .list p {
  color: #fff;
}

.section-landing-bottom {
  width: 100%;
  background: #fff;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-landing-bottom {
    padding: 40px 0;
  }
}

.section-landing-bottom .wrap, .section-landing-bottom .section-testimonials-content, .section-landing-bottom .section-single-post, .section-landing-bottom .section-staff-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .section-landing-bottom .wrap, .section-landing-bottom .section-testimonials-content, .section-landing-bottom .section-single-post, .section-landing-bottom .section-staff-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section-landing-bottom .bottom-content {
  width: 60%;
  margin-right: 10%;
}

@media (max-width: 1200px) {
  .section-landing-bottom .bottom-content {
    width: calc(90% - 300px);
  }
}

@media (max-width: 768px) {
  .section-landing-bottom .bottom-content {
    width: 100%;
    margin: 0 0 30px;
  }
}

.section-landing-bottom .bottom-aside {
  width: 30%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1200px) {
  .section-landing-bottom .bottom-aside {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .section-landing-bottom .bottom-aside {
    width: 100%;
  }
}

.section-landing-bottom .bottom-aside img {
  width: 100%;
  height: auto;
}

/*********************
privacy policy
*********************/
.pp-wrap {
  position: fixed;
  background-color: #000;
  width: 400px;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  left: -400px;
  top: 0;
  -webkit-transition: left .3s ease;
  transition: left .3s ease;
}

.privacy-click .pp-wrap {
  left: 0;
  -webkit-transition: left .3s ease;
  transition: left .3s ease;
}

.privacy-policy {
  width: 80%;
  margin: 0 auto;
  padding: 70px 0 100px;
  height: 100%;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.privacy-policy p {
  color: #fff;
  font-weight: 300;
  margin: 20px 0;
  font-size: 9px;
  font-size: 9rem;
}

.privacy p {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  font-size: 13rem;
  margin: 0 0 10px;
}

.privacy p span {
  font-weight: 500;
  cursor: pointer;
}

.privacy-policy i {
  position: absolute;
  top: 76px;
  right: 12px;
  cursor: pointer;
}

.privacy-policy i:before {
  font-size: 20px;
  font-size: 20rem;
  color: #fff;
}

.privacy-policy h4 {
  color: #fff;
  position: relative;
  margin: 0 0 45px 0;
}

/*********************
 staff
 *********************/
.section-staff-list {
  color: #000;
}

.staff-member {
  width: calc((100% - 40px) / 3);
  display: block;
  float: left;
  margin: 40px 0 20px 0;
}

@media (max-width: 1200px) {
  .staff-member {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 900px) {
  .staff-member {
    width: 50%;
  }
  .staff-member:nth-of-type(2n) {
    margin: 40px 0 20px;
  }
}

@media (max-width: 640px) {
  .staff-member {
    width: calc(50% - 10px);
    height: auto;
    margin-right: 20px;
  }
  .staff-member:nth-of-type(2n) {
    margin-right: 0;
  }
}

.staff-member:last-of-type {
  margin: 40px 0 20px;
}

.staff-member .staff-img {
  width: 100px;
  height: 100px;
  display: block;
  position: relative;
  background-size: cover;
  float: left;
}

@media (max-width: 640px) {
  .staff-member .staff-img {
    width: 100%;
    padding-top: 100%;
    margin: 0 0 20px;
  }
}

.staff-member .staff-content {
  width: calc(100% - 120px);
  display: block;
  float: left;
  margin-left: 20px;
}

@media (max-width: 640px) {
  .staff-member .staff-content {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.staff-member .staff-content span {
  color: #000;
}

.staff-member .staff-name {
  font-size: 15px;
  font-size: 15rem;
  margin-bottom: 0;
}

.staff-member .staff-dep {
  margin: 0 0 10px;
  color: #747474;
  font-style: italic;
}

.staff-member .staff-content p {
  margin: 0;
  font-size: 14px;
  font-size: 14rem;
}

.staff-member .staff-content a {
  color: #000;
}

.staff-member .staff-content a.profile-link {
  padding: 10px 15px;
  margin: 10px 0 0;
  font-size: 15px;
  font-size: 15rem;
  display: block;
  width: 120px;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.staff-member .staff-content a.profile-link:hover {
  opacity: 0.8;
}

.section-staff-member .content {
  color: #000;
}

.section-staff-member .staff-contact h2 {
  font-size: 24px;
  font-size: 24rem;
  margin: 40px 0 20px;
}

.section-staff-member .staff-contact p {
  margin: 0;
  font-size: 16px;
  font-size: 16rem;
}

.section-staff-member .staff-contact p span {
  font-weight: 700;
}

.section-staff-member .staff-contact a {
  color: #000;
}

.section-staff-member .staff-profile {
  width: 30%;
  float: right;
  position: relative;
  display: block;
  margin: 0 0 0 2%;
}

/*********************
 gallery
 *********************/
.gallery-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 40px 0 0;
  width: 100%;
}

.gallery-items a {
  display: block;
  width: 180px;
  height: 150px;
  margin: 0 20px 20px 0;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-items a:hover {
  opacity: 0.9;
}

/*********************
news
*********************/
/* news page */
.news-items-list .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 40px;
}

.news-items-list .news-item {
  display: block;
  width: calc((100% - 60px) / 4);
  margin: 0 20px 40px 0;
}

.news-items-list .news-item:nth-of-type(4n+4) {
  margin: 0 0 20px;
}

.news-items-list .news-item:hover .thumb {
  opacity: 0.9;
}

.news-items-list .thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-items-list .post-details {
  color: #000;
}

.news-items-list .post-details h2 {
  margin: 10px 0 3px;
  font-size: 16px;
  font-size: 16rem;
  font-weight: 700;
  text-transform: none;
  color: #000;
  font-weight: 400;
}

.news-items-list .post-details p {
  font-size: 12px;
  font-size: 12rem;
  color: #747474;
}

/* news-slider page */
.section-news-slider .news-slider {
  margin-top: 40px;
}

.section-news-slider .news-slider a.morenews {
  width: 100%;
  display: block;
}

.section-news-slider .news-slide {
  width: 100%;
  padding: 0;
  margin: 0;
}

.section-news-slider .news-slide:after {
  content: '';
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: linear-gradient(to top, #000, transparent);
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
}

.section-news-slider .news-text {
  background-size: cover;
  background-position: center;
  height: 400px;
  padding: 40px;
  margin: 0;
}

.section-news-slider .news-text-content {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  width: calc(100% - 80px);
  color: #fff;
}

.section-news-slider .news-text-content h3 {
  font-size: 20px;
  font-size: 20rem;
  font-weight: 700;
}

.section-news-slider .news-text-content p {
  font-size: 13px;
  font-size: 13rem;
  font-weight: 400;
}

.section-news-slider .news-text-content p.slide-date {
  font-style: italic;
  opacity: 0.5;
}

/* single news post */
.single .news-date {
  color: #fff;
  bottom: 20px;
  position: absolute;
  font-size: 12px;
  font-size: 12rem;
}
/*# sourceMappingURL=style.css.map */