@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: __sohne_8d2f64, __sohne_Fallback_8d2f64, ui-sans-serif,
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --text-color: rgb(80, 80, 100);
  --white-color: #fff;
}

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

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  color: var(--white-color);
  counter-reset: steps;
}

.sticky-nav {   position: -webkit-sticky;
/* FÃ¼r Safari */
position: sticky;   top: 0;
/* Abstand von oben */

/* Optional */
z-index: 1000;
/* Optional fÃ¼r EbenenprioritÃ¤t */
}

/* new section */

nav {
  padding: 15px 0 !important;
  background-color: #0b2637;
}

#benefits {   scroll-margin-top: 120px;}
#process {   scroll-margin-top: 100px;}
#reviews {   scroll-margin-top: 180px;}
#fragen {   scroll-margin-top: 160px;}

/* Center the logo in the div container */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Position the burger menu to the right in mobile view */
@media (max-width: 768px) {
  .hamburger {
    position: absolute;
    right: 20px;
  }
}

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

.hero_sec {
  background-color: #0b2637;
  padding-block: 40px;
}

form .btn-primary {
  background-color: #FFA500;
  color: #fff;
  outline: none;
  border: none;
}

.hero_btn {
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  fill: #ffffff;
  color: #ffffff !important;
  background-color: #3ec091;
  border-radius: 5px 5px 5px 5px;
  padding: 22px 40px 22px 40px;
  text-decoration: none;
  margin-top: 20px !important;
}

.hero_ls {
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  transition: color 0.3s;
  padding-left: 5px;
}

.hero_head {
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 49.56px;
}

.benefits-sec {
  padding: 60px 0 30px;
}

.button-container {
  display: flex;
  align-items: center;
}
 
.profile-picture {
  margin-left: 15px; /* Abstand zum Button */
  width: 40px; /* GrÃ¶ÃŸe des Profilbilds anpassen */
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
 
.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Damit das Bild gut passt */
}

.benefits-sec h2 {
  color: #0b2637;
  font-family: "Montserrat", Sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 40.8px;
  text-align: center;
  /* margin-bottom: 40px; */
}

.benefits-sec .container {
  position: relative;
}

.benefits {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
}
.benefits2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.section {
  background-color: #f4f4f4;
}

.benefit {
  display: flex;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 20px 20px 20px 20px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  align-items: flex-start;
  gap: 12px;
}

.benefit2 {
  display: flex;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 20px 20px 20px 20px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  align-items: flex-start;
  gap: 12px;
}

/*Navbar*/
nav {
  position: sticky;
  top: 0; /* Die Navigation bleibt am oberen Rand kleben */
  z-index: 1000; /* Stellt sicher, dass die Navigation Ã¼ber anderen Elementen liegt */
  background-color: #0b2637; /* Behalte die bestehende Hintergrundfarbe */
}
.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  color: #FFA500; /* Orange Farbe fÃ¼r den Hamburger-Icon */
  cursor: pointer;
  margin-left: auto;
  display: none; /* StandardmÃ¤ÃŸig ausgeblendet */
}
 
.nav-menu {
  display: none; /* StandardmÃ¤ÃŸig ausgeblendet */
  background-color: #0b2637; /* Dunkelblauer Hintergrund passend zum bestehenden Design */
  border-radius: 8px; /* Leichte Abrundung der Ecken */
}
 
.nav-menu.show {
  display: block !important;
  flex-direction: column;
  position: absolute;
  top: 60px; /* Passe diese HÃ¶he an */
  right: 10px; /* Anpassung des rechten Abstandes */
  width: 200px; /* Breite des MenÃ¼s */
  padding: 10px;
  background-color: #0b2637; /* Hintergrundfarbe anpassen */
  z-index: 1000;
}
 
.nav-item {
  margin: 10px 0;
}
 
.nav-item a {
  color: #FFA500; /* Orange Textfarbe fÃ¼r Links */
  text-decoration: none;
  padding: 8px;
  display: block;
  border-radius: 4px;
  transition: background-color 0.3s;
}
 
.nav-item a:hover {
  background-color: rgba(255, 165, 0, 0.2); /* Leicht orangefarbener Hintergrund beim Hover */
}
 
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Hamburger-Icon sichtbar auf mobilen GerÃ¤ten */
  }
 
  .nav-menu {
    display: none !important; /* StandardmÃ¤ÃŸig ausgeblendet */
  }
}
 
.nav-menu .nav-item a:hover {
  background-color: rgba(255, 165, 0, 0.2) !important;
  transition: background-color 0.3s ease;
}
 
 
/*Navbar*/
/* -=-=-=-=-= */

.benefit h3 {
  color: #0b2637;
  font-family: "Montserrat", Sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 32px;
}

.benefit p {
  color: #0b2637;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

#Fragen {
  background-color: #f6f6f6;
  padding-top: 70px;
}

/* ======== */

.fragen-header {
  font-family: var(--font-secondary);
  color: var(--text-color);
  font-weight: 700;
  text-align: center;
  font-size: 46px;
  padding-bottom: 0.73em;
  opacity: 1;
  padding-top: 1.91em;
}

.accordion {
  width: 92.5%;
  margin: 2rem auto;
}

.header-text {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.accordion-item-p {
  padding: 0.2rem 0.3rem 1rem 0.1rem;
  color: var(--text-color);
  font-size: 16px;
  font-family: var(--font-secondary);
  line-height: 24px;
}

.accordion-item {
  background-color: #f3f3f6;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: none; /* Initially, no box shadow */
}

.accordion-item.active {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25); /* Add box shadow when active */
  transition: box-shadow 0.2s ease; /* Add transition for box shadow */
}

.accordion-item-body {
  max-height: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #fff; /* White background */
}

.accordion-item-header {
  padding: 1.5rem 3.125rem 1.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.circle {
  position: absolute;
  right: 10px;
  margin-right: 11px;
  width: 1.3rem;
  height: 1.3rem;
  background-color: #3ec091;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.accordion-item-header.active .circle {
  background-color: black; /* Change to black when active */
}

.circle::after {
  content: "\002B";
  font-size: 1.5rem;
  font-weight: 100;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.accordion-item-header.active .circle::after {
  content: "\2212";
  color: #fff;
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

/* ! Process Section */

.process-section {
  background: #fff;
  padding-top: 70px;
}

.container h2 {
  font-size: 30px;
  font-weight: 700;
  color: rgb(26, 26, 61);
  font-family: var(--font-secondary);
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.container-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(11, 38, 55);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4em;
}

.step {
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 10px;
  padding-top: 15px;
  padding-left: 15px;
  transition: 0.3s ease-in-out;
  padding-right: 15px;
}

.step:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.step-number,
.step-content {
  color: #2d2d4f;
}

.step-number {
  background-color: #2d2d4f;
  color: white;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  line-height: normal;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.step-number::after {
  counter-increment: steps;
  content: counter(steps);
}

.step-content h3 {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-secondary);
  color: rgb(80, 80, 100);
  line-height: 25.2px;
}

.step-content p {
  padding-bottom: 20px;
  line-height: 24px;
  text-align: center;
  color: rgb(80, 80, 100);
  font-size: 16px;
}

.cta {
  z-index: 10;
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  text-decoration: none;
  color: #fff !important;
  --tw-bg-opacity: 1;
  background-color: #3ec091;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(24 24 56 / var(--tw-text-opacity));
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0/0.1), 0 1px 2px -1px rgb(0 0 0/0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent),
    var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
  transition-property: color, background-color, border-color, fill, stroke,
    -webkit-text-decoration-color;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
  margin-bottom: 130px;
  margin-top: 30px;
}

.cta:hover {
  background-color: #ff9d00;
  color: #fff;
}

.arrow {
  width: 20px;
  height: auto;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta:hover .arrow {
  transform: translateX(5px);
}

.container a:not(.cta, .nav-link) {
  height: 30px;
  width: 130px;
  border-radius: 10px;
}

/* ! Process Section */

footer {
  background-color: #0b2637;
  padding: 30px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}

footer .container ul {
  padding-left: 0;
}

.category span {
  padding: 3px;
}

@media (max-width: 768px) {
  .category span {
    display: block;
    padding: 0;
  }

  .category p + span  {
    margin-top: 10px;
    display: block;
  }
}

.category p {
  color: rgb(255, 255, 255);
}

.category p {
  padding-bottom: 0.4em;
}

.category p,
.category p {
  padding-bottom: 1em;
}

.category ul li,
.category ul li {
  list-style: none;
  padding: 3px;
}

.category ul li a,
.category ul li a {
  color: #fff;
  text-decoration: none;
}

/* ! ========================  Offer Section =================== */

.offer-section {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  align-items: center;
  text-align: center; /* Center text horizontally */
}

.offer-section .read-more-btn {
  margin: 0; /* Remove default margin for paragraphs */
}

/* CSS */
.read-more-btn {
  all: unset;
  width: 160px;
  height: 34px;
  font-size: 17px;
  background: transparent;
  border: none;
  font-weight: bold;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.read-more-btn::after,
.read-more-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.read-more-btn::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #3ec091;
  border-radius: 10px;
}

.read-more-btn::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.read-more-btn:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.read-more-btn:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.read-more-btn:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.container p:not(.benefit p, .step-content p) {
  /* color: #bdc7ca; */
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

#salutation {
  padding: 16.5px 110px 16.5px 20px;
  color: #2d2d4f;
  border: 1px solid var(--form-border-color);
  background: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
}

/* .form-group {
  margin: 5px;
  width: 300px;
} */

/* .form-group input {
  padding: 15px 0px 15px 15px;
  color: #595964;
  border: none;
  opacity: 1;
  background: white;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
} */

.form-actions {
  display: flex;
  justify-content: center;
  height: auto;
}

.grid-actions {
  display: grid;
  grid-template-columns: repeat(2, 24.5em);
  margin-top: 2em;
}

.field2 img {
  max-width: 9em;
}

.form-actions button {
  background: #3ec091;
  color: #fff;
  border-color: #3ec091;
  border-radius: 5px;
  text-align: center;
  padding: 10px 16px;
  width: 370px;
  font-size: 18px;
}

.flex-actions small {
  text-align: left;
  width: 30px;
}
/* <!-- ! ===========================   Cookie Banner   ====================================== --> */
  .cb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1c1c1c;
    color: #fff;
    padding: 16px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  }
  .cb-banner a {
    color: #ffc107;
    text-decoration: underline;
  }
  .cb-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cb-buttons button {
    padding: 10px 18px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }
  #cb-accept-essential {
    background: #e0e0e0;
    color: #000;
  }
  #cb-accept-all {
    background: #ffc107;
    color: #000;
  }

  @media (max-width: 600px) {
    .cb-banner {
      font-size: 13px;
    }
    .cb-buttons {
      flex-direction: column;
    }
    .cb-buttons button {
      width: 100%;
    }
  }
/* <!-- ! ===========================   End Cookie Banner   ====================================== --> */
/* <!-- ! ===========================   Satisfied customer Section   ====================================== --> */

.satisfied-clients-section {
  /* border: 1px solid red; */
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfied-header {
  padding: 50px 0px 25px 0px;
  /* border: 1px solid red; */
  /* width: 70em; */
}

.satisfied-header h2 {
  color: #0b2637;
  font-family: "Montserrat", Sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 40.8px;
}

/* ============================================================ */

#satisfied-slider-main {
  /* height: 441px; */
  padding-bottom: 4em;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
}

.satisfied-slider-content {
  display: flex;
  justify-content: center;
  /* width: 70em; */
  height: auto;
  border-radius: 5px;
  /* border: 1px solid red; */
}

.slider-content2 {
  margin: 20px;
}

.slider-content2 {
  width: 100%;
  height: 24em;
}

.swiper-wrapper {
  padding-bottom: 50px;
}

.swiper {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  height: 100%;
  /* overflow: hidden; */
}

.swiper-slide {
  font-size: 18px;
  border-radius: 5px;
  height: 280px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  background: #fff;
  /* margin: 10px; */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-inner-swipper {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.flex-inner-swipper img {
  max-width: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.swiper-content1,
.swiper-content2,
.swiper-content3 {
  width: 100%;
  border-radius: 3px;
}

.swiper-content1 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-left: 10px;
  padding-right: 10px;
  height: 2.1em;
}

.swiper-content2 {
  height: 9em;
  padding-right: 10px;
}

.swiper-content3 {
  background-color: #0b2637;
  display: flex;
  padding-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  align-items: center;
  height: 3.7em;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.swiper-content1 .google-icon {
  width: 20px;
  height: 20px;
}

.checked {
  color: orange;
  font-size: 14px;
}
@media (min-width: 768px) {
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0b2637; /* Falls du eine andere Hintergrundfarbe haben mÃ¶chtest */
  }
}
/* -=-=-=-=-= */

.swiper-content2 p {
  font-size: 15.5px !important;
  font-family: "Montserrat", Sans-serif !important;
  color: #0b2637;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 26px !important;
}

.swiper-userpfp-content1 {
  border-radius: 50%;
  height: 2.2em;
  width: 2.2em;
}

.swiper-userpfp-content2 {
  /* border: 1px solid darkblue; */
  margin-left: 10px;
  height: 2.4em;
  padding-top: 3px;
  line-height: 17px;
  width: auto;
}

.swiper-userpfp-content2 p {
  font-weight: bold;
  font-size: 15px;
  color: #000000;
}

.swiper-userpfp-content2 span {
  opacity: 0.5;
  font-size: 12px !important;
  font-family: MontSerrat, sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 1px;
}

.swiper-content2 small a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  padding-left: 10px;
}

.rate-us-section1 {
  /* border: 1px solid red; */
  display: flex;
  justify-content: end;
  align-items: center;
  height: 40px;
  margin: 10px;
}

.rate-us-section2 {
  /* border: 1px solid red; */
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.rate-us-section1 img {
  max-width: 130px;
}

.rate-us-section2 img {
  width: 60px;
  margin-left: 10px;
  margin-top: 10px;
}

.rate-us-section2 span {
  color: black;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
  padding-top: 20px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #0b2637 !important;
  transition: 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
  transform: translateY(-2px);
}

.swiper-pagination-bullet:active {
  transform: translateY(2px);
}

.rate-us-section2 p {
  padding-left: 10px;
}

.rate-us-section2 a {
  text-decoration: none;
  margin-top: 10px;
  color: #000000;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  width: 210px;
  font-weight: 700;
  background-color: #3ec091;
  transition: 0.3s ease;
  padding: 10px 30px;
  border-radius: 6px;
}

.rate-us-section2 a:hover {
  background-color: #72caaa;
}

@media (max-width: 320px) {
  .category,
  .category,
  .category {
    width: 240px;
    margin: 10px;
  }
}

@media (max-width: 500px) {
  .header-text {
    font-size: 0.9em;
  }
}

@media (max-width: 600px) {
  footer {
    display: block;
    height: auto;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .accordion-item-body-content {
    height: auto;
  }
  .fragen-header {
    font-size: 1.5em;
	padding-top: 70px;
  }
}

@media (max-width: 290px) {
  .category,
  .category,
  .category {
    width: 230px !important;
    margin: 10px;
  }
}

@media (max-width: 950px) {
  .category,
  .category,
  .category {
    width: 270px;
    margin: 10px;
  }
}

@media (max-width: 970px) {
  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  .fragen-header {
    font-size: 2em;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .offer-section {
    height: auto;
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2em;
  }

  .hero_btn {
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
  }

  .hero_head {
    color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
  }

  .hero_ls {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    line-height: normal;
  }

  .hero_sec {
    padding: 30px 0 50px;
  }

  .benefit {
    flex-direction: column;
  }
}

@media (max-width: 1150px) {
  .accordion-item-header::after {
    right: 1.3em;
  }
}

@media (max-width: 1350px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(1, 41.4em);
    margin-top: 2em;
  }

  .step {
    margin: 10px;
    height: auto;
  }

  .container h2 {
    font-size: 26px;
    font-weight: 700;
  }

  .offer-section {
    text-align: center;
  }

  .form-group input,
  #salutation {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2em;
  }

  .grid-actions {
    grid-template-columns: 1fr !important;
  }

  .field2 {
    margin: 15px 0;
  }

  .satisfied-slider-content {
    flex-direction: column;
  }

  #satisfied-slider-main {
    height: auto !important;
  }

  .slider-content2 {
    max-width: 100%;
  }

  .swiper-slide {
    height: auto;
  }

  .slider-content2 {
    width: 100% !important;
  }

  footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .satisfied-slider-content {
    max-width: 100%;
  }

  .slider-content2 {
    margin-left: 0;
    margin-right: 0;
  }

  .swiper {
    padding: 0 20px;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2em;
  }

  footer .container {
    flex-direction: column;
  }

  .container h2 {
    font-size: 18px;
    font-weight: 700;
  }

  .form-actions button {
    width: 100%;
  }

  .satisfied-header h2 {
    font-size: 28px;
    text-align: center;
  }

  .slider-content1 {
    height: auto;
  }

  .step {
    display: block;
  }

  .step-number {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 32px;
    height: 32px;
  }

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
  
    margin: 10px auto !important;
  }

  .steps {
    padding-left: 0 !important;
  }

  .process-section .cta {
    margin-bottom: 20px !important;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -3px;
  }

  .offer-section {
    padding: 0 !important;
  }

  .benefit svg {
    max-width: 60px !important;
  }

  .hero_btn {
    font-size: 13px !important;
    padding: 12px;
  }

  .video_sec {
    margin-block: 30px !important;
  }

  font,
  * {
    line-height: normal !important;
  }

  .benefits-sec {
    padding: 30px 0 30px !important;
  }

  .satisfied-header h2 {
    font-size: 21px;
  }

  .container h2 {
    font-size: 18px;
  }
}

.video_sec {
  margin-block: 60px;
}

.video_sec .container {
  max-width: 1400px;
}

.video_sec video {
  max-width: 80%;
}