:root {
  --primary-color: #ff7029;
  --grey-dark: #1e1e1e;
  --grey-mid: #768492;
  --grey-light: #f8f8f8;
  --primary-font: 'Teko';
  --secondary-font: 'Hind';
}

/* teko-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Teko';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/teko-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* teko-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Teko';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/teko-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* teko-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Teko';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/teko-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* hind-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/hind-v18-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* hind-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/hind-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* hind-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/hind-v18-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Default Settings */

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

html {
  scroll-padding-top: 118px; 
}

body {
  font-family: var(--secondary-font);
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

ul {
  margin-left: 20px;
}

iframe + .wp-block-group {
  margin-top: -10px;
}

.wp-block-group.has-background {
  padding: 100px 0;
}

.wp-block-columns {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto !important;
  margin-left: auto !important;
  max-width: 1440px;
  margin-bottom: 0;
  gap: 100px;
}

.wp-block-columns [class^="col"]:not(.formfield, .testimonial_single), 
.wp-block-columns [class*=" col"]:not(.formfield, .testimonial_single) {
  padding: 0;
}

/* Header */

header {
  box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
  position: sticky;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}

header .header_top {
  background-color: var(--grey-dark);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 17px;
  padding: 15px 0;
  overflow: hidden;
  transition: all 0.3s;
  height: 56px;
}

header.scrollstate .header_top {
  height: 0px;
  padding: 0;
}

header .header_top a {
  margin-right: 15px;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
}

header .header_top a:hover {
  opacity: 0.8;
  text-decoration: none;
}

header .header_top a i {
  margin-right: 5px;
}

header .header_bottom {
  background-color: #ffffff;
}

header .header_bottom .logo {
  padding-top: 10px;
  padding-bottom: 10px;
}

header .header_bottom .logo img {
  width: 300px;
  max-width: 100%;
}

header .header_bottom .navigation nav .wrap_nav_elements {
  display: flex;
  align-items: center;
  justify-content: space-between;  
}

header .header_bottom .navigation nav ul {
  margin: 0;
  padding: 0;
}

header .header_bottom .navigation nav ul li {
  display: inline-block;
  list-style: none;
  margin-right: 20px;
  position: relative;
}

header .header_bottom .navigation nav ul li a {
  color: #000000;
  font-family: var(--primary-font);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s;
  padding: 50px 0;
  display: block;
}

header .header_bottom .navigation nav ul li.current_page_item > a,
header .header_bottom .navigation nav ul li.current-menu-item > a,
header .header_bottom .navigation nav ul li.current-page-ancestor > a,
header .header_bottom .navigation nav ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

header .header_bottom .navigation nav ul li ul {
  position: absolute;
  top: 100%;
  left: -15px;
  background-color: #ffffff;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0px 10px 40px rgba(0,0,0,0.20);
  min-width: 250px;
  display: none;
}

header .header_bottom .navigation nav ul li:hover ul {
  display: block;
}

header .header_bottom .navigation nav ul li ul li {
  border-bottom: 1px solid rgba(0,0,0,0.10);
  display: block;
  margin: initial;
}

header .header_bottom .navigation nav ul li ul li a {
  padding: 15px;
  white-space: nowrap;
}

header .header_bottom .navigation nav a.nav_button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s;
  padding: 50px 15px 50px 30px;
  position: relative;
  letter-spacing: 1px;
  transition: all 0.3s;
}

header .header_bottom .navigation nav a.nav_button::after {
  width: 15px;
  height: 100%;
  position: absolute;
  content: '';
  background-color: var(--primary-color);
  top: 0;
  left: 100%;
  transition: all 0.3s;
}

header .header_bottom .navigation nav a.nav_button:hover,
header .header_bottom .navigation nav a.nav_button:hover::after {
  background-color: var(--grey-dark);
  text-decoration: none;
}

header .header_bottom .navigation nav a.nav_search {
  color: #000000;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s;
}

header .header_bottom .navigation nav a.nav_search:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.mobile_nav_open {
  display: none;
  font-size: 25px;
  cursor: pointer;
  margin-right: 20px;
}

.mobile_nav_headline {
  display: none;
}

/* Button */

a.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--primary-font);
  transition: all 0.3s;
}

a.button:hover {
  text-decoration: none;
  background-color: var(--grey-dark);
}

a.button.inverted:hover {
  background-color: #ffffff;
  color: var(--grey-dark);
}

/* Slider */

section.slider {
  position: relative;
}

section.slider .slick-track {
  display: flex;
  align-items: stretch;
}

section.slider .slider_single {
  position: relative;
  height: inherit;
}

section.slider .slick-dots {
  position: absolute;
  height: 100%;
  top: 0;
  right: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

section.slider .slick-dots li {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid #ffffff;
  list-style: none;
  transition: all 0.3s;
}

section.slider .slick-dots li:hover,
section.slider .slick-dots li.slick-active {
  background-color: rgba(255,255,255,1);
  cursor: pointer;
}

section.slider .slick-dots li button {
  display: none;
}

section.slider .slider_single img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.slider .slider_single .slider_overlay {
  color: #ffffff;
  padding: 250px 0;
  font-size: 20px;
  background-color: rgba(0,0,0,0.5);
  position: relative;
}

section.slider .slider_single .slider_overlay .theme {
  font-family: var(--primary-font);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: absolute;
  top: -75px;
  left: -75px;
  line-height: 1;
  font-weight: 600;
  font-size: 175px;
}

section.slider .slider_single .slider_overlay p:has(+ h1, + h2) {
  font-family: "Teko";
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 6px;
  font-weight: 700;
  font-size: 18px;
}

section.slider .slider_single .slider_overlay h1,
section.slider .slider_single .slider_overlay h2 {
  text-transform: uppercase;
  text-align: left;
  line-height: 1;
  font-weight: 600;
  font-size: 110px;
}

/* Banner */

section.banner {
  position: relative;
}

section.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.banner .banner_overlay {
  position: relative;
  background-color: rgba(0,0,0,0.5);
  padding: 150px 0;
  color: #ffffff;
}

section.banner .banner_overlay #breadcrumbs {
  font-size: 22px;
  font-family: var(--primary-font);
  letter-spacing: 1px;
  margin: 0;
}

section.banner .banner_overlay #breadcrumbs a {
  color: #ffffff;
  transition: all 0.3s;
}

section.banner .banner_overlay #breadcrumbs a:hover {
  opacity: 0.8;
  text-decoration: none;
}

section.banner h1 {
  font-size: 80px;
  line-height: 1.1;
}

/* Accordion */

section.accordion .accordion_single {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

section.accordion .accordion_single .accordion_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 30px;
  cursor: pointer;
}

section.accordion .accordion_single .accordion_title h3 {
  margin: 0;
}

section.accordion .accordion_single .accordion_title i {
  font-size: 25px;
  transition: all 0.3s;
  color: #ffffff;
  background-color: #000000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.accordion .accordion_single.open .accordion_title i {
  transform: rotate(180deg);
  background-color: var(--primary-color);
}

section.accordion .accordion_single .accordion_content {
  display: none;
  padding: 30px;
  font-size: 20px;
}

section.accordion .accordion_single .accordion_content a {
	color: var(--primary-color);
}

/* CTA */

section.slider + section.cta {
  margin-top: -150px;
}

section.cta .cta_inner {
  display: flex;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 75px 0px;
}

section.cta .cta_counter {
  width: 33.33%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: #ffffff;
  font-family: var(--primary-font);
}

section.cta .cta_counter img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.cta .cta_info {
  width: 66.66%;
  padding: 50px;
  font-size: 18px;
}

section.cta .cta_info h2,
section.cta .cta_info h3 {
  color: var(--primary-color);
}

section.cta .cta_info .cta_iconbox {
  font-family: var(--primary-font);
  display: flex;
  gap: 30px;
  font-size: 25px;
  margin: 30px 0;
}

section.cta .cta_info .cta_iconbox .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background-color: var(--primary-color);
  color: #ffffff;
  flex: 0 0 auto;
}

section.cta .cta_info .cta_iconbox p {
  margin-bottom: 10px;
}

section.cta .cta_info .cta_iconbox p:last-child {
  margin: 0;
}

section.cta .cta_info a.button i {
  font-size: 16px;
  margin-left: 5px;
}

section.cta .values_wrapper {
  position: relative;
  font-size: 20px;
}

section.cta .values_value {
  display: flex;
  gap: 15px;
  align-items: center;
}

section.cta .values_number {
  font-size: 90px;
  line-height: 1;
}

section.cta .values_label span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

section.cta .values_label span:last-child {
  font-size: 38px;
}

/* Team */

section.team .team_single {
  margin-bottom: 30px;
}

section.team .team_inner {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
}

section.team .team_inner .team_image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

section.team .team_inner .team_info {
  padding: 30px;
}

section.team .team_inner .team_info span {
  display: block;
  font-family: var(--primary-font);
  color: var(--grey-mid);
  text-transform: uppercase;
  line-height: 1;
  font-size: 22px;
  margin-bottom: 5px;
}

section.team .team_inner .team_info strong {
  font-family: var(--primary-font);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}

section.team .team_inner .team_info ul {
  margin: 0;
  padding: 0;
}

section.team .team_inner .team_info ul li {
  list-style: none;
}

section.team .team_inner .team_info ul li a {
  color: var(--primary-color);
}

/* Testimonials */ 

.wp-block-columns section.testimonials {
  margin: 0 -15px;
}

section.testimonials {
  text-align: center;
}

section.testimonials .testimonial_slider {
  position: relative;
  margin: 0 50px;
}

section.testimonials .slick-track {
  display: flex;
  align-items: center;  
}

section.testimonials .slick-arrow {
  position: absolute;
  cursor: pointer;
  font-size: 30px;
  top: calc(50% - 15px);
  z-index: 888;
}

section.testimonials .fa-chevron-left {
  left: -50px;
}

section.testimonials .fa-chevron-right {
  right: -50px;
}

section.testimonials .testimonial_inner {
  padding: 15px;
  text-align: left;
  background-color: var(--grey-light);
  border: 1px solid var(--grey-mid);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 30px 0px;
  transition: all 0.3s;
}

section.testimonials .testimonial_inner:hover {
  border: 1px solid var(--primary-color);
}

section.testimonials .testimonial_single {
  margin-bottom: 30px;  
}

section.testimonials .testimonial_slider .testimonial_single {
  padding: 50px;
  border-radius: 0;
  background-color: var(--grey-light);
  border: 1px solid var(--grey-mid);
  color: #000000;
  transition: all 0.3s;
  margin-bottom: 0;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0 0px;
  height: auto;
}

section.testimonials .testimonial_slider .testimonial_single:not(.slick-current) {
  transform: scaleY(0.8);
  opacity: 0.8;
  border-left: 1px solid rgba(0,0,0,0);
  border-right: 1px solid rgba(0,0,0,0);
}

section.testimonials .testimonial_single span {
  display: block;
}

section.testimonials .testimonial_single span.stars {
  font-size: 25px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

section.testimonials .testimonial_single span.quote {
  font-size: 16px;
  margin-bottom: 15px;
}

section.testimonials .testimonial_single span.name {
  font-size: 22px;
  color: rgba(0,0,0,0.7);
  font-family: var(--primary-font);
}

/* Gallery */

section.gallery .gallery_single {
  margin-bottom: 30px;
}

section.gallery .gallery_single a {
  overflow: hidden;
  display: block;
  position: relative;
}

section.gallery .gallery_single a i {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #ffffff;
  font-size: 20px;
  opacity: 0.7;
  transition: all 0.3s;
}

section.gallery .gallery_single a:hover i {
  opacity: 1;
}

section.gallery .gallery_single a img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}

section.gallery .gallery_single a:hover img {
  transform: scale(1.1);
}

section.gallery .gallery_single span {
  display: block;
  margin-top: 5px;
}

/* Text */

section.text {
  font-size: 18px;
}

section.text a {
  color: var(--primary-color);
}

section.text h1 {
  font-size: 70px;
}

section.text h2 {
  font-size: 50px;
}

section.text h2:has(+ h3) {
  color: var(--primary-color);
}

section.text h3 {
  font-size: 30px;
}

section.text p,
section.text ul {
  max-width: 1000px;
  color: var(--grey-mid);
}

section.text ul {
  margin-left: 0;
}

section.text ul li {
  list-style: none;
  margin-bottom: 15px;
}

section.text ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px; 
  color: var(--primary-color); 
}

section.text p[style*="center"] {
  margin-left: auto;
  margin-right: auto;
}

section.text p:has(strong):has(+ h1, + h2, + h3, + h4) {
  margin-bottom: 0;
}

section.text p:has(+ h1, + h2, + h3, + h4) strong {
  position: relative;
  color: var(--primary-color);
  padding-right: 12px;
  font-family: var(--primary-font);
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

section.text p:has(+ h1, + h2, + h3, + h4) strong::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  bottom: 8px;
  right: 0;
  border-color: transparent transparent #ff7029 transparent;  
}

section.text ol {
  margin: 0;
  padding: 0;
  counter-reset: item;
}

section.text ol li {
  padding: 30px 0 30px 100px;
  position: relative;
  border-bottom: 1px solid currentColor;
  list-style: none;
  counter-increment: item;
  font-size: 20px;
}

section.text ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: calc(50% - 40px);
  font-size: 40px;
  font-family: var(--primary-font);
  color: #ffffff;
  background-color: var(--primary-color);
  border: 8px solid rgb(252, 180, 145);
  line-height: 1;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.text ol li strong {
  font-size: 30px;
  font-family: var(--primary-font);
  color: var(--primary-color);
  display: block;
}

/* Search */

main.search {
  padding: 100px 0;
}

main.search h1 {
  font-size: 62px;
  font-weight: 400;
}

main.search .searchagain {
  padding: 30px 15px 50px 15px;
}

main.search .searchagain form {
  width: 100%;
  position: relative;
}

main.search .searchagain form input {
  width: 100%;
  border: 1px solid var(--grey-mid);
  padding: 10px 55px 10px 10px;
  font-size: 20px;
}

main.search .searchagain form button {
  position: absolute;
  right: 15px;
  transition: all 0.3s;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  top: calc(50% - 20px);
  z-index: 3;
}

main.search .searchagain form button:hover {
  color: var(--secondary-color);
}

.searchresult_single {
  margin-bottom: 30px;
}

.searchresult_single .searchresult_inner {
  padding: 20px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 30px 0px;
  gap: 30px;
}

.searchresult_single .searchresult_inner .searchresult_image {
  width: 150px;
}

.searchresult_single .searchresult_inner .searchresult_image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.searchresult_single .searchresult_inner .searchresult_image img.placeholder {
  object-fit: contain;
  background-color: var(--grey-light);
  padding: 10px;
}

.searchresult_single .searchresult_inner .searchresult_info {
  width: calc(100% - 150px);
}

.searchresult_single .searchresult_inner .searchresult_info span.date {
  display: block;
  margin-bottom: 10px;
  color: var(--grey-mid);
  font-family: var(--primary-font);
  font-size: 20px;
  line-height: 1;
}

.searchresult_single .searchresult_inner .searchresult_info span.date i {
  margin-right: 5px;
  color: var(--primary-color);
}

.searchresult_single .searchresult_inner .searchresult_info strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 5px;
  font-family: var(--primary-font);
}

.searchresult_single .searchresult_inner .searchresult_info span.excerpt {
  display: block;
  margin-bottom: 15px;
}

.searchresult_single .searchresult_inner a.linktext {
  color: var(--primary-color);
  transition: all 0.3s;
  text-decoration: none;
}

.searchresult_single .searchresult_inner a.linktext:hover {
  color: var(--secondary-color);
}

/* Image */

section.image img {
  width: 100%;
}

/* Logos */

.logo_slider {
  position: relative;
}

/* .logo_slider::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
  z-index: 888;
}

.logo_slider::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  height: 100%;
  width: 100px;
  background: linear-gradient(270deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
  z-index: 888;
} */

.logo_slider .logos_wrap img {
  height: 115px;
  padding: 15px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s;
  max-width: 100%;
  display: block;
  margin: auto;
}

.logo_slider .logos_wrap img:hover {
  filter: grayscale(0);
}


/* Teaser */

section.teaser .teaser_single {
  margin-bottom: 50px;
  font-family: var(--primary-font);
}

section.teaser .teaser_single a:hover {
  text-decoration: none;
}

section.teaser .teaser_single .teaser_image {
  width: 100%;
  aspect-ratio: 6/5;
  overflow: hidden;
  position: relative;
  max-height: 450px;
}

section.teaser .teaser_single img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}

section.teaser .teaser_single a:hover img {
  transform: scale(1.1);
}

section.teaser .teaser_single .teaser_info {
  padding: 30px 0;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

section.teaser .teaser_single .teaser_info .teaser_icon {
  position: absolute;
  background-color: var(--primary-color);
  color: #ffffff;
  top: -35px;
  right: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

section.teaser .teaser_single .teaser_info span {
  color: var(--grey-mid);
  display: block;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s;
}

section.teaser .teaser_single .teaser_info strong {
  display: block;
  color: var(--grey-dark);
  font-size: 35px;
  transition: all 0.3s;
  font-weight: 400;
  line-height: 1;
}

section.teaser .teaser_single a:hover .teaser_info span,
section.teaser .teaser_single a:hover .teaser_info strong {
  color: var(--primary-color);
  text-decoration: none;
}

/* Counter */

section.counter .counter_single {
  margin-bottom: 30px;
}

section.counter .counter_icon {
  font-size: 75px;
}

section.counter .counter_number {
  display: block;
  color: var(--primary-color);
  font-size: 60px;
  line-height: 1;
  font-family: var(--primary-font);
  font-weight: 500;
}

.counter_label {
  display: block;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
}

/* Contact */

section.contact p:has(strong):has(+ h1, + h2, + h3, + h4) {
  margin-bottom: 0;
}

section.contact p:has(+ h1, + h2, + h3, + h4) strong {
  position: relative;
  color: var(--primary-color);
  padding-right: 12px;
  font-family: var(--primary-font);
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

section.contact p:has(+ h1, + h2, + h3, + h4) strong::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  bottom: 8px;
  right: 0;
  border-color: transparent transparent #ff7029 transparent;
}

section.contact .contact_inner {
  padding: 50px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 30px 0px;
}

section.contact .info_half {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.contact p {
  width: 500px;
  max-width: 100%;
  color: var(--grey-mid);
  margin-bottom: 30px;
}

section.contact span:not(.required, .wpcf7-list-item-label) {
  display: block;
  margin-bottom: 8px;  
}

section.contact span:has(i) {
  font-family: var(--primary-font);
  font-size: 32px;
}

section.contact span i,
section.contact span a i {
  color: var(--primary-color);
  margin-right: 5px;
}

section.contact span a {
  color: #000000;
  transition: all 0.3s;
  text-decoration: none;
}

section.contact span a:hover {
  opacity: 0.6;
}

section.contact form span a {
	text-decoration: underline;
}

.wpcf7-spinner {
  display: none;
}

/* Plans */

section.plans {
	padding: 100px 0;
	background-color: var(--grey-light);
}

section.plans .plan_single {
	margin-bottom: 30px;
}

section.plans .plan_single .plan_inner {
	background-color: #ffffff;
	border-bottom: 3px solid var(--primary-color);
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 30px 0px;
}

section.plans .plan_single .plan_inner .icon {
	color: var(--primary-color);
	font-size: 40px;
	margin-bottom: 15px;
}

section.plans .plan_single .plan_inner .title {
	font-family: var(--primary-font);
	font-size: 25px;
	margin-bottom: 15px;
	line-height: 1.1;
}

section.plans .plan_single .plan_inner .price {
	font-family: var(--primary-font);
	font-size: 25px;
	margin-bottom: 15px;
	font-weight: bold;
	line-height: 1.1;
}

section.plans .plan_single .plan_inner .services ul {
	margin: 0 0 30px 0;
	padding: 0;
}

section.plans .plan_single .plan_inner .services ul li {
	list-style: none;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

section.plans .plan_single .plan_inner .services ul li::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f00c";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
}

section.plans .plan_single .plan_inner .information {
	margin-bottom: 15px;
	color: var(--primary-color);
	font-style: italic;
	margin-top: auto;
}

/* Form */

form.wpcf7-form {
  max-width: 100%;
  margin: auto;
  padding: 30px;
  background-color: var(--grey-light);
  border: 1px solid #e5e5e5;
}

form.wpcf7-form p {
  margin: 0;
  width: 100%;
}

section.contact form.wpcf7-form p {
  color: #000000;
}

form.wpcf7-form a {
  color: currentColor;
  transition: all 0.3s;
  text-decoration: underline;
}

form.wpcf7-form a:hover {
  opacity: 0.6;
}

form.wpcf7-form .formfield {
  margin-bottom: 15px;
}

form.wpcf7-form .formfield label {
  margin-bottom: 5px;
  padding-left: 0;
}

form.wpcf7-form .formfield label span.required {
  color: #a70000;
}

form.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #a70000;
}

form.wpcf7-form .formfield input,
form.wpcf7-form .formfield select,
form.wpcf7-form .formfield textarea {
  width: 100%;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #ececec;
  color: #000000;
}

form.wpcf7-form .formfield select {
  appearance: none;
  cursor: pointer;
  background-image: url('/wp-content/themes/hopetec/assets/img/chevron-down-solid.svg');
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}

form.wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}

form.wpcf7-form .wpcf7-list-item label {
  padding-left: 0;
}

form.wpcf7-form .formfield input[type="checkbox"] {
  width: auto;
}

form.wpcf7-form .formfield input[type="submit"] {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--primary-font);
  transition: all 0.3s;
  width: auto;
  border: none;
}

form.wpcf7-form .formfield input[type="submit"]:hover {
  text-decoration: none;
  background-color: var(--grey-dark);
}

/* Posts */

.post_single {
  margin-bottom: 30px;
}

.post_single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  display: block;
}

.post_inner {
  padding-bottom: 30px;
  height: 100%;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 30px 0px;
}

a.post_image {
  display: block;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

a.post_image:hover img {
  transform: scale(1.1);
}

.post_title a {
  color: #000000;
  transition: all 0.3s;
}

.post_title a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.post_content {
  padding: 0 15px;
}

.post_excerpt {
  margin-bottom: 10px;
  display: block;
}

.post_meta {
  font-family: var(--primary-font);
  color: var(--grey-mid);
  font-size: 20px;
  margin-bottom: 5px;
}

.post_meta time i {
  color: var(--primary-color);
  margin-right: 5px;
}

.products_list .post_inner {
	padding: 15px;
}

.products_list .post_title {
	padding: 15px;
}

.products_list .post_meta {
  font-size: 30px;
  color: #000000;
}

.products_list .post_meta i {
  font-size: 10px;
  color: var(--primary-color);  
}

.products_list .delivery {
	font-size: 12px;
	font-family: var(--secondary-font);
	margin-top: 15px;
	line-height: 1;
}

.products_list .delivery span {
	display: block;
	position: relative;
	padding-left: 15px;
	line-height: 1;
}

.products_list .delivery span::before {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #4cc14c;
	position: absolute;
	top: calc(50% - 6px);
	content: '';
	left: 0;
}

.products_list .post_content {
	padding: 15px;
	background-color: var(--grey-light)
}

.products_list ul {
  margin: 0 0 15px 0;
}

.products_list ul.post_table li {
  list-style: none;
}

.products_list ul.post_table li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-color);  
}

.footnote {
  margin-top: 30px;
  font-weight: 500;
}

.footnote small {
  display: inline-block;
  line-height: 1.2;
  font-size: 14px;
}

.product_single .inquiry {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product_single .product_information p {
  color: var(--grey-mid);
}

.product_single .price {
  font-size: 30px;
  font-family: var(--primary-font);
}

.product_single .price i {
  font-size: 10px;
  color: var(--primary-color);  
}

.product_table {
  margin-bottom: 30px;
}

.post_spec_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}
.post_spec_table th,
.post_spec_table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ececec;
}
.post_spec_table th {
  width: 30%;
  font-weight: 700;
  color: #333;
}
.post_spec_table td {
  font-style: italic;
  color: #555;
}
.post_spec_table tr:nth-child(even) {
  background: var(--grey-light);
}
.post_spec_table tr:last-child th,
.post_spec_table tr:last-child td {
  border-bottom: none;
}

.product_single form.wpcf7-form {
  padding: 15px 5px;
}

.product_single .gallery-main {
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
}

.product_single .gallery-main img,
.product_single .gallery-nav img {
  width: 100%;
  aspect-ratio: 1/1;
  transition: all 0.3s;
  object-fit: cover;
  cursor: pointer;
}

.product_single .gallery-nav {
  padding: 0 15px;
}

.product_single .gallery-nav-imagewrap {
  padding: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;   
}

.product_single .gallery-nav-imagewrap:hover img {
  transform: scale(1.1);
}

.product_single .gallery-nav .slick-arrow {
  position: absolute;
  top: calc(50% - 4px);
  cursor: pointer;
  z-index: 8;
  left: 0;
}

.product_single .gallery-nav .slick-arrow.fa-chevron-right {
  right: 0;
  left: initial;
}

/* Sidebar */

aside {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

aside ul.sibling-pages {
  margin: 0;
  padding: 0;
}

aside ul.sibling-pages li {
  list-style: none;
  margin-bottom: 5px;
}

aside ul.sibling-pages li a {
  display: block;
  padding: 15px;
  background-color: var(--grey-light);
  position: relative;
  font-family: var(--primary-font);
  color: #000000;
  text-transform: uppercase;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

aside ul.sibling-pages li a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px; 
  font-size: 15px; 
  transition: all 0.3s;
}

aside ul.sibling-pages li a:hover,
aside ul.sibling-pages li.current-page a {
  color: #ffffff;
  background-color: var(--primary-color);
  text-decoration: none;
}

aside .asp img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 5px;
}

aside .asp .asp_info {
  background-color: var(--grey-light);
  padding: 30px;
}

aside .asp .asp_info strong {
  display: inline-block;
  position: relative;
  font-family: var(--primary-font);
  text-transform: uppercase;
  padding-right: 12px;
  line-height: 1;
  font-size: 30px;
  margin-bottom: 30px;
}

aside .asp .asp_info strong::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  bottom: 8px;
  right: 0;
  border-color: transparent transparent #ff7029 transparent;  
}

aside .asp .asp_info a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--grey-mid);
  transition: all 0.3s;
  font-size: 20px;
  line-height: 1.1;
  font-family: var(--primary-font);
}

aside .asp .asp_info a:last-child {
  margin-bottom: 0;
}

aside .asp .asp_info a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

aside .asp .asp_info a i {
  font-size: 30px;
  width: 30px;
  text-align: center;
  color: var(--primary-color);
}

aside .prices {
  padding: 30px;
  background-color: var(--grey-dark);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

aside .prices strong {
  display: inline-block;
  position: relative;
  font-family: var(--primary-font);
  text-transform: uppercase;
  padding-right: 12px;
  line-height: 1;
  font-size: 30px;
  margin-bottom: 30px;
}

aside .prices strong::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  bottom: 8px;
  right: 0;
  border-color: transparent transparent #ff7029 transparent;  
}

aside .tagcloud ul {
  margin: 0;
  padding: 0;
}

aside .tagcloud ul li {
  list-style: none;
  margin-right: 10px;
  display: inline-block;
}

aside .tagcloud ul li a {
  display: block;
  padding: 10px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  transition: all 0.3s;
}

aside .tagcloud ul li a:hover {
  background-color: var(--grey-dark);
  text-decoration: none;
}

/* Footer */

footer .footer_top {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 50px 0;
}

footer .footer_top a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--primary-font);
  transition: all 0.3s;
  padding: 15px;
  white-space: nowrap;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.6);
}

footer .footer_top div[class*="col-"]:last-child a {
  border-right: 0;
}

footer .footer_top a i {
  font-size: 40px;
  color: var(--grey-dark);
  transition: all 0.3s;
}

footer .footer_top a:hover i {
  color: #ffffff; 
}

footer .footer_top a span {
  display: block;
  line-height: 1;
}

footer .footer_top a span:first-child {
  margin-bottom: 5px;
  font-size: 24px;
}

footer .footer_top a span:last-child {
  font-size: 20px;
  text-transform: uppercase;
}

footer .footer_bottom {
  padding: 100px 0 30px 0;
  color: #ffffff;
  background-color: var(--grey-dark);
}

footer .footer_bottom .footer_sub {
  margin-top: 50px;
  padding-top: 30px;
  position: relative;
  font-size: 14px;
}

footer .footer_bottom .logo_link img {
  width: 300px;
  max-width: 100%;
  margin-bottom: 30px;
}

footer .footer_bottom .logo_link + p {
  opacity: 0.8;
}

footer .footer_bottom strong.headline {
  display: inline-block;
  position: relative;
  font-family: var(--primary-font);
  text-transform: uppercase;
  padding-right: 12px;
  line-height: 1;
  font-size: 30px;
  margin-bottom: 30px;
}

footer .footer_bottom strong.headline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  bottom: 8px;
  right: 0;
  border-color: transparent transparent #ff7029 transparent;
}

footer .footer_bottom nav ul {
  margin-left: 0;
}

footer .footer_bottom nav ul li {
  list-style: none;
  margin-bottom: 15px;
}

footer .footer_bottom nav ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;  
}

footer .footer_bottom nav ul li a {
  color: #ffffff;
  transition: all 0.3s;
}

footer .footer_bottom nav ul li a:hover {
  opacity: 0.8;
  text-decoration: none;
}

footer .footer_bottom .footer_sub::before {
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(255,255,255,0.6);
  position: absolute;
  content: '';
  top: 0;
  left: 15px;
}

footer .footer_bottom .footer_sub a {
  color: #ffffff;
  transition: all 0.3s;
}

footer .footer_bottom .footer_sub a:hover {
  opacity: 0.8;
  text-decoration: none;
}

footer .footer_bottom .rights {
  text-align: right;
}

footer .footer_bottom .rights ul {
  margin: 0;
  padding: 0;
}

footer .footer_bottom .rights ul li {
  display: inline-block;
  margin-left: 15px;
}

/* Responsive */

@media only screen and (max-width: 1649px) {

  section.slider .slider_single .slider_overlay .theme {
    display: none;
  }

  section.slider .slider_single .slider_overlay {
    padding-top: 175px;
  }

}

@media only screen and (max-width: 1199px) {

	section.plans .plan_single .plan_inner {
		padding: 15px;
	}

  header .header_top span:last-child {
    display: none;
  }

  header .menu-hauptmenue-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    max-width: 80vw;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: -5px 0px 15px 5px rgba(0,0,0,0.15);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;    
  }

  header .header_bottom .navigation nav ul li {
    display: block;
    border-bottom: 1px solid #ececec; 
    margin-right: 0;
  }

  header .header_bottom .navigation nav ul li ul {
    position: initial;
    display: block;
    background-color: var(--grey-light);
    box-shadow: none;
    border-top: 0;
    max-width: 100%;
  }

  header .header_bottom .navigation nav ul li ul li:last-child {
    border-bottom: none;
  }

  header .header_bottom .navigation nav ul li a {
    display: block;
    padding: 15px;
  }

  header .open .menu-hauptmenue-container {
    right: 0;
  }

  header .header_bottom .navigation nav {
    justify-content: flex-end;
    display: flex;
    align-items: center;
  }

  .mobile_nav_open {
    display: block;
  }

  section.slider .slider_single .slider_overlay h1, 
  section.slider .slider_single .slider_overlay h2 {
    font-size: 75px;
  }

  footer .footer_top a {
    border-right: none;
  }

}

@media only screen and (max-width: 991px) {

  section.cta .cta_inner {
    flex-direction: column;
  }

  section.cta .cta_counter,
  section.cta .cta_info {
    width: 100%;
    min-height: 300px;
  }

  footer .footer_bottom .rights {
    text-align: left;
  }

  footer .footer_bottom .rights ul li {
    margin-left: 0;
    margin-right: 15px;
  }

  section.banner h1 {
    font-size: 70px;
  }  

}

@media only screen and (max-width: 781px) {

  .wp-block-columns:has(aside) {
    flex-direction: column-reverse;
  }

}

@media only screen and (max-width: 767px) {

  header .header_top {
    display: none;
  }

  section.slider .slider_single .slider_overlay h1, 
  section.slider .slider_single .slider_overlay h2 {
    font-size: 60px;
  }  

  .wp-block-spacer {
    max-height: 75px;
  }  

  .wp-block-group.has-background {
    padding: 75px 0;
  }

  .wp-block-columns {
    gap: 75px;
  } 

  footer .footer_bottom strong.headline {
    margin-bottom: 10px;
  } 

  section.banner .banner_overlay {
    padding: 125px 0;
  }

  section.contact .contact_inner {
    padding: 30px;
  }  

  section.slider .slider_single .slider_overlay {
    padding-top: 150px;
  }  

  section.banner h1 {
    font-size: 60px;
  }  

  section.testimonials .testimonial_slider .testimonial_single {
    padding: 30px;
  }  

}

@media only screen and (max-width: 575px) {

  section.banner .banner_overlay #breadcrumbs {
    font-size: 20px;
  }

  section.banner .banner_overlay {
    padding: 100px 0;
  }  

  .wp-block-spacer {
    max-height: 50px;
  }

  form.wpcf7-form {
    padding: 15px 5px;
  }

  .wp-block-columns {
    gap: 50px;
  }

  .wp-block-group.has-background {
    padding: 50px 0;
  }  

  header .header_bottom .navigation nav .wrap_nav_elements {
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    max-width: 80vw;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: -5px 0px 15px 5px rgba(0,0,0,0.15);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  header .header_bottom .navigation nav a.nav_button::after {
    display: none;
  }

  header .header_bottom .navigation.open nav .wrap_nav_elements {
    right: 0;
  }

  header .menu-hauptmenue-container {
    position: initial;
    box-shadow: none;
    height: auto;
    overflow-y: initial;
  }

  .header_handles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
  }

  section.slider .slider_single .slider_overlay h1, 
  section.slider .slider_single .slider_overlay h2 {
    font-size: 50px;
  }   

  section.text h1 {
    font-size: 50px;
  }

  section.text h2 {
    font-size: 40px;
  }

  section.cta .cta_info {
    padding: 30px;
  }

  section.text ol li::before {
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    font-size: 30px;
  }

  section.text ol li {
    padding-left: 80px;
  }

  section.accordion .accordion_single .accordion_content {
    font-size: 18px;
  }

  section.contact .contact_inner {
    padding: 15px;
  }

  .searchresult_single .searchresult_inner {
    flex-wrap: wrap;
  }

  .searchresult_single .searchresult_inner .searchresult_image,
  .searchresult_single .searchresult_inner .searchresult_info {
    width: 100%;
  }

  header .header_bottom .navigation.open nav .wrap_nav_elements {
    display: block;
  }

  section.slider .slider_single .slider_overlay {
    padding-top: 100px;
  }

  section.banner h1 {
    font-size: 50px;
  }

  .mobile_nav_open {
    margin-right: 0;
  }

  section.cta .cta_info .cta_iconbox .icon {
    display: none;
  }

  section.testimonials .testimonial_slider .testimonial_single {
    padding: 15px;
  }

  h1,
  h2,
  h3 {
    hyphens: auto;
  }

  footer .footer_top a {
  	justify-content: flex-start;
  }

  footer .footer_top a i {
  	width: 50px;
  	text-align: center;
  }

}