/*/ Layout /*/
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "CodecPro";
  src: url("../font/Codec-Pro-News.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "CodecPro", monospace;
  background-color: #002847;
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-size: 109px;
  font-weight: 500;
}

h2 {
  font-size: 51px;
  line-height: 1;
  font-weight: 900;
}

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

.custom-hero-container {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 84vh;
  overflow: hidden;
}

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

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  color: #002847;
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

ol li {
  list-style-type: disc;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.non-clickable {
  pointer-events: none;
  cursor: default;
}

.burger-trigger {
  height: 42px;
  width: 42px;
  display: none;
}
.burger-trigger span {
  width: 28px;
  height: 2px;
  background-color: #002847;
  transition-duration: 0.3s;
  border-radius: 999px;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active {
  display: none;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 8.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 7.5px;
}

strong {
  color: #FFFFFF;
  font-weight: 900;
}

.fa {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
}

.button-container {
  margin-top: 32px;
}

.theme-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  padding: 8px 22px 6px;
  transition: 0.2s ease-in-out;
  font-family: "CodecPro", monospace;
  border: 2px solid #002847;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  text-decoration: none !important;
}
.theme-button:hover {
  color: #FFFFFF;
}
.theme-button.primary {
  background-color: #FDC300;
  color: #002847;
}
.theme-button.primary.blue {
  color: #002847;
}
.theme-button.primary::after {
  content: "";
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button.primary:hover {
  transform: translateY(2px);
}
.theme-button.primary-blue {
  background-color: #002847;
  color: #FFFFFF;
  border: 2px solid #002847;
}
.theme-button.primary-blue::after {
  content: "";
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button.primary-blue:hover {
  transform: translateY(2px);
}
.theme-button.secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #002847;
}
.theme-button.secondary.yellow {
  border: 2px solid #FDC300;
}
.theme-button.secondary.yellow::after {
  content: "";
  background-color: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.2, 0.2);
  transform-origin: center;
  opacity: 0;
  transition: 0.2s transform cubic-bezier(0.77, 0, 0.18, 1), 0.2s background-color cubic-bezier(0.77, 0, 0.18, 1), 0.2s opacity cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform, opacity;
  z-index: -1;
  background-image: linear-gradient(#FDC300 0px, transparent 0px), linear-gradient(90deg, #FDC300 0px, transparent 0px), linear-gradient(#FDC300 0px, transparent 1px), linear-gradient(90deg, #FDC300 0px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}
.theme-button.secondary.yellow:hover::after {
  transform: scale(1, 1);
  background-color: rgba(229, 229, 247, 0);
  opacity: 0.8;
}
.theme-button.secondary.yellow:hover {
  transform: translateY(2px);
}
.theme-button.secondary::after {
  content: "";
  background-color: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.2, 0.2);
  transform-origin: center;
  opacity: 0;
  transition: 0.2s transform cubic-bezier(0.77, 0, 0.18, 1), 0.2s background-color cubic-bezier(0.77, 0, 0.18, 1), 0.2s opacity cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform, opacity;
  z-index: -1;
  background-image: linear-gradient(#002847 0px, transparent 0px), linear-gradient(90deg, #002847 0px, transparent 0px), linear-gradient(#002847 0px, transparent 1px), linear-gradient(90deg, #002847 0px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}
.theme-button.secondary:hover::after {
  transform: scale(1, 1);
  background-color: rgba(229, 229, 247, 0);
  opacity: 0.8;
}
.theme-button.secondary:hover {
  transform: translateY(2px);
}
.theme-button.secondary-black {
  background-color: none;
  color: #002847;
  border: 2px solid #002847;
}
.theme-button.secondary-black::after {
  content: "";
  background-color: #002847;
  display: block;
  height: 100%;
  width: 100%;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.lightbox .lb-image {
  border: none;
}

.theme-wrapper {
  padding: 75px 0;
}

.theme-wrapper.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1), transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.theme-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.reverse {
  flex-direction: row-reverse;
}

.theme-loader {
  display: flex;
  justify-content: center;
  width: 100%;
}
.theme-loader button.wpgb-button.wpgb-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  outline: none !important;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.1s ease-in-out;
}
.theme-loader button.wpgb-button.wpgb-load-more::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f110" !important;
  font-size: 28px;
  animation: spin 1.5s linear infinite;
  color: #002847;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .theme-button {
    padding: 8px 16px;
  }
  .burger-trigger {
    display: flex;
    background-color: #FDC300;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
}
/*/ Blocks /*/
.theme-header {
  border-bottom: 4px solid #FDC300;
}
.theme-header .header-desktop, .theme-header .header-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-header .header-mobile {
  display: none;
}
.theme-header-wrapper.left {
  float: right;
}
.theme-header-wrapper.right {
  float: left;
}
.theme-header-wrapper .menu-main-menu-container.right ul {
  justify-content: flex-end;
}
.theme-header-wrapper .menu-main-menu-container.right ul li.menu-item-has-children:hover > .sub-menu {
  display: flex;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}
.theme-header-wrapper .menu-main-menu-container.right ul li .sub-menu a {
  color: #334739;
  font-weight: 400;
}
.theme-header-wrapper .menu-main-menu-container.right ul li .sub-menu a:hover {
  text-decoration: underline;
}
.theme-header-wrapper .menu-main-menu-container ul {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 32px 0px;
}
.theme-header-wrapper .menu-main-menu-container ul li {
  position: relative;
}
.theme-header-wrapper .menu-main-menu-container ul li.menu-item-has-children:hover > .sub-menu {
  display: flex;
  z-index: 999;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: 36px;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu {
  display: none;
  position: absolute;
  background: #FDC300;
  padding: 20px 24px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu a {
  color: #002847;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu li > a {
  font-weight: 700;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu li .sub-menu {
  display: block !important;
  position: relative;
  box-shadow: none;
  padding: 0;
  min-width: unset !important;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu li .sub-menu li {
  margin-top: 8px;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu li .sub-menu li a {
  color: #334739;
  font-weight: 400;
}
.theme-header-wrapper .menu-main-menu-container ul li .sub-menu li .sub-menu li a:hover {
  text-decoration: underline;
}
.theme-header-wrapper .menu-main-menu-container ul li.menu-item-has-children:hover a i {
  transform: scaleY(-1);
}
.theme-header-wrapper .menu-main-menu-container ul li.current_page_item {
  font-weight: 700;
}
.theme-header-wrapper .menu-main-menu-container ul li.current_page_item a {
  -webkit-text-decoration: underline #FDC300 2px;
          text-decoration: underline #FDC300 2px;
  text-underline-offset: 6px;
}
.theme-header-wrapper .menu-main-menu-container ul li a {
  color: #FFFFFF;
}
.theme-header-wrapper .menu-main-menu-container ul li a i {
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease-in-out;
}
.theme-header-logo {
  position: absolute;
  z-index: 10;
}
.theme-header-logo img {
  position: relative;
  top: -32px;
  max-height: 119px;
  right: 0px;
  transform: translateX(25%);
}
.theme-header-mobile-logo img {
  max-height: 80px;
}

.mobile-menu-overlay {
  display: none;
}

.mobile-menu-overlay {
  position: absolute;
  top: 39px;
  right: 20px;
  width: 42px;
  height: 42px;
  background-color: #FDC300;
  border-radius: 8px;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  max-width: 200px;
}
.mobile-menu-overlay.active {
  width: 280px;
  height: auto;
  max-width: 300px;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0.2s;
}
.mobile-menu-overlay.active .mobile-menu-content {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation .mobile-navbar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-navigation .mobile-navbar-menu li.current-menu-item {
  font-weight: 700;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu {
  display: none;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu li > a {
  font-weight: 700;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu .sub-menu {
  display: block !important;
  position: relative;
  box-shadow: none;
  padding: 0;
  min-width: unset !important;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu .sub-menu li > a {
  font-weight: 700;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu .sub-menu li a {
  color: #334739;
  font-weight: 400;
}
.mobile-navigation .mobile-navbar-menu li.menu-item-has-children .sub-menu .sub-menu li a:hover {
  text-decoration: underline;
}
.mobile-navigation .mobile-navbar-menu li a {
  color: #002847;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.mobile-navigation .mobile-navbar-menu li a:hover {
  color: rgba(0, 40, 71, 0.7);
}

.burger-trigger {
  cursor: pointer;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}
.burger-trigger span {
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-trigger.active span:nth-child(1) {
  transform: translate(0px, 10px) rotate(45deg);
  width: 36px;
}
.burger-trigger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-trigger.active span:nth-child(3) {
  width: 36px;
  transform: translate(0px, -10px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .theme-header-logo img {
    transform: translateX(25%);
  }
  .theme-header-wrapper.left {
    float: unset;
  }
  .theme-header-wrapper.right {
    float: unset;
  }
}
@media screen and (max-width: 992px) {
  .theme-header-wrapper .menu-main-menu-container ul {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .theme-header {
    border-bottom: none;
  }
  .theme-header .header-desktop {
    display: none;
  }
  .theme-header .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: transparent;
  }
  .theme-header-mobile-logo img {
    height: 80px;
    width: 80px;
  }
  .mobile-menu-overlay {
    display: block;
  }
  .mobile-menu-overlay.active {
    width: calc(100vw - 40px);
    max-width: 168px;
  }
}
.theme-footer {
  background-color: #FDC300;
  padding: 50px 0;
  top: 0 !important;
}
.theme-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-footer-logo img {
  max-height: 119px;
}
.theme-footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}
.theme-footer-socials i {
  background-color: #002847;
  padding: 6px;
  border-radius: 999px;
  color: white;
  font-size: 18px;
}
.theme-footer-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.theme-footer-menu h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #002847;
}
.theme-footer-menu .double-menu {
  display: flex;
  gap: 24px;
}
.theme-footer-menu ul li a {
  color: #002847;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}
.theme-footer-menu ul li a i {
  display: none;
}
.theme-footer-menu ul li:not(:last-child) {
  margin-bottom: 4px;
}
.theme-footer-menu p {
  color: #002847;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
}
.theme-footer-menu p a {
  color: #002847;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
}
.theme-footer-menu .sub-menu {
  display: none;
}

.theme-footer-bottom {
  padding: 12px 0px;
  top: 0 !important;
}
.theme-footer-bottom .copyright,
.theme-footer-bottom .madeby {
  color: #FFFFFF;
}
.theme-footer-bottom .copyright a,
.theme-footer-bottom .madeby a {
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .theme-footer .mobile-center {
    display: flex;
    justify-content: center;
  }
  .theme-footer-logo {
    margin-bottom: 32px;
  }
  .theme-footer-logo img {
    max-height: 119px;
    height: 119px;
    width: 127px;
  }
  .theme-footer-menu {
    gap: 40px;
  }
  .theme-footer-menu .double-menu {
    flex-direction: column;
    gap: 0;
  }
}
.modal-dialog {
  max-width: 100vh;
}
.modal-dialog .modal-content {
  background-color: #002847 !important;
  color: white !important;
}
.modal-dialog .modal-content .modal-header button {
  border: none;
}

.theme-archive-news .filters {
  display: flex;
  color: #FFFFFF;
  gap: 58px;
  margin-bottom: 20px;
}
.theme-archive-news .filters .wpgb-facet {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.theme-archive-news .filters .wpgb-facet select {
  color: #FFFFFF !important;
  font-weight: 300 !important;
}
.theme-archive-news .filters .wpgb-facet select option {
  color: #000000 !important;
}
.theme-archive-news .filters .wpgb-facet-1 {
  width: 77%;
}
.theme-archive-news .filters .wpgb-facet-1 fieldset {
  width: 100%;
  margin-bottom: 0;
}
.theme-archive-news .filters .wpgb-facet-2 {
  width: 23%;
  gap: 14px;
}
.theme-archive-news .filters .wpgb-facet-2 fieldset {
  width: 100%;
  margin-bottom: 0;
}
.theme-archive-news .filters .wpgb-facet-title {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}
.theme-archive-news .filters .wpgb-input-icon {
  left: auto !important;
  right: 0 !important;
  top: calc(50% - 21px) !important;
  color: #FFFFFF !important;
  width: auto !important;
  height: auto !important;
  margin: 2px 2px 2px 2px !important;
  padding: 11px !important;
  background-color: #FDC300 !important;
  border-radius: 5px 0px 0px 5px !important;
}
.theme-archive-news .filters .wpgb-search-facet input {
  padding: 0px 16px !important;
  color: #FFFFFF !important;
}
.theme-archive-news .filters .wpgb-select-separator {
  display: none;
}
.theme-archive-news-wrapper img {
  border-radius: 5px;
  max-height: 300px;
  min-height: 300px;
}
.theme-archive-news-wrapper h2 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  margin-top: 24px;
}
.theme-archive-news-wrapper .excerpt {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  margin-top: 14px;
}
.theme-archive-news .all-news-btn {
  margin-top: 96px;
}

button.wpgb-button.wpgb-load-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 22px !important;
  transition: 0.2s ease-in-out !important;
  font-family: "CodecPro", monospace !important;
  text-transform: uppercase !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  background-color: transparent !important;
  color: #FFFFFF !important;
  border: 2px solid #FDC300 !important;
  line-height: unset !important;
}

.wpgb-facet select.wpgb-select,
.wpgb-facet .wpgb-search-facet input[type=search],
.wpgb-facet .wpgb-autocomplete-facet input[type=search] {
  border: 2px solid #FDC300 !important;
  border-radius: 5px !important;
}
.wpgb-facet select.wpgb-select::-moz-placeholder, .wpgb-facet .wpgb-search-facet input[type=search]::-moz-placeholder, .wpgb-facet .wpgb-autocomplete-facet input[type=search]::-moz-placeholder {
  color: #FFFFFF !important;
  opacity: 1 !important;
}
.wpgb-facet select.wpgb-select::placeholder,
.wpgb-facet .wpgb-search-facet input[type=search]::placeholder,
.wpgb-facet .wpgb-autocomplete-facet input[type=search]::placeholder {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .theme-archive-news-wrapper h2 {
    font-size: 18px;
  }
  .theme-archive-news-wrapper img {
    max-height: unset;
    min-height: unset;
  }
  .theme-archive-news .filters {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .theme-archive-news .filters .wpgb-facet {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .theme-archive-news .filters .wpgb-facet-1 {
    width: 100%;
  }
  .theme-archive-news .filters .wpgb-facet-2 {
    width: 100%;
  }
  .theme-archive-news .filters h2 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 80px;
  }
}
.theme-archive-team-wrapper img {
  border-radius: 5px;
  margin-bottom: 12px;
}
.theme-archive-team-wrapper h2 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 48px;
}
.theme-archive-team-wrapper h2 span {
  font-weight: 300;
}
.theme-archive-team h3 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.theme-archive-photo .filters {
  display: flex;
  color: #FFFFFF;
  gap: 58px;
  margin-bottom: 20px;
}
.theme-archive-photo .filters .wpgb-facet {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.theme-archive-photo .filters .wpgb-facet select {
  color: #FFFFFF !important;
  font-weight: 400 !important;
  padding: 6px 48px 6px 16px !important;
}
.theme-archive-photo .filters .wpgb-facet select option {
  color: #000000 !important;
}
.theme-archive-photo .filters .wpgb-facet-1 fieldset {
  width: 100%;
  margin-bottom: 0;
}
.theme-archive-photo .filters .wpgb-facet-4 {
  gap: 14px;
}
.theme-archive-photo .filters .wpgb-facet-4 fieldset {
  width: 100%;
  margin-bottom: 0;
}
.theme-archive-photo .filters .wpgb-facet-title {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}
.theme-archive-photo .filters .wpgb-input-icon {
  left: auto !important;
  right: 0 !important;
  top: calc(50% - 21px) !important;
  color: #FFFFFF !important;
  width: auto !important;
  height: auto !important;
  margin: 2px 2px 2px 2px !important;
  padding: 11px !important;
  background-color: #FDC300 !important;
  border-radius: 5px 0px 0px 5px !important;
}
.theme-archive-photo .filters .wpgb-search-facet input {
  padding: 0px 16px !important;
  color: #FFFFFF !important;
}
.theme-archive-photo .filters .wpgb-select-separator {
  display: none;
}
.theme-archive-photo-wrapper {
  display: block;
}
.theme-archive-photo-wrapper img {
  border-radius: 5px;
  margin-bottom: 24px;
  max-height: 348px;
  height: 100%;
}
.theme-archive-photo h2 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 136px;
  width: 56%;
}
.theme-archive-photo h2 span {
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .theme-archive-photo .filters {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .theme-archive-photo .filters .wpgb-facet {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .theme-archive-photo .filters .wpgb-facet-4 {
    gap: 10px;
  }
  .theme-archive-photo h2 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 60px;
  }
}
.theme-hero {
  position: relative;
}
.theme-hero.has-blur ~ div {
  position: relative;
  top: -250px;
  z-index: 5;
}
.theme-hero .row {
  height: 100%;
}
.theme-hero .custom-hero-container {
  height: 84vh;
  background-position: top;
}
.theme-hero .custom-hero-container.has-blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002847;
  mix-blend-mode: color;
  z-index: 1;
}
.theme-hero .custom-hero-container.has-blur::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 40, 71, 0) 29.81%, #002847 100%), linear-gradient(0deg, rgba(0, 40, 71, 0.6) 0%, rgba(0, 40, 71, 0.6) 100%);
  background-blend-mode: normal, multiply;
  z-index: 1;
}
.theme-hero .custom-hero-container.has-blur .theme-hero-content p, .theme-hero .custom-hero-container.has-blur .theme-hero-content h1, .theme-hero .custom-hero-container.has-blur .theme-hero-content h2, .theme-hero .custom-hero-container.has-blur .theme-hero-content h3 {
  line-height: normal;
}
.theme-hero .custom-hero-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7%;
  background: linear-gradient(180deg, rgba(0, 40, 71, 0) 0%, #002847 100%);
  z-index: 1;
}
.theme-hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.theme-hero-content p {
  font-size: 51px;
  font-weight: 300;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0px;
  line-height: 2;
}
.theme-hero-content h1 {
  font-size: 52px;
  font-weight: 300;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
  line-height: 0.6;
}
.theme-hero-content h1 strong {
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #FFF;
  font-family: 900;
  font-size: 214px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: transparent;
}
.theme-hero-content h2 {
  font-size: 110px;
  font-weight: 900;
  margin: 0;
  line-height: 0.6;
}
.theme-hero-content h3 {
  font-size: 51px;
  font-weight: 700;
  line-height: 0.6;
}
.theme-hero .partner-category {
  font-size: 51px;
  font-weight: 300;
  text-transform: none;
}
.theme-hero .news-category, .theme-hero .partner-category {
  margin-top: 12px;
}
.theme-hero .news-category span, .theme-hero .partner-category span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  background-color: #FDC300;
  padding: 8px 16px;
  color: #002847;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .theme-hero.has-blur ~ div {
    position: relative;
    top: -80px;
    z-index: 5;
  }
  .theme-hero .custom-hero-container {
    height: 36vh !important;
  }
  .theme-hero .custom-hero-container.has-blur {
    height: 63vh !important;
    background-position: center;
  }
  .theme-hero .partner-category {
    font-size: 42px;
  }
  .theme-hero-content p {
    font-size: 26px;
  }
  .theme-hero-content h2 {
    font-size: 54px;
  }
  .theme-hero-content h3 {
    font-size: 32px;
  }
  .theme-hero-content h1 strong {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-size: 107px;
  }
}
.theme-subhero {
  padding: 120px 0 54px 0;
}
.theme-subhero-title {
  color: #FFFFFF;
  text-align: center;
}
.theme-subhero-title h1 {
  font-size: 51px;
  font-weight: 700;
}
.theme-subhero-title h2 {
  font-size: 51px;
  font-weight: 300;
  text-transform: none;
}
.theme-subhero-title .news-category {
  margin-top: 12px;
}
.theme-subhero-title .news-category span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  background-color: #FDC300;
  padding: 8px 16px;
  color: #002847;
  text-transform: capitalize;
}

.theme-banner {
  background-color: #FDC300;
  padding: 0;
}
.theme-banner .row {
  padding: 62px 0px 72px 0px;
}
.theme-banner-text {
  position: relative;
}
.theme-banner-text p {
  color: #FFFFFF;
  font-weight: 150;
  font-size: 25px;
  margin: 0;
}
.theme-banner-text h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #002847;
  font-family: "CodecPro", monospace;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  position: relative;
  z-index: 2;
}
.theme-banner-text h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #FDC300;
  filter: blur(15.5px);
}
.theme-banner-text h2 {
  color: #002847;
  font-family: "CodecPro", monospace;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  position: relative;
  z-index: 2;
}
.theme-banner-button-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  height: 100%;
  align-items: flex-start;
}
.theme-banner-button-wrapper .banner-cta {
  padding: 8px 22px 6px;
}

@media screen and (max-width: 1200px) {
  .theme-banner .row {
    padding: 24px 0px 40px 0px;
  }
  .theme-banner-text {
    margin-bottom: 40px;
  }
  .theme-banner-text h1 {
    font-size: 40px;
  }
  .theme-banner-text h2 {
    font-size: 45px;
  }
  .theme-banner-text h3 {
    font-size: 12px;
  }
  .theme-banner-text p {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .theme-banner .banner-cta {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 768px) {
  .theme-banner .row {
    padding: 24px 0px 40px 0px;
  }
  .theme-banner-text {
    margin-bottom: 40px;
  }
  .theme-banner-text h1 {
    font-size: 40px;
  }
  .theme-banner-text h2 {
    font-size: 45px;
  }
  .theme-banner-text h3 {
    font-size: 12px;
  }
  .theme-banner-text p {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .theme-banner .banner-cta {
    padding: 8px 16px;
  }
}
.theme-select-news-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 40px;
  position: relative;
}
.theme-select-news-title h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: rgba(255, 255, 255, 0);
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-select-news-title h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-select-news-title h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FFF;
}
.theme-select-news-wrapper img {
  border-radius: 5px;
  max-height: 300px;
}
.theme-select-news-wrapper h2 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  margin-top: 16px;
}
.theme-select-news-wrapper .excerpt {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 16px;
}
.theme-select-news .all-news-btn {
  margin-top: 96px;
}

@media screen and (max-width: 768px) {
  .theme-select-news-wrapper h2 {
    font-size: 18px;
  }
  .theme-select-news-wrapper .excerpt {
    font-size: 14px;
  }
  .theme-select-news-title {
    margin-bottom: 24px;
  }
  .theme-select-news .all-news-btn {
    margin-top: 48px;
  }
  .theme-select-news .news-items:nth-child(3) {
    display: none;
  }
}
.theme-select-photo {
  position: relative;
  overflow-x: clip;
}
.theme-select-photo::after {
  background: #FDC300;
  content: "";
  position: absolute;
  bottom: 0;
  right: -30%;
  width: 50%;
  height: 100%;
  background: #FDC300;
  z-index: 1;
  top: 0;
  transform: translateY(-60%);
  border-radius: 999px;
  filter: blur(203px);
  z-index: -1;
}
.theme-select-photo-text p {
  color: #FFFFFF;
  font-weight: 150;
  font-size: 25px;
  margin: 0;
}
.theme-select-photo-text h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FDC300;
  color: rgba(255, 255, 255, 0);
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-select-photo-text h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-select-photo-text h2 {
  color: #FDC300;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  position: relative;
  z-index: 2;
}
.theme-select-photo-wrapper .image {
  position: relative;
  margin: 40px 0px 40px 0;
}
.theme-select-photo-wrapper .image:hover .overlay {
  opacity: 1;
}
.theme-select-photo-wrapper .image img {
  border-radius: 5px;
}
.theme-select-photo-wrapper .image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.69%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.theme-select-photo-wrapper .image .overlay .text {
  position: absolute;
  bottom: 0;
  padding: 24px;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  pointer-events: auto;
}

@media screen and (max-width: 992px) {
  .theme-select-photo-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .theme-select-photo-text h1 {
    z-index: -1;
    font-size: 40px;
  }
  .theme-select-photo-text h2 {
    font-size: 45px;
  }
  .theme-select-photo-text h3 {
    font-size: 12px;
  }
  .theme-select-photo-text p {
    font-size: 14px;
    font-weight: 700;
  }
  .theme-select-photo-wrapper .image .overlay {
    opacity: 1;
  }
}
.theme-select-partners-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 40px;
  position: relative;
}
.theme-select-partners-title h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: rgba(255, 255, 255, 0);
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-select-partners-title h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-select-partners-title h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FFF;
}
.theme-select-partners-wrapper img {
  padding: 20px;
  background-color: #D9D9D9;
  border-radius: 5px;
  height: 248px;
  max-height: 248px;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-select-partners-wrapper h2 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  margin-top: 16px;
}
.theme-select-partners-wrapper .excerpt {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  margin-top: 14px;
}
.theme-select-partners .all-partners-btn {
  margin-top: 96px;
}

@media screen and (max-width: 768px) {
  .theme-select-partners-wrapper img {
    max-height: 184px;
  }
  .theme-select-partners .all-partners-btn {
    margin-top: 48px;
  }
}
.theme-partners {
  position: relative;
  padding: 60px 0 90px;
  /* CARD (white blocks) */
  /* CTA */
}
.theme-partners-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 40px;
  position: relative;
}
.theme-partners-title h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: transparent;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-partners-title h1::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-partners-title h2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FFF;
}
.theme-partners .partners-wrap {
  position: relative;
  overflow: visible;
  max-width: 1200px;
}
.theme-partners .partners-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: clamp(720px, 78%, 980px);
  background: #FFC400;
  border-radius: 5px;
  z-index: 0;
}
.theme-partners .partners-grid {
  position: relative;
  z-index: 1;
  row-gap: 16px;
  overflow: visible;
  padding: 32px;
}
.theme-partners .partners-col {
  display: flex;
  justify-content: center;
  overflow: visible;
  padding: 0;
}
.theme-partners .partners-col a {
  display: contents;
  width: 100%;
}
.theme-partners .partner-card {
  width: min(100%, 270px);
  background: #FFF;
  border-radius: 5px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 146px;
  width: 84%;
}
.theme-partners .partner-card img {
  max-width: 100%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-partners .partners-cta {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .theme-partners .partners-grid {
    padding: 24px;
    row-gap: 24px;
  }
  .theme-partners .partners-wrap {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
  }
  .theme-partners .partners-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    background: #FFC400;
    border-radius: 5px;
    z-index: 0;
    width: clamp(300px, 90%, 980px);
  }
}
.theme-post-content-image {
  height: 100%;
}
.theme-post-content-image img {
  width: 100%;
  height: 100%;
}
.theme-post-content-text {
  color: #FFFFFF;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  height: 100%;
}
.theme-post-content-text h1 {
  font-size: 40px;
  font-weight: 700;
}
.theme-post-content-text .add-padding {
  padding: 8px 44px;
}
.theme-post-text {
  color: #FFFFFF;
}
.theme-post-text-wrapper h1 {
  font-size: 40px;
  font-weight: 700;
}
.theme-post-text-wrapper h1:last-child {
  margin-bottom: 20px;
}
.theme-post-thumbnail {
  padding: 0;
}
.theme-post-thumbnail-wrapper {
  background-color: #D9D9D9;
  border-radius: 5px;
}
.theme-post-thumbnail-wrapper img {
  border-radius: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .theme-post-content-text h1 {
    font-size: 24px;
  }
  .theme-post-content-image {
    margin-bottom: 12px;
  }
  .theme-post-text-wrapper h1 {
    font-size: 24px;
  }
  .theme-post-thumbnail-wrapper {
    padding: 16px;
  }
}
.theme-spotlight {
  position: relative;
  padding: 125px 0px;
}
.theme-spotlight-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 40px;
  position: relative;
  transform: translateX(-25%) rotate(270deg);
}
.theme-spotlight-title h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FDC300;
  color: rgba(255, 255, 255, 0);
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-spotlight-title h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-spotlight-title h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FDC300;
}
.theme-spotlight-image img {
  border-radius: 5px;
}
.theme-spotlight-text {
  color: #FFFFFF;
}
.theme-spotlight-text strong {
  color: #FFFFFF;
}
.theme-spotlight-text h1 {
  font-size: 60px;
  font-weight: 700;
}
.theme-spotlight .spotlight-cta {
  padding: 8px 44px 6px;
}

@media screen and (max-width: 992px) {
  .theme-spotlight-title {
    margin: 0;
    align-items: baseline;
    transform: unset;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .theme-spotlight-title {
    margin: 0;
    align-items: baseline;
    transform: unset;
    margin-bottom: 16px;
  }
  .theme-spotlight-title h1 {
    font-size: 40px;
  }
  .theme-spotlight-title h2 {
    font-size: 45px;
  }
  .theme-spotlight-title h3 {
    font-size: 12px;
    font-weight: 700;
  }
  .theme-spotlight-title p {
    font-size: 14px;
  }
  .theme-spotlight-text h1 {
    margin: 12px 0px 16px 0px;
  }
}
.theme-justtext-text {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 24px;
  position: relative;
}
.theme-justtext-text strong {
  color: white;
  font-weight: 900;
}
.theme-justtext-text h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: rgba(255, 255, 255, 0);
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-justtext-text h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-justtext-text h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FFF;
}
.theme-justtext-text p {
  margin-top: 32px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
}
.theme-justtext-text ul {
  list-style: disc;
  list-style-position: outside;
}
.theme-justtext-text ul ::marker {
  color: #FDC300;
}

.theme-content .content-row {
  justify-content: space-between;
  align-items: center;
}
.theme-content-text {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 9px;
  position: relative;
}
.theme-content-text p {
  font-weight: 200;
  font-size: 16px;
  margin: 0;
}
.theme-content-text p strong {
  font-weight: 400;
  color: #FFFFFF;
  font-style: normal;
}
.theme-content-text h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FDC300;
  font-family: "CodecPro", monospace;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  position: relative;
  z-index: 2;
}
.theme-content-text h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-content-text h2 {
  color: #FDC300;
  font-family: "CodecPro", monospace;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  position: relative;
  margin-bottom: 16px;
  z-index: 2;
}
.theme-content-text h3 {
  font-size: 26px;
  font-weight: 150;
  margin: 0;
}
.theme-content-container {
  color: #FFFFFF;
}
.theme-content-container h1 {
  margin: 0 0 26px 0;
  font-size: 30px;
  font-weight: 700;
}
.theme-content-container p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .theme-content .content-row {
    gap: 30px;
  }
  .theme-content-text h1 {
    font-size: 40px;
  }
  .theme-content-text h2 {
    font-size: 45px;
  }
  .theme-content-text h3 {
    font-size: 12px;
    font-weight: 700;
  }
  .theme-content-text p {
    font-size: 14px;
  }
}
.theme-content-image {
  padding: 75px 0px 0px;
}
.theme-content-image-image {
  background-color: #D9D9D9;
  border-radius: 5px;
}
.theme-content-image-image img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}
.theme-content-image-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.theme-content-image-text h1 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}
.theme-content-image-text p {
  color: #FFFFFF;
  font-size: 18px;
}
.theme-content-image .cta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 44px 6px;
}

@media screen and (max-width: 768px) {
  .theme-content-image-text h1 {
    margin-top: 8px;
  }
  .theme-content-image-text p {
    font-size: 16px;
  }
}
.theme-contact {
  padding-bottom: 84px;
}
.theme-contact-form .fluentform input::-moz-placeholder, .theme-contact-form .fluentform textarea::-moz-placeholder {
  opacity: 1;
  color: #FFFFFF;
}
.theme-contact-form .fluentform input::placeholder,
.theme-contact-form .fluentform textarea::placeholder {
  opacity: 1;
  color: #FFFFFF;
}
.theme-contact .cta-padding {
  padding: 8px 44px 6px;
}

.theme-team_single {
  color: #FFFFFF;
}
.theme-team_single-title p {
  font-size: 51px;
  font-weight: 300;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0px;
}
.theme-team_single-title-main {
  font-size: 52px;
  font-weight: 300;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.theme-team_single-title-main strong {
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #FFF;
  font-family: 900;
  font-size: 214px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: transparent;
}
.theme-team_single-title h2 {
  font-size: 110px;
  font-weight: 900;
  margin: 0;
}
.theme-team_single-title-level {
  font-size: 28px;
  text-transform: none;
}
.theme-team_single-bg_image {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
.theme-team_single-bg_image img {
  filter: grayscale(0.9);
}
.theme-team_single-bg_image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 40, 71, 0) 48.81%, #002847 64%), linear-gradient(0deg, rgba(0, 40, 71, 0.6) 0%, rgba(0, 40, 71, 0.6) 100%), rgba(0, 40, 71, 0.4);
  z-index: 1;
}
.theme-team_single-title {
  text-align: center;
  text-transform: uppercase;
  margin: 250px 0 90px 0;
  position: relative;
}
.theme-team_single-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 580px;
  border-radius: 999px;
  background: #002847;
  filter: blur(203px);
  display: flex;
  top: -100%;
  z-index: -1;
}
.theme-team_single-team_photo {
  margin-bottom: 160px;
}
.theme-team_single-team_photo img {
  border-radius: 8px;
}
.theme-team_single .split_players {
  padding-top: 24px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}
.theme-team_single-players {
  display: flex;
  flex-wrap: wrap;
  row-gap: 65px;
  -moz-column-gap: 104px;
  text-align: right;
  padding-bottom: 75px;
}
.theme-team_single-players-player {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 25px;
  font-weight: 500;
}
.theme-team_single-players-player-image {
  position: relative;
}
.theme-team_single-players-player-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 40, 71, 0) 82%, #002847 100%);
  z-index: 1;
}
.theme-team_single-players-player-number {
  position: absolute;
  top: -44px;
  font-size: 225px;
  font-weight: 900;
  margin-bottom: 12px;
  z-index: -1;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 4px;
  color: rgba(255, 255, 255, 0);
}
.theme-team_single-players-player-name {
  font-weight: 900;
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .theme-team_single-title {
    margin: 120px 0 45px 0;
  }
  .theme-team_single-title-main {
    font-size: 52px;
  }
  .theme-team_single-title h2 {
    font-size: 80px;
  }
  .theme-team_single-title::after {
    height: 290px;
    filter: blur(100px);
  }
  .theme-team_single-team_photo {
    margin-bottom: 80px;
  }
  .theme-team_single-players {
    row-gap: 40px;
  }
  .theme-team_single-players-player {
    flex: 0 0 50%;
    max-width: 50%;
    font-size: 18px;
  }
  .theme-team_single-players-player-number {
    font-size: 120px;
    top: -24px;
    -webkit-text-stroke-width: 2px;
  }
  .theme-team_single-players-player-name {
    margin-top: 8px;
    text-align: center;
  }
}
.theme-accordion .accordion-headers {
  color: #FFFFFF;
}
.theme-accordion .accordion-headers .accordion-header {
  font-weight: 400;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.theme-accordion .accordion-headers .accordion-header h3 {
  padding: 8px 16px;
  line-height: 1;
  font-size: 18px;
}
.theme-accordion .accordion-headers .accordion-header.active {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}
.theme-accordion .accordion-headers .accordion-header:not(:last-child) {
  margin-bottom: 20px;
}
.theme-accordion .accordion-contents {
  color: #FFFFFF;
}
.theme-accordion .accordion-contents .accordion-content {
  word-wrap: break-word;
}
.theme-accordion .accordion-contents .accordion-content ul {
  list-style: disc;
  list-style-position: inside;
}
.theme-accordion .accordion-contents .accordion-content ul ::marker {
  color: #FDC300;
}
.theme-accordion .accordion-contents .accordion-content h1 {
  font-size: 70px;
  font-weight: 700;
}
.theme-accordion .accordion-contents .accordion-content a {
  color: #FDC300;
}

@media screen and (max-width: 576px) {
  .theme-accordion .accordion-contents {
    margin-top: 24px;
  }
  .theme-accordion .accordion-contents .accordion-content h1 {
    margin-top: 40px;
  }
}
.theme-live-match .live-match-wrap {
  position: relative;
  overflow: visible;
  max-width: 1200px;
}
.theme-live-match .live-match-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: 58%;
  background: #FDC300;
  border-radius: 16px;
  z-index: -1;
}
.theme-live-match-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "CodecPro", monospace;
  margin-bottom: 40px;
  position: relative;
}
.theme-live-match-title h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: transparent;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.theme-live-match-title h1::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 67%;
  background: #002847;
  filter: blur(15.5px);
}
.theme-live-match-title h2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 2;
  color: #FFF;
}
.theme-live-match-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.theme-live-match-content .livestream {
  margin: 0 0 44px 0;
  border-radius: 16px;
}
.theme-live-match-team-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 0 44px 0;
}
.theme-live-match-items {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 64px 0px;
}
.theme-live-match-items .theme-live-match-item {
  background: #2B49B4;
  border-radius: 16px;
  padding: 18px 58px;
}
.theme-live-match-items .theme-live-match-item .match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.theme-live-match-items .theme-live-match-item .match-teams .team-home {
  flex: 1;
  text-align: center;
  font-weight: bold;
  color: white;
}
.theme-live-match-items .theme-live-match-item .match-teams .match-info {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 20px;
}
.theme-live-match-items .theme-live-match-item .match-teams .match-info .match-time {
  background: #FDC300;
  color: #002847;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.theme-live-match-items .theme-live-match-item .match-teams .match-info .match-date {
  font-size: 12px;
  opacity: 0.9;
  color: white;
}
.theme-live-match-items .theme-live-match-item .match-teams .team-away {
  flex: 1;
  text-align: center;
  font-weight: bold;
  color: white;
}

@media screen and (max-width: 576px) {
  .theme-live-match-team-info {
    flex-direction: column;
    gap: 8px;
  }
  .theme-live-match-items .theme-live-match-item .match-teams {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */