.arrangementer-forside {
  background: rgb(86, 124, 130);
  padding: 50px 0;
  color: #ffffff;
}
.arrangementer-forside .flex-container {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.arrangementer-forside .leftside {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
}
.arrangementer-forside .leftside .arrangementer-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.arrangementer-forside .leftside .arrangementer-overskrift {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #ffffff;
}
.arrangementer-forside .leftside .arrangementer-tekst {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.arrangementer-forside .leftside .arrangementer-knap {
  width: max-content;
}
.arrangementer-forside .rightside {
  flex: 1 1 60%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.arrangementer-forside .arrangementer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.arrangementer-forside .arrangementer-list .event-card {
  height: 250px;
  width: calc(50% - 10px);
}
@media (max-width: 900px) {
  .arrangementer-forside {
    flex-direction: column;
  }
  .arrangementer-forside .rightside {
    margin-top: 2rem;
  }
  .arrangementer-forside .rightside .arrangementer-list {
    justify-content: flex-start;
  }
}

.arrangementer_section .event-card {
  height: 250px;
}

.event-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.event-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.event-card img, .event-card picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}
.event-card__content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #ffffff;
}
.event-card__content h5 {
  font-size: 2rem !important;
  font-weight: 600;
  color: #ffffff;
}
.event-card__content span {
  font-size: 0.9rem;
  opacity: 0.85;
}
.event-card__content .date, .event-card__content .adress {
  font-size: 1.5rem !important;
  opacity: 0.9;
  line-height: 22px;
}
.event-card:hover img, .event-card:hover picture {
  transform: scale(1.06);
}

section.hero-forside {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  margin-bottom: 75px;
}
section.hero-forside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
section.hero-forside .container {
  max-width: 1400px;
}
section.hero-forside .grid-container {
  position: absolute;
  z-index: 2;
  text-align: left;
  margin-left: 0;
  bottom: 15%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
section.hero-forside .hero-content {
  padding: 20px 0;
  max-width: 750px;
}
section.hero-forside .hero-overskrift {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}
section.hero-forside .hero-tekst {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ffffff;
}

.medlemsblade-forside {
  padding: 50px 0;
}
.medlemsblade-forside .flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.medlemsblade-forside .leftside {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.medlemsblade-forside .leftside .medlemsblade-knap {
  width: max-content;
}
.medlemsblade-forside .rightside {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}

.medlemsblade-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.medlemsblade-list .medlemsblade-card {
  width: calc(25% - 15px);
}

.medlemsblade-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  padding: 0 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  min-width: 250px;
}
.medlemsblade-card img, .medlemsblade-card picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.medlemsblade-card .content {
  margin-top: 10px;
}
.medlemsblade-card .content h5 {
  font-size: 2rem !important;
  font-weight: 800;
}
.medlemsblade-card .content span {
  font-size: 0.9rem;
  color: #555;
}
.medlemsblade-card .readmore-button {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  font-weight: 600;
  margin-left: auto;
  text-align: right;
}
.medlemsblade-card:hover {
  transform: scale(1.06);
}
.medlemsblade-card:hover .readmore-button {
  color: #ef9f4b;
}

section.medlemsudtalelser-forside {
  text-align: center;
  padding: 50px 30px;
}
section.medlemsudtalelser-forside .headline {
  margin-bottom: 35px;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list {
  max-width: 900px;
  margin: 35px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .slick-track {
  display: flex !important;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .slick-slide {
  height: inherit !important;
  display: flex !important;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .slick-slide > div {
  width: 100%;
  height: 100%;
  display: flex !important;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .draggable {
  padding: 0 !important;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .draggable .slick-slide {
  padding: 0 100px;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .medlemsutalelser-item {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}
section.medlemsudtalelser-forside .medlemsudtalelser-list .medlemsudtalelser-title {
  font-weight: 800;
}
section.vaerdier-forside {
  text-align: center;
  padding: 50px 0;
}
section.vaerdier-forside .headline {
  margin-bottom: 35px;
}
section.vaerdier-forside .vaerdier-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.vaerdier-forside .vaerdier-row .vaerdier-col {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section.vaerdier-forside .vaerdier-row .vaerdier-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
section.vaerdier-forside .vaerdier-row .vaerdier-col .vaerdier-ikon {
  font-size: 3rem;
  color: #0077cc;
  margin-bottom: 1rem;
}
section.vaerdier-forside .vaerdier-row .vaerdier-col .vaerdier-overskrift {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
section.vaerdier-forside .vaerdier-row .vaerdier-col .vaerdier-tekst {
  font-size: 1rem;
  line-height: 1.5;
}
section.vaerdier-forside .vaerdier-tekst {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
section.vaerdier-forside .btn {
  margin-top: 30px;
}

section.underside-hero {
  background-color: rgb(86, 124, 130); /* teal */
  color: #ffffff;
  position: relative;
}
section.underside-hero .hero-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 40vh;
}
section.underside-hero .hero-content {
  z-index: 2;
  width: 50%;
  padding: 3rem 0;
}
section.underside-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0a64a; /* orange accent */
  margin-bottom: 1rem;
}
section.underside-hero .hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
}
section.underside-hero h3 {
  color: #ffffff !important;
}
section.underside-hero .hero-description {
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.95;
}
section.underside-hero .hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
section.underside-hero .btn-primary {
  background-color: #f0a64a;
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
section.underside-hero .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
section.underside-hero .hero-meta {
  font-size: 1.2rem;
  line-height: 1.4;
  opacity: 0.9;
}
section.underside-hero .hero-image {
  position: relative;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 71%;
  top: 0;
  background-size: cover;
  background-position: center;
  height: 100%;
  background-color: rgb(86, 124, 130);
}
section.underside-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.underside-hero .hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(94, 124, 128, 0) 0%, rgba(94, 124, 128, 0.85) 55%, rgb(86, 124, 130) 95%);
  z-index: 1;
}
section.underside-hero {
  /* Responsive */
}
@media (max-width: 900px) {
  section.underside-hero .hero-inner {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  section.underside-hero .hero-image {
    order: 1;
    position: relative;
    height: 20vh;
    width: 100vw;
  }
  section.underside-hero .hero-image::before {
    content: none;
  }
  section.underside-hero .hero-content {
    order: 2;
    width: 100%;
  }
  section.underside-hero .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  section.underside-hero .hero-actions a {
    order: 2;
  }
  section.underside-hero .hero-actions .hero-meta {
    order: 1;
  }
}

.bestyrelse_section .bestyrelse-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.bestyrelse_section .bestyrelse-list .bestyrelse-card {
  width: calc(25% - 30px + 7px);
}

.bestyrelse-card {
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  height: 400px;
  min-width: 250px;
}
.bestyrelse-card .bestyrelse-card_image {
  height: 100%;
}
.bestyrelse-card .bestyrelse-card_image img, .bestyrelse-card .bestyrelse-card_image picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bestyrelse-card .bestyrelse-card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.75) 100%);
}
.bestyrelse-card .bestyrelse-card_content {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  color: #ffffff;
}
.bestyrelse-card .bestyrelse-card_content h5 {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 800;
  font-size: 2rem !important;
}
.bestyrelse-card .bestyrelse-card_position {
  font-weight: 800;
  font-size: 2.2rem;
  color: #ef9f4b;
}
.bestyrelse-card .bestyrelse-card_contact {
  font-weight: 800;
  font-size: 1.5rem !important;
}
.bestyrelse-card .bestyrelse-card_contact p a {
  color: #ffffff !important;
}
.bestyrelse-card .bestyrelse-card_contact p:last-child {
  margin-bottom: 0;
}

.sponsorer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.sponsorer-list .sponsor-card {
  width: 100%;
}

.sponsor-card {
  display: flex !important;
  flex-wrap: wrap;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: center;
  align-items: center;
}
.sponsor-card:hover {
  transform: translate3d(1.05, 1.05, 1.05);
}
.sponsor-card .sponsor-card__image {
  width: 50%;
  overflow: hidden;
}
.sponsor-card .sponsor-card__image img, .sponsor-card .sponsor-card__image picture {
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 300px;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}
.sponsor-card .sponsor-card__content {
  width: 50%;
}
.sponsor-card .sponsor-card__content h5 {
  font-size: 2.4rem !important;
  font-weight: 800;
  margin-bottom: 15px;
  color: #555;
}
.sponsor-card .sponsor-card__content .description {
  font-size: 1.6rem;
  color: #555;
}

.content-block .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.content-block .content-wrapper .image-column {
  flex: 2;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content-block .content-wrapper .text-column {
  flex: 3;
}

/* WPForms Custom Styling */
.wpforms-container {
  max-width: 100% !important;
}

.wpforms-container {
  max-width: 500px !important;
}
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=number],
.wpforms-container input[type=tel],
.wpforms-container input[type=email],
.wpforms-container textarea,
.wpforms-container select {
  border: 2px solid rgb(86, 124, 130) !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  font-size: 1.5rem !important;
  font-family: "Nunito", sans-serif !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  color: #555 !important;
  max-width: 100% !important;
}
.wpforms-container input[type=text]:focus,
.wpforms-container input[type=email]:focus,
.wpforms-container input[type=number]:focus,
.wpforms-container input[type=tel]:focus,
.wpforms-container input[type=email]:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
  outline: none !important;
  border-color: #ef9f4b !important;
  box-shadow: 0 0 0 3px rgba(240, 166, 74, 0.1) !important;
}
.wpforms-container input[type=text]::placeholder,
.wpforms-container input[type=email]::placeholder,
.wpforms-container input[type=number]::placeholder,
.wpforms-container input[type=tel]::placeholder,
.wpforms-container input[type=email]::placeholder,
.wpforms-container textarea::placeholder,
.wpforms-container select::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 400 !important;
}
.wpforms-container textarea {
  min-height: 120px !important;
  resize: vertical !important;
}
.wpforms-container .wpforms-field-label {
  font-weight: 600 !important;
  color: rgb(86, 124, 130) !important;
  margin-bottom: 8px !important;
  font-size: 1.5rem !important;
}
.wpforms-container .wpforms-label-hide {
  display: none !important;
}
.wpforms-container .wpforms-required-label {
  color: #ef9f4b !important;
}
.wpforms-container button[type=submit],
.wpforms-container .wpforms-submit {
  background-color: #ef9f4b !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 15px 40px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}
.wpforms-container button[type=submit]:hover,
.wpforms-container .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(240, 166, 74, 0.3) !important;
  background-color: #ef9f4b !important;
}
.wpforms-container button[type=submit]:active,
.wpforms-container .wpforms-submit:active {
  transform: translateY(0) !important;
}
.wpforms-container .wpforms-error {
  color: #d32f2f !important;
  font-size: 0.875rem !important;
  margin-top: 5px !important;
}
.wpforms-container .wpforms-field-required.wpforms-error {
  border-color: #d32f2f !important;
}
.wpforms-container .wpforms-field[style*="position: absolute"] {
  display: none !important;
}

body div.wpforms-container-full .wpforms-form button[type=submit]:hover {
  background-color: #ef9f4b !important;
}

.wpforms-container-side-by-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .wpforms-container-side-by-side {
    grid-template-columns: 1fr;
  }
}

.wpforms-two-column .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .wpforms-two-column .wpforms-field-container {
    grid-template-columns: 1fr;
  }
}
.wpforms-two-column .wpforms-field-container .wpforms-field-textarea,
.wpforms-two-column .wpforms-field-container .wpforms-submit-container {
  grid-column: 1/-1;
}

.faellesskab {
  background: #42525c;
  color: #ffffff;
  padding: 50px 40px;
  text-align: center;
}
.faellesskab .faellesskab-content {
  max-width: 700px;
  margin: 0 auto;
}
.faellesskab .faellesskab-content .faellesskab-overskrift {
  color: #ffffff;
}
.faellesskab .faellesskab-tekst {
  margin-bottom: 30px;
  line-height: 1.8;
}

section.news {
  margin-bottom: 100px;
}
section.news .headline {
  text-align: center;
}
section.news .text {
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-align: center;
}
section.news .btn {
  margin: 20px auto;
  display: block;
  width: fit-content;
}
section.news .news-list, section.news .news-lists {
  display: flex;
  flex-wrap: wrap;
}
section.news .news-list .slick-track, section.news .news-lists .slick-track {
  display: flex !important;
  height: 100%;
  padding-bottom: 25px;
  padding-top: 10px;
}
section.news .news-list .slick-track > div, section.news .news-lists .slick-track > div {
  height: 100% !important;
}
section.news .news-list .slick-slide, section.news .news-lists .slick-slide {
  height: inherit !important;
  display: flex !important;
}
section.news .news-list .slick-slide > div, section.news .news-lists .slick-slide > div {
  width: 100%;
  height: 100%;
  display: flex !important;
}
section.news .news-list .draggable, section.news .news-lists .draggable {
  padding: 0 !important;
}
section.news .news-list .draggable .slick-slide, section.news .news-lists .draggable .slick-slide {
  padding: 0 15px;
}

.news-lists {
  gap: 30px;
  justify-content: center;
}

.news-item {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  position: relative;
  display: flex !important;
  flex-direction: column;
}
.news-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #555;
}
.news-item:hover.readmore {
  color: #ef9f4b;
}
.news-item img, .news-item picture {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.news-item .news-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 10px;
  line-height: normal;
  margin-bottom: 5px;
}
.news-item .news-excerpt {
  line-height: normal;
  margin-bottom: 30px;
}
.news-item .readmore {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.sponsors {
  margin-bottom: 0;
  text-align: center;
}
.sponsors .draggable {
  padding: 0 !important;
}
.sponsors .draggable .slick-slide {
  padding: 0 20px;
}
.sponsors img, .sponsors picture {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}

#top-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 5px 0;
  background: #ffffff;
  position: relative;
  z-index: 999;
}
header .col-1 {
  max-width: unset;
}

.mobile-menu {
  font-size: 34px !important;
}

a:focus {
  outline: none !important;
}

.dropdown-menu .sub-menu {
  border-top: 1px solid #ef9f4b;
}

#site-header.medium-header #site-navigation-wrap.center-menu #site-navigation .dropdown-menu > li.search-toggle-li {
  display: none;
}

#site-header.medium-header #site-navigation-wrap #site-navigation {
  max-width: 1200px;
  width: 100%;
}

#site-header.medium-header #site-navigation-wrap .dropdown-menu > li > a {
  padding: 5px 22px;
}

#site-header.medium-header #site-navigation-wrap .dropdown-menu > li.booking_menu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#site-header.medium-header #site-navigation-wrap .dropdown-menu > li.booking_menu a {
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  color: #ffffff;
  padding: 12px 25px;
  background: #ef9f4b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 159, 75, 0.3);
}
#site-header.medium-header #site-navigation-wrap .dropdown-menu > li.booking_menu a:hover {
  background-color: #42525c;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 82, 92, 0.4);
}

header span {
  font-size: 16px !important;
  font-weight: 500;
}

#site-navigation {
  margin: 20px 0;
}
#site-navigation li a {
  line-height: 40px !important;
}
#site-navigation > ul > li:last-child > a {
  margin: 0 15px;
  min-width: 150px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: #ef9f4b;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(239, 159, 75, 0.3);
  border: none;
  cursor: pointer;
}
#site-navigation > ul > li:last-child > a:hover {
  color: #ffffff !important;
  transform: scale3d(1.05, 1.05, 1);
}

.oceanwp-text, .oceanwp-close-text {
  display: none !important;
}

.bottom-header-wrap {
  position: relative;
  z-index: 999;
}

.search-toggle-li {
  display: none;
}

@media (min-width: 1200px) {
  header .container, header .container-sm, header .container-md, header .container-lg, header .container-xl {
    max-width: 1400px !important;
    padding: 0 30px !important;
  }
}
.some i {
  font-size: 20px;
}

footer {
  background-color: #42525c;
  padding: 50px 0 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #ffffff;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  color: #ef9f4b;
}
footer h5 {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
footer .footer-cols .footercol {
  flex: 1 1 calc(25% - 40px);
  min-width: 250px;
}
footer .footer-cols .footercol.column-1 img, footer .footer-cols .footercol.column-1 picture {
  height: 140px;
  margin-bottom: 20px;
}
footer .footer-cols .footercol h5 {
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 1.7rem !important;
}
footer .footer-cols .footercol a,
footer .footer-cols .footercol p {
  font-size: 14px;
}
footer .footer-cols .footercol ul {
  margin: 0;
  padding: 0;
}
footer .footer-cols .footercol ul li {
  list-style-type: none;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}
footer .footer-cols .footercol ul li:hover {
  transform: translateX(3px);
}
footer .footer-cols .footercol ul li::before {
  margin-right: 10px;
  opacity: 0.6;
  content: "";
  border: solid #ef9f4b;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

* {
  font-family: "Nunito", sans-serif;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 800;
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  margin-top: 25px;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 26px !important;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
}

h1 {
  font-size: 3.5rem !important;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 3rem !important;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2.5rem !important;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  font-size: 2rem !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1.25rem !important;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.75rem !important;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 1rem;
}

a {
  font-size: 1.75rem !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

span, div {
  font-size: 2rem !important;
  font-weight: 500;
}

#wpadminbar * {
  font-size: 14px !important;
}

/* Modern Slick Slider Arrows */
.slick-prev,
.slick-next {
  width: 50px !important;
  height: 50px !important;
  z-index: 100;
  transition: all 0.3s ease;
}

.slick-prev:before,
.slick-next:before {
  font-size: 0 !important;
  content: "" !important;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.6;
}

.draggable {
  margin: 0 50px !important;
  padding: 0 !important;
}
.search-icon-dropdown {
  display: none !important;
}

/* SVG Arrow Icons */
.slick-prev:after,
.slick-next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-prev:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.slick-next:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.slick-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

.slick-disabled:hover {
  transform: none !important;
}

.tagline {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2.25rem !important;
  }
  h3 {
    font-size: 2rem !important;
  }
  h4 {
    font-size: 1.75rem !important;
  }
  h5 {
    font-size: 1.5rem !important;
  }
  span, div {
    font-size: 1.6rem !important;
  }
  body, p {
    font-size: 1.5rem !important;
  }
}
.grid-container, .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  padding: 12px 30px;
  min-width: 150px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: #ef9f4b;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(239, 159, 75, 0.3);
  border: none;
  cursor: pointer;
}
.btn:hover {
  color: #ffffff;
  transform: scale3d(1.05, 1.05, 1);
}

header a {
  transition: all 2s ease-in-out;
  transition-timing-function: ease-in-out;
  transition: 0.2s;
}
header a:hover {
  color: #ef9f4b !important;
}

.page-header {
  display: none;
}

#main #content-wrap {
  width: auto;
  padding: 0;
  max-width: 100%;
}
#main #content-wrap #primary {
  width: 100%;
  padding: 0;
}

section {
  margin-bottom: 75px;
}
section.bg {
  padding: 50px 0;
}
section:last-child {
  margin-bottom: 0;
}

p a {
  color: #ef9f4b !important;
}

/*========================================
=           Variable Content             =
========================================*/
.variable-mg {
  margin-top: 0 !important;
}
.variable-mg .grid-container h2 {
  margin-bottom: 10px !important;
}

.variable-content {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 75px;
}
.variable-content.lowpadding {
  padding: 50px 0;
}
.variable-content.highpadding {
  padding: calc(50px * 2) 0;
}
.variable-content.rounded {
  border-radius: 0 0 150px 0;
}
.variable-content h1,
.variable-content h2 {
  margin-bottom: 30px;
}
.variable-content .full {
  padding-left: 40px;
  padding-right: 40px;
}
.variable-content .top-text {
  padding: 0 0 20px;
  width: 100%;
  display: inline-block;
}
.variable-content .top-text.padding {
  padding: 40px 0 20px;
}
.variable-content .inner-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.variable-content .inner-wrap .single.bg {
  height: 100%;
  padding: 40px 30px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.variable-content .inner-wrap .single.bg p:last-child a {
  margin-bottom: -1.5em;
  display: table;
}
.variable-content .inner-wrap .single.bg p:last-child a:after {
  bottom: 0 !important;
}
.variable-content .inner-wrap .single {
  padding: 40px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/*========================================
=   Variable Content - iFrame/Thumbnail  =
========================================*/
.modal-container {
  z-index: 3;
  top: 0;
  left: 0;
  display: none;
  margin-top: 0 !important;
  width: 100%;
  height: 100%;
}
.modal-container p {
  display: none;
}
.modal-container.is-visible {
  display: block;
}
.modal-container.is-visible .modal-container-overlay {
  display: block;
  opacity: 1;
}
.modal-container .modal-container-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
}
.modal-container .modal-container-overlay .modal-bg-close {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-container .modal-container-overlay .iframe-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
  height: 100%;
  display: flex;
  align-items: center;
}
.modal-container .modal-container-overlay .iframe-wrapper .iframe-container {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 53.2%;
  padding-top: 25px;
  height: 0;
  -webkit-box-shadow: 0 0 80px -10px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 80px -10px rgba(0, 0, 0, 0.8);
}
.modal-container .modal-container-overlay .iframe-wrapper .iframe-container iframe {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumbnail-container {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.thumbnail-container p {
  margin-bottom: 0;
}
.thumbnail-container::after {
  content: "";
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s ease;
}
.thumbnail-container:hover > .playbtn, .thumbnail-container:hover::after {
  visibility: visible;
  opacity: 1;
}
.thumbnail-container .icon-play-btn:before {
  content: "\e913";
}
.thumbnail-container .playbtn-container {
  display: block;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 75px;
  margin-top: 0 !important;
}
.thumbnail-container img.thumbnailimg {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*========================================
=  Varibelt Content - Responsive  =
========================================*/
/*-Desktop (Macbook) 1200px-*/
@media screen and (max-width: 1200px) {
  .variable-content .inner-wrap.cols-4 .single {
    width: 50%;
    padding-bottom: 30px;
  }
  .variable-content .top-text {
    padding-bottom: 30px;
  }
}
/*-Desktop (Macbook) 1050px-*/
@media screen and (max-width: 1050px) {
  .variable-content .inner-wrap.cols-3 .single {
    width: 100%;
    padding-bottom: 30px;
  }
  .variable-content .inner-wrap.cols-2 .single {
    width: 100%;
    padding-bottom: 30px;
  }
}
/*-Tablet (Orientation: landscape) 1024px-*/
@media screen and (max-width: 1024px) {
  .variable-content .inner-wrap .videoheight {
    width: 100%;
    min-height: 300px;
    margin-bottom: 20px;
  }
}
/*-Tablet (Orientation: landscape) 992-*/
@media screen and (max-width: 992px) {
  .variable-content.bgpadding {
    padding: 50px 0;
  }
  .variable-content .inner-wrap div {
    margin-top: 20px;
  }
  .variable-content .inner-wrap div:first-child {
    margin-top: 0;
  }
}
/*-Tablet (Orientation: portrait) 768px-*/
@media screen and (max-width: 768px) {
  .variable-content .inner-wrap .single .video {
    top: 0;
  }
  .variable-content .inner-wrap.cols-8 div:first-child {
    padding-right: 15px;
  }
}
/*-Smartphone (Samsung S6: landscape) 640px-*/
@media screen and (max-width: 640px) {
  /*========================================
  =            GENERAL               =
  ========================================*/
  .grid-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .variable-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .variable-content .grid-container {
    padding: 30px;
  }
  .variable-content .inner-wrap.cols-4 .single {
    width: 100%;
  }
  .variable-content .top-text {
    width: 100%;
  }
}
/*-Smartphone (iPhone 4: landscape) 480px-*/
@media screen and (max-width: 480px) {
  /*========================================
  =            GENERAL               =
  ========================================*/
  .grid-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .variable-content .grid-container {
    padding: 0;
  }
  .variable-content .grid-container .row {
    margin: 0;
  }
  .variable-content .grid-container .inner-wrap .single {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 992px) {
  .treatments-grid .treatments-container .single-treatment {
    width: calc(50% - 15px);
    min-width: 280px;
  }
  header {
    padding: 0;
  }
  header .bottom-header-wrap {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
  }
  header .bottom-header-wrap .oceanwp-text,
  header .bottom-header-wrap .oceanwp-close-text {
    display: none !important;
  }
  header .bottom-header-wrap #mobile-dropdown {
    width: 100vw;
    height: 100vh;
    right: 0;
    left: auto;
    position: fixed;
    top: 65px;
  }
  .contact_form .leftside,
  .contact_form .rightside {
    width: 100%;
  }
  .contact_form .leftside img, .contact_form .leftside picture,
  .contact_form .rightside img,
  .contact_form .rightside picture {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .contact_form .leftside .contact_text,
  .contact_form .rightside .contact_text {
    position: relative;
    max-width: calc(100vw - 60px);
    padding: 40px 20px;
  }
  footer .footer-cols {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-cols .footercol {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  footer .footer-cols .footercol p {
    margin-bottom: 10px;
  }
  section.hero_section.subpage .textbox {
    padding: 40px 20px;
  }
  section.hero-forside .grid-container {
    bottom: 10%;
  }
  .arrangementer-forside {
    padding: 50px 0;
  }
  .arrangementer-forside .flex-container {
    gap: 30px;
  }
  section.vaerdier-forside,
  section.medlemsudtalelser-forside {
    padding: 0;
  }
  .news-item {
    width: calc(33% - 30px + 7px);
    max-width: calc(50% - 30px + 7px);
    min-width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .sponsor-card .sponsor-card__content {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .sponsor-card .sponsor-card__image {
    width: 100%;
    height: auto;
    order: 1;
    margin-bottom: 20px;
  }
  .tx-icons .icons-container .icon-container {
    width: 100%;
    max-width: 500px;
  }
  .arrangementer-forside .flex-container {
    flex-direction: column;
  }
  .medlemsblade-forside .flex-container {
    flex-direction: column;
  }
  section.medlemsudtalelser-forside .medlemsudtalelser-list .draggable .slick-slide {
    padding: 0 25px;
  }
  .slick-next {
    right: -15px !important;
  }
  .slick-prev {
    left: -15px !important;
  }
  .draggable {
    margin: 0 30px !important;
  }
  section.medlemsudtalelser-forside .medlemsudtalelser-list {
    margin-bottom: 20px;
  }
  section {
    margin-bottom: 35px;
  }
  section.news {
    margin-bottom: 55px;
  }
  section.hero-forside {
    margin-bottom: 35px;
  }
  .content-block .content-wrapper {
    flex-direction: column;
  }
  .content-block .content-wrapper .image-column,
  .content-block .content-wrapper .text-column {
    width: 100%;
  }
  .content-block .content-wrapper .image-column {
    min-height: 250px;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
  }
  .news-item {
    width: 100%;
    max-width: unset;
    min-width: 180px;
  }
  .medlemsblade-list .medlemsblade-card {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 480px) {
  .medlemsblade-list .medlemsblade-card {
    width: 100%;
  }
  .grid-container {
    padding: 0 20px;
  }
  .arrangementer-forside .arrangementer-list .event-card {
    width: 100%;
  }
  .btn {
    padding: 12px 25px;
    max-width: 300px;
  }
  .news-item {
    width: 100%;
    max-width: unset;
    min-width: 180px;
  }
}
/*
  Hero_section
*/
section.hero_section.frontpage {
  position: relative;
  height: calc(100vh - 126px);
  width: 100vw;
  overflow: hidden;
  margin-bottom: 75px;
}
section.hero_section.frontpage .overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.35);
  /* Black see-through */
  width: 100%;
  height: 100%;
  z-index: 2;
}
section.hero_section.frontpage .images {
  display: flex;
  height: 100%;
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
section.hero_section.frontpage .images .image {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}
section.hero_section.frontpage .textbox {
  z-index: 3;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 1500px;
  max-width: calc(100vw - 60px);
  padding: 0 30px;
}
section.hero_section.frontpage .textbox h1 {
  color: white;
  font-size: 40px;
  max-width: 600px;
}
section.hero_section.frontpage .textbox p {
  color: white;
  font-size: 18px;
  max-width: 600px;
}
section.hero_section.frontpage .textbox .buttons {
  margin-top: 40px;
  max-width: 600px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
section.hero_section.frontpage .arrow {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.1s;
}
section.hero_section.frontpage .arrow.arrowleft {
  left: 20px;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container .arrow-top {
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container .arrow-top:after {
  right: 100%;
  left: 0;
  transition-delay: 0s;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container .arrow-bottom {
  transform: rotate(45deg);
  transform-origin: top left;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container .arrow-bottom:after {
  right: 0;
  left: 100%;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container:hover .arrow-top:after {
  right: 0;
  transition-delay: 0.15s;
}
section.hero_section.frontpage .arrow.arrowleft .arrow-container:hover .arrow-bottom:after {
  left: 0;
  transition-delay: 0s;
}
section.hero_section.frontpage .arrow.arrowright {
  right: 20px;
}
section.hero_section.frontpage .arrow .arrow-container {
  position: relative;
  width: 40px;
  height: 60px;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-top,
section.hero_section.frontpage .arrow .arrow-container .arrow-bottom {
  background-color: white;
  height: 4px;
  position: absolute;
  top: 50%;
  width: 100%;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-top:after,
section.hero_section.frontpage .arrow .arrow-container .arrow-bottom:after {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.15s;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-top {
  transform: rotate(45deg);
  transform-origin: bottom right;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-top:after {
  left: 100%;
  right: 0;
  transition-delay: 0s;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-bottom {
  transform: rotate(-45deg);
  transform-origin: top right;
}
section.hero_section.frontpage .arrow .arrow-container .arrow-bottom:after {
  left: 0;
  right: 100%;
  transition-delay: 0.15s;
}
section.hero_section.frontpage .arrow .arrow-container:hover .arrow-top:after {
  left: 0;
  transition-delay: 0.15s;
}
section.hero_section.frontpage .arrow .arrow-container:hover .arrow-bottom:after {
  right: 0;
  transition-delay: 0s;
}
section.hero_section.subpage {
  background-color: #eeeeee;
  margin-bottom: 0;
}
section.hero_section.subpage .grid-container {
  margin-top: -200px;
  background-color: #eeeeee;
  position: relative;
  z-index: 4;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
section.hero_section.subpage .overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.15);
  /* Black see-through */
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}
section.hero_section.subpage .images {
  display: flex;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
section.hero_section.subpage .images .image {
  height: 500px;
  width: 100%;
  max-height: 65vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}
section.hero_section.subpage .textbox {
  z-index: 3;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  padding: 50px 40px;
}
section.hero_section.subpage .textbox h1 {
  font-size: 40px;
}
section.hero_section.subpage .textbox .buttons {
  margin-top: 50px;
}

/*
* Contact form
*/
.contact_form {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.contact_form .leftside {
  width: 50%;
  position: relative;
}
.contact_form .leftside .overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.contact_form .leftside img, .contact_form .leftside picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.contact_form .leftside .contact_text {
  max-width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.contact_form .leftside .contact_text h1,
.contact_form .leftside .contact_text h2,
.contact_form .leftside .contact_text h3,
.contact_form .leftside .contact_text h4,
.contact_form .leftside .contact_text h5,
.contact_form .leftside .contact_text p,
.contact_form .leftside .contact_text a,
.contact_form .leftside .contact_text span {
  color: #ffffff;
}
.contact_form .rightside {
  width: 50%;
  position: relative;
  background: #ffffff;
}
.contact_form .rightside .contact_formular {
  max-width: 80%;
  padding: 50px 10%;
  margin: 0 auto;
}
.contact_form .rightside .contact_formular div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
.contact_form .rightside .contact_formular div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
.contact_form .rightside .contact_formular div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
  max-width: unset;
}
.contact_form .rightside .contact_formular .wpforms-submit {
  background-color: #ef9f4b !important;
  border-radius: 5px;
}

/*
* Tx-icons
*/
.tx-icons {
  text-align: center;
}
.tx-icons .headline {
  margin-bottom: 35px;
}
.tx-icons .icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}
.tx-icons .icons-container .icon-container {
  width: calc(33.3333333333% - 30px);
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tx-icons .icons-container .icon-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tx-icons .icons-container .icon-container .icon img, .tx-icons .icons-container .icon-container .icon picture {
  height: 80px;
}
.tx-icons .icons-container .icon-container .icon-headline {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
}
.tx-icons .icons-container .icon-container .icon-text {
  max-width: 80%;
  margin: auto;
}

/*
* text-bg-center 
*/
.text-bg-center {
  text-align: center;
  padding: 50px 30px;
}
.text-bg-center .textbox {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.text-bg-center .textbox .btn {
  margin-top: 30px;
  display: inline-block;
}

.tagline {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ef9f4b;
  font-weight: bold;
}

.list-grid {
  margin-bottom: 100px;
}
.list-grid.items-1 .list-grid-items {
  justify-content: left;
}

.list-grid-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}
.list-grid-items .list-grid-item {
  width: calc(25% - 30px + 7px);
  min-width: 250px;
}

@media screen and (max-width: 1200px) {
  .list-grid-items .list-grid-item {
    width: calc(33.333% - 30px + 7px);
  }
}
@media screen and (max-width: 768px) {
  .list-grid-items .list-grid-item {
    width: calc(50% - 30px + 7px);
  }
}
@media screen and (max-width: 480px) {
  .list-grid-items .list-grid-item {
    width: 100%;
  }
}

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