html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #ffffff;
  font-family: "Montserrat", 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-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-family: "Montserrat", sans-serif;
  text-align: center;
}

*:focus {
  outline: none;
}

.gen_btn {
  width: auto;
  height: auto;
  padding: 10px 35px;
  background-color: #f3d712;
  color: #525252;
  font-size: 1em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  border-radius: 4px;
  border: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.gen_btn:hover {
  background-color: #d5bb06;
}

@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 */
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.material-symbols-outlined.icon-fill {
  font-variation-settings: "FILL" 1;
}

.material-symbols-outlined.icon-thin {
  font-variation-settings: "wght" 100;
}

.material-symbols-outlined.icon-med {
  font-variation-settings: "wght" 300;
}

.material-symbols-outlined.icon-thick {
  font-variation-settings: "wght" 800;
}

/* HEADER TOP */
.header {
  width: calc(100% - 8%);
  height: auto;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #ebeaea;
  background-image: linear-gradient(#ffffff, #ebeaea);
  overflow: visible !important;
  z-index: 1001;
}

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

.header .material-symbols-outlined {
  font-size: 18px;
  line-height: 1.2em;
  color: #142e0b;
}

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

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

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

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

.is-active {
  color: #142e0b !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: 100px;
  height: auto;
  padding: 10px 0;
  display: table-cell;
  vertical-align: middle;
}

.logo svg {
  width: auto;
  height: 110px;
  display: table;
  overflow: visible;
}

@media only screen and (max-width: 767px) {
  .logo svg {
    height: 90px;
  }
}

@media only screen and (max-width: 560px) {
  .logo svg {
    height: 80px;
  }
}

.logo.sticky svg {
  display: none;
}

.logo #letter_h,
.logo #letter_h_outline {
  filter: blur(20px);
  transform: scale(5);
  transform-origin: center;
  opacity: 0;
  animation: animateLogoLetterH 1.2s ease-in-out 0s 1 forwards;
}

@keyframes animateLogoLetterH {
  0% {
    filter: blur(20px);
    transform: scale(5);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }
}

.logo #tagline {
  opacity: 0;
  transform: translateY(100%);
  animation: animateLogoTagline 1.2s ease-in-out 0.2s 1 forwards;
}

@keyframes animateLogoTagline {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.logo #badge {
  opacity: 0;
  animation: animateLogoBadge 1.2s ease-in-out 0s 1 forwards;
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

.logo_main.sticky {
  display: none;
}

.logo_sticky {
  height: 44px;
  display: none;
}

.logo_sticky.sticky {
  display: table;
}

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

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

@media only screen and (max-width: 560px) {
  .quick_links {
    height: 80px;
  }
}

.quick_links.sticky {
  height: auto;
}

.contacts {
  width: 100%;
  height: 50%;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: flex;
  align-items: center;
  justify-content: right;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.contacts.sticky {
  display: none;
}

.contact_holder {
  padding: 0;
  margin: 0 0 0 25px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

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

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

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

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

.socials i:hover {
  color: #0b1906;
}

.header_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0 0 25px;
}

.header_button .material-symbols-outlined {
  color: #ffffff;
}

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

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

.navigation_bar {
  width: 100%;
  height: 50%;
  padding: 0;
  margin: 0;
  right: -15px;
  position: relative;
  clear: both;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1080px) {
  .navigation_bar {
    right: 0;
  }
}

/* SLIDER IMAGES */
.slider {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: table;
  position: relative;
  clear: both;
  z-index: 1;
}

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

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

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

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

.slider_info {
  width: 70%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .slider_info {
    width: 80%;
  }
}

@media only screen and (max-width: 560px) {
  .slider_info {
    width: 90%;
  }
}

.slider_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 5px 0;
  position: relative;
  clear: both;
  font-size: 2.8em;
  line-height: 1em;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transform: translateY(-100%);
  animation: animateSliderTitle 0.6s ease-in-out 0s 1 forwards;
}

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

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

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

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

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

@keyframes animateSliderTitle {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 5px 0;
  position: relative;
  clear: both;
  color: #ffffff;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  line-height: 1.2em;
  opacity: 0;
  transform: translateY(100%);
  animation: animateSliderDescription 0.6s ease-in-out 0.2s 1 forwards;
}

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

@media only screen and (max-width: 767px) {
  .slider_description {
    font-size: 0.8em;
  }
}

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

@keyframes animateSliderDescription {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider_buttons {
  width: auto;
  height: auto;
  padding: 0;
  margin: 15px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  opacity: 0;
  filter: blur(15px);
  animation: animateSliderButtons 1s ease-in-out 0.2s 1 forwards;
}

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

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

.slider_buttons .material-symbols-outlined {
  font-size: 1.2em;
}

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

@media screen and (max-width: 767px) {
  .slider_buttons a,
  .slider_buttons a:visited {
    padding: 5px 12px;
    font-size: 1em;
  }
}

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

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

.slider_motif {
  width: 50%;
  height: auto;
  aspect-ratio: 2/1.2;
  padding: 0;
  margin: 0 auto;
  display: table;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  background-image: url("../admin454/uploads/site_settings/letter_h_black.webp");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0;
  animation: animateSliderMotif 1.4s ease-in-out 0s 1 forwards;
}

@media only screen and (max-width: 767px) {
  .slider_motif {
    aspect-ratio: 2/1.8;
  }
}

@media only screen and (max-width: 560px) {
  .slider_motif {
    aspect-ratio: 2/2.2;
  }
}

@keyframes animateSliderMotif {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

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

/* MAIN CONTENT */
.content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-image: url("../admin454/uploads/site_settings/main_content_watermark.webp");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 90% auto;
}

.content_outer {
  width: 1000px;
  height: auto;
  padding: 70px 0 50px 0;
  margin: 0 auto;
  position: relative;
  display: table;
  overflow: hidden;
}

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

.content_h2_header {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.6em;
  line-height: 1em;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
}

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

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

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

.content_h2_header_left {
  text-align: left;
  margin: 0;
}

.content_h2_header_center {
  text-align: center;
  margin: 0 auto;
}

.content_h2_header_padded {
  padding: 0 0 25px 0;
}

.content_h2_sub_header {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  color: #142e0b;
  line-height: 1.1em;
  font-weight: 500;
}

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

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

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

.content_h2_sub_header_left {
  text-align: left;
  margin: 0;
}

.content_h2_sub_header_center {
  text-align: center;
  margin: 0 auto;
}

.content_cover_image {
  height: auto;
  margin: 20px 0 20px 20px;
  position: relative;
  clear: none;
  float: right;
  background-color: #000000;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

@media only screen and (max-width: 767px) {
  .content_cover_image {
    width: 100%;
    margin: 20px auto;
    clear: both;
    float: none;
  }
}

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

.content_cover_image_bottom {
  display: none;
}

@media only screen and (max-width: 767px) {
  .content_cover_image_bottom {
    display: table;
  }
}

.content_cover_image_1_1 {
  width: 35%;
  padding-bottom: 35%;
}

.content_cover_image_2_1 {
  width: 35%;
  padding-bottom: 20%;
}

.content_cover_image_1_2 {
  width: 35%;
  padding-bottom: 50%;
}

@media only screen and (max-width: 1080px) {
  .content_cover_image_1_1 {
    width: 45%;
    padding-bottom: 45%;
  }

  .content_cover_image_2_1 {
    width: 45%;
    padding-bottom: 30%;
  }

  .content_cover_image_1_2 {
    width: 45%;
    padding-bottom: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .content_cover_image_1_1 {
    width: 100%;
    padding-bottom: 60%;
  }

  .content_cover_image_2_1 {
    width: 100%;
    padding-bottom: 60%;
  }

  .content_cover_image_1_2 {
    width: 100%;
    padding-bottom: 60%;
  }
}

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

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

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

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

/* ICON BOXES */
.icon_boxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 30px auto;
  position: relative;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  gap: 20px;
  text-align: center;
  justify-content: center;
}

.icon_box_holder {
  width: 100%;
  height: auto;
  flex: 1 1 calc(16.66% - 20px);
}

@media only screen and (max-width: 1080px) {
  .icon_box_holder {
    flex: 1 1 calc(33.33% - 20px);
  }
}

@media only screen and (max-width: 560px) {
  .icon_box_holder {
    flex: 1 1 calc(50% - 20px);
  }
}

@media only screen and (max-width: 300px) {
  .icon_box_holder {
    flex: 1 1 calc(100% - 20px);
  }
}

.icon_box_icon {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  color: #6b6b6b;
}

.icon_box_icon .material-symbols-outlined {
  font-size: 60px;
}

.icon_box_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  color: #6b6b6b;
}

/* 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;
  border-radius: 8px;
}

.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;
  background-color: #142e0b;
  border-radius: 5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  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 {
    min-width: 0;
    display: table;
    font-size: 1em;
    width: calc(100% - 20px - 10px);
  }
}

.pg_btn:hover {
  background-color: #0b1906;
}

.page_buttons svg {
  height: 18px;
  margin: 0;
}

.pg_btn .material-symbols-outlined {
  font-size: 1.2em;
}

/* READ MORE BOXES */
.qboxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

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

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

.qbox_link:hover {
  opacity: 0.9;
}

.qbox_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: flex;
  flex: 1 1 50%;
  flex-wrap: wrap;
  align-items: top;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.qbox_info {
  width: calc(50% - 40px);
  height: auto;
  padding: 20px 20px;
  margin: 0;
  position: relative;
  clear: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qbox_link:nth-child(1) .qbox_info,
.qbox_link:nth-child(2) .qbox_info {
  order: 1;
}

.qbox_link:nth-child(3) .qbox_info,
.qbox_link:nth-child(4) .qbox_info {
  order: 2;
}

@media only screen and (max-width: 1080px) {
  .qbox_link:nth-child(1) .qbox_info,
  .qbox_link:nth-child(3) .qbox_info {
    order: 1;
  }

  .qbox_link:nth-child(2) .qbox_info,
  .qbox_link:nth-child(4) .qbox_info {
    order: 2;
  }
}

.qbox_info_light {
  color: #ffffff;
}

.qbox_info_dark {
  color: #2a2a2a;
}

.qbox_icon {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
}

.qbox_icon .material-symbols-outlined {
  font-size: 60px;
}

@media only screen and (max-width: 560px) {
  .qbox_icon .material-symbols-outlined {
    font-size: 40px;
  }
}

@media only screen and (max-width: 440px) {
  .qbox_icon .material-symbols-outlined {
    font-size: 45px;
  }
}

.qbox_title {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.1em;
  font-weight: 500;
}

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

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

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

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

@media only screen and (max-width: 440px) {
  .qbox_description {
    display: none;
  }
}

.qbox_image {
  width: 50%;
  height: auto;
  padding-bottom: 50%;
  display: table;
  float: right;
  clear: none;
  background-color: #2a2a2a;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.qbox_link:nth-child(1) .qbox_image,
.qbox_link:nth-child(2) .qbox_image {
  order: 2;
}

.qbox_link:nth-child(3) .qbox_image,
.qbox_link:nth-child(4) .qbox_image {
  order: 1;
}

@media only screen and (max-width: 1080px) {
  .qbox_link:nth-child(1) .qbox_image,
  .qbox_link:nth-child(3) .qbox_image {
    order: 2;
  }

  .qbox_link:nth-child(2) .qbox_image,
  .qbox_link:nth-child(4) .qbox_image {
    order: 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_blocks .material-symbols-outlined {
  color: #cecece;
  font-size: 40px;
}

.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 6px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1.4em;
  font-weight: 700;
  color: #252525;
  line-height: 1em;
}

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

.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;
}

.logo_slider .slick-next,
.logo_slider .slick-prev {
  filter: invert(1);
}

/* MAP */
.mapouter {
  text-align: right;
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  overflow: hidden;
  border: 5px solid #ededed;
  border-radius: 5px;
}

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

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

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

.download_category_outer {
  width: calc(100% - 32px);
  height: auto;
  padding: 15px;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  background-color: #ffffff;
}

.download_category_name {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px 10px;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  font-size: 1.5em;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #2a2a2a;
  border-radius: 3px;
}

@media only screen and (max-width: 1080px) {
  .download_category_name {
    font-size: 1.4em;
  }
}

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

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

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

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

.dl_file_link {
  text-decoration: none;
}

.download_holder {
  width: calc(100% - 30px);
  min-height: 80px;
  padding: 15px;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #f3d712;
  border-radius: 4px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1080px) {
  .download_holder {
    min-height: 110px;
  }
}

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

.download_holder:hover {
  opacity: 0.9;
}

.download_info {
  width: 100%;
  height: auto;
  padding: 0 20px 0 0;
  display: table-cell;
  vertical-align: middle;
}

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

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

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

@media only screen and (max-width: 1080px) {
  .download_description {
    font-size: 0.8em;
  }
}

.download_icon {
  width: 30px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 30px;
  color: #ffffff;
}

@media only screen and (max-width: 1080px) {
  .download_icon {
    width: 24px;
    font-size: 24px;
  }
}

/* SPONSORS */
.sponsors {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
}

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

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

.sponsor_link {
  text-decoration: none;
}

.sponsor_holder {
  width: calc(100% - 2px);
  height: auto;
  padding-bottom: calc(100% - 2px);
  margin: 0;
  position: relative;
  border: 1px solid #cecece;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.sponsor_holder:hover {
  border: 1px solid #9b9b9b;
}

.disabled_link {
  cursor: default;
}

.sponsor_holder_float {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 0;
  margin: 0 20px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

/* ALUMNI - FILTER BAR */
.alumni_database {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.alumni_database_filter {
  width: calc(100% - 10px);
  height: auto;
  padding: 5px;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  border: 0;
  border-radius: 5px 5px 0 0;
  background-color: #2a2a2a;
}

@media only screen and (max-width: 767px) {
  .alumni_database_filter {
    margin: 10px auto;
    border-radius: 5px;
  }
}

.alumni_database_filter input[type="text"] {
  width: calc(100% / 3 - 25px);
  height: 25px;
  padding: 5px 10px;
  margin: 0 5px 0 0;
  border: 0;
  background-color: #eeeeee;
  border-radius: 3px;
  font-size: 0.9em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .alumni_database_filter input[type="text"] {
    width: calc(100% - 20px);
    margin: 0 0 5px 0;
  }
}

.alumni_database_filter input[type="text"]:hover {
  background-color: #e6e6e6;
}

.alumni_database_filter select {
  width: calc(100% / 3 - 49px);
  height: 35px;
  padding: 5px 10px;
  margin: 0 5px 0 0;
  border: 0;
  background-color: #eeeeee;
  border-radius: 3px;
  font-size: 0.9em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .alumni_database_filter select {
    width: calc(100% / 2 - 46px);
    margin: 0 5px 0 0;
  }
}

@media only screen and (max-width: 560px) {
  .alumni_database_filter select {
    width: 100%;
    margin: 0 0 5px 0;
  }
}

.alumni_database_filter select:hover {
  background-color: #e6e6e6;
}

.alumni_database_filter .alumni_filter_btn,
.alumni_database_filter .alumni_filter_reset {
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 0 5px 0 0;
  border: 0;
  background-color: #f3d712;
  border-radius: 3px;
  display: table;
  float: right;
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.alumni_database_filter .alumni_filter_reset {
  margin: 0;
}

.alumni_database_filter button:hover {
  opacity: 0.8;
}

/* ALUMNI DATABSE - LIST */
.alumni_database_table {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.alumni_database_table table {
  width: 100%;
  border-collapse: collapse;
}

.alumni_database_table th {
  background-color: #2a2a2a;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 5px 10px 5px;
  font-size: 0.8em;
  text-align: left;
}

.alumni_database_table td {
  color: #000000;
  padding: 10px 5px;
  font-size: 0.8em;
  font-weight: 500;
}

.alumni_database_table tr:nth-child(even) {
  background-color: #e7e7e7;
}

.alumni_database_table tr:nth-child(odd) {
  background-color: #f3f3f3;
}

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

.alumni_database_table a:hover,
.alumni_database_table a:visited:hover {
  color: #2a0468;
}

/* ---------- MOBILE TABLE (max 767px) ---------- */
@media screen and (max-width: 767px) {
  .alumni_database_table {
    width: 100%;
    overflow-x: hidden; /* Prevent any sideways scroll */
  }

  .alumni_database_table table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
  }

  .alumni_database_table thead {
    display: none; /* Hide table headers */
  }

  .alumni_database_table tbody,
  .alumni_database_table tr,
  .alumni_database_table td {
    display: block;
    width: 100%;
  }

  /* Each row becomes a card */
  .alumni_database_table tr {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
  }

  /* Each cell stacks vertically */
  .alumni_database_table td {
    width: calc(100% - 12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 5px 6px;
    font-size: 0.9em;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    word-break: break-word;
  }

  /* Remove last border */
  .alumni_database_table td:last-child {
    border-bottom: none;
  }

  /* Add labels before values */
  .alumni_database_table td::before {
    content: attr(data-label);
    flex-basis: 45%;
    text-align: left;
    font-weight: 600;
    color: #333;
  }

  /* The actual data (right side) */
  .alumni_database_table td a,
  .alumni_database_table td span,
  .alumni_database_table td {
    flex-basis: 55%;
    text-align: right;
  }

  /* Make links wrap instead of overflowing */
  .alumni_database_table a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
  }
}

/* ALUMNI DATABASE - PAGINATION */
.alumni_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 10px 0;
  margin: 0 auto;
  background-color: #2a2a2a;
  border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 767px) {
  .alumni_pagination {
    margin: 0 auto;
    border-radius: 5px;
  }
}

.alumni_page_btn {
  width: 38px;
  height: 38px;
  line-height: 32px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 38px;
  padding: 0;
  text-align: center;
  border: 0;
  background-color: #f3d712;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.alumni_page_btn:hover {
  opacity: 0.8;
}

.alumni_page_form {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.alumni_page_input {
  width: 60px;
  height: 38px;
  text-align: center;
  font-family: "Montserrat", serif;
  padding: 0;
  border: 0;
  font-weight: 500;
  border-radius: 5px;
}

.alumni_page_total {
  color: #c4c4c4;
  font-size: 0.9em;
  font-weight: 500;
}

/* ALUMNI - POPUP FORM */
.add-alumni-btn {
  width: auto;
  height: auto;
  padding: 10px 15px;
  margin: 15px auto;
  background-color: #2a2a2a;
  color: #fff;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}

@media only screen and (max-width: 560px) {
  .add-alumni-btn {
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    display: table;
  }
}

.add-alumni-btn:hover {
  background-color: #444;
}

.alumni_modal {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.alumni_modal_content {
  width: calc(80% - 40px);
  height: auto;
  padding: 20px;
  margin: 20px auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 5px;
}

@media only screen and (max-width: 1080px) {
  .alumni_modal_content {
    width: calc(90% - 40px);
  }
}

@media only screen and (max-width: 560px) {
  .alumni_modal_content {
    margin: 0 auto;
    width: calc(100% - 40px);
    border-radius: 0;
  }
}

.close_modal {
  position: absolute;
  top: 0;
  right: 10px;
  color: #666;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close_modal:hover {
  color: #000;
}

.alumni_modal_content h2 {
  line-height: 1em;
  font-size: 2.2em;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 20px auto;
}

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

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

.submit_alumni_btn {
  background-color: #142e0b;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

.submit_alumni_btn:hover {
  background-color: #0b1906;
}

/* CTA */
.cta {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.cta_outer {
  width: calc(100% - 10%);
  height: auto;
  padding: 40px 5%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

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

@media only screen and (max-width: 767px) {
  .cta_outer {
    width: 100%;
    padding: 40px 20px;
    display: table;
  }
}

.cta_left {
  flex: 1;
  padding-right: 40px;
}

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

.cta_title {
  font-size: 3.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

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

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

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

.cta_description {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.4em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

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

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

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

.cta_form {
  flex: 0 0 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1200px) {
  .cta_form {
    flex: 0 0 440px;
  }
}

@media only screen and (max-width: 1080px) {
  .cta_form {
    flex: 0 0 340px;
  }
}

/* Image tint overlay */
.cta_filter {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* FEATURED VIDEO SECTION */
.featured_video {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.featured_video_holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0;
  color: #ffffff;
}

.featured_video_outer {
  width: calc(100% - 10%);
  height: auto;
  padding: 0 5%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
  gap: 40px;
}

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

@media only screen and (max-width: 767px) {
  .featured_video_outer {
    display: table;
  }
}

.featured_video_filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.featured_video_info {
  flex: 1 1 45%;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .featured_video_info {
    margin: 0 auto 30px auto;
  }
}

.featured_video_title {
  font-size: 3em;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

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

.featured_video_description {
  font-size: 1em;
  line-height: 1.3em;
  font-weight: 500;
  color: #ffffff;
}

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

.featured_video_player {
  position: relative;
  width: 540px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media only screen and (max-width: 1200px) {
  .featured_video_player {
    width: 480px;
  }
}

@media only screen and (max-width: 1080px) {
  .featured_video_player {
    width: 400px;
  }
}

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

.featured_video_player:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.featured_video_player_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.featured_video_player:hover .featured_video_player_overlay {
  background: rgba(0, 0, 0, 0.65);
}

.featured_video_player_overlay .material-symbols-outlined {
  font-size: 64px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.featured_video_player:hover .material-symbols-outlined {
  transform: scale(1.15);
}

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

/* 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;
}

@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;
}

@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;
}

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

.team_members_container {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 40px auto;
  position: relative;
  clear: both;
  display: table;
  border-bottom: 2px solid #f3d712;
}

.team_members_container:last-child {
  margin: 0 auto;
}

.team_members_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 2.4em;
  line-height: 1em;
  font-weight: 700;
  color: #142e0b;
  text-transform: uppercase;
}

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

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

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

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

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

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

.team_member_holder {
  width: calc(100% - 30px);
  height: auto;
  padding: 15px;
  margin: 0;
  background-color: #efefef;
  border-radius: 5px;
  text-align: center;
}

.team_member_photo {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #000000;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

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

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

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

/* 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: 5vw;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}

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

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

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

/* INSERTS */
.inserts {
  width: calc(100% - 10%);
  height: auto;
  padding: 60px 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;
}

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

@media only screen and (max-width: 767px) {
  .inserts {
    padding: 50px 20px;
  }
}

.insert_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px auto;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-size: 3.2em;
  font-weight: 700;
  text-align: center;
  line-height: 1.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: 15px 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: 1em;
  line-height: 1em;
  font-weight: 500;
  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 #f3d712;
  color: #f3d712;
}

.insert_button .material-symbols-outlined {
  font-size: 1.2em;
}

/* 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: #e7e7e7;
}

@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: 1px solid #142e0b;
  color: #142e0b;
  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: #142e0b;
  color: #e7e7e7;
}

.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: #2a2a2a;
  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.2em;
  font-weight: 700;
  padding: 0 0 5px 0;
}

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

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

@media only screen and (max-width: 560px) {
  .footer_address_holder img {
    width: 60%;
  }
}

.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;
  line-height: 1.3em;
}

.privacy_policy {
  width: 100%;
  height: auto;
  padding: 0 0 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
  display: table;
  color: #2a2a2a;
  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: #2a2a2a;
  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: #2a2a2a;
  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: #2a2a2a;
  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: #2a2a2a;
  text-decoration: none;
}

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

.footer .material-symbols-outlined {
  font-size: 1em;
}

/* 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 */
.form_group {
  clear: both;
  display: table;
  height: auto;
  margin: 0 0 10px 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;
  display: table;
  height: auto;
  margin: 0;
  padding: 0 0 3px 0;
  position: relative;
  width: 100%;
}

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

.cta .form_label label {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9em;
}

.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"] {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Montserrat", sans-serif;
  height: 25px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 0.9em;
  font-weight: 500;
  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 - 2px);
}

@media only screen and (max-width: 767px) {
  .alumni_database .form_field input[type="text"],
  .alumni_database .form_field input[type="number"],
  .alumni_database .form_field input[type="email"] {
    height: 20px;
  }
}

.cta .form_field input[type="text"],
.cta .form_field input[type="number"],
.cta .form_field input[type="email"] {
  border-radius: 4px;
  border: 0;
  width: calc(100% - 20px);
}

.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 {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.cta .form_field input[type="text"]:hover,
.cta .form_field input[type="text"]:focus,
.cta .form_field input[type="number"]:hover,
.cta .form_field input[type="number"]:focus,
.cta .form_field input[type="email"]:hover,
.cta .form_field input[type="email"]:focus {
  border: 0;
}

.form_field select {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Montserrat", sans-serif;
  height: 47px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 0.9em;
  font-weight: 500;
  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%;
}

.form_field select:hover,
.form_field select:focus {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.form_field textarea {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Montserrat", sans-serif;
  height: 80px;
  margin: 0;
  outline: none;
  padding: 10px 10px;
  font-size: 0.9em;
  font-weight: 500;
  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 - 2px);
}

.form_field textarea:hover,
.form_field textarea:focus {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.cta .form_field textarea:hover,
.cta .form_field textarea:focus {
  border: 0;
}

.cta .form_field textarea {
  border: 0;
  border-radius: 4px;
  width: calc(100% - 20px);
}

.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: pulse 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 pulse {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}
