@charset "UTF-8";
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/jost-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/jost-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/jost-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.BarlowBold {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 600;
}

.BarlowCondensed {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 300;
}

.Jostbold {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 600;
}

.Jostregular {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 600;
}

.Jostlight {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 300;
}

.headercontainer {
  max-width: 1850px !important;
  margin: auto;
}

.default-container {
  max-width: 1650px !important;
  margin: auto;
}

.mw-60-100 {
  max-width: 60%;
  margin: auto;
}
@media (max-width: 1400px) {
  .mw-60-100 {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .mw-60-100 {
    max-width: 100%;
  }
}

.cta-link {
  letter-spacing: 0.78px !important;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.cta-link::after {
  background-image: url(../images/icons/chevron-right.svg);
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  position: relative;
  top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.cta-link:hover {
  opacity: 0.8;
}
.cta-link:hover::after {
  transform: translateX(4px);
  transition: all 0.3s ease;
}
.cta-link.grey {
  color: rgb(18, 18, 18);
}
.cta-link.white-arrow::after {
  background-image: url(../images/icons/chevron-right-white.svg);
}
.cta-link.bordered {
  padding-bottom: 8px;
  border-bottom: 2px solid #121212;
}
.cta-link svg {
  transition: transform 0.3s ease;
}

section .container {
  max-width: 1650px !important;
  margin: auto;
}
section .container.small {
  max-width: 1160px !important;
}

.fs32, .fs-32 {
  font-size: 32px !important;
}

.fwbold {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

.about-tim {
  max-height: 450px;
}

.overlay-text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0));
}

header .header-image {
  width: 100%;
  height: 825px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
header .header-text {
  z-index: 11;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  background-color: rgb(255, 255, 255);
  height: 150px;
  color: rgb(213, 213, 213);
}
header .header-text .bslogo {
  max-height: 40px;
  width: auto;
}
header .header-text .separator {
  margin: 0 20px;
}
header.header-transparent .header-text {
  background-color: rgba(255, 255, 255, 0.95);
}

.header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.header-menu li {
  position: relative;
}
.header-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #D5D5D5;
}
.header-menu a {
  color: #222222;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-decoration: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  transition: opacity 0.3s ease;
}
.header-menu a:hover {
  opacity: 0.7;
}
.header-menu a svg,
.header-menu a img {
  width: 20px;
  height: 20px;
}
.header-menu .current-menu-item a,
.header-menu .current_page_item a {
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 991px) {
  header .header-text {
    min-height: 80px;
  }
  header .header-text .bslogo {
    max-height: 32px;
  }
  .header-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-menu a {
    font-size: 14px;
    padding: 0 12px;
  }
}
@media (max-width: 767px) {
  header .header-image {
    height: 400px;
  }
  header .header-text .d-flex {
    flex-direction: column !important;
    gap: 16px;
  }
  .header-menu {
    margin-top: 10px;
  }
  .header-menu li:not(:last-child)::after {
    display: none;
  }
}
.headercontainer .overlay {
  opacity: 0.53;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  width: 100%;
  height: 100%;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #f8fcff;
  font-family: "Jost";
  font-weight: 400;
  font-size: 16px;
  background-color: rgb(249, 251, 252);
}

body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  background-color: #f8fcff;
  font-family: "Jost";
  font-weight: 400;
  font-size: 16px;
  color: #062b4d;
  background-color: rgb(249, 251, 252);
}
body #top-logo, body .logofooter img {
  max-width: 80%;
}
body .bg-blue {
  background-color: rgba(3, 34, 62, 0.3);
}
body .bg-darkblue {
  background-color: rgb(3, 34, 62);
}
body .bg-lightgrey {
  background-color: rgba(3, 34, 62, 0.03);
}
body h1 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  body h1 {
    font-size: 30px;
  }
}
body h1, body h2, body h3, body h4 {
  font-family: "Jost";
  font-weight: 600;
}
body h1.topline:before, body h2.topline:before, body h3.topline:before, body h4.topline:before {
  content: " ";
  width: 35px;
  height: 5px;
  margin: 7.8px 16.3px 30.2px 0;
  background-color: #e8a422;
  display: block;
}
body h1.white, body h2.white, body h3.white, body h4.white {
  color: white;
}
body h1.fw500, body h2.fw500, body h3.fw500, body h4.fw500 {
  font-family: "Jost";
  font-weight: 400;
}
body h1.fs16, body h2.fs16, body h3.fs16, body h4.fs16 {
  font-size: 16px;
}
body h1.fs23, body h2.fs23, body h3.fs23, body h4.fs23 {
  font-size: 23px;
}
body h1.fs18, body h2.fs18, body h3.fs18, body h4.fs18 {
  font-size: 18px;
}
body h1.fs20, body h2.fs20, body h3.fs20, body h4.fs20 {
  font-size: 20px;
}
body h1.fs30, body h2.fs30, body h3.fs30, body h4.fs30 {
  font-size: 30px;
}
body h1.fs36, body h2.fs36, body h3.fs36, body h4.fs36 {
  font-size: 36px;
}
@media (max-width: 768px) {
  body h1.fs36, body h2.fs36, body h3.fs36, body h4.fs36 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  body h1.fs36, body h2.fs36, body h3.fs36, body h4.fs36 {
    font-size: 24px;
  }
}
body h1.fw600, body h2.fw600, body h3.fw600, body h4.fw600 {
  font-weight: 600;
}
body h1 .inforow, body h2 .inforow, body h3 .inforow, body h4 .inforow {
  letter-spacing: 0.64px;
}
body h1 a.beige, body h2 a.beige, body h3 a.beige, body h4 a.beige {
  color: #e8a422 !important;
}
body #page-wrap {
  max-width: 1320px;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
}
body a {
  color: #062b4d;
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
}
body #header, body #header-mobile {
  z-index: 9999;
}
@media (max-width: 1200px) {
  body #header #header-inner-container, body #header-mobile #header-inner-container {
    background-color: #03223e;
    max-width: 100%;
  }
}
body #header .headershortcode, body #header-mobile .headershortcode {
  margin-top: -40px;
}
body #header .mobile, body #header-mobile .mobile {
  display: none;
}
@media (max-width: 1200px) {
  body #header .mobile, body #header-mobile .mobile {
    display: block !important;
    position: relative;
    z-index: 9999;
  }
}
body #header .contact, body #header-mobile .contact {
  padding-right: 50px;
}
@media (max-width: 1400px) {
  body #header .contact, body #header-mobile .contact {
    padding-right: 0px;
    padding-left: 50px;
  }
}
@media (max-width: 1200px) {
  body #header .contact, body #header-mobile .contact {
    display: none !important;
  }
}
body #header .contact .whatsapp, body #header-mobile .contact .whatsapp {
  padding-left: 20px;
}
body #header .contact .whatsapp:before, body #header-mobile .contact .whatsapp:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/whatsapp-glyph-black.svg");
  background-size: 20.2px 20.4px;
  background-repeat: no-repeat;
  width: 20.2px;
  height: 20.4px;
  vertical-align: middle;
  margin-right: 15px;
}
body #header .contact .telefon, body #header-mobile .contact .telefon {
  padding-left: 20px;
}
body #header .contact .telefon:before, body #header-mobile .contact .telefon:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/phone.svg");
  background-size: 17.1px 17.1px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  vertical-align: text-bottom;
  margin-right: 20px;
}
body #header .contact .clock, body #header-mobile .contact .clock {
  margin-right: 20px;
}
body #header .contact .clock:before, body #header-mobile .contact .clock:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/clock.svg");
  background-size: 17.1px 17.1px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  vertical-align: text-bottom;
  margin-right: 5px;
}
body #header #headerbackground, body #header-mobile #headerbackground {
  pointer-events: none;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -20px;
}
body #header #headerbackground .overlay, body #header-mobile #headerbackground .overlay {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 25%, #000);
  width: 100%;
  height: 100%;
}
body #header .headercontent, body #header-mobile .headercontent {
  width: 100%;
  height: auto;
  margin-top: -430px;
  position: relative;
  padding-top: 200px;
}
body #header .headercontent.more-margin-top, body #header-mobile .headercontent.more-margin-top {
  margin-top: -500px;
}

.sticky {
  height: 76px;
  top: 0;
  position: fixed !important;
  z-index: 9999;
}
@media (max-width: 1400px) {
  .sticky {
    height: 74px;
  }
}

#headerbackground-mobile, #headerbackground {
  pointer-events: none;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -20px;
}
#headerbackground-mobile .overlay, #headerbackground .overlay {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 25%, #000);
  width: 100%;
  height: 100%;
}

.headercontent-mobile, .headercontent {
  width: 100%;
  height: auto;
  margin-top: -430px;
  position: relative;
  padding-top: 200px;
}
.headercontent-mobile.more-margin-top, .headercontent.more-margin-top {
  margin-top: -500px;
}

nav ul#menu-mainmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  font-family: "Jost";
  font-weight: 400;
}
nav ul#menu-mainmenu li {
  position: relative;
  /* 
  Submenu Header
  */
}
nav ul#menu-mainmenu li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgb(34, 34, 34);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.8px;
  text-align: left;
}
nav ul#menu-mainmenu li a::before {
  position: relative;
  top: -2px;
}
nav ul#menu-mainmenu li.neubau > a::before {
  background-image: url("../images/icons/neubau.svg");
  width: 26px;
  height: 26px;
  content: " ";
  background-size: 26px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
}
nav ul#menu-mainmenu li.referenzen a::before {
  background-image: url("../images/icons/referenzen.svg");
  width: 26px;
  height: 32px;
  content: " ";
  background-size: 26px 32px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
}
nav ul#menu-mainmenu li.partnerbueros a::before {
  background-image: url("../images/icons/partnerbueros.svg");
  width: 26px;
  height: 32px;
  content: " ";
  background-size: 26px 32px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
}
nav ul#menu-mainmenu li.kontakt a::before {
  background-image: url("../images/icons/kontakt.svg");
  width: 26px;
  height: 32px;
  content: " ";
  background-size: 26px 32px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
}
nav ul#menu-mainmenu li.kontakt a:after {
  display: none;
}
nav ul#menu-mainmenu li:last-child a:after {
  content: "";
  margin: 0;
}
nav ul#menu-mainmenu li ul.sub-menu {
  position: absolute;
  width: 400px;
  top: 100%;
  left: 0;
  box-shadow: unset;
  padding: 10px 0;
  height: 0;
  flex-direction: column;
  min-width: 200px;
  z-index: 1;
  top: 88px;
  transition: all 0.3s ease;
  max-height: 0;
  /* Silber-Background statt reines Weiß */
  padding: 0;
  overflow: hidden;
}
nav ul#menu-mainmenu li ul.sub-menu.submenu-open {
  height: auto;
  background-color: #fff;
  max-height: 600px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 0.3s ease;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 55%), linear-gradient(180deg, #f2f3f2 0%, #E1E2E2 85%, #E1E2E2 100%);
}
nav ul#menu-mainmenu li ul.sub-menu li {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  letter-spacing: 0.08em;
  /* wie im Design */
  text-transform: uppercase;
  /* wenn du das so willst */
}
nav ul#menu-mainmenu li ul.sub-menu li a {
  padding: 24px 30px !important;
  font-size: 16px;
  text-transform: uppercase;
}
nav ul#menu-mainmenu li ul.sub-menu li a:after {
  content: "";
  margin: 0;
}
nav ul#menu-mainmenu li ul.sub-menu li:hover {
  background-color: #f9f9f9;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.two-columns {
  column-count: 2;
}
.two-columns p {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .two-columns {
    column-count: unset;
  }
}

@media screen and (max-width: 1200px) {
  #main {
    padding-top: 50px !important;
  }
}
@media (max-width: 992px) {
  #main {
    max-width: 100% !important;
  }
}

.posts-grid {
  display: grid;
  font-size: 20px;
  padding: 25px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 40px;
  row-gap: 20px;
}
.posts-grid.grid-four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1300px) {
  .posts-grid.grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts-grid.grid-four {
    display: block;
  }
}
@media (max-width: 1300px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.posts-grid#frontpage-posts {
  display: block;
  margin-bottom: 30px;
}
@media (min-width: 1201px) {
  .posts-grid#frontpage-posts {
    display: none;
  }
}
@media (max-width: 1200px) {
  .posts-grid#frontpage-posts .slick-slide {
    margin: 0 10px !important;
  }
}
.posts-grid#desktop-frontpage-posts {
  display: none;
  margin-bottom: 30px;
}
@media (min-width: 1201px) {
  .posts-grid#desktop-frontpage-posts {
    display: grid;
  }
}
.posts-grid .single-post {
  min-height: 100px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
  background-color: #fff;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .posts-grid .single-post {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
  }
}
@media (max-width: 768px) {
  .posts-grid .single-post {
    margin-right: auto;
    margin-left: auto;
  }
  .posts-grid .single-post.sub-page-element {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
}
.posts-grid .single-post a {
  text-decoration: none;
}
.posts-grid .single-post a:hover {
  text-decoration: underline;
}
.posts-grid .single-post .boximage {
  height: 100px;
}
.posts-grid .single-post .boxicon {
  height: 65px;
  width: auto;
  max-width: 60px;
}
.posts-grid .single-post .sm-icon {
  margin-right: 15px;
}
.posts-grid .single-post .single-post-image {
  width: 100%;
  height: 240px;
  background-color: #f7f8f8;
  transition: all 0.3s ease-in-out;
}
.posts-grid .single-post .single-post-image.bg-contain {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.posts-grid .single-post .single-post-image.bg-cover {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.posts-grid .single-post .single-post-image:hover {
  transition: all 0.3s;
  background-size: 105%;
}
.posts-grid .single-post .single-post-content {
  width: 100%;
  height: 240px;
  background-color: #fff;
}
.posts-grid .single-post .single-post-content.subpage-content {
  height: auto;
}
.posts-grid .single-post .single-post-content.subpage-content .teaser {
  height: 140px;
}
@media (max-width: 992px) {
  .posts-grid .single-post .single-post-content.subpage-content .teaser {
    height: auto;
  }
}
.posts-grid .single-post .imagecontainer {
  width: 100%;
  height: 240px;
  background-color: #f7f8f8;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.posts-grid .single-post .imagecontainer:hover {
  transition: all 0.3s ease-in-out;
  background-size: 105%;
}
.posts-grid .single-post .imagecontainer.image-member {
  height: 240px;
  background-size: 105%;
}
.posts-grid .single-post .imagecontainer.image-member:hover {
  transition: all 0.3s ease-in-out;
  background-size: 108%;
}
@media (max-width: 1300px) {
  .posts-grid.grid-four .single-post:nth-child(2n) {
    margin-right: 0px;
  }
}
.posts-grid.grid-four .single-post:nth-child(3n) {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .posts-grid.grid-four .single-post:nth-child(3n) {
    margin-right: 0px;
  }
}
.posts-grid.grid-four .single-post:nth-child(4n) {
  margin-right: 0px;
}

#about-banner {
  min-height: 100px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
}

#contact-banner {
  height: 500px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
}

.banner-paragraph {
  font-size: 16px;
  font-weight: normal;
  font-stretch: condensed;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: 0.32px;
  text-align: left;
  color: #062b4d;
  margin-top: 25px;
}

.image-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-button {
  font-family: BarlowBold;
  font-size: 18px;
  font-weight: 600;
  font-stretch: condensed;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.36px;
  text-decoration: underline;
  color: #03223e;
  margin-top: 25px;
}

.content-40 {
  width: 40%;
}
@media (max-width: 992px) {
  .content-40 {
    width: 100%;
  }
}

.content-60 {
  width: 60%;
}
@media (max-width: 992px) {
  .content-60 {
    width: 100%;
  }
}

.orange-after:after {
  content: " ";
  width: 35px;
  height: 5px;
  margin: 7.8px 16.3px 30.2px 0;
  background-color: #e8a422;
  display: block;
  margin: unset;
}
.orange-after.text-center:after {
  margin: unset;
  margin: auto;
  margin-top: 15px;
}

.badgeline {
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #062b4d;
}
.badgeline:before {
  content: " ";
  width: 35px;
  height: 5px;
  margin: 7.8px 16.3px 30.2px 0;
  background-color: #e8a422;
  display: inline-block;
  vertical-align: text-top;
}

h2.content-h2 {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
h2.content-h2:after {
  content: " ";
  width: 35px;
  height: 5px;
  margin: 7.8px 16.3px 30.2px 0;
  background-color: #e8a422;
  display: block;
  margin: auto;
  margin-top: 15px;
}
h2.content-start {
  text-align: start;
  margin-top: 80px;
  margin-bottom: 40px;
}
h2.content-start:after {
  content: " ";
  width: 35px;
  height: 5px;
  margin: 7.8px 16.3px 30.2px 0;
  background-color: #e8a422;
  display: block;
  margin: unset;
}
h2.fs40 {
  font-size: 40px;
}
@media (max-width: 768px) {
  h2.fs40 {
    font-size: 30px;
  }
}

.fs16 * {
  font-size: 16px;
}

a {
  transition: all 0.3s ease-in-out;
}
a.white {
  color: white;
}
a.white:hover {
  color: rgba(255, 255, 255, 0.8);
}
a.icon-arrow-white:before {
  content: "";
  background-image: url("../images/icons/arrow-white.svg");
  width: 23.8px;
  height: 23.8px;
  display: inline-block;
  background-size: 23.8px;
  margin-right: 10px;
  vertical-align: middle;
}

.rowmargin {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .rowmargin {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.rowmargin.m120 {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .rowmargin.m120 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.rowmargin.m80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .rowmargin.m80 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.rowmargin.m60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .rowmargin.m60 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.modal {
  z-index: 99999;
}
.modal#interim-modal .modal-content {
  background-color: rgba(78, 99, 119, 0.4) !important;
}
.modal#interim-modal .modal-content .interim-content {
  width: 400px;
  background-color: white;
  margin: auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .modal#interim-modal .modal-content .interim-content {
    width: 100%;
    height: 100%;
  }
}
.modal#interim-modal .modal-content .interim-content #modalclose {
  position: relative;
  top: -60px;
  right: -60px;
}
.modal#interim-modal .modal-content .interim-content #modalclose button {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 10px;
}
@media (max-width: 768px) {
  .modal#interim-modal .modal-content .interim-content #modalclose {
    top: 0px;
    right: 0px;
  }
}

p.telefon:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/phone.svg");
  background-size: 17.1px 17.1px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  vertical-align: text-bottom;
  margin-right: 10px;
}
p.whatsapp:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/whatsapp-glyph-black.svg");
  background-size: 20.2px 20.4px;
  background-repeat: no-repeat;
  width: 20.2px;
  height: 20.4px;
  vertical-align: middle;
  margin-right: 10px;
}
p.email:before {
  content: " ";
  display: inline-block;
  background-image: url("../images/icons/mail_icon.svg");
  background-size: 17.1px 17.1px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  vertical-align: text-bottom;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .footer-menu-row {
    max-width: 100% !important;
  }
}

.single-post-parent .single-post {
  min-height: 100px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
  background-color: #fff;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .single-post-parent .single-post {
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .single-post-parent .single-post {
    margin-right: auto;
    margin-left: auto;
  }
}
.single-post-parent .single-post a {
  text-decoration: none;
}
.single-post-parent .single-post a:hover {
  text-decoration: underline;
}
.single-post-parent .single-post:nth-child(3n) {
  margin-right: 0;
}
.single-post-parent .single-post .boximage {
  height: 100px;
}
.single-post-parent .single-post .boxicon {
  height: 65px;
  width: auto;
  max-width: 60px;
}
.single-post-parent .single-post .sm-icon {
  margin-right: 15px;
}
.single-post-parent .single-post .single-post-image {
  width: 100%;
  height: 240px;
  background-color: #f7f8f8;
  transition: all 0.3s ease-in-out;
}
.single-post-parent .single-post .single-post-image.bg-contain {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.single-post-parent .single-post .single-post-image.bg-cover {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.single-post-parent .single-post .single-post-image:hover {
  transition: all 0.3s;
  background-size: 105%;
}
.single-post-parent .single-post .single-post-content {
  width: 100%;
  height: 240px;
  background-color: #fff;
}
.single-post-parent .single-post .single-post-content.subpage-content {
  height: auto;
}
.single-post-parent .single-post .single-post-content.subpage-content .teaser {
  height: 140px;
}
.single-post-parent .single-post .imagecontainer {
  width: 100%;
  height: 240px;
  background-color: #f7f8f8;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.single-post-parent .single-post .imagecontainer:hover {
  transition: all 0.3s ease-in-out;
  background-size: 105%;
}
.single-post-parent .single-post .imagecontainer.image-member {
  height: 200px;
  background-size: 105%;
}
.single-post-parent .single-post .imagecontainer.image-member:hover {
  transition: all 0.3s ease-in-out;
  background-size: 108%;
}

@media screen and (max-width: 992px) {
  .lg-flex {
    display: block !important;
  }
  .lg-flex .wp-block-column {
    width: 100% !important;
    text-align: center !important;
    margin-top: 0 !important;
  }
}

.notfound-lottie {
  width: 300px;
}
@media screen and (max-width: 992px) {
  .notfound-lottie {
    width: 200px;
  }
}

.sub-page-element {
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .sub-page-element {
    width: auto !important;
  }
}

.topheader {
  pointer-events: all;
}

.cursor-pointer {
  cursor: pointer;
}

.wp-block-column h2 {
  font-size: 26px;
}
@media screen and (max-width: 992px) {
  .wp-block-column h2 {
    font-size: 22px;
  }
}

#servicebar {
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
  background: white;
  padding: 100px;
}
#servicebar img {
  height: 61px;
  width: auto;
  margin-bottom: 20px;
}

.staricon {
  margin-right: 5px;
}

#yellowbanner {
  background-image: url("../images/yellow_banner.webp");
  min-height: 100px;
}

#inforow {
  padding: 40px 150px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
}

#contact-banner {
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
}
@media (max-width: 992px) {
  #contact-banner {
    margin-top: 90px !important;
  }
}

@media (max-width: 992px) {
  .partner-content.image-bg {
    min-height: 350px;
    width: 100%;
  }
  .partner-content.image-bg:after {
    content: "";
    display: block;
    background-image: url("../images/yellow_sidebar.webp");
    width: 100%;
    height: 10px;
    background-size: 100%;
    position: relative;
    top: 350px;
  }
}

#partner-banner {
  height: 500px;
  box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
  background-image: url("../images/yellow_sidebar.webp");
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  #partner-banner {
    height: auto;
    background-image: none;
  }
}

@media screen and (max-width: 1200px) {
  #team, #subpages {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
}

.hero-section {
  min-height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-section > .container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section .container {
  z-index: 2;
}
.hero-section .hero-content {
  padding-bottom: 7%;
  padding-left: 12%;
}
.hero-section .hero-line {
  width: 4px;
  height: 160px;
  background-color: #ffffff;
  flex-shrink: 0;
  margin-top: 8px;
}
.hero-section .hero-text-wrapper {
  flex: 1;
}
.hero-section .hero-title {
  font-family: "Jost", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.hero-section .hero-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 1.54px;
}
.hero-section .hero-cta {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.48px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  text-transform: uppercase;
}

.intro-section {
  background-color: #F9FBFC;
}
.intro-section .section-title {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0.64px;
  color: #121212;
}
.intro-section .section-text {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.54px;
  color: #121212;
  opacity: 0.6;
}

.services-section {
  background-color: #F9FBFC;
}
.services-section .section-label {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: #121212;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #121212;
}
.services-section .section-label svg {
  width: 8px;
  height: 14px;
}
.services-section .section-label svg path {
  stroke: #121212;
}
.services-section .service-card {
  min-height: 479px;
  border-radius: 0;
  overflow: hidden;
}
.services-section .service-card img {
  top: 0;
  left: 0;
  z-index: 0;
}
.services-section .service-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(34, 34, 34) 0%, rgba(34, 34, 34, 0) 100%);
  opacity: 0.7;
  z-index: 1;
}
.services-section .service-content {
  z-index: 2;
}
.services-section .service-title {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  text-align: center;
}
.services-section .service-details {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.services-section .service-separator {
  font-size: 20px;
}
.services-section .progress-bar-custom {
  position: relative;
  height: 6px;
  margin-top: 40px;
}
.services-section .progress-bar-custom .progress-bg {
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #EBEBEB;
  border-radius: 3px;
}
.services-section .progress-bar-custom .progress-fill {
  position: absolute;
  width: 38.3%;
  height: 6px;
  background-color: #222222;
  border-radius: 3px;
  z-index: 1;
}

.about-section {
  background-color: #F9FBFC;
}
.about-section .about-image img {
  border-radius: 0;
}
.about-section .about-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 157px;
  background: linear-gradient(180deg, rgba(249, 251, 252, 0) 0%, rgb(249, 251, 252) 100%);
}
.about-section .about-title {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0.64px;
  color: #121212;
}
.about-section .about-text {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.54px;
  color: #121212;
  opacity: 0.6;
}
.about-section .about-cta {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.48px;
  padding-bottom: 8px;
  border-bottom: 2px solid #121212;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.about-section .about-cta:hover {
  opacity: 0.7;
}
.about-section .about-cta svg {
  width: 8px;
  height: 14px;
}
.about-section .about-cta svg path {
  stroke: #121212;
}

.references-section {
  background-color: #F9FBFC;
}
.references-section .reference-card {
  min-height: 479px;
  border-radius: 0;
  overflow: hidden;
}
.references-section .reference-card img {
  top: 0;
  left: 0;
  z-index: 0;
}
.references-section .reference-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(34, 34, 34) 0%, rgba(34, 34, 34, 0) 100%);
  opacity: 0.7;
  z-index: 1;
}
.references-section .reference-content {
  z-index: 2;
}
.references-section .reference-title {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.68px;
}
.references-section .reference-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0;
}

.partners-section {
  background-color: #F9FBFC;
}
.partners-section .partner-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.partners-section .partner-logo:hover {
  opacity: 1;
}
.partners-section .partner-logo img {
  max-height: 80px;
  width: auto;
}

@media (max-width: 991px) {
  .hero-section .hero-title {
    font-size: 40px;
    line-height: 52px;
  }
  .hero-section .hero-subtitle {
    font-size: 18px;
  }
  .intro-section .section-title,
  .intro-section .about-title,
  .about-section .section-title,
  .about-section .about-title {
    font-size: 28px;
    line-height: 38px;
  }
  .service-card,
  .reference-card {
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-title {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-section .hero-subtitle {
    font-size: 16px;
  }
  .hero-section .hero-line {
    height: 100px;
  }
  .intro-section .section-title,
  .intro-section .about-title,
  .about-section .section-title,
  .about-section .about-title {
    font-size: 24px;
    line-height: 34px;
  }
  .intro-section .section-text,
  .intro-section .about-text,
  .about-section .section-text,
  .about-section .about-text {
    font-size: 16px;
    line-height: 26px;
  }
  .service-card,
  .reference-card {
    min-height: 300px;
  }
  .service-title,
  .reference-title {
    font-size: 20px;
  }
  .service-details,
  .reference-subtitle {
    font-size: 16px;
  }
}
.section-title {
  text-transform: uppercase;
  letter-spacing: 1.24px !important;
}

#gutachten {
  background-image: url("../images/block-9704503_1920.jpg");
  min-height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#gutachten .overlay {
  position: absolute;
  opacity: 0.7;
  z-index: 10;
  background-image: linear-gradient(to top, rgb(34, 34, 34), rgba(34, 34, 34, 0));
  height: 60%;
  background-position: bottom;
  bottom: 0;
}
#gutachten .overlay-text {
  position: absolute;
  z-index: 11;
}

.icon-row-item {
  width: 25%;
  border-right: 1px solid rgba(18, 18, 18, 0.1);
  text-align: center;
  min-height: 130px;
}
.icon-row-item:last-child {
  border-right: none;
}
.icon-row-item p {
  color: rgb(34, 34, 34);
  margin-top: -10px;
}

.home-flex-item {
  width: 50%;
}
.home-flex-item.image {
  min-height: 600px;
  background-image: url("../images/vorbereitung-vergabe.webp");
  background-size: cover;
  position: relative;
}
.home-flex-item .contact-item {
  margin-left: 20%;
}
.home-flex-item .contact-item .contact-item-icon {
  width: 70px;
}

.site-footer {
  background-color: #121212;
  background-image: url(../images/footerbg.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
}
.site-footer .footer-logo {
  filter: brightness(0) invert(1);
}
.site-footer .footer-heading {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.54px;
  margin-bottom: 24px;
}
.site-footer .footer-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-contact li i {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-contact li a {
  transition: color 0.3s ease;
}
.site-footer .footer-contact li a:hover {
  color: rgb(255, 255, 255) !important;
}
.site-footer .footer-links li a {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.site-footer .footer-links li a:hover {
  opacity: 0.7;
}
.site-footer .footer-copyright {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.site-footer .footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.site-footer .footer-social a i {
  font-size: 18px;
}

.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #121212;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.btn-scroll-top:hover {
  background-color: #ffffff;
  color: #121212;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.btn-scroll-top i {
  font-size: 18px;
}

@media (max-width: 767px) {
  .site-footer .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .site-footer .footer-text,
  .site-footer .footer-contact li,
  .site-footer .footer-links li a {
    font-size: 14px;
  }
  .site-footer .footer-copyright {
    font-size: 12px;
  }
  .btn-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
input, select {
  border-radius: 0 !important;
}

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea, select {
  padding: 20px !important;
}

.frm_primary_label {
  font-size: 20px !important;
  font-weight: 600 !important;
}
@media screen and (max-width: 1200px) {
  .frm_primary_label {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 992px) {
  .frm_primary_label {
    font-size: 15px !important;
  }
}

*::-webkit-input-placeholder, *::placeholder, select {
  font-size: 16px !important;
  color: rgba(0, 0, 0, 0.5) !important;
}

select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
  background-position: right 15px center; /* Change the px value here to change the distance */
  -moz-appearance: none;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  padding: 5px 30px;
}

.frm_submit {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end;
}
.frm_submit .frm_button_submit {
  transition: all 0.3s ease-in-out !important;
  border-radius: 0 !important;
  border: none !important;
  background-color: rgb(3, 34, 62) !important;
  color: white !important;
  padding: 20px 60px !important;
  text-transform: uppercase !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
@media (max-width: 992px) {
  .frm_submit .frm_button_submit {
    padding: 15px 30px !important;
  }
}
.frm_submit .frm_button_submit:hover {
  background-color: rgba(3, 34, 62, 0.8) !important;
}

@media screen and (max-width: 992px) {
  .frm4, .frm6, .frm3 {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    grid-column: span 12 !important;
  }
}

/* external stuff*/
@media (max-width: 1200px) {
  .slick-slide {
    margin: 0 5px !important;
  }
  .slick-slide .single-post {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
  }
}

.slick-dots li {
  width: 55px;
  height: 3px;
}

.slick-dots li button:before {
  width: 47px;
  height: 6px;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

.slick-dots li.slick-active button:before {
  width: 47px;
  content: "";
  background-color: #03223e;
}

.splide__arrow {
  width: 52px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  padding: 33px 21.7px 33.6px 22px;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  border-radius: 0 !important;
  cursor: pointer;
  outline: none;
}

.arrow-btn .arrow {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.splide__arrow--prev svg {
  transform: scale(3) rotate(180deg) !important;
}

.splide__arrow svg {
  transform: scale(3);
}

.splide__arrow--prev {
  left: -20px;
}

.splide__arrow--next {
  right: -20px;
}