html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #ffffff;
  font-family: "Exo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
}

@media screen and (max-width: 300px) {
  body {
    width: 300px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 30px 0 10px 0;
  color: #525252;
  font-family: "Abril Fatface", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 2.8em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-color: #cccccc;
}

table tr th {
  background-color: #525252;
  border-color: #adadad;
  color: #ffffff;
}

table tr td {
  border-color: #adadad;
}

img {
  border: 0;
}

hr {
  background-color: #adadad;
  border: 0;
  height: 1px;
}

iframe {
  border: 0;
}

.hide_meta {
  display: none;
}

.top_notice {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0 auto;
  position: relative;
  display: none;
  clear: both;
}

.jump_anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.red_notice {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 10px auto;
  position: relative;
  display: table;
  clear: both;
  background-color: red;
  color: #ffffff;
  font-weight: 500;
  font-family: "Exo", sans-serif;
  text-align: center;
  border-radius: 4px;
}

*:focus {
  outline: none;
}

.gen_btn {
  width: auto;
  height: auto;
  padding: 12px 35px 10px 35px;
  background-color: #5c9826;
  color: #ffffff;
  font-size: 1.1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 0;
  font-family: 'Exo', sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.gen_btn:hover {
  background-color: #49781f;
}

@media only screen and (max-width: 440px) {
  .gen_btn {
    width: 100%;
  }
}

.gen_btn_right {
  float: right;
}

.gen_btn.disabled {
  background-color: #ccc;
  /* Grey out the button */
  cursor: not-allowed;
  /* Show a not-allowed cursor */
}

/* HEADER TOP */
.header {
  width: calc(100% - 10%);
  height: auto;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #f5f5f5;
  z-index: 1001;
}

@media screen and (max-width: 1080px) {
  .header {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.header.sticky+.content {
  padding-top: 150px;
}

@media screen and (max-width: 1080px) {
  .header.sticky+.content {
    padding-top: 140px;
  }
}

@media screen and (max-width: 767px) {
  .header.sticky+.content {
    padding-top: 130px;
  }
}

@media screen and (max-width: 560px) {
  .header.sticky+.content {
    padding-top: 110px;
  }
}

.is-active {
  color: #49781f !important;
}

@media screen and (max-width: 1080px) {
  .is-active {
    color: #c4c4c4 !important;
  }
}

.link_no_click {
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  .link_no_click {
    pointer-events: all;
  }
}

.logo {
  width: 120px;
  height: auto;
  padding: 5px 0;
  display: table-cell;
  white-space: nowrap;
  vertical-align: middle;
}

.logo_main {
  width: auto;
  height: 140px;
  display: table;
}

@media screen and (max-width: 1080px) {
  .logo_main {
    height: 130px;
  }
}

@media screen and (max-width: 767px) {
  .logo_main {
    height: 120px;
  }
}

@media screen and (max-width: 560px) {
  .logo_main {
    height: 100px;
  }
}

.logo_main.sticky {
  height: 80px;
}

.quick_links {
  width: calc(100% - 120px);
  height: 140px;
  padding: 0 0 0 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .quick_links {
    height: auto;
  }
}

.quick_links.sticky {
  height: auto;
}

.contacts {
  width: 100%;
  height: calc(50% - 1px);
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #525252;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

@media screen and (max-width: 767px) {
  .contacts {
    display: none;
  }
}

.contacts.sticky {
  display: none;
}

.contact_holder {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0 0 30px;
  display: table;
}

.contact_holder a,
.contact_holder a:visited {
  color: #525252;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact_holder a:hover,
.contact_holder a:visited:hover {
  color: #000000;
}

.contact_holder i {
  color: #5c9826;
}

.header_button {
  width: auto;
  height: auto;
}

.header_button a,
.header_button a:visited {
  text-decoration: none;
  padding: 10px 20px;
  background-color: #5c9826;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.header_button a:hover,
.header_button a:visited:hover {
  background-color: #49781f;
  color: #ffffff;
}

.header_button i {
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .socials {
    display: none;
  }
}

.socials i {
  margin: 0 2px;
  transition: all 0.3s ease-in-out;
}

.socials i:hover {
  color: #49781f;
}

.navigation_bar {
  width: 100%;
  height: 50%;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}

/* SLIDER IMAGES */
.slider {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: table;
  position: relative;
  clear: both;
  z-index: 1;
  overflow-x: hidden;
  border-bottom: 5px solid #5c9826;
}

.slider_holder {
  width: 100%;
  height: 100%;
  padding: 0;
  background: no-repeat scroll;
  position: relative;
  display: table-cell;
  clear: both;
  background-size: cover !important;
}

.bxslider {
  width: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .bxslider {
    padding-bottom: 70% !important;
  }
}

@media screen and (max-width: 560px) {
  .bxslider {
    padding-bottom: 80% !important;
  }
}

.slider_info {
  width: 70%;
  height: auto;
  padding: 0;
  margin: 30px;
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .slider_info {
    width: calc(70% - 40px);
    margin: 20px;
  }
}

@media screen and (max-width: 560px) {
  .slider_info {
    width: calc(80% - 40px);
  }
}

.slider_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  font-size: 2.8em;
  line-height: 1.0em;
  font-family: 'Abril Fatface', serif;
  text-transform: uppercase;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .slider_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 1080px) {
  .slider_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 767px) {
  .slider_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 560px) {
  .slider_title {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 440px) {
  .slider_title {
    font-size: 1.4em;
  }
}

.slider_info_left .slider_title {
  text-align: left;
  opacity: 0.0;
  transform: translateX(-100%);
  animation: animateSliderTitleLeft 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderTitleLeft {
  0% {
    opacity: 0.0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

.slider_info_right .slider_title {
  text-align: right;
  opacity: 0.0;
  transform: translateX(100%);
  animation: animateSliderTitleRight 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderTitleRight {
  0% {
    opacity: 0.0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

.slider_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  color: #ffffff;
  font-size: 1.0em;
  line-height: 1.3em;
}

@media screen and (max-width: 1080px) {
  .slider_description {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {
  .slider_description {
    display: none;
  }
}

.slider_info_left .slider_description {
  text-align: left;
  opacity: 0.0;
  transform: translateX(-100%);
  animation: animateSliderDescriptionLeft 1s ease-in-out 0.4s 1 forwards;
}

@keyframes animateSliderDescriptionLeft {
  0% {
    opacity: 0.0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

.slider_info_right .slider_description {
  text-align: right;
  opacity: 0.0;
  transform: translateX(100%);
  animation: animateSliderDescriptionRight 1s ease-in-out 0.4s 1 forwards;
}

@keyframes animateSliderDescriptionRight {
  0% {
    opacity: 0.0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

.slider_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 5x 0 0 0;
  position: relative;
  clear: both;
  display: table;
  opacity: 0.0;
  filter: blur(15px);
  animation: animateSliderButton 1s ease-in-out 0.5s 1 forwards;
}

@keyframes animateSliderButton {
  0% {
    opacity: 0.0;
    filter: blur(15px);
  }

  100% {
    opacity: 1.0;
    filter: blur(0);
  }
}

.slider_info_left .slider_button {
  float: left;
}

.slider_info_right .slider_button {
  float: right;
}

.slider_button a,
.slider_button a:visited {
  width: auto;
  height: auto;
  padding: 8px 20px;
  font-size: 1.0em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  color: #5c9826;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #5c9826;
  transition: all 0.3s ease-in-out;
  display: table;
}

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

  .slider_button a,
  .slider_button a:visited {
    padding: 5px 12px;
    font-size: 1.0em;
  }
}

.slider_button a:hover,
.slider_button a:visited:hover {
  background-color: rgba(0, 0, 0, 1.0);
}

.slider_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* MAIN CONTENT */
.content {
  width: 1000px;
  height: auto;
  padding: 70px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
}

@media screen and (max-width: 1080px) {
  .content {
    width: calc(100% - 40px);
    padding: 70px 20px;
  }
}

@media screen and (max-width: 767px) {
  .content {
    padding: 60px 20px;
  }
}

.content_h2_header {
  height: auto;
  padding: 0 0 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.8em;
  line-height: 1.0em;
  color: #252525;
  font-family: 'Abril Fatface', serif;
  text-transform: uppercase;
}

@media screen and (max-width: 1080px) {
  .content_h2_header {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 767px) {
  .content_h2_header {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 560px) {
  .content_h2_header {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 440px) {
  .content_h2_header {
    font-size: 1.9em;
  }
}

.content_h2_header_left {
  width: auto;
  text-align: left;
}

.content_h2_header_center {
  width: 100%;
  text-align: center;
}

.content_h2_sub_header {
  height: auto;
  padding: 0 0 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.0em;
  line-height: 1.0em;
  color: #1d5500;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 1080px) {
  .content_h2_sub_header {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  .content_h2_sub_header {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 560px) {
  .content_h2_sub_header {
    font-size: 1.5em;
  }
}

.content_h2_sub_header_left {
  width: auto;
  text-align: left;
}

.content_h2_sub_header_center {
  width: 100%;
  text-align: center;
}

.content p {
  text-align: justify;
  line-height: 1.4em;
}

@media screen and (max-width: 560px) {
  .content p {
    text-align: left;
  }
}

.content img {
  max-width: 100%;
  height: auto !important;
}

.content ul li,
.content ol li {
  line-height: 1.3em;
  padding: 0;
  margin: 3px 0;
}

/* READ MORE BOXES */
.qboxes {
  width: 100%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 560px) {
  .qboxes {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}

.qbox_link {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  display: table;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 560px) {
  .qbox_link {
    width: calc(100% - 32px);
    padding: 10px 15px;
    margin: 5px auto;
    border: 1px solid #525252;
    border-radius: 5px;
  }
}

.qbox_link:hover {
  filter: brightness(0.5);
}

.qbox_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  display: table;
}

.qbox_image {
  width: 100%;
  height: auto;
  padding-bottom: 40%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media screen and (max-width: 767px) {
  .qbox_image {
    padding-bottom: 50%;
  }
}


.qbox_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.1em;
  font-family: 'Abril Fatface', serif;
  color: #525252;
}

@media screen and (max-width: 1080px) {
  .qbox_title {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 767px) {
  .qbox_title {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 560px) {
  .qbox_title {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 440px) {
  .qbox_title {
    font-size: 1.4em;
  }
}

/* ICON BOXES */
.icon_boxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .icon_boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}

.icon_box_link {
  text-decoration: none;
}

.icon_box_link:nth-child(1) .icon_box_holder,
.icon_box_link:nth-child(5) .icon_box_holder,
.icon_box_link:nth-child(9) .icon_box_holder {
  background-color: #1d5500;
}

.icon_box_link:nth-child(2) .icon_box_holder,
.icon_box_link:nth-child(6) .icon_box_holder,
.icon_box_link:nth-child(10) .icon_box_holder {
  background-color: #5c9826;
}

.icon_box_link:nth-child(3) .icon_box_holder,
.icon_box_link:nth-child(7) .icon_box_holder,
.icon_box_link:nth-child(11) .icon_box_holder {
  background-color: #042100;
}

.icon_box_link:nth-child(4) .icon_box_holder,
.icon_box_link:nth-child(8) .icon_box_holder,
.icon_box_link:nth-child(12) .icon_box_holder {
  background-color: #214111;
}

.icon_box_holder {
  width: 100%;
  height: auto;
  padding-bottom: 40%;
  margin: 0 auto;
  position: relative;
  display: table;
}

@media screen and (max-width: 1200px) {
  .icon_box_holder {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 1080px) {
  .icon_box_holder {
    padding-bottom: 60%;
  }
}

@media screen and (max-width: 767px) {
  .icon_box_holder {
    padding-bottom: 40%;
  }
}

@media screen and (max-width: 560px) {
  .icon_box_holder {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 440px) {
  .icon_box_holder {
    padding-bottom: 70%;
  }
}

.icon_box_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto;
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 40px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.icon_box_holder:hover .icon_box_icon {
  transform: scale(1.2, 1.2);
}

.icon_box_link:nth-child(1) .icon_box_icon,
.icon_box_link:nth-child(5) .icon_box_icon,
.icon_box_link:nth-child(9) .icon_box_icon {
  color: #1d5500;
  border: 5px solid #1d5500;
}

.icon_box_link:nth-child(2) .icon_box_icon,
.icon_box_link:nth-child(6) .icon_box_icon,
.icon_box_link:nth-child(10) .icon_box_icon {
  color: #5c9826;
  border: 5px solid #5c9826;
}

.icon_box_link:nth-child(3) .icon_box_icon,
.icon_box_link:nth-child(7) .icon_box_icon,
.icon_box_link:nth-child(11) .icon_box_icon {
  color: #042100;
  border: 5px solid #042100;
}

.icon_box_link:nth-child(4) .icon_box_icon,
.icon_box_link:nth-child(8) .icon_box_icon,
.icon_box_link:nth-child(12) .icon_box_icon {
  color: #214111;
  border: 5px solid #214111;
}

.icon_box_info {
  width: calc(100% - 60px);
  height: auto;
  padding: 50px 30px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.icon_box_title {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 3.4em;
  line-height: 1.0em;
  color: #ffffff;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 1200px) {
  .icon_box_title {
    font-size: 3.0em;
  }
}

@media screen and (max-width: 1080px) {
  .icon_box_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 560px) {
  .icon_box_title {
    font-size: 2.2em;
  }
}

.icon_box_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.3em;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .icon_box_description {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 1080px) {
  .icon_box_description {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {
  .icon_box_description {
    font-size: 0.8em;
  }
}

/* CALL TO ACTION CTA */
.cta {
  width: 100%;
  height: auto;
  padding: 60px 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-color: #000000;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 767px) {
  .cta {
    width: calc(100% - 40px);
    padding: 50px 20px;
  }
}

.cta_outer {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  z-index: 2;
}

.cta_floral {
  width: 110px;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .cta_floral {
    display: none;
  }
}

.cta_floral img {
  width: 100%;
  height: auto;
  display: table;
  margin: 0 auto;
  text-align: center;
}

.cta_left {
  width: 50%;
  height: auto;
  padding: 0 80px 0 5%;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 1080px) {
  .cta_left {
    padding: 0 80px 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .cta_left {
    width: 100%;
    padding: 0 0 40px 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.cta_title {
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 3.2em;
  line-height: 1.1em;
  color: #ffffff;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 1200px) {
  .cta_title {
    font-size: 3.0em;
  }
}

@media screen and (max-width: 1080px) {
  .cta_title {
    font-size: 2.7em;
  }
}

@media screen and (max-width: 767px) {
  .cta_title {
    font-size: 2.6em;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .cta_title {
    font-size: 2.4em;
  }
}

.cta_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.3em;
  color: #ffffff;
}

@media screen and (max-width: 1080px) {
  .cta_description {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 767px) {
  .cta_description {
    font-size: 1.0em;
    text-align: center;
  }
}

.cta_right {
  width: 50%;
  height: auto;
  padding: 0 5% 0 80px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 1080px) {
  .cta_right {
    padding: 0 20px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .cta_right {
    width: 100%;
    padding: 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.cta_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* CONTACT DETAILS BLOCKS */
.contact_blocks {
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.contact_blocks_left {
  width: calc(50% - 10px);
  height: auto;
  padding: 0 10px 0 0;
  margin: 0;
  position: relative;
  clear: none;
  float: left;
}

@media screen and (max-width: 560px) {
  .contact_blocks_left {
    width: 100%;
    clear: both;
    float: none;
    padding: 0;
  }
}

.contact_blocks_right {
  width: calc(50% - 10px);
  height: auto;
  padding: 0 0 0 10px;
  margin: 0;
  position: relative;
  clear: none;
  float: left;
}

@media screen and (max-width: 560px) {
  .contact_blocks_right {
    width: 100%;
    clear: both;
    float: none;
    padding: 0;
  }
}

.contact_block_holder {
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  margin: 10px 5px;
  position: relative;
  clear: none;
  float: left;
  display: table;
}

.contact_block_icon {
  width: 40px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.contact_block_icon i {
  font-size: 40px;
  color: #1d5500;
}

.contact_block_info {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 0 0 10px;
  display: table-cell;
  vertical-align: middle;
}

.contact_block_title {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1.4em;
  color: #252525;
  line-height: 1em;
  font-family: 'Abril Fatface', serif;
}

.contact_block_description {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1em;
  font-weight: 500;
  color: #525252;
  line-height: 1em;
}

.contact_block_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1em;
  font-weight: 400;
  color: #000000;
}

.contact_block_content a,
.contact_block_content a:visited {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.contact_block_content a:hover,
.contact_block_content a:visited:hover {
  color: #000000;
  text-decoration: underline;
}

/* LOGO SLIDER */
.logo_slider {
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  position: relative;
  background-color: #ffffff;
  display: table;
  clear: both;
  overflow: hidden;
}

/* MAP */
.mapouter {
  text-align: right;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  overflow: hidden;
}

.gmap_canvas {
  background: none !important;
  overflow: hidden;
  width: 100%;
}

#gmap_canvas {
  padding: 0;
  margin: 0;
  display: table;
}

/* INSERTS */
.inserts {
  width: calc(100% - 10%);
  height: auto;
  padding: 50px 5%;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

.insert_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-family: "Abril Fatface", sans-serif;
  font-size: 3.2em;
  font-weight: 400;
  text-align: center;
  line-height: 1em;
}

@media screen and (max-width: 1200px) {
  .insert_header {
    font-size: 3em;
  }
}

@media screen and (max-width: 1080px) {
  .insert_header {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 767px) {
  .insert_header {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 560px) {
  .insert_header {
    font-size: 2em;
  }
}

@media screen and (max-width: 440px) {
  .insert_header {
    font-size: 1.8em;
  }
}

.insert_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto;
  position: relative;
  display: table;
  clear: both;
  color: #ffffff;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.4em;
}

@media screen and (max-width: 1080px) {
  .insert_description {
    font-size: 1em;
  }
}

@media screen and (max-width: 560px) {
  .insert_description {
    font-size: 0.9em;
  }
}

.insert_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  display: table;
  clear: both;
}

.insert_button a,
.insert_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 25px;
  margin: 0 auto;
  position: relative;
  display: table;
  clear: both;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

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

  .insert_button a,
  .insert_button a:visited {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

.insert_button a:hover,
.insert_button a:visited:hover {
  background-color: rgba(0, 0, 0, 1);
  border: 2px solid #5c9826;
  color: #5c9826;
}

/* PAGE IMAGES */
.page_images {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0;
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 5px;
  grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
  .page_images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 440px) {
  .page_images {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_image_link {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-decoration: none;
  display: block;
  z-index: 2;
}

.page_images_container {
  width: 100%;
  height: auto;
  padding-bottom: 60%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.page_images_container_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.page_images_container_2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 440px) {
  .page_images_container_2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_images_container_3 {
  grid-column: span 3;
  grid-row: span 3;
}

@media screen and (max-width: 767px) {
  .page_images_container_3 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 440px) {
  .page_images_container_3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_image_title {
  width: calc(100% - 20px);
  height: auto;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  display: table;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  color: #ffffff;
  z-index: 2;
}

.page_image_link:hover .page_image_title {
  display: none;
}

.page_image_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.page_image_link:hover .page_image_filter {
  background-color: rgba(0, 0, 0, 0);
}

/* PAGE BUTTONS */
.page_buttons {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
}

.pg_btn {
  min-width: 220px;
  height: auto;
  padding: 10px;
  margin: 10px 5px;
  position: relative;
  display: inline-block;
  text-align: center;
  border: 0;
  color: #ffffff;
  background-color: #5c9826;
  text-decoration: none;
  font-size: 1.0em;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .pg_btn {
    min-width: 180px;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {
  .pg_btn {
    font-size: 1.0em;
    min-width: 0;
    display: table;
    width: calc(100% - 20px - 10px);
  }
}

.pg_btn:hover {
  background-color: #49781f;
}

/* MEMBERSHIP APPLICATION FORM */
.apply {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.apply_btn a,
.apply_btn a:visited {
  width: auto;
  height: auto;
  padding: 10px 25px;
  margin: 10px 0;
  position: relative;
  clear: both;
  background-color: #5c9826;
  color: #ffffff;
  text-align: center;
  font-size: 1.0em;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  display: table;
  float: right;
}

@media screen and (max-width: 440px) {
.apply_btn a,
  .apply_btn a:visited {
    width: calc(100% - 20px);
    padding: 14px 10px;
    font-size: 0.9em;
  }
}

.apply_btn a:hover,
.apply_btn a:visited:hover {
  background-color: #49781f;
}

/* REVIEWS */
.reviews {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 560px) {
  .reviews {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.review_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #5c9826;
}

.review_holder .fa-quote-left {
  font-size: 50px;
  color: #ffffff;
  position: absolute;
  top: -15px;
  left: -2px;
  filter: blur(2px);
  transition: all 0.3s ease-in-out;
}

.review_holder:hover .fa-quote-left {
  top: 0;
  left: 6px;
  filter: blur(0px);
}

.review_holder .fa-quote-right {
  font-size: 50px;
  color: #ffffff;
  position: absolute;
  bottom: -15px;
  right: -2px;
  filter: blur(2px);
  transition: all 0.3s ease-in-out;
}

.review_holder:hover .fa-quote-right {
  bottom: 0;
  right: 6px;
  filter: blur(0px);
}

.review_float {
  width: calc(100% - 60px);
  height: auto;
  padding: 0 30px;
  margin: 55px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  color: #ffffff;
}

.review_text {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.3em;
  font-style: italic;
}

.review_names {
  width: 100%;
  height: auto;
  padding: 5px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  font-weight: 600;
}

/* COURSES PAGE */
.course_page {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.course_page_header {
  width: 100%;
  height: auto;
  padding-bottom: 40%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #252525;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1080px) {
  .course_page_header {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 560px) {
  .course_page_header {
    padding-bottom: 60%;
  }
}

.course_page_name {
  width: calc(100% - 60px);
  height: auto;
  padding: 0 30px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 3.2em;
  line-height: 1.0em;
  color: #ffffff;
  text-align: center;
  font-family: 'Abril Fatface', serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1080px) {
  .course_page_name {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 767px) {
  .course_page_name {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 560px) {
  .course_page_name {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 440px) {
  .course_page_name {
    font-size: 1.5em;
  }
}

.course_page_endorsed {
  width: 120px;
  height: 120px;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 2;
  transform: rotate(30deg);
  background-color: #86cf45;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  .course_page_endorsed {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
    font-size: 0.8em;
  }
}

@media screen and (max-width: 767px) {
  .course_page_endorsed {
    width: 90px;
    height: 90px;
    top: -25px;
    right: -15px;
    font-size: 0.7em;
  }
}

.course_page_endorsed_float {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.course_page_info {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 40px 0 0 0;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 1080px) {
  .course_page_info {
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}

.course_page_left {
  width: calc(100% - 340px);
  height: auto;
  padding: 0 40px 0 0;
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 1080px) {
  .course_page_left {
    width: 100%;
    padding: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    order: 2;
    position: relative;
    clear: both;
  }
}

.course_page_section {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 20px 0;
  position: relative;
  clear: both;
  display: table;
}

.course_page_section_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.2em;
  line-height: 1.0em;
  color: #1d5500;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 1080px) {
  .course_page_section_header {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 767px) {
  .course_page_section_header {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 560px) {
  .course_page_section_header {
    font-size: 1.6em;
  }
}

.course_page_section_sub_header {
  width: 100%;
  height: auto;
  padding: 0 0 15px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  line-height: 1.0em;
  text-align: center;
  color: #1d5500;
  font-family: 'Abril Fatface', serif;
}

.course_page_section_details {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

.course_page_right {
  width: 300px;
  height: auto;
  padding: 20px;
  display: table-cell;
  vertical-align: top;
  background-color: #efefef;
}

@media screen and (max-width: 1080px) {
  .course_page_right {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    order: 1;
    position: relative;
    clear: both;
  }
}

.course_page_price_tag {
  width: calc(100% - 20px);
  height: auto;
  padding: 8px 10px;
  margin: 0 0 5px 0;
  background-color: #5c9826;
  color: #ffffff;
  text-align: center;
  font-size: 1.1em;
}

.square-bullets {
  list-style: none;
  padding-left: 0;
}

.square-bullets li {
  position: relative;
  margin: 6px 0 !important;
  padding-left: 1.5em !important;
  line-height: 1.3em !important;
}

.square-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1em;
  height: 1em;
  background-color: #6fb630;
  /* Bullet colour */
}

.course_page_requirements {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0 0 0;
  position: relative;
  clear: both;
  display: table;
}

.course_page_requirements_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.4em;
  text-align: center;
  line-height: 1.0em;
  text-transform: uppercase;
  color: #1d5500;
  font-family: 'Abril Fatface', serif;
}

.course_page_save_amount {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 20px 0 0 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #042100;
  color: #ffffff;
  font-size: 0.9em;
  text-align: center;
}

.course_page_form {
  width: calc(100% - 30px);
  height: auto;
  padding: 20px 10px 10px 10px;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #e0ebd7;
}

/* **************************** */

/* CONTENT BOXES */
.content_boxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
}

.content_box_holder {
  width: calc(100% - 30px - 2px);
  height: auto;
  padding: 15px;
  margin: 10px auto;
  position: relative;
  clear: both;
  display: table;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.content_box_photo {
  width: 260px;
  height: 260px;
  padding: 0;
  margin: 0;
  position: relative;
  clear: none;
  float: left;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover !important;
}

@media screen and (max-width: 767px) {
  .content_box_photo {
    width: 230px;
    height: 230px;
  }
}

@media screen and (max-width: 560px) {
  .content_box_photo {
    display: none;
  }
}

.content_box_photo_top {
  display: block;
}

.content_box_photo_bottom {
  display: none;
}

@media screen and (max-width: 560px) {
  .content_box_photo_bottom {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 50%;
    margin: 10px auto 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .content_box_photo_top {
    display: none;
  }
}

.content_box_info {
  width: calc(100% - 25px - 260px);
  height: 260px;
  padding: 0 10px 0 15px;
  margin: 0;
  position: relative;
  clear: none;
  float: right;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (max-width: 767px) {
  .content_box_info {
    width: calc(100% - 25px - 230px);
    height: 230px;
  }
}

@media screen and (max-width: 560px) {
  .content_box_info {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
  }
}

/* width */
.content_box_info::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.content_box_info::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.content_box_info::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.content_box_info::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content_box_info_full {
  width: calc(100% - 10px);
  height: auto;
  overflow: auto;
  padding: 0 10px 0 0;
}

.content_box_main_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 5px 0;
  position: relative;
  clear: both;
  font-size: 1.6em;
  text-transform: uppercase;
  color: #646464;
  line-height: 1.1em;
  font-family: "Abril Fatface", sans-serif;
}

@media screen and (max-width: 1080px) {
  .content_box_main_title {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_main_title {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 560px) {
  .content_box_main_title {
    font-size: 1.3em;
    text-align: center;
  }
}

.content_box_sub_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 5px 0;
  position: relative;
  clear: both;
  font-size: 1.2em;
  color: #6d6d6d;
  line-height: 1.1em;
  font-family: "Abril Fatface", sans-serif;
}

@media screen and (max-width: 1080px) {
  .content_box_sub_title {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_sub_title {
    font-size: 1em;
  }
}

@media screen and (max-width: 560px) {
  .content_box_sub_title {
    font-size: 1em;
    text-align: center;
  }
}

.content_box_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
}

.content_box_content p {
  text-align: justify;
  line-height: 1.4em;
  font-size: 0.9em;
  padding: 0;
  margin: 0 0 5px 0;
}

/* PHOTO GALLERY */
.portfolio {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.album_gallery,
.photo_gallery {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 10px;
  grid-auto-flow: dense;
}

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

  .album_gallery,
  .photo_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .album_gallery,
  .photo_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.album_header_name {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px 10px;
  margin: 0 auto 15px auto;
  position: relative;
  clear: both;
  color: #ffffff;
  background-color: #2b2b2b;
  text-align: center;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
  line-height: 1em;
}

@media screen and (max-width: 767px) {
  .album_header_name {
    font-size: 1em;
  }
}

.album_header_name a,
.album_header_name a:visited {
  color: #ffffff;
  text-decoration: none;
}

.album_header_name a:hover,
.album_header_name a:visited:hover {
  color: #c4c4c4;
  text-decoration: none;
}

.album_holder {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  position: relative;
  background-attachment: scroll;
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-size: cover !important;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.album_holder_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.album_holder_2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 560px) {
  .album_holder_2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.album_holder_3 {
  grid-column: span 3;
  grid-row: span 3;
}

@media screen and (max-width: 767px) {
  .album_holder_3 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 560px) {
  .album_holder_3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.album_title {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  height: 20px;
  left: 0;
  margin: 0 auto;
  padding: 5px 10px;
  font-size: 0.9em;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  width: calc(100% - 20px);
}

.album_holder:hover .album_title {
  height: calc(100% - 10px);
}

.album_icon {
  color: #fab22c;
  display: none;
  font-size: 50px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  -webkit-transition: opacity 0.6s ease-in-out;
  width: 100%;
  z-index: 3;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.album_holder:hover .album_icon {
  display: table;
  opacity: 1;
}

.album_button {
  clear: both;
  display: table;
  height: auto;
  margin: 0 auto;
  padding: 40px 0 20px 0;
  position: relative;
  text-align: center;
  width: auto;
}

.album_button a,
.album_button a:visited {
  border: 1px solid #afb374;
  color: #afb374;
  font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
  font-size: 1.2em;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.album_button a:hover,
.album_button a:visited:hover {
  border: 1px solid #4e502e;
  color: #4e502e;
}

/* VIDEO GALLERY */
.video_gallery {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ffffff;
  clear: both;
}

@media screen and (max-width: 1080px) {
  .video_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .video_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.video_gallery_holder {
  width: 100%;
  height: auto;
  padding-bottom: 56%;
  margin: 0;
  position: relative;
  display: table;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.video_icon {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.video_icon i {
  text-align: center;
  font-size: 5.0vw;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1080px) {
  .video_icon i {
    font-size: 7.0vw;
  }
}

@media screen and (max-width: 560px) {
  .video_icon i {
    font-size: 14.0vw;
  }
}

.video_gallery_holder:hover i {
  color: #ff0000;
}

/* MEMBERS LIST */
.members_list {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.member_list_outer {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .member_list_outer {
    grid-template-columns: repeat(1, 1fr);
  }
}

.member_list_link {
  text-decoration: none;
}

.member_list_holder {
  width: calc(100% - 24px);
  height: auto;
  padding: 10px;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.member_list_holder:hover {
  background-color: #e9e9e9;
}

.member_list_names {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  line-height: 1.0em;
  font-weight: 600;
  color: #1d5500;
}

@media screen and (max-width: 440px) {
  .member_list_names {
    font-size: 0.9em;
  }
}

.member_list_location {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  line-height: 1.2em;
  font-weight: 400;
  color: #252525;
}

@media screen and (max-width: 440px) {
  .member_list_location {
    font-size: 0.9em;
  }
}

.member_list_category {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  line-height: 1.2em;
  font-weight: 400;
  color: #525252;
}

@media screen and (max-width: 440px) {
  .member_list_category {
    font-size: 0.9em;
  }
}

/* MEMBER LIST - FILTER BAR */
.filter_form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #5c9826;
  border-radius: 4px;
}

.filter_form input[type="text"],
.filter_form select {
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  border-radius: 4px;
  min-width: 180px;
  flex: 1 1 180px;
  background-color: #fff;
  box-sizing: border-box;
  font-family: 'Exo', sans-serif;
}

.filter_form button[type="submit"] {
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 500;
  background-color: #042100;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Exo', sans-serif;
}

.filter_form button[type="submit"]:hover {
  background-color: #021400;
}

.filter_form .reset-button {
  padding: 8px 14px;
  font-size: 14px;
  background-color: #6c757d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.filter_form .reset-button:hover {
  background-color: #5a6268;
}

/* === Mobile Responsive Styles === */
@media (max-width: 600px) {
  .filter_form {
    flex-direction: column;
    gap: 10px;
  }

  .filter_form input[type="text"],
  .filter_form select,
  .filter_form button[type="submit"],
  .filter_form .reset-button {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* MEMBER POPUP */
.member_popup {
  width: calc(90% - 20px);
  height: auto;
  padding: 10px;
  margin: 20px auto 0 auto;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  clear: both;
  background-color: #ffffff;
  border-radius: 5px;
  display: none;
  z-index: 2001;
}

@media screen and (max-width: 1080px) {
  .member_popup {
    width: calc(94% - 40px);
  }
}

.member_popup_close_btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2002;
  background-color: #252525;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.member_popup_close_btn:hover {
  transform: rotate(180deg);
}

.member_popup_outer {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.member_popup_left {
  width: 50%;
  height: auto;
  padding: 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .member_popup_left {
    width: 100%;
    padding: 20px;
    display: table;
    position: relative;
    clear: both;
  }
}

.member_popup_tag {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.3em;
  font-weight: 500;
  color: #525252;
}

@media screen and (max-width: 1080px) {
  .member_popup_tag {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 560px) {
  .member_popup_tag {
    font-size: 1.0em;
  }
}

.member_popup_name {
  color: #1d5500;
  font-weight: 700;
}

.member_popup_right {
  width: 50%;
  height: auto;
  padding: 20px;
  display: table-cell;
  vertical-align: middle;
  background-color: #efefef;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .member_popup_right {
    width: calc(100% - 40px);
    padding: 20px;
    display: table;
    position: relative;
    clear: both;
  }
}

.member_popup_contact {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.3em;
  font-weight: 500;
  text-align: right;
}

@media screen and (max-width: 1080px) {
  .member_popup_contact {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 767px) {
  .member_popup_contact {
    text-align: left;
    font-size: 1.0em;
  }
}

.member_popup_contact a,
.member_popup_contact a:visited {
  color: #3c276e;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.member_popup_contact a:hover,
.member_popup_contact a:visited:hover {
  color: #271849;
}

.member_popup_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.fa-show-mobile {
  opacity: 0.0;
}

@media screen and (max-width: 767px) {
  .fa-show-mobile {
    opacity: 1.0;
  }
}

.fa-hide-mobile {
  opacity: 1.0;
}

@media screen and (max-width: 767px) {
  .fa-hide-mobile {
    opacity: 0.0;
  }
}

/* BREADCRUMBS */
.breadcrumbs {
  width: calc(100% - 34px);
  height: auto;
  padding: 14px 15px;
  margin: 0 auto 20px auto;
  position: relative;
  clear: both;
  display: table;
  border: 2px solid #e9e9e9;
  border-radius: 5px;
  font-size: 1.4em;
  line-height: 1.0em;
  font-weight: 500;
  color: #525252;
}

@media screen and (max-width: 1080px) {
  .breadcrumbs {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 14px 15px 12px 15px;
    font-size: 1.1em;
  }
}

.breadcrumbs a,
.breadcrumbs a:visited {
  color: #525252;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.breadcrumbs a:hover,
.breadcrumbs a:visited:hover {
  color: #252525;
  text-decoration: underline;
}

/* NEWS - LIST */
.news_list {
  width: 100%;
  height: auto;
  padding: 20px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news_holder {
  width: calc(100% - 24px);
  height: auto;
  padding: 10px;
  margin: 0;
  position: relative;
  display: table;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.news_holder:hover {
  background-color: #e9e9e9;
}

.news_cover_image {
  width: 35%;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  .news_cover_image {
    width: 100%;
    display: table;
    margin: 0 0 10px 0;
    position: relative;
    clear: both;
  }
}

.news_cover_image_float {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #252525;
}

@media screen and (max-width: 560px) {
  .news_cover_image_float {
    padding-bottom: 60%;
  }
}

.news_publish_date {
  width: auto;
  height: auto;
  padding: 8px 10px 5px 10px;
  margin: 0;
  position: absolute;
  top: 10px;
  left: -11px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 0.9em;
  line-height: 1.0em;
  font-weight: 600;
}

.news_info {
  width: 65%;
  height: auto;
  padding: 0 0 0 10px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  .news_info {
    width: 100%;
    padding: 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.news_title {
  width: 100%;
  height: auto;
  padding: 0 0 8px 0;
  margin: 0;
  position: relative;
  clear: both;
  font-size: 1.4em;
  line-height: 1.2em;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 560px) {
  .news_title {
    font-size: 1.6em;
    text-align: center;
  }
}

@media screen and (max-width: 440px) {
  .news_title {
    font-size: 1.4em;
  }
}

.news_summary {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.3em;
  font-weight: 500;
  color: #525252;
}

@media screen and (max-width: 560px) {
  .news_summary {
    text-align: center;
  }
}

.news_button {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 560px) {
  .news_button {
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
}

.news_button a,
.news_button a:visited {
  width: auto;
  height: auto;
  padding: 5px 20px 4px 20px;
  background-color: #5c9826;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.0em;
  display: table;
  transition: all 0.3s ease-in-out;
}

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

  .news_button a,
  .news_button a:visited {
    padding: 8px 20px 7px 20px;
    font-size: 1.0em;
  }
}

.news_button a:hover,
.news_button a:visited:hover {
  background-color: #49781f;
}

/* NEWS - PAGE */
.news_page {
  width: 100%;
  height: auto;
  padding: 20px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.news_page_header {
  width: 100%;
  height: auto;
  padding-bottom: 50%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #252525;
  border-radius: 5px;
}

@media screen and (max-width: 560px) {
  .news_page_header {
    padding-bottom: 60%;
  }
}

.news_page_publish_date {
  width: auto;
  height: auto;
  padding: 10px 10px 7px 10px;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.0em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .news_page_publish_date {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 560px) {
  .news_page_publish_date {
    font-size: 0.9em;
  }
}

.news_page_button {
  width: auto;
  height: auto;
  padding: 20px 0 0 0;
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  clear: both;
  display: table;
}

.news_page_button a,
.news_page_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 25px;
  margin: 0 auto;
  position: relative;
  display: table;
  font-size: 1.0em;
  border: 2px solid #ffffff;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #5c9826;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

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

  .news_page_button a,
  .news_page_button a:visited {
    padding: 10px 10px;
    font-size: 0.9em;
  }
}

.news_page_button a:hover,
.news_page_button a:visited:hover {
  background-color: #49781f;
}

.news_page_info {
  width: 100%;
  height: auto;
  padding: 30px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.news_page_title {
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 2.4em;
  line-height: 1.1em;
  font-family: 'Abril Fatface', serif;
}

@media screen and (max-width: 1080px) {
  .news_page_title {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 767px) {
  .news_page_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .news_page_title {
    font-size: 1.8em;
  }
}

.news_page_summary {
  width: calc(100% - 30px);
  height: auto;
  padding: 15px;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #e9e9e9;
  color: #525252;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4em;
  font-style: italic;
}

@media screen and (max-width: 1080px) {
  .news_page_summary {
    font-size: 1.0em;
  }
}

.news_page_summary i {
  color: #5c9826;
}

.news_page_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 4px;
  font-family: Arial, sans-serif;
}

.pagination a {
  padding: 6px 11px;
  text-decoration: none;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s;
}

@media screen and (max-width: 560px) {
  .pagination a {
    padding: 5px 10px;
    font-size: 0.9em;
    transition: background-color 0.2s, border-color 0.2s;
  }
}

.pagination a:hover {
  background-color: #f0f0f0;
  border-color: #888;
}

.pagination a.active {
  background-color: #5c9826;
  border-color: #5c9826;
  color: #fff;
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}

.pagination a.disabled {
  background-color: #f9f9f9;
  border-color: #ddd;
  color: #bbb;
  cursor: not-allowed;
  pointer-events: none;
}

/* FOOTER */
.footer {
  width: calc(100% - 10%);
  height: auto;
  padding-top: 60px;
  padding-right: 5%;
  padding-left: 5%;
  margin: 10px auto 0 auto;
  position: relative;
  display: table;
  clear: both;
  overflow: hidden;
  background-color: #f5f5f5;
  border-top: 5px solid #5c9826;
}

@media screen and (max-width: 1080px) {
  .footer {
    width: calc(100% - 40px);
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer_nowapp {
  padding: 60px 5% !important;
}

@media screen and (max-width: 1080px) {
  .footer_nowapp {
    padding: 60px 20px !important;
  }
}

.footer_socials {
  display: table;
  height: auto;
  margin: 0 auto;
  padding: 0 0 30px 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  font-family: "Font Awesome 5 Pro", sans-serif;
}

.footer_socials i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0 2px;
  border: 2px solid #5c9826;
  color: #5c9826;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .footer_socials i {
    width: 30px;
    height: 30px;
    margin: 0 1px;
    line-height: 30px;
    font-size: 14px;
  }
}

.footer_socials i:hover {
  background-color: #5c9826;
  color: #ffffff;
}

.footer_socials a {
  text-decoration: none;
}

.footer_addresses {
  width: 100%;
  height: auto;
  padding: 0 0 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

@media only screen and (max-width: 767px) {
  .footer_addresses {
    padding: 0;
  }
}

.footer_address_holder {
  width: 50%;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  color: #525252;
  font-size: 1em;
  line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
  .footer_address_holder {
    width: 100%;
    display: table;
    padding: 0 0 10px 0;
    position: relative;
    clear: both;
    font-size: 0.9em;
    text-align: center;
  }
}

.footer_address_header {
  font-size: 1.4em;
  font-weight: 500;
  padding: 0 0 6px 0;
  font-family: "Abril Fatface", serif;
}

.footer_address_holder img {
  width: auto;
  height: 200px;
  display: table;
  text-align: right;
  float: right;
}

@media only screen and (max-width: 767px) {
  .footer_address_holder img {
    width: 60%;
    height: auto;
    padding: 0 0 20px 0;
    margin: 0 auto;
    display: table;
    text-align: center;
    float: none;
  }
}

.footer_address_info {
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-weight: 400;
  font-size: 1em;
}

.privacy_policy {
  width: 100%;
  height: auto;
  padding: 0 0 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
  display: table;
  color: #525252;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1em;
}

@media screen and (max-width: 560px) {
  .privacy_policy {
    font-size: 1em;
  }
}

.privacy_policy a,
.privacy_policy a:visited {
  color: #525252;
  text-decoration: none;
  padding: 0 15px;
  transition: all 0.3s ease-in-out;
}

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

  .privacy_policy a,
  .privacy_policy a:visited {
    width: 100%;
    padding: 5px 0;
    clear: both;
    display: table;
  }
}

.privacy_policy a:hover,
.privacy_policy a:visited:hover {
  color: #000000;
}

.credentials {
  clear: both;
  color: #525252;
  display: table;
  font-size: 0.9em;
  font-weight: 500;
  height: auto;
  margin: 0 auto;
  padding: 0 0 5px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.credits {
  clear: both;
  color: #525252;
  display: table;
  font-size: 0.9em;
  font-weight: 500;
  height: auto;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.credits a,
.credits a:visited {
  color: #525252;
  text-decoration: none;
}

.credits a:hover,
.credits a:visited:hover {
  color: #000000;
  text-decoration: underline;
}

/* WHATSAPP BUTTON */
.whatsapp_button {
  width: auto;
  padding: 0;
  margin: 0;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-image: url("../images/wa_bg_filter.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 1005;
}

.whatsapp_button i {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.whatsapp_popup {
  width: auto;
  white-space: nowrap;
  height: auto;
  padding: 5px 10px;
  margin: 0 0 5px 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 5;
  background-color: #ffffff;
  border: 2px solid #525252;
  border-radius: 6px 6px 0 6px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9em;
  color: #525252;
  opacity: 0;
  animation: animateWhatsappPopup 1.5s ease-in-out 5s 1 forwards;
}

@keyframes animateWhatsappPopup {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.whatsapp_link:hover i {
  transform: scale(1.1, 1.1);
}

/* FORM STYLING */
fieldset {
  width: calc(100% - 34px);
  height: auto;
  padding: 15px;
  margin: 0 auto 20px auto;
  border: 2px solid #c4c4c4;
}

.apply fieldset {
  display: none;
}

.apply fieldset.active {
  display: block;
}

legend {
  width: auto;
  height: auto;
  padding: 5px 10px;
  background-color: #ffffff;
  font-size: 1.8em;
  color: #1d5500;
  font-family: 'Abril Fatface', serif;
}

.cta input::placeholder,
.cta textarea::placeholder {
  color: #525252;
  opacity: 1;
}

.form_group {
  clear: both;
  display: table;
  height: auto;
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_full {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_left {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 0;
  padding: 0;
  position: relative;
  width: 49%;
}

@media screen and (max-width: 560px) {
  .form_group_left {
    clear: both;
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}

.form_group_right {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: 49%;
}

@media screen and (max-width: 560px) {
  .form_group_right {
    clear: both;
    float: none;
    margin: 0;
    width: 100%;
  }
}

.form_group_1_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 0;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_1_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.form_group_2_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 2%);
}

@media screen and (max-width: 560px) {
  .form_group_2_3 {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
  }
}

.form_group_3_3 {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_3_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.form_label {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0 0 2px 0;
  position: relative;
  width: 100%;
  display: none;
}

.apply .form_label,
.course_page .form_label {
  display: table;
}

.form_label label {
  color: #4d4d4d;
  font-family: "Exo", sans-serif;
  font-size: 1em;
  font-weight: 600;
}

.form_field {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_field input[type="text"],
.form_field input[type="number"],
.form_field input[type="email"],
.form_field input[type="date"] {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0;
  font-family: "Exo", sans-serif;
  height: 25px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 1.0em;
  color: #000000;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 20px);
}

.apply .form_field input[type="text"],
.apply .form_field input[type="number"],
.apply .form_field input[type="email"],
.apply .form_field input[type="date"],
.course_page .form_field input[type="text"],
.course_page .form_field input[type="number"],
.course_page .form_field input[type="email"],
.course_page .form_field input[type="date"] {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #c4c4c4;
  width: calc(100% - 22px);
}

.apply .form_field input[type="text"]:hover,
.apply .form_field input[type="text"]:focus,
.apply .form_field input[type="number"]:hover,
.apply .form_field input[type="number"]:focus,
.apply .form_field input[type="email"]:hover,
.apply .form_field input[type="email"]:focus,
.apply .form_field input[type="date"]:hover,
.apply .form_field input[type="date"]:focus,
.course_page .form_field input[type="text"]:hover,
.course_page .form_field input[type="text"]:focus,
.course_page .form_field input[type="number"]:hover,
.course_page .form_field input[type="number"]:focus,
.course_page .form_field input[type="email"]:hover,
.course_page .form_field input[type="email"]:focus,
.course_page .form_field input[type="date"]:hover,
.course_page .form_field input[type="date"]:focus{
  background-color: #efefef;
}

.form_field input[type="text"]:hover,
.form_field input[type="text"]:focus,
.form_field input[type="number"]:hover,
.form_field input[type="number"]:focus,
.form_field input[type="email"]:hover,
.form_field input[type="email"]:focus,
.form_field input[type="date"]:hover,
.form_field input[type="date"]:focus {
  background-color: rgba(255, 255, 255, 1.0);
}

.form_field select {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0;
  font-family: "Exo", sans-serif;
  height: 47px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 1.0em;
  color: #000000;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: 100%;
}

.apply .form_field select,
.course_page .form_field select {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #c4c4c4;
}

.form_field select:hover,
.form_field select:focus {
  background-color: rgba(0, 0, 0, 1.0);
}

.apply .form_field select:hover,
.apply .form_field select:focus,
.course_page .form_field select:hover,
.course_page .form_field select:focus {
  background-color: #efefef;
}

.form_field textarea {
  background-color: rgba(255, 255, 255, 0.8);
  border: 0;
  font-family: "Exo", sans-serif;
  height: 100px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 1.0em;
  color: #000000;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 20px);
}

.apply .form_field textarea,
.course_page .form_field textarea {
  background-color: #ffffff;
  height: 60px;
  color: #000000;
  width: calc(100% - 22px);
  border: 1px solid #c4c4c4;
}

.form_field textarea:hover,
.form_field textarea:focus {
  background-color: rgba(255, 255, 255, 1.0);
}

.apply .form_field textarea:hover,
.apply .form_field textarea:focus,
.course_page .form_field textarea:hover,
.course_page .form_field textarea:focus {
  background-color: #efefef;
}

#category {
  height: 190px !important;
}

.form_oneliner_label {
  display: table-cell;
  height: auto;
  padding: 0 2% 0 0;
  vertical-align: middle;
  width: 48%;
}

.form_oneliner_field {
  display: table-cell;
  height: auto;
  padding: 0 0 0 2%;
  vertical-align: middle;
  width: 48%;
}

.form_note {
  clear: both;
  color: #525252;
  display: table;
  font-size: 0.9em;
  height: auto;
  margin: 2px 0 0 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.red_asterisk {
  color: red;
  font-size: 0.8em;
  vertical-align: super;
}

.red_asterisk:before {
  color: red;
  content: "\f069";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 0.6em;
  vertical-align: super;
}

.hfield {
  display: none !important;
}

/* ADMIN DIV TOOLTIPS */
.admin-div:hover {
  filter: grayscale(100%);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
}

.admin-div:hover::before {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 50000;
}

.admin-div:hover::before {
  opacity: 1;
}

.admin-tooltip {
  width: calc(100% - 20px);
  height: auto;
  padding: 5px 10px;
  background-color: #00000050;
  color: #ffffff;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  z-index: 50001;
}

/* PRELOADER */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 180px;
  height: auto;
  animation: rotater 1.2s infinite ease-in-out;
}

@media screen and (max-width: 1080px) {
  #preloader img {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  #preloader img {
    width: 140px;
  }
}

@keyframes rotater {
  0% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}