/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  outline: none;
  border: none;
}

html {
  box-sizing: border-box;
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img,
embed,
iframe,
object,
video {
  height: auto;
  max-width: 100%;
}

audio {
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.text-center {
  text-align: center !important;
}

.btn-link {
  background-color: var(--theme-primary);
  color: #FFFFFF;
  font-size: 20px;
  padding: 8px 16px;
  text-align: center;
}

.warning-text {
  background-color: #FFF3CE;
  border-color: #ffecb5;
  color: #664d03;
  padding: 20px;
  border-radius: 0.25rem;
}

.success-text {
  background-color: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
  padding: 20px;
  border-radius: 0.25rem;
}

body {
  --theme-font:"Open Sans", sans-serif;
  --theme-helper-font:"Frank Ruhl Libre", serif;
  --font-color:#43474B;
  --font-color-RGBA:67, 71, 75;
  --theme-primary:#0A4A6D;
  --theme-primary-RGBA:10, 74, 109;
  --theme-helper:#EFFFD2;
  --theme-lime:#BBD096;
  --text-muted:#6C757D;
}

.logo_group {
  position: absolute;
  z-index: 2000;
  width: 125px;
  top: 20px;
  right: 20px;
}

@media screen and (max-device-width: 640px) {
  .logo_group {
    display: none;
  }
}
header {
  width: 100vw;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .theme_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  gap: 10px;
}
header .theme_logo img {
  width: 132px;
  max-width: 132px;
}
header .theme_logo span {
  width: 132px;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
header nav .top_nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
header nav .top_nav a {
  font-family: var(--theme-helper-font);
  font-size: 16px;
  color: var(--theme-primary);
  font-weight: 400;
}
header nav .top_nav a.phone {
  font-weight: 700;
  font-size: 24px;
}
header nav .main_nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
header nav .main_nav a {
  font-family: var(--theme-helper-font);
  font-size: 20px;
  line-height: 30px;
  color: var(--theme-primary);
}
header nav .main_nav .dropdown {
  position: relative;
  padding-right: 22px;
  cursor: pointer;
}
header nav .main_nav .dropdown:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--theme-lime);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header nav .main_nav .dropdown .dropdown_menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  z-index: 19;
  left: 50%;
  transform: translateX(-50%);
}
header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content {
  width: 300px;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  top: 10px;
  padding: 10px 0;
  border-top: 3px solid var(--theme-primary);
}
header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--theme-primary);
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content a {
  display: block;
  padding: 5px 10px;
  font-size: 16px;
}
header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content a:hover {
  background-color: var(--theme-lime);
}
header nav .main_nav .dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
}
header .header_logo_group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 125px;
}
header .toggler {
  display: none;
}
@media screen and (max-device-width: 640px) {
  header {
    position: relative;
  }
  header .theme_logo {
    position: relative;
    z-index: 1000;
  }
  header .theme_logo img {
    width: 62px;
    max-width: 62px;
  }
  header .theme_logo span {
    display: none;
  }
  header nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    top: 0;
    right: -100%;
    background-color: white;
    z-index: 999;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 120px 20px 20px 20px;
    overflow-y: auto;
    transition: all 0.2s;
  }
  header nav .top_nav {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav .main_nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  header nav .main_nav .dropdown .dropdown_menu {
    left: 0;
    transform: none;
    position: static;
    display: none;
  }
  header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content {
    width: calc(100vw - 40px);
  }
  header nav .main_nav .dropdown .dropdown_menu .dropdown_menu_content:before {
    display: none;
  }
  header nav .main_nav .dropdown:hover .dropdown_menu {
    display: block;
  }
  header nav.push {
    right: 0;
  }
  header .header_logo_group {
    display: none;
  }
  header .toggler {
    display: block;
    position: relative;
    z-index: 1001;
    background-color: transparent;
  }
}

footer {
  width: 100vw;
  padding: 50px 0;
  border-top: 20px solid var(--theme-lime);
}
footer .footer_nav {
  display: flex;
  justify-content: space-between;
}
footer .footer_nav div span {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
  display: block;
  margin-bottom: 30px;
}
footer .footer_nav div ul li {
  padding: 5px 0;
}
footer .footer_nav div ul li a {
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
footer .footer_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 60px 0;
}
footer .footer_info .info {
  display: flex;
  align-items: center;
  width: 55%;
  gap: 20px;
}
footer .footer_info .info p {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 19px;
}
footer .footer_info .footer_contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .footer_info .footer_contact .call {
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
}
footer .footer_info .footer_contact .social_media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer_sub_nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
footer .footer_sub_nav a {
  font-weight: 400;
  font-size: 15px;
  color: var(--theme-primary);
}
footer .footer_copyrights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}
footer .footer_copyrights p, footer .footer_copyrights a {
  color: var(--text-muted);
}
@media screen and (max-device-width: 640px) {
  footer .footer_nav {
    flex-wrap: wrap;
  }
  footer .footer_nav div {
    width: 40%;
    margin-bottom: 30px;
    text-align: center;
  }
  footer .footer_nav div span {
    margin-bottom: 20px;
  }
  footer .footer_info {
    flex-direction: column;
    margin: 30px 0;
  }
  footer .footer_info .info {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  footer .footer_info .info p {
    text-align: center;
  }
  footer .footer_sub_nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  footer .footer_copyrights {
    flex-direction: column;
    gap: 20px;
  }
}

.join_our_newsletter {
  width: 100%;
  background-color: var(--theme-primary);
}
.join_our_newsletter .join_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
.join_our_newsletter .join_content h6 {
  font-weight: 300;
  font-size: 46px;
  line-height: 59px;
  color: var(--theme-helper);
  font-family: var(--theme-helper-font);
}
.join_our_newsletter .join_content .form {
  display: flex;
  align-items: center;
  gap: 5px;
}
.join_our_newsletter .join_content .form input {
  background: rgba(255, 255, 255, 0.18);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: white;
  padding: 9px 10px;
  font-family: var(--theme-font);
}
.join_our_newsletter .join_content .form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.join_our_newsletter .join_content .form .form_btn {
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  color: white;
  border: 1px solid white;
  padding: 5px 15px;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (max-device-width: 640px) {
  .join_our_newsletter .join_content {
    flex-direction: column;
  }
  .join_our_newsletter .join_content .form {
    margin-top: 20px;
  }
}

.hero {
  width: 100vw;
  position: relative;
}
.hero .hero_item {
  width: 100%;
  height: 400px;
  position: relative;
}
.hero .hero_item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero .hero_item .hero_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .hero_item .hero_content .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-weight: 700;
  font-size: 45px;
  line-height: 52px;
  font-family: var(--theme-helper-font);
  color: white;
  text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}
.hero .hero_item .hero_content .content span {
  font-family: var(--theme-helper-font);
  color: white;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 2px;
}
.hero .hero_item .hero_content .content a {
  font-family: var(--theme-font);
  color: white;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  margin-top: 20px;
}
.hero .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.hero .owl-nav button {
  width: 64px;
  height: 64px;
  padding: 0;
  margin: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.hero .owl-nav button span {
  color: white;
  font-size: 40px;
  padding: 0;
  margin: 0;
  line-height: 20px;
}
.hero .owl-nav button:hover {
  background-color: var(--theme-primary) !important;
}

.home_split_generic {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.home_split_generic .daily {
  background-color: var(--theme-helper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--theme-primary);
}
.home_split_generic .daily h2 {
  font-weight: 900;
  font-size: 34px;
  line-height: 34px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.home_split_generic .daily a {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  padding: 10px 15px;
}
.home_split_generic .join_newsletter {
  background-color: var(--theme-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: white;
}
.home_split_generic .join_newsletter h2 {
  font-weight: 900;
  font-size: 34px;
  line-height: 34px;
  color: var(--theme-helper);
  font-family: var(--theme-helper-font);
}
.home_split_generic .join_newsletter .newsletter_form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.home_split_generic .join_newsletter .newsletter_form input {
  width: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: white;
  padding: 14px 10px;
  font-family: var(--theme-font);
}
.home_split_generic .join_newsletter .newsletter_form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.home_split_generic .join_newsletter .newsletter_form a {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: white;
  border: 1px solid white;
  padding: 10px 15px;
  cursor: pointer;
}
@media screen and (max-device-width: 640px) {
  .home_split_generic {
    grid-template-columns: repeat(1, 1fr);
  }
  .home_split_generic .daily {
    padding: 30px;
    align-items: flex-start;
  }
  .home_split_generic .join_newsletter {
    padding: 30px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .home_split_generic .join_newsletter .newsletter_form {
    justify-content: flex-start;
  }
}

.assocation_mission {
  padding: 100px 0;
}
.assocation_mission .assocation_mission_content {
  display: flex;
  justify-content: space-between;
}
.assocation_mission .assocation_mission_content .content {
  width: 55%;
}
.assocation_mission .assocation_mission_content .content h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.assocation_mission .assocation_mission_content .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 35px 0;
}
.assocation_mission .assocation_mission_content .content .button_group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.assocation_mission .assocation_mission_content .content .button_group a {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 5px 10px;
}
.assocation_mission .assocation_mission_content .video {
  width: 40%;
}
.assocation_mission .assocation_mission_content .video video {
  width: 100%;
}
@media screen and (max-device-width: 640px) {
  .assocation_mission .assocation_mission_content {
    flex-direction: column;
  }
  .assocation_mission .assocation_mission_content .content {
    width: 100%;
  }
  .assocation_mission .assocation_mission_content .content .button_group a {
    font-size: 12px;
  }
  .assocation_mission .assocation_mission_content .video {
    width: 100%;
    margin-top: 30px;
  }
}

.home_posts {
  width: 100%;
}
.home_posts .home_posts_slider {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.home_posts .home_posts_slider .post_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.home_posts .home_posts_slider .post_item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.home_posts .home_posts_slider .post_item .date {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-muted);
  font-family: var(--theme-helper-font);
}
.home_posts .home_posts_slider .post_item h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.home_posts .home_posts_slider .post_item p {
  font-size: 16px;
  line-height: 24px;
}
.home_posts .home_posts_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.home_posts .home_posts_slider .owl-nav button {
  width: 64px;
  height: 64px;
  padding: 0;
  margin: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  position: absolute;
}
.home_posts .home_posts_slider .owl-nav button.owl-prev {
  left: -100px;
}
.home_posts .home_posts_slider .owl-nav button.owl-next {
  right: -100px;
}
.home_posts .home_posts_slider .owl-nav button span {
  color: var(--theme-primary);
  font-size: 40px;
  padding: 0;
  margin: 0;
  line-height: 20px;
}
.home_posts .home_posts_slider .owl-nav button:hover {
  background-color: transparent !important;
}
@media screen and (max-device-width: 640px) {
  .home_posts .home_posts_slider .owl-nav {
    display: none;
  }
}
.home_posts .previous_posts {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_posts .previous_posts a {
  margin-bottom: 40px;
  padding: 12px 25px;
  color: var(--theme-primary);
  font-size: 16px;
  line-height: 24px;
  border: 1px solid var(--theme-primary);
}

.sub_hero {
  width: 100%;
  height: 415px;
  position: relative;
}
.sub_hero img {
  width: 100%;
  height: 415px;
  object-fit: cover;
}
.sub_hero .sub_hero_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub_hero .sub_hero_content .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub_hero .sub_hero_content .content h3 {
  color: white;
  font-weight: 700;
  font-size: 72px;
  line-height: 93px;
  font-family: var(--theme-helper-font);
}
.sub_hero .sub_hero_content .content p {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: white;
}
.sub_hero .sub_hero_content .content a {
  background-color: white;
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 6px 15px;
  max-width: 140px;
  margin-top: 20px;
}

.home_grid {
  display: flex;
  padding: 50px 0;
}
.home_grid .col_left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
.home_grid .col_left img {
  width: 100%;
}
.home_grid .col_left .title {
  font-size: 32px;
  line-height: 38px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.home_grid .col_left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.home_grid .col_left a {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  font-size: 20px;
  padding: 3px 7px;
}
.home_grid .col_right {
  width: 50%;
}
.home_grid .col_right .col_right_item {
  display: flex;
  align-items: stretch;
  padding-left: 30px;
  margin-bottom: 30px;
}
.home_grid .col_right .col_right_item img {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-right: 30px;
}
.home_grid .col_right .col_right_item .item_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home_grid .col_right .col_right_item .item_content .title {
  font-size: 32px;
  line-height: 38px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.home_grid .col_right .col_right_item .item_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.home_grid .col_right .col_right_item .item_content a {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  font-size: 20px;
  padding: 3px 7px;
  max-width: 90px;
}
@media screen and (max-device-width: 640px) {
  .home_grid {
    flex-direction: column;
  }
  .home_grid .col_left {
    width: 100%;
  }
  .home_grid .col_right {
    width: 100%;
    margin-top: 30px;
  }
  .home_grid .col_right .col_right_item {
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    margin-bottom: 20px;
  }
  .home_grid .col_right .col_right_item img {
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .home_grid .col_right .col_right_item .item_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}

.subpage_heading {
  width: 100%;
  height: 250px;
  position: relative;
}
.subpage_heading img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage_heading .subpage_heading_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage_heading .subpage_heading_content h1 {
  width: auto;
  height: 250px;
  display: inline-flex;
  align-items: center;
  padding: 0 50px;
  color: white;
  font-size: 72px;
  font-weight: 400;
  font-family: var(--theme-helper-font);
  background-color: rgba(var(--theme-primary-RGBA), 0.9);
}
@media screen and (max-device-width: 640px) {
  .subpage_heading .subpage_heading_content h1 {
    width: 100%;
    font-size: 40px;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

@media screen and (max-device-width: 640px) {
  .column {
    flex: 1;
    flex-basis: 100%;
  }
  .double-column {
    flex: 2;
  }
}
.terms_frame {
  background-color: #f1f1f1;
  padding: 20px;
  margin-bottom: 30px;
}
.terms_frame .terms_content {
  background-color: white;
  width: 100%;
  height: 300px;
  overflow: auto;
  padding: 20px;
}

.contact_main h3, .contact_main h4 {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-weight: 400;
  margin-bottom: 20px;
}
.contact_main h3 {
  font-size: 32px;
}
.contact_main h4 {
  font-size: 24px;
}
.contact_main p {
  margin-bottom: 20px;
}
.contact_main .contact_top {
  padding: 50px 0;
  text-align: center;
}
.contact_main .form_main .form-label {
  color: var(--theme-primary);
  font-size: 18px;
  line-height: 40px;
}
.contact_main .form_main .form-control {
  border-radius: 4px;
  border: 1px solid #CED4DA;
  padding: 12px;
}
.contact_main .form_main .form_button {
  background: var(--gray-4, #BDBDBD);
  border-radius: 4px;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.contact_main .forms_bottom {
  background: rgba(10, 74, 109, 0.04);
  padding: 30px;
  margin-bottom: 20px;
}
.contact_main .forms_bottom .column {
  background-color: #FFFFFF;
  padding: 20px;
}

.text_block_ltr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
}
.text_block_ltr .phrase {
  width: 50%;
}
.text_block_ltr .phrase h3 {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 32px;
}
.text_block_ltr .phrase p {
  padding-top: 25px;
  line-height: 24px;
}
.text_block_ltr .media {
  width: 45%;
}
@media screen and (max-device-width: 640px) {
  .text_block_ltr {
    flex-direction: column;
    gap: 15px;
  }
  .text_block_ltr .phrase {
    width: 100%;
  }
  .text_block_ltr .media {
    width: 100%;
  }
}

.faqs {
  padding: 50px 0;
}
.faqs .faqs_title {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 30px;
}
.faqs details {
  width: 100%;
  background-color: #F7f7f7;
  padding: 0px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.faqs details summary {
  list-style: none;
  font-weight: 400;
  font-size: 24px;
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #D4DDE2;
  padding: 20px;
}
.faqs details summary:-webkit-details-marker {
  display: none;
}
.faqs details summary button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  border: 1px solid var(--theme-primary);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px;
  pointer-events: none;
}
.faqs details summary:hover {
  background-color: var(--theme-helper);
}
.faqs details p {
  padding: 20px;
}
.faqs details[open] summary button {
  background-color: var(--theme-primary);
}
.faqs details[open] summary button svg path {
  fill: white;
}
@media screen and (max-device-width: 640px) {
  .faqs details summary {
    font-size: 13px;
    line-height: 19px;
  }
  .faqs details p {
    padding-top: 20px;
    font-size: 13px;
    line-height: 19px;
  }
}

.sub_menu {
  width: 100%;
  background-color: var(--theme-primary);
}
.sub_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}
.sub_menu ul li a {
  color: white;
}
.sub_menu ul li a.active {
  background-color: white;
  color: var(--font-color);
  padding: 8px 10px;
}
@media screen and (max-device-width: 640px) {
  .sub_menu {
    display: none;
  }
}

.sub_menu_mobile {
  width: 100%;
  background-color: var(--theme-primary);
  padding: 2px;
  display: none;
  padding: 15px 15px;
  position: relative;
}
.sub_menu_mobile:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
}
.sub_menu_mobile select {
  width: 100%;
  height: 40px;
  appearance: none;
  padding-left: 10px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  position: relative;
}
@media screen and (max-device-width: 640px) {
  .sub_menu_mobile {
    display: block;
  }
}

table {
  width: 100%;
}
table th {
  background-color: #eff5e5;
  color: #355500;
}
table th, table td {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px;
}

.farms_services_content {
  padding-bottom: 30px;
  padding-top: 30px;
}

h2.stakes_subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-top: 20px;
}

.bylaws_download_section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 70px 0;
  background-color: rgba(var(--theme-primary-RGBA), 0.07);
  font-family: var(--theme-helper-font);
  font-size: 24px;
  font-weight: 400;
  color: var(--theme-primary);
  text-align: center;
}
.bylaws_download_section h2 {
  font-weight: 900;
  font-size: 32px;
}
.bylaws_download_section a {
  font-size: 20px;
  font-family: var(--theme-font);
  color: white;
  display: flex;
  align-items: center;
  background-color: var(--theme-primary);
  padding: 12px 25px;
  gap: 7px;
}
@media screen and (max-device-width: 640px) {
  .bylaws_download_section {
    padding: 70px 15px;
    font-size: 18px;
  }
}

.board_of_trustees {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
}
.board_of_trustees .phrase {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.board_of_trustees .phrase h4 {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 32px;
}
.board_of_trustees .phrase .title {
  font-family: var(--theme-helper-font);
  font-weight: 400;
  font-size: 24px;
}
.board_of_trustees .phrase span {
  display: block;
}
.board_of_trustees .media {
  width: 70%;
  position: relative;
}
.board_of_trustees .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board_of_trustees .media .media_start {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 999;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board_of_trustees .media .media_start.hide {
  display: none;
}
.board_of_trustees .media .media_pause {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 999;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board_of_trustees .media .media_pause.hide {
  display: none;
}
@media screen and (max-device-width: 640px) {
  .board_of_trustees {
    flex-direction: column;
    gap: 15px;
  }
  .board_of_trustees .phrase {
    width: 100%;
  }
  .board_of_trustees .media {
    width: 100%;
  }
}

.board_of_minutes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  width: 100%;
  padding: 50px 0;
}
.board_of_minutes h5 {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-weight: 400;
  font-size: 32px;
}
.board_of_minutes .downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.board_of_minutes .downloads .download_item {
  position: relative;
}
.board_of_minutes .downloads .download_item .download_item_content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.board_of_minutes .downloads .download_item .download_item_content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.board_of_minutes .downloads .download_item .download_item_content .month {
  font-family: var(--theme-helper-font);
  color: white;
  font-size: 48px;
  font-weight: 700;
}
.board_of_minutes .downloads .download_item .download_item_content .desc {
  color: white;
  font-size: 24px;
  font-weight: 600;
  max-width: 75%;
}
.board_of_minutes .downloads .download_item .download_item_content a {
  background-color: white;
  color: var(--theme-primary);
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-device-width: 640px) {
  .board_of_minutes .downloads {
    grid-template-columns: repeat(1, 1fr);
  }
  .board_of_minutes .downloads .download_item .download_item_content {
    gap: 15px;
  }
  .board_of_minutes .downloads .download_item .download_item_content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .board_of_minutes .downloads .download_item .download_item_content .month {
    font-family: var(--theme-helper-font);
    color: white;
    font-size: 38px;
    font-weight: 700;
  }
  .board_of_minutes .downloads .download_item .download_item_content .desc {
    color: white;
    font-size: 18px;
    font-weight: 600;
    max-width: 75%;
  }
  .board_of_minutes .downloads .download_item .download_item_content a {
    background-color: white;
    color: var(--theme-primary);
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
  }
}

.news_split_layout {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.news_split_layout .news_nav {
  width: 15%;
}
.news_split_layout .news_nav .nav_title {
  font-family: var(--theme-helper-font);
  font-size: 20px;
  margin: 30px 0 15px 0;
}
.news_split_layout .news_nav a {
  display: block;
  color: var(--theme-primary);
  margin-bottom: 15px;
  padding-left: 20px;
}
.news_split_layout .news_nav a.active {
  color: var(--font-color);
  pointer-events: none;
  opacity: 0.8;
}
.news_split_layout .news_nav .mobile_nav_selection {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.news_split_layout .news_nav .mobile_nav_selection .selector {
  width: 48%;
}
.news_split_layout .news_nav .mobile_nav_selection .selector .selection {
  height: 35px;
  border: 1px solid rgba(var(--font-color-RGBA), 0.5);
  margin-top: 10px;
}
.news_split_layout .news_nav .mobile_nav_selection .selector .selection select {
  width: 100%;
  height: 33px;
  appearance: none;
  padding-left: 10px;
}
@media screen and (max-device-width: 640px) {
  .news_split_layout .news_nav {
    width: 100%;
  }
  .news_split_layout .news_nav .desktop_nav {
    display: none;
  }
  .news_split_layout .news_nav .mobile_nav_selection {
    display: flex;
  }
}
.news_split_layout .news_content {
  width: 82%;
  padding-top: 30px;
}
.news_split_layout .news_content .news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 50px;
}
.news_split_layout .news_content .news_grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.news_split_layout .news_content .news_grid a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.3s;
}
.news_split_layout .news_content .news_grid a .news_date {
  font-size: 16;
  opacity: 0.6;
  font-family: var(--theme-helper-font);
}
.news_split_layout .news_content .news_grid a .news_title {
  font-size: 24px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
  min-height: 100px;
}
.news_split_layout .news_content .news_grid a p {
  min-height: 100px;
}
.news_split_layout .news_content .news_grid a:hover img {
  opacity: 0.7;
}
.news_split_layout .news_content .paging {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
}
.news_split_layout .news_content .paging a {
  color: var(--theme-primary);
}
.news_split_layout .news_content .paging a:first-child {
  margin-right: 20px;
}
.news_split_layout .news_content .paging a:last-child {
  margin-left: 20px;
}
.news_split_layout .news_content .paging a.dir {
  border: 1px solid var(--theme-primary);
  padding: 10px 25px;
}
.news_split_layout .news_content .paging a.disabled {
  color: var(--font-color);
  opacity: 0.6;
  border-color: rgba(var(--font-color-RGBA), 0.5);
  pointer-events: none;
}
@media screen and (max-device-width: 640px) {
  .news_split_layout .news_content {
    width: 100%;
  }
  .news_split_layout .news_content .news_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .news_split_layout .news_content .paging {
    gap: 7px;
  }
  .news_split_layout .news_content .paging a:first-child {
    margin-right: 0px;
  }
  .news_split_layout .news_content .paging a:last-child {
    margin-left: 0px;
  }
  .news_split_layout .news_content .paging a:not(.dir) {
    display: none;
  }
  .news_split_layout .news_content .paging a.dir {
    border: 1px solid var(--theme-primary);
    padding: 10px 25px;
    font-size: 12px;
  }
}
@media screen and (max-device-width: 640px) {
  .news_split_layout {
    flex-direction: column;
  }
}

.award_item {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.award_item div {
  width: 80%;
  padding-right: 30px;
  line-height: 24px;
}
.award_item div span {
  display: block;
  font-size: 32px;
  color: black;
  font-family: var(--theme-helper-font);
  margin-bottom: 20px;
}
.award_item img {
  width: 20%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-device-width: 640px) {
  .award_item {
    flex-direction: column-reverse;
  }
  .award_item div {
    width: 100%;
    padding-right: 0px;
  }
  .award_item div span {
    line-height: 34px;
  }
  .award_item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
  }
}

.award_note {
  text-align: center;
  margin: 60px 0;
}

.awards_slider {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.awards_slider .award_slider_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.awards_slider .award_slider_item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.awards_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.awards_slider .owl-nav button {
  width: 64px;
  height: 64px;
  padding: 0;
  margin: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  position: absolute;
}
.awards_slider .owl-nav button.owl-prev {
  left: -100px;
}
.awards_slider .owl-nav button.owl-next {
  right: -100px;
}
.awards_slider .owl-nav button span {
  color: var(--theme-primary);
  font-size: 40px;
  padding: 0;
  margin: 0;
  line-height: 20px;
}
.awards_slider .owl-nav button:hover {
  background-color: transparent !important;
}
@media screen and (max-device-width: 640px) {
  .awards_slider .owl-nav {
    display: none;
  }
}

.month_selection_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin: 50px 0;
}
.month_selection_grid_sub {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media screen and (max-device-width: 640px) {
  .month_selection_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.month_selection_grid a {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}
.month_selection_grid a .date_title {
  width: 100%;
  text-align: center;
  color: var(--theme-primary);
  font-size: 17px;
  font-weight: 600;
}
.month_selection_grid a .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 20px 0 10px 0;
}
.month_selection_grid a .days span {
  font-size: 12px;
  color: rgba(var(--font-color-RGBA), 0.5);
  font-weight: 600;
  padding-left: 5px;
}
.month_selection_grid a .days span:first-child, .month_selection_grid a .days span:last-child {
  color: red;
}
.month_selection_grid a .monthly_days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.month_selection_grid a .monthly_days span {
  height: 50px;
  border-top: 1px solid #E7EEF8;
  border-left: 1px solid #E7EEF8;
  padding: 5px;
  font-size: 12px;
  color: var(--theme-primary);
}
.month_selection_grid a .monthly_days span:nth-child(7n) {
  border-right: 1px solid #E7EEF8;
}
.month_selection_grid a .monthly_days span:nth-last-child(-n+7) {
  border-bottom: 1px solid #E7EEF8;
}
.month_selection_grid a:hover {
  border-color: var(--theme-lime);
}

.tracks_monthly_view_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 60px;
}
.tracks_monthly_view_header a {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.tracks_monthly_view_header h1 {
  font-family: var(--theme-helper-font);
  color: var(--theme-primary);
  font-size: 32px;
}
@media screen and (max-device-width: 640px) {
  .tracks_monthly_view_header h1 {
    font-size: 22px;
  }
}

.monthly_tracks .monthly_track_item {
  padding: 30px 0;
  border-bottom: 2px solid var(--theme-lime);
}
.monthly_tracks .monthly_track_item:nth-child(even) {
  background-color: #F8F9FA;
}
.monthly_tracks .monthly_track_item .item_block {
  display: flex;
  justify-content: space-between;
}
.monthly_tracks .monthly_track_item .item_block .content_block {
  width: 80%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.monthly_tracks .monthly_track_item .item_block .content_block .track_title {
  font-size: 28px;
  color: var(--theme-primary);
  font-family: var(--theme-helper-font);
}
.monthly_tracks .monthly_track_item .item_block .content_block .open {
  background-color: #28A745;
  color: white;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 30px;
  display: inline-block;
  max-width: max-content;
}
.monthly_tracks .monthly_track_item .item_block .content_block .allday {
  background-color: #FFC107;
  color: black;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 30px;
  display: inline-block;
  max-width: max-content;
}
.monthly_tracks .monthly_track_item .item_block .content_block .data {
  font-family: var(--theme-helper-font);
}
.monthly_tracks .monthly_track_item .item_block .media_block {
  width: 20%;
}
@media screen and (max-device-width: 640px) {
  .monthly_tracks .monthly_track_item .item_block {
    flex-direction: column;
  }
  .monthly_tracks .monthly_track_item .item_block .content_block {
    width: 100%;
  }
  .monthly_tracks .monthly_track_item .item_block .media_block {
    width: 100%;
    margin-top: 20px;
  }
}

body {
  font-family: var(--theme-font);
  color: var(--font-color);
}

a {
  text-decoration: none;
  color: var(--font-color);
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media (min-width: 325px) {
  .container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: scroll;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    overflow-x: scroll;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    overflow-x: scroll;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (max-device-width: 640px) {
  .container-fluid {
    overflow-x: scroll;
  }
}

/*# sourceMappingURL=app.css.map */
