/*
Theme Name: Climathon
Author: BASELINE
Author URI: https://baseline.lv
Description: Climathon - designed for RTU
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: climathon
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/
.faqs-block__accordion {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faqs-block__item-header {
  color: rgba(0, 0, 0, 0.87);
  position: relative;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 480px) {
  .faqs-block__item-header {
    padding-right: 24px;
  }
}
.faqs-block__item-header:hover {
  color: var(--wp--preset--color--accent);
}
.faqs-block__item-header span {
  width: 16px;
  height: 2px;
  background-color: var(--wp--preset--color--blue-main);
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 0px);
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.faqs-block__item-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-right: 20%;
  color: #343A3F;
}
.faqs-block__item-content p {
  margin: 0;
}
.faqs-block__item-content a {
  color: var(--wp--preset--color--green-main);
}
.faqs-block__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 18px;
}
.faqs-block__item.active .faqs-block__item-header span {
  transform: rotate(180deg);
}
.faqs-block__item.active .faqs-block__item-header span:before {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  left: 7px;
  display: block;
  background-color: var(--wp--preset--color--blue-main);
  transform: translateY(-7px);
}
.faqs-block__item.active .faqs-block__item-header:after {
  transform: rotate(90deg);
}
.faqs-block__item.active .faqs-block__item-content {
  max-height: 600px;
  padding: 24px 0;
}

.hero-section {
  min-height: calc(74vh - 73px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 24px;
  }
}
.hero-section__row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hero-section__row {
    flex-direction: column-reverse;
  }
}
.hero-section__column {
  flex: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-basis: 50%;
}
.hero-section__column.hero-image {
  flex-basis: 65%;
  min-height: 600px;
  background-image: url("./assets/images/hero-image.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-section__column.hero-image svg {
  position: absolute;
  top: 10%;
  left: 0;
  overflow: visible;
}
@media (max-width: 991px) {
  .hero-section__column.hero-image {
    min-height: 50vh;
  }
}
@media (max-width: 480px) {
  .hero-section__column.hero-image {
    min-height: 200px;
  }
  .hero-section__column.hero-image svg {
    top: -10%;
    width: 100px;
  }
}
.hero-section .hero-tile {
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .hero-section .hero-tile {
    margin-bottom: 24px;
  }
}
.hero-section .hero-tile p {
  max-width: 350px;
}
.hero-section h1 {
  font-weight: bold;
  font-size: clamp(56px, 5vw + 30px, 100px);
  margin: 0;
}
.hero-section p {
  font-size: var(--wp--preset--font-size--large);
  margin-top: 0;
}
.hero-section .btn-climathon {
  text-transform: uppercase;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-right: 46px;
}
.hero-section .btn-climathon svg {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
}
.hero-section .btn-climathon:hover svg path {
  fill: var(--wp--preset--color--green-main);
}

.hero-description__column {
  flex: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-basis: 50%;
}
.hero-description__column > div {
  padding: 40px;
}
@media (max-width: 480px) {
  .hero-description__column > div {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1400px) {
  .hero-description__column > div {
    max-width: calc(100% - (100vw - 1440px) / 2);
  }
}
.hero-description__column:first-child {
  align-items: flex-end;
}
.hero-description__column.custom-background {
  background-position-x: right;
}
.hero-description__row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hero-description__row {
    flex-direction: column-reverse;
  }
}
.hero-description p {
  font-size: var(--wp--preset--font-size--medium);
}

.hackaton-logos img {
  max-width: 414px;
}

#putni path {
  animation: fly 2s linear infinite;
}
#putni path:first-child {
  animation: flyreverse 2s linear infinite;
}
#putni path:nth-child(2) {
  animation: flyreverse 2s linear infinite;
}
#putni path:nth-child(4) {
  animation: flyreverse 2s linear infinite;
}

@keyframes flyreverse {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0); /* Adjust height */
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes fly {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px); /* Adjust height */
  }
  100% {
    transform: translateY(0);
  }
}
.partners-block .partners-block-tile {
  border-bottom: 1px solid #ccc;
}
.partners-block .partners-block-row {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 60px;
}
.partners-block .partners-block-row .partner-logo img {
  height: 60px;
  width: auto;
  filter: grayscale(1);
  transition: all 0.3s;
}
.partners-block .partners-block-row a:hover .partner-logo img {
  filter: none;
}

.organizers-block {
  background-color: #2F2F2F;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.organizers-block h2 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  flex-basis: 25%;
}
.organizers-block__row {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .organizers-block__row {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .organizers-block__row {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.organizers-block__logos {
  flex: 1;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 991px) {
  .organizers-block__logos {
    gap: 24px;
    flex-wrap: wrap;
  }
}
.organizers-block__logos img {
  filter: grayscale(1);
  object-fit: contain;
  width: auto;
  max-width: 270px;
  max-height: 90px;
}
@media (max-width: 991px) {
  .organizers-block__logos img {
    max-width: 45%;
  }
}

.text-image-block__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .text-image-block__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.text-image-block__element {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 40px 24px;
  gap: 40px;
  border-radius: 24px;
}
.text-image-block__element h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.text-image-block__element p {
  margin: 0;
}
.text-image-block__icon {
  width: 18%;
  flex-shrink: 0;
}

.program-block {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.program-block::before {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 100%;
  left: -10%;
  top: 0;
  background-image: url("./assets/images/program-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) {
  .program-block::before {
    background-size: contain;
    width: 140%;
    left: -20%;
  }
}
@media (max-width: 991px) {
  .program-block {
    background: #630F7A;
  }
  .program-block::before {
    display: none;
  }
}
.program-block h2 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .program-block h2 {
    margin-bottom: 100px;
    color: #fff;
  }
}
.program-block h3 {
  margin-top: 0;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  align-self: flex-start;
}
.program-block h3::before {
  content: "";
  width: 120%;
  height: 64px;
  position: absolute;
  left: -10%;
  bottom: -30%;
  background: url("./assets/images/date-background.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.program-block__row {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .program-block__row {
    justify-content: center;
    column-gap: 24px;
    row-gap: 100px;
  }
}
.program-block__row::before {
  width: 90%;
  height: 120%;
  display: block;
  position: absolute;
  top: -10%;
  right: -7%;
  border-radius: 40px;
  transform: rotate(-7deg) skewX(7deg);
  background-color: #630F7A;
  z-index: 0;
}
@media (max-width: 1120px) {
  .program-block__row::before {
    width: 120%;
    transform: rotate(-4deg) skewX(4deg);
  }
}
@media (max-width: 991px) {
  .program-block__row::before {
    top: -5%;
    transform: rotate(0deg) skewX(0deg);
  }
}
.program-block__column {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 200px;
}
.program-block__column:nth-child(odd) h3::before {
  transform: scaleX(-1);
  height: 60px;
}
.program-block__column:first-child h3::before {
  transform: rotate(2deg);
  height: 55px;
}
@media (max-width: 991px) {
  .program-block__column {
    flex-basis: 40%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .program-block__column {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.program-block__event {
  margin-top: 24px;
  color: #D1D1D1;
  display: flex;
  flex-direction: column;
}
.program-block__event strong {
  color: #fff;
}

.experts-block {
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .experts-block {
    padding-bottom: 80px;
  }
}
.experts-block .splide__arrows {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.experts-block .splide__arrows button {
  background-color: #00AfAA;
  border: 0;
  border-radius: 8px 0 8px 0;
  padding: 4px 16px;
}
.experts-block .splide__arrows button svg {
  height: 24px;
}
.experts-block .splide__arrows button svg path {
  fill: #fff;
}
.experts-block .splide__arrows button.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.experts-block__progress {
  position: absolute;
  right: 40px;
  bottom: 0;
  padding-left: 40px;
  padding-top: 8px;
  font-size: 20px;
  font-weight: 600;
}
.experts-block__progress::before {
  content: "";
  width: 82px;
  height: 4px;
  background-color: #00AfAA;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .experts-block__progress {
    bottom: 100%;
    right: 0;
  }
}
.experts-block__person {
  text-align: center;
}
.experts-block__image {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto 16px;
  aspect-ratio: 1;
  max-width: 210px;
}
.experts-block__image img {
  height: 100%;
  object-fit: cover;
}
.experts-block__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./assets/images/expert-eclipse.svg");
  width: 100%;
  height: 100%;
  background-size: cover;
}
.experts-block__name {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.experts-block__company {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1rem;
}
.experts-block p {
  margin: 0;
  font-size: 1rem;
}

.acf-block-preview .splide__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.challanges-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 480px) {
  .challanges-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
.challanges-block figure {
  margin: 0;
  height: 298px;
}
.challanges-block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challanges-block h4 {
  margin: 12px 0;
}
.challanges-block__item {
  overflow: hidden;
  border-radius: 24px;
  background-color: #fff;
}
.challanges-block__data {
  padding: 20px;
}
.challanges-block .read-more-btn {
  text-transform: uppercase;
  color: var(--wp--preset--color--green-main);
  border: 0;
  background-color: transparent;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--wp--preset--color--green-main);
  transition: all 0.3s;
}
.challanges-block .read-more-btn:hover {
  color: #000;
  border-color: #000;
}
.challanges-block .full-content {
  display: none;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  display: flex;
  flex-direction: column;
}
header.is-scrolling {
  background-color: #fff;
}
header a {
  text-decoration: none;
}
header a.active, header a:hover {
  color: var(--wp--preset--color--green-main);
}
header .site-branding img {
  width: 100%;
  max-width: 285px;
}
header .header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
}
@media (max-width: 991px) {
  header .header-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 480px) {
  header .header-row {
    padding-left: 24px;
    padding-right: 24px;
  }
}
header .header-row .nav-wrapper {
  display: flex;
  gap: 24px;
}
header .header-row .menu-toggle {
  display: none;
  position: relative;
  background-color: transparent;
  border: none;
  width: 24px;
  height: 21px;
  transition: all 0.5s;
}
header .header-row .menu-toggle span {
  display: block;
  height: 2px;
  width: 16px;
  margin: 0 auto;
  background-color: var(--wp--preset--color--green-main);
  transition: all 0.5s;
}
header .header-row .menu-toggle span::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--wp--preset--color--green-main);
  transition: all 0.5s;
}
header .header-row .menu-toggle span::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--wp--preset--color--green-main);
  transition: all 0.5s;
}
header .header-row .menu-toggle:hover span {
  width: 24px;
}
header .header-row .menu-toggle[aria-expanded=true] span {
  transform: rotate(225deg);
  width: 24px;
}
header .header-row .menu-toggle[aria-expanded=true] span:after {
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  header .header-row .menu-toggle {
    display: block;
  }
}
header .header-row .main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: opacity 0.4s;
}
header .header-row .main-navigation ul li {
  text-wrap: nowrap;
}
header .header-row .main-navigation ul li.current-menu-item a, header .header-row .main-navigation ul li.current-page-ancestor a {
  text-decoration: underline;
}
header .header-row .main-navigation ul li.header-cta {
  background-color: rgba(107, 183, 69, 0.3019607843);
  border: 2px solid var(--wp--preset--color--green-main);
  color: var(--wp--preset--color--green-main);
  transition: all 0.35s;
}
header .header-row .main-navigation ul li.header-cta:hover {
  background-color: var(--wp--preset--color--green-main);
}
header .header-row .main-navigation ul li.header-cta:hover a {
  color: #fff;
}
header .header-row .main-navigation.toggled {
  left: 0;
}
@media (max-width: 991px) {
  header .header-row .main-navigation {
    transition: all 0.45s;
    position: absolute;
    top: 100%;
    left: -150vw;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: #fff;
  }
  header .header-row .main-navigation .menu-primary-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 73px);
  }
  header .header-row .main-navigation ul {
    display: flex;
    flex-direction: column;
  }
  header .header-row .main-navigation ul li a {
    font-size: 21px;
    font-weight: 600;
  }
}

.single-project header .header-row {
  justify-content: space-between;
}
.single-project header .header-row .header-left {
  display: flex;
  align-items: center;
  flex: 1;
}
.single-project header .header-row .header-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.single-project header .header-row .header-center {
  display: flex;
  align-items: center;
  gap: 40px;
}
.single-project header .header-row .header-center .main-navigation ul {
  gap: 30px;
}
.single-project header .header-row .header-center .project-navigation-right {
  padding-left: 0;
}
.single-project header .header-row .header-center .project-navigation-left {
  padding-right: 0;
}
@media (max-width: 1400px) {
  .single-project header .header-row .header-center .main-navigation {
    display: none;
  }
}
.single-project header .header-row .project-logo-wrapper img {
  transition: all 0.5s;
  max-width: 100%; /* Ensures the logo doesn't overflow */
  height: auto;
  flex-shrink: 1; /* Allows the logo to shrink if space is limited */
  width: 100%; /* Logo will occupy the full width of its container */
  max-width: 300px;
}
@media (max-width: 1400px) {
  .single-project header .header-row .project-logo-wrapper img {
    max-width: 200px;
  }
}
.single-project header.is-scrolling .project-logo-wrapper img {
  max-width: 200px;
}

.site-footer {
  background-color: #232323;
  font-size: var(--wp--preset--font-size--normal);
}
.site-footer__inner-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 40px 64px;
}
@media (max-width: 480px) {
  .site-footer__inner-wrapper {
    padding: 40px 24px;
  }
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 991px) {
  .site-footer__row {
    gap: 40px;
    flex-direction: column;
  }
}
.site-footer__disclaimer {
  color: #A6AAAE;
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.3;
  flex: 1;
}
.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__info img {
  max-width: 197px;
}

.btn-climathon, .wp-element-button {
  border-radius: 8px 0 8px 0;
  background-color: var(--wp--preset--color--green-main);
  padding: 8px 32px;
  border: 2px solid var(--wp--preset--color--green-main);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-climathon:hover, .wp-element-button:hover {
  background-color: #fff;
  color: var(--wp--preset--color--green-main);
}
.btn-climathon a, .wp-element-button a {
  text-decoration: none;
}

.is-style-underline .wp-element-button {
  border: 0;
  border-bottom: 2px solid var(--wp--preset--color--green-main);
  padding: 6px 8px;
  border-radius: 0;
  background: transparent;
  color: var(--wp--preset--color--green-main);
  font-weight: 600;
  transition: all 0.3s;
}
.is-style-underline .wp-element-button:hover {
  color: #000;
  border-color: #000;
}

.is-style-hasarrow .wp-element-button {
  position: relative;
  padding-right: 46px;
}
.is-style-hasarrow .wp-element-button::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M9.70492 6L8.29492 7.41L12.8749 12L8.29492 16.59L9.70492 18L15.7049 12L9.70492 6Z" fill="black"/></svg>');
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
  filter: invert(1);
}
.is-style-hasarrow .wp-element-button:hover::after {
  filter: invert(38%) sepia(73%) saturate(554%) hue-rotate(83deg) brightness(100%) contrast(94%);
}

.custom-background {
  background-image: url("./assets/images/checkbook.svg");
  background-size: cover;
}

.graph-element {
  position: relative;
}
.graph-element::before {
  content: "";
  background: url("./assets/images/checkbook.svg") no-repeat;
  background-size: contain;
  background-position: right;
  width: 100%;
  height: 50%;
  position: absolute;
  left: -85%;
  top: 25%;
  z-index: 2;
}

.graph-elements {
  position: relative;
  overflow: visible;
}
.graph-elements::before {
  content: "";
  background: url("./assets/images/checkbook.svg") no-repeat;
  background-size: contain;
  background-position: right;
  width: 100%;
  height: 50%;
  position: absolute;
  left: -85%;
  top: 25%;
  z-index: 2;
}
.graph-elements::after {
  content: "";
  background: url("./assets/images/checkbook.svg") no-repeat;
  background-size: contain;
  background-position: right;
  width: 100%;
  height: 50%;
  position: absolute;
  right: -85%;
  top: 25%;
  z-index: 2;
  transform: scaleX(-1);
}

.entry-content {
  overflow: hidden;
}

.wp-block-cover {
  position: relative;
  z-index: 1;
  transition: height 0.3s ease-in-out;
}
.wp-block-cover.show-bg-img img.wp-block-cover__image-background {
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.wp-block-cover.show-bg-img.mirror img.wp-block-cover__image-background {
  transform: rotate(180deg) scaleX(-1);
}
.wp-block-cover.popup-active {
  z-index: 99;
}

#popup {
  display: none;
  position: fixed;
  width: 95vw;
  border-radius: 24px;
  top: 3vh;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ccc;
  padding: 40px;
  z-index: 1000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
#popup .popup-inner {
  max-height: 85vh;
  overflow-y: auto;
}
#popup #close-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: 1px solid;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
#popup #close-popup span {
  width: 1rem;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg);
}
#popup #close-popup span::before {
  display: block;
  content: "";
  width: 1rem;
  height: 2px;
  transform: rotate(-90deg);
  background-color: #000;
}
#popup #close-popup:hover {
  border-color: var(--wp--preset--color--green-main);
  background-color: var(--wp--preset--color--green-main);
}
#popup #close-popup:hover span {
  background-color: #fff;
}
#popup #close-popup:hover span::before {
  background-color: #fff;
}
#popup h3 {
  margin-top: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-size: var(--wp--preset--font-size--small);
}

img {
  width: 100%;
  max-width: 100%;
}

button, a {
  cursor: pointer;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

.has-global-padding {
  padding: 0;
}
@media (max-width: 480px) {
  .has-global-padding {
    padding: 0;
  }
}

.wp-block-heading {
  color: var(--wp--preset--color--dark-blue);
}

@media (max-width: 991px) {
  .absolute-xs {
    position: absolute;
    left: 0;
  }
}

@media (max-width: 991px) {
  .opacity-xs-2 {
    opacity: 0.2;
  }
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.big-arrow {
  position: relative;
  overflow: visible;
}
@media (max-width: 480px) {
  .big-arrow {
    position: absolute;
  }
}

.big-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("./assets/images/big-arrow.svg");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1.5);
}

.mask-image {
  position: relative;
  overflow: visible;
}

.mask-image figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("./assets/images/big-arrow.svg");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Sticky class styles */
.sticky {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.logo-group {
  transition: all 0.3s ease; /* Smooth transition */
  min-height: 140px;
}
@media (max-width: 991px) {
  .logo-group {
    max-width: 100px;
    min-height: 100px;
  }
}

.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-content > *:not(.alignwide):not(.alignfull) {
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 480px) {
  .entry-content > *:not(.alignwide):not(.alignfull) {
    padding-left: 24px;
    padding-right: 24px;
  }
}/*# sourceMappingURL=style.css.map */