* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  background-color: #282d34;
  min-height: 100vh;
  font-family: "CircularStd";
  font-weight: 400;
  display: block;
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main .bg_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  z-index: -1;
  width: 100%;
}

.t_u {
  text-transform: uppercase;
}

.heading_wraper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
.heading_wraper .section_subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #fdb596;
  font-weight: 300;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.heading_wraper .section_title {
  font-size: 32px;
  line-height: 1.2em;
  font-weight: bold;
  text-align: center;
  color: #f7f7f7;
  margin: 0;
}
.heading_wraper .section_title span {
  color: #fdb596;
}
.heading_wraper .section_text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #d9d9d9;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  letter-spacing: -0.16px;
}

.mbtn {
  padding: 13px 18px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: none;
  border-radius: 6px;
  color: #fff4f0;
  text-transform: none;
  background-color: transparent;
  background: #ed7f7e;
  background: linear-gradient(45deg, rgb(237, 127, 126) 0%, rgb(253, 181, 150) 100%);
  position: relative;
  box-sizing: border-box;
  box-shadow: inset 0 1px #fff4f0, inset 0 -1px #190801;
  outline: 0;
  border: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1490196078), 3px 2px 4px rgba(0, 0, 0, 0.1294117647), 8px 6px 6px rgba(0, 0, 0, 0.0784313725), 14px 10px 7px rgba(0, 0, 0, 0.0196078431), 22px 16px 7px rgba(0, 0, 0, 0);
}
.mbtn:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px !important;
  z-index: -1;
  background: #fdb596;
  background: linear-gradient(90deg, rgb(253, 181, 150) 0%, rgb(237, 127, 126) 100%);
  opacity: 1;
  transition: 0.3s ease;
}
.mbtn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  transform: translate(-50%, -50%);
  border-radius: 6px !important;
  background-color: #282d34;
  z-index: -1;
  opacity: 1;
  transition: 0.3s ease;
}
.mbtn:hover {
  background: #fdb596;
  background: linear-gradient(90deg, rgb(253, 181, 150) 0%, rgb(237, 127, 126) 100%);
  background-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow: none;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease; /* Smooth transition for sticky changes */
  overflow: hidden;
}
header.sticky {
  background-color: #282d34; /* Adjust background as needed */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for visual effect */
  z-index: 1000; /* Ensure nav stays above other content */
}
header .header {
  width: 100%;
  position: relative;
  z-index: 55;
}
header .header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  max-width: 1400px;
  padding: 30px 60px;
}
header .header .container .header_navbar_brand img {
  width: 100%;
}
header .header .container .header_navbar {
  display: flex;
  gap: 30px;
  align-items: center;
}
header .header .container .header_navbar_nav {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 30px;
  position: relative;
  padding: 0 !important;
}
header .header .container .header_navbar_nav a {
  display: inline-block;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  color: #8c97a6;
  text-transform: none;
}
header .header .container .header_navbar_nav a.active, header .header .container .header_navbar_nav a:hover {
  color: #fdb596;
}
header .header .container .header_navbar_nav a.active::before, header .header .container .header_navbar_nav a:hover::before {
  width: 100%;
}
header .header .container .header_navbar_action {
  display: none;
}
header .header .container .header_navbar_action button.mobile_toggle {
  display: block;
  padding: 0px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: transparent;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
}
header .header .container .header_navbar_action button.mobile_toggle .icon-bar {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 2px;
  width: 16px;
  background-color: #f6f7f8;
  border-radius: 3px;
  display: block;
}
header .header .container .header_navbar_action button.mobile_toggle.clicked .icon-bar:nth-of-type(1) {
  transform-origin: 1px 5px;
  transform: rotate(45deg);
}
header .header .container .header_navbar_action button.mobile_toggle.clicked .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
header .header .container .header_navbar_action button.mobile_toggle.clicked .icon-bar:nth-of-type(3) {
  transform-origin: 2px -3px;
  width: 100%;
  transform: rotate(-45deg);
}
.mobile_header {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  left: 100%;
  background-color: #282d34;
  overflow: hidden;
}
.mobile_header .mobile_header_top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
}
.mobile_header .m_nav_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 370px;
  object-position: center bottom;
  background-image: url("../assets/image/mobile_nav_bg.png");
  opacity: 0.2;
  background-size: cover;
}
.mobile_header .mobile_header_toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_header .mobile_header_toggle .language_button {
  background: #fff;
}
.mobile_header .mobile_header_toggle .mobile_header_toggleaction .mobile_close {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  outline: none;
}
.mobile_header .mobile_header_toggle .mobile_header_toggleaction .mobile_close .close-bar {
  display: block;
  height: 25px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}
.mobile_header .mobile_header_toggle .mobile_header_toggleaction .mobile_close .close-bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile_header .mobile_header_toggle .mobile_header_toggleaction .mobile_close .close-bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile_header .mobile_header_logo img {
  width: 100%;
  max-width: 204px;
}
.mobile_header .nobile_menue_nav {
  padding: 53px 72px;
  margin: 78px 40px 0 40px;
  box-shadow: inset 0 1px #fff4f0;
  background: #181b20;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  background: linear-gradient(180deg, rgba(24, 27, 32, 0.2) 0%, rgba(40, 45, 52, 0.2) 50%, rgba(40, 45, 52, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile_header .nobile_menue_nav .header_navbar_nav {
  display: flex;
  flex-direction: column;
}
.mobile_header .nobile_menue_nav a {
  line-height: 1.8em;
  font-size: 28px;
  font-weight: 700;
  color: #8c97a6;
}
.mobile_header .nobile_menue_nav a.active, .mobile_header .nobile_menue_nav a:hover {
  color: #fdb596;
}
.mobile_header .nobile_menue_nav a.active::before, .mobile_header .nobile_menue_nav a:hover::before {
  width: 100%;
}

.nav_action {
  display: flex;
  align-items: center;
}

.page_banner {
  position: relative;
}
.page_banner .banner_content {
  position: relative;
  margin: 0 auto;
}
.page_banner .banner_content .banner_content_wrapper {
  height: 100%;
}
.page_banner .banner_content .banner_content_wrapper .heading_wraper {
  margin-bottom: 0px !important;
}
.page_banner .banner_content .b_content_wrapper {
  padding: 190px 0 80px;
  align-items: center;
}
.page_banner .banner_content .b_content_wrapper .banner_subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #fdb596;
  font-weight: 300;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.page_banner .banner_content .b_content_wrapper .banner_title {
  font-size: 43px;
  line-height: 1.2em;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  color: #f7f7f7;
  margin: 0;
}
.page_banner .banner_content .b_content_wrapper .banner_title span {
  color: #fdb596;
}
.page_banner .banner_content .b_content_wrapper .banner_text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #d9d9d9;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.page_banner .banner_content .b_content_wrapper .b_img_glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(5px);
  mix-blend-mode: multiply;
  height: 100%;
  width: 100%;
  max-width: 1024px;
}
.page_banner .banner_content .b_content_wrapper .b_img {
  width: 100%;
  max-width: 1024px;
  margin-top: 80px;
}

#vorteile {
  padding: 120px 0 0;
}
#vorteile .vorteile_contents {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(212, 216, 222, 0.2);
  padding: 20px;
  width: 100%;
  border-radius: 6px;
}
#vorteile .vorteile_contents .vorteile {
  padding: 30px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  background-image: url("../assets/image/vorteile.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 1px solid rgba(212, 216, 222, 0.2);
}
#vorteile .vorteile_contents .vorteile h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
  color: #d9d9d9;
  text-align: center;
  margin: 0;
  letter-spacing: -0.18px;
}
#vorteile .vorteile_contents .vorteile p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #d9d9d9;
  margin-bottom: 13px;
  text-align: center;
  letter-spacing: -0.16px;
}
#vorteile .section_link {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#unsere_kunden {
  padding: 120px 16px;
  background-image: url("../assets/image/partner_bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}
#unsere_kunden .unsere_kunden_content {
  max-width: 1024px;
  padding-top: 80px;
  margin: 0 auto;
  box-shadow: inset 0 1px #fff4f0;
  background: #181b20;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  background: linear-gradient(180deg, rgba(24, 27, 32, 0.2) 0%, rgba(40, 45, 52, 0.2) 50%, rgba(40, 45, 52, 0.2) 100%);
}
#unsere_kunden .unsere_kunden_content .container {
  padding: 0 !important;
}
#unsere_kunden .unsere_kunden_contents_wraper {
  max-width: 780px;
  margin: 0 auto;
}
#unsere_kunden .unsere_kunden_contents_wraper .section_link {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#unsere_kunden .unsere_kunden_contents_wraper .section_link .section_end_text {
  color: #8c97a6;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.16px;
}
#unsere_kunden .unsere_kunden_contents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 37px;
  flex-wrap: wrap;
}
#unsere_kunden .unsere_kunden_contents a {
  transition: 0.3s;
}

#unsere_mission {
  padding: 120px 0;
}
#unsere_mission .about_content_wrapper {
  display: flex;
  gap: 45px;
}
#unsere_mission .about_content_wrapper .heading_wraper {
  margin-bottom: 0;
  flex: 1;
}
#unsere_mission .about_content_wrapper .heading_wraper .section_subtitle {
  text-align: left;
}
#unsere_mission .about_content_wrapper .heading_wraper .section_title {
  text-align: left;
}
#unsere_mission .about_content_wrapper .heading_wraper .section_text {
  text-align: left;
}

#features {
  padding: 120px 0px;
  position: relative;
}
#features .features_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
}
#features .container {
  padding-left: 16px;
  padding-right: 16px;
}
#features .feature_contents {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
#features .feature_contents .feature {
  width: calc((100% - 60px) / 3);
  display: flex;
  gap: 30px;
}
#features .feature_contents .feature .feature_img img {
  height: 18px;
  width: 18px;
}
#features .feature_contents .feature .feature_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#features .feature_contents .feature .feature_text h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f7f7f7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2em;
  letter-spacing: -0.24px;
  margin-bottom: 0;
}
#features .feature_contents .feature .feature_text p {
  font-size: 16px;
  font-weight: 400;
  color: #d9d9d9;
  line-height: 1.5em;
  margin: 0;
}
#features .section_link {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#testimonials {
  padding: 120px 0;
}
#testimonials .testimonials_content .container .testimonial_contents {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(212, 216, 222, 0.2);
  padding: 20px;
  width: 100%;
  border-radius: 6px;
}
#testimonials .testimonials_content .container .testimonial_contents .testimonial_content {
  padding: 80px 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("../assets/image/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}
#testimonials .testimonials_content .container .testimonial_contents .testimonial_content .testimonial_text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: #d9d9d9;
  margin-bottom: 13px;
  text-align: center;
}
#testimonials .testimonials_content .container .testimonial_contents .testimonial_content .testimonial_name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  color: #d9d9d9;
  text-align: center;
  margin: 0;
}
#testimonials .testimonials_content .container .testimonial_contents .testimonial_content .testimonial_company {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  color: #d9d9d9;
  text-align: center;
  margin: 0;
}
#testimonials .testimonials_content .container .testimonial_contents .testimonial_content .testimonial_stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 13px;
}

#faqs {
  padding: 120px 0;
}
#faqs .faqs_content .container {
  padding-left: 32px;
  padding-right: 32px;
}
#faqs .faqs_content .container .faq_contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#faqs .faqs_content .container .faq_contents .faq_content {
  border: 1px solid #596473;
  border-radius: 6px;
  background-color: rgba(212, 216, 222, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container .faq_heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  color: #f7f7f7;
  margin-bottom: 0;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container .toggle_buttin {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 42px;
  background-color: #fdb596;
  border-radius: 6px;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container .toggle_buttin:hover {
  cursor: pointer;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container .toggle_buttin img {
  transition: 0.3s;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_heading_container .toggle_buttin.active img {
  transform: rotate(45deg); /* Rotate to 'X' when active */
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #d9d9d9;
  display: none;
  transition: all 0.3s ease;
  opacity: 0;
}
#faqs .faqs_content .container .faq_contents .faq_content .faq_text.active {
  opacity: 1;
  display: block;
}

#kontakt {
  padding: 120px 0px;
}
#kontakt .container {
  width: 1360px;
}
#kontakt .kontakt_containers .kontakt_contents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  border: 1px solid rgba(212, 216, 222, 0.2);
  padding: 20px;
  width: 100%;
  border-radius: 6px;
}
#kontakt .kontakt_containers .kontakt_contents .kontakt {
  padding: 30px;
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("../assets/image/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  gap: 24px;
  border-radius: 6px;
}
#kontakt .kontakt_containers .kontakt_contents .kontakt .kontakt_item_details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#kontakt .kontakt_containers .kontakt_contents .kontakt .kontakt_item_details img {
  width: 26px;
  height: 26px;
}
#kontakt .kontakt_containers .kontakt_contents .kontakt .kontakt_item_details h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
  color: #d9d9d9;
  margin: 0;
}
#kontakt .kontakt_containers .kontakt_contents .kontakt a {
  color: #f7f7f7;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

#impressum {
  padding: 250px 32px 128px;
  margin: 0 auto;
}
#impressum .container {
  width: 1360px;
}
#impressum .container h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}
#impressum .container p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}
#impressum .container .impressum_container1 {
  margin-bottom: 128px;
}
#impressum .container .impressum_container1 .impressum_title {
  font-size: 88px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
  padding-bottom: 64px;
}
#impressum .container .impressum_container1 .imp_sub_section {
  margin-bottom: 16px;
}
#impressum .container .impressum_container1 .imp_sub_section h4 {
  color: #fbfbfb;
}
#impressum .container .impressum_container1 .imp_sub_section p {
  color: #fbfbfb;
}
#impressum .container .impressum_container2 .impressum_title {
  font-size: 36px;
  font-weight: 600;
  color: #E2E2E2;
  line-height: 1.2;
  margin: 0;
  padding-bottom: 32px;
}
#impressum .container .impressum_container2 .imp_sub_section h4 {
  color: #E2E2E2;
}
#impressum .container .impressum_container2 .imp_sub_section p {
  color: #E2E2E2;
}

footer {
  padding: 120px 0px;
  background-image: url("../assets/image/footer_background_shape.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .container {
  width: 1360px;
}
footer .footer_logo {
  text-align: center;
}
footer .footer_logo a {
  display: inline-block;
}
footer .footer_logo img {
  width: 326px;
  max-width: 100%;
  text-align: center;
}
footer .footer_navs {
  margin-top: 13px;
}
footer .footer_navs .footer_nav .navs {
  display: flex;
  gap: 19px;
  justify-content: center;
}
footer .footer_navs .footer_nav .navs a {
  font-size: 16px;
  font-weight: 400;
  color: #d9d9d9;
  transition: 0.3s;
}
footer .footer_navs .footer_nav .navs a:hover {
  color: #fdb596;
}
footer .footer_navs .footer_nav .navs a.active {
  color: #fdb596;
}
footer .footer_copyright {
  padding-top: 68px;
  display: flex;
  justify-content: center;
}
footer .footer_copyright .copyright_text {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #d9d9d9;
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
  }
  header .header .container {
    padding: 24px 16px;
  }
  header .header .container .header_navbar_nav {
    display: none;
  }
  header .header .container .header_navbar_action {
    display: block;
  }
  header .header .container .call_to_action {
    display: none;
  }
  .nav_action {
    gap: 32px;
  }
  .divider .page_banner.home_banner {
    min-height: 920px;
  }
  .divider .page_banner .banner_content {
    padding-top: 240px;
  }
  .divider .page_banner .banner_content .b_content_wrapper .banner_title {
    font-size: 58px;
  }
  #referenzen {
    padding: 96px 32px;
  }
  #referenzen .referanze_content_wrapper .section_title {
    font-size: 46px;
  }
  #referenzen .referanze_contents a:nth-child(1), #referenzen .referanze_contents a:nth-child(2), #referenzen .referanze_contents a:nth-child(3), #referenzen .referanze_contents a:nth-child(4) {
    width: auto !important;
  }
  #partner {
    padding: 96px 32px;
  }
  #partner .partner_content_wrapper .section_title {
    font-size: 46px;
  }
  #partner .partner_contents {
    gap: 80px;
    flex-wrap: wrap;
  }
  #features .feature_contents .feature {
    width: calc((100% - 30px) / 2);
  }
  footer .footer_top {
    flex-direction: column;
    gap: 32px;
  }
  footer .footer_top .footer_logo {
    width: 100%;
  }
  footer .footer_top .footer_navs {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .referanze_slider {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .heading_wraper {
    margin-bottom: 40px;
  }
  .page_banner .b_content_wrapper {
    padding-top: 124px !important;
    padding-bottom: 120px !important;
  }
  .page_banner .heading_wraper {
    margin-bottom: 0px !important;
  }
  #unsere_mission {
    padding: 72px 0;
  }
  #unsere_mission .about_content_wrapper {
    flex-direction: column !important;
  }
  #unsere_mission .about_content_wrapper .heading_wraper {
    flex: 1;
  }
  #unsere_mission .about_content_wrapper .heading_wraper .section_subtitle {
    text-align: center;
  }
  #unsere_mission .about_content_wrapper .heading_wraper .section_title {
    text-align: center;
  }
  #unsere_mission .about_content_wrapper .heading_wraper .section_text {
    text-align: center;
  }
  #referenzen {
    padding: 64px 16px;
  }
  #referenzen .referanze_content_wrapper .section_title {
    font-size: 36px;
  }
  #referenzen .referanze_contents {
    display: none;
  }
  #referenzen .referanze2_contents {
    display: none;
  }
  #referenzen .horigon {
    display: none;
  }
  #partner {
    padding: 64px 16px;
  }
  #partner .partner_content_wrapper .section_title {
    font-size: 36px;
  }
  #partner .partner_contents {
    gap: 40px;
    flex-wrap: wrap;
  }
  #features {
    padding: 70px 0;
  }
  #features .feature_contents .feature {
    width: 100%;
  }
  #features .section_link {
    margin-top: 40px;
  }
  #testimonials {
    padding: 70px 16px;
  }
  #testimonials .testimonials_content .container .testimonial_contents {
    flex-direction: column !important;
    padding: 20px 16px;
  }
  #testimonials .testimonials_content .container .testimonial_contents .testimonial_content {
    padding: 80px 20px;
    flex: 1;
    width: 100% !important;
  }
  #faqs {
    padding: 70px 16px;
  }
  #kontakt .kontakt_contents {
    flex-direction: column !important;
  }
  #kontakt .kontakt_contents .kontakt {
    width: 100% !important;
    padding: 24px;
  }
  #impressum {
    padding: 150px 16px 64px;
    margin: 0 auto;
  }
  #impressum .container .impressum_container1 {
    margin-bottom: 64px;
  }
  #impressum .container .impressum_container1 .impressum_title {
    font-size: 58px;
    padding-bottom: 32px;
  }
  footer .footer_top {
    padding: 50px 0;
  }
  footer .footer_bottom .copyright_text {
    font-size: 11px;
  }
  #vorteile {
    padding: 70px 0;
  }
  #vorteile .vorteile_contents {
    flex-direction: column !important;
  }
  #vorteile .vorteile_contents .vorteile {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  footer .footer_bottom .copyright_text {
    font-size: 11px;
  }
  footer {
    padding: 32px 32px 48px;
  }
  footer .footer_top {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 16px;
    padding: 0;
  }
  footer .footer_top .footer_logo {
    width: 100%;
    text-align: center;
  }
  footer .footer_top .footer_navs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  footer .footer_top .footer_navs .footer_nav {
    flex: 1;
    padding-bottom: 16px;
  }
  footer .footer_top .footer_navs .footer_nav:not(:last-child) {
    border-bottom: 1px solid #525251;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    color: #cccccc;
    margin: 0;
    position: relative;
    cursor: pointer;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title::before, footer .footer_top .footer_navs .footer_nav .footer_nav_title::after {
    position: absolute;
    content: "";
    background-color: #fff;
    border-radius: 3px;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title::before {
    width: 16px;
    height: 2px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title::after {
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 2px;
    transition: 0.2s;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title.active::after {
    opacity: 0;
  }
  footer .footer_top .footer_navs .footer_nav .navs {
    flex-direction: column;
    gap: 19px;
    padding-top: 16px;
  }
  footer .footer_top .footer_navs .footer_nav .navs a {
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    transition: 0.3s;
  }
  footer .footer_top .footer_navs .footer_nav .navs a:hover {
    color: #a735d3;
  }
  footer .footer_top .footer_navs .footer_nav .contact_infos {
    padding-top: 16px;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_content {
    display: none !important;
  }
  footer .footer_top .footer_navs .footer_nav .footer_nav_title.active + .footer_nav_content {
    display: flex !important;
  }
  footer .footer_copyright {
    border-top: 0;
    padding-top: 16px;
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }
  #referenzen {
    padding: 64px 16px;
  }
  #referenzen .referanze_content_wrapper .section_title {
    font-size: 36px;
  }
  #referenzen .referanze_contents {
    gap: 25px;
  }
  #kontakt .kontakt_contents .kontakt {
    align-items: flex-start !important;
  }
  #features .feature_contents .feature:nth-child(n+7) {
    display: none;
  }
  #features .feature_contents .feature .feature_text h4 {
    font-size: 15px;
  }
  #features .feature_contents .feature .feature_text p {
    font-size: 12px;
  }
}

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