@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --font-urbanist: "Urbanist", sans-serif;
  --font-outfit: "Urbanist", sans-serif;
  --primaryColor: #754B26;
  --whiteColor: #fff;
  --blackColor: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-urbanist);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #FBF8F3;
  line-height: 160%;
  color: #754B26;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

p,
figure,
label {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-radius: 18px;
}

small {
  font-size: inherit;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

input,
button {
  background-color: transparent;
  border: 1px solid transparent;
  outline: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(images/select-input-arrow.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

::selection {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

::-webkit-selection {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

::-moz-selection {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

.scrolltotop {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--primaryColor);
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 30px;
  bottom: 25px;
  display: none;
  animation: lab_top_up 5s linear infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}

.scrolltotop i {
  color: var(--whiteColor);
}

@keyframes lab_top_up {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

.pluse,
.pluse2 {
  position: relative;
  top: 10px;
  left: -8px;
  z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
  -webkit-animation: pluse_animate 2.5s infinite linear;
  animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}

/*======= header-area design =======*/

.header-area {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #754B26;
  transition: 0.3s;
  background: #FBF8F3;
}

.home-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom-color: transparent;
  background: transparent;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px 90px;
}

.navbar-menu ul {
  display: flex;
  align-items: center;
  gap: 55px;
}

.navbar-menu ul li,
.navbar-menu ul li a {
  color: #754B26;
  font-family: var(--font-outfit);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.8px;
  position: relative;
}

.navbar-menu ul li a:hover {
  color: #5F3B1C;
}

.dropdown-wp {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.dropdown-wp i {
  font-size: 14px;
}

.dropdown-menu-wp {
  position: absolute;
  right: 0;
  top: calc(100% + 35px);
  flex-direction: column;
  padding: 23px 27px;
  min-width: 100%;
  width: fit-content;
  gap: 25px !important;
  border-inline: 1px solid var(--primaryColor);
  border-bottom: 1px solid var(--primaryColor);
  background: #FBF8F3;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.dropdown-menu-wp::before {
  content: '';
  display: block;
  width: 100%;
  height: 35px;
  left: 0;
  bottom: 100%;
  position: absolute;
}

.dropdown-menu-wp a {
  white-space: nowrap;
}

.dropdown-wp:hover>.dropdown-menu-wp {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.home-header .site-logo .logo-brown {
  display: none;
}

.home-header .logo-white {
  display: block !important;
}

.home-header .navbar-menu ul li,
.home-header .navbar-menu ul li a {
  color: #fff;
}

.home-header .dropdown-menu-wp {
  background: transparent;
  border-color: transparent;
}

.home-header .navbar-menu ul li a:hover {
  color: var(--primaryColor);
}

.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1020;
  background-color: #A17346;
  background-image: url(images/mobile-nav-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  text-align: center;
  transition: 0.3s;
}

.mobile-nav-list li,
.mobile-nav-list li {
  font-size: 24px;
  color: #fff;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.dropdown-togger {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.dropdown-wp-mb {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dropdown-menu-wp-mb {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.dropdown-wp-mb .dropdown-togger i {
  transition: 0.3s;
}

.dropdown-wp-mb.active i {
  transform: rotate(180deg);
}

.mobile-menu.nav-active {
  right: 0;
}

.home-header .humburger-btn svg path {
  stroke: #fff;
}

.header-area.nav-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  background: #FBF8F3;
}

/* header style end  */

/* hero area style start */

.hero-area {
  background: url(images/hero-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-wrapper {
  padding-top: 90px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 67px;
}

.hero-wrapper .logo {
  max-width: 414px;
}

.hero-wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 122%;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}

.action-btn {
  display: inline-flex;
  padding: 14px 34px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.4px;
  border-radius: 33px;
  transition: 0.3s;
}

.action-btn.btn-secondery {
  background: #fff;
  color: var(--primaryColor);
}

.action-btn.btn-secondery:hover {
  background: #5F3B1C;
  color: var(--whiteColor);
}

.action-btn.btn-primery {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.action-btn.btn-primery:hover {
  background: #5F3B1C;
  color: var(--whiteColor);
}

.hero-action-btns {
  display: flex;
  align-items: center;
  gap: 61px;
  flex-wrap: wrap;
}

.hero-appointment-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  color: #FFF;
  background: rgba(117, 75, 38, 0.82);
  backdrop-filter: blur(4px);
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.hero-appointment-note strong {
  font-weight: 600;
}

/* toast popup style  */

.toast-popup {
  position: fixed;
  right: 90px;
  bottom: 70px;
  padding: 15px 16px;
  border-radius: 8px;
  background: #FBF8F3;
  filter: drop-shadow(0 4px 10.1px rgba(0, 0, 0, 0.15));
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
  width: 100%;
  max-width: 387px;
}

.toast-popup.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-pop-wrapper {
  display: flex;
  gap: 24px;
}

.toast-pop-image img {
  width: 139px;
  height: 188px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.toast-pop-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.toast-pop-content h2 {
  color: #35461D;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.48px;
}

.toast-pop-content h4 {
  color: #F28976;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
}

.toast-pop-content p {
  color: #35461D;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.toast-pop-content a {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #F28976;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.3px;
  margin-top: 10px;
}

.toast-pop-content a:hover {
  background: #DF7866;
}

.toast-close {
  padding: 0;
  margin: 0;
}

/* hero area end hare  */

/* balance area start  */

.balace-area {
  padding-top: 160px;
  padding-bottom: 80px;
  background: #F8EBDE;
}

.balace-wrapper {
  display: flex;
  align-items: start;
  gap: 149px;
}

.balance-image img {
  width: 100%;
  max-width: 446px;
  border-radius: 18px;
}

.balance-content-wp {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.balance-content-wp h4 {
  color: #754B26;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.76px;
}

.balance-content-wp p {
  color: #754B26;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.balance-content-wp p strong {
  font-weight: 600;
}

.balance-content-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* balance area end  */

/* our treatments area start  */

.our-treatment-area {
  padding-block: 160px;
  background: #FEFAF6;
}

.our-treatment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.our-treatment-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.our-treatment-top h4 {
  color: #8B8562;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.76px;
}

.our-treatment-top p {
  color: #8B8562;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
  width: 100%;
  max-width: 870px;
}

.our-treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 75px;
}

.single-treatment {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.single-treatment .icon {
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 2px solid #8B8562;
  min-height: 116px;
}

.treatment-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment-info h5 {
  color: #8B8562;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.48px;
}

.treatment-info p {
  color: #8B8562;
}

/* our treatment area end  */

/* people say area start */

.people-say-area {
  padding-top: 167px;
  padding-bottom: 151px;
  background: #AEA67A;
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fff;
}

.people-say-ractangle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height: fit-content;
  z-index: -1;
}

.people-say-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 38px;
}

.people-say-wrapper p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  width: 100%;
  max-width: 1260px;
}

.people-say-wrapper span {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}

/* people say area end  */

/* appointment area start  */

.appointment-area {
  padding-top: 163px;
  padding-bottom: 130px;
  background: #FEFAF6;
}

.appointment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.appointment-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}

.appointment-top h4 {
  color: #754B26;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.76px;
}

.appointment-top p {
  color: #754B26;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
  width: 100%;
  max-width: 929px;
}

.appointment-scheduling {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.scheduling-card {
  display: flex;
  gap: 115px;
}

.scheduling-image {
  flex: 1;
  max-width: 554px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scheduling-content {
  flex: 1;
  padding: 50px 56px;
  padding-left: 73px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

.scheduiling-card-fill {
  background: #F8EBDE;
}

.scheduling-content h4 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.48px;
}

.scheduling-content p {
  color: #754B26;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
}

.scheduling-content p strong {
  font-weight: 600;
}

.action-btn.btn-third {
  background: #8B8562;
  color: #fff;
}

.action-btn.btn-third:hover {
  background: #726D50;
}

.scheduling-content .action-btn {
  margin-top: 20px;
}

.racngle-image img {
  max-width: 173px;
}

/* appointment area end  */

/* direction area  */

.direction-area {
  padding-block: 109px;
  background: #F8EBDE;
}

.direction-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}

.direction-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.direction-left h3 {
  color: #754B26;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.76px;
  margin-bottom: 15px;
}

.direction-left h4 {
  color: #754B26;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.direction-left p {
  color: #754B26;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.44px;
}

.address p {
  font-size: 20px;
}

.direction-map iframe {
  width: 100%;
  max-width: 702px;
  height: 312px;
  border-radius: 18px;
}

.direction-map {
  flex: 1;
  display: flex;
  justify-content: end;
}

.map-consent-box {
  width: 100%;
  max-width: 702px;
  min-height: 312px;
  border-radius: 18px;
  padding: 34px;
  background: #F3EAE2;
  border: 1px solid #754B26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.map-consent-box h4 {
  color: #754B26;
  font-size: 24px;
  font-weight: 500;
}

.map-consent-box p {
  color: #754B26;
  font-size: 17px;
  line-height: 1.5;
  max-width: 520px;
}

.map-consent-box a {
  text-decoration: underline;
  font-weight: 500;
}

.map-consent-btn {
  display: inline-flex;
  padding: 13px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
  background: #754B26;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s;
}

.map-consent-btn:hover {
  background: #5F3B1C;
}

/* direction area end  */

/* footer area start  */

.footer-area {
  padding-top: 125px;
  padding-bottom: 160px;
  background-color: #A17346;
  background-image: url(images/footer-bg-dekstop.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.footer-area .container {
  max-width: 1565px;
  padding-inline: 30px;
}

.footer-wrapper {
  display: flex;
  position: relative;
}

.footer-logo {
  width: 25%;
}

.footer-logo img {
  max-width: 272px;
}

.footer-menu-block {
  width: 20%;
}

.footer-menu-block ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-menu-block ul li {
  min-height: 30px;
}

.footer-menu-block ul li a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}

.footer-menu-block ul li a:hover {
  opacity: 0.85;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 25%;
}

.footer-contact-block li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-adress-block {
  width: 15%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-addres-text {
  display: flex;
  align-items: start;
  gap: 10px;
}

.footer-opening-block {
  width: 15%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-wrapper h4 {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.copyright-text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
}

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

/*========= Physiotherapie page ======== */

.leistungen-area {
  padding-block: 150px;
  background: #FBF8F3;
}

.leistungen-wrapper {
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.section-top h2 {
  color: #8B8562;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  width: 100%;
  max-width: 904px;
  margin-inline: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.section-content-grid-one p {
  color: #8B8562;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.single-content-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

.single-content-block h4 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.single-content-block a {
  display: inline-flex;
  padding: 7px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  background: #8B8562;
  color: #FBF8F3;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  margin-top: 10px;
}

.single-content-block a:hover {
  background: #726D50;
}

.appoint-term-card {
  width: 100%;
  max-width: 554px;
  border-radius: 18px;
  background: #F2F1E6;
  padding: 56px 60px;
  margin-top: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.appoint-term-card h3 {
  color: #8B8562;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.appoint-term-card ul {
  list-style: disc;
  color: #8B8562;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 153%;
  letter-spacing: 0.4px;
  padding-left: 20px;
}

.appoint-term-card .icon {
  position: absolute;
  left: 60px;
  top: -40px;
}

/* content section end  */

/* additional therapie area  */

.additional-therapie-area {
  padding-top: 75px;
  padding-bottom: 136px;
  background: #F8EBDE;
}

.additional-therapie-wrapper {
  display: flex;
  flex-direction: column;
  gap: 133px;
}

.additional-therapie-wrapper h2 {
  color: #754B26;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.76px;
}

/* additional therapie end hare  */

/* contact section style  */

.contact-section {
  padding-block: 160px;
}

.contact-section-image img {
  max-width: 553px;
  width: 100%;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 55px;
}

.contact-buttons .wp-btn img {
  max-width: 48px;
}

.contact-section-content {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.contact-section-content h4 {
  color: #754B26;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.76px;
}

.schreiben-btn {
  font-size: 20px;
}

.schreiben-btn a {
  font-size: 24px;
}

.ablauf-wp ul {
  list-style: disc;
  padding-left: 20px;
}

.content-title h3 {
  color: #754B26;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.76px;
  margin-bottom: 35px;
}

.content-title h4 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.48px;
  padding-bottom: 35px;
}

.philosiphie-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.unsere-img img {
  max-width: 70px;
}

.unsere-img {
  text-align: center;
  padding-bottom: 25px;
}

.philosiphie-image {
  padding-top: 120px;
}

/*========== Uber ans page ========= */

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 45px;
  row-gap: 38px;
  align-items: start;
}

.about-content-grid p {
  color: #8B8562;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.about-us-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
  padding-top: 0;
}

.about-content-grid .about-us-block {
  padding-top: 0;
}

.about-image {
  width: 100%;
  max-width: 308px;
}

.about-name h2 {
  color: #754B26;
  font-family: var(--font-outfit);
  font-size: 38px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.76px;
  padding-top: 35px;
}

.about-info-list {
  padding-top: 25px;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 554px;
  gap: 3px;
}

.about-info-list li {
  color: #754B26;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.44px;
}

.certificate-block {
  padding-top: 11px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.certificate-block .icon {
  padding-bottom: 30px;
  width: 100%;
  max-width: 305px;
  border-bottom: 2px solid #8B8562;
}

.certificate-block h4 {
  color: #8B8562;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.48px;
}

.certificate-block ul {
  color: #8B8562;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.44px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

/*=========== kontakt page =========== */

.contact-area {
  padding-top: 182px;
  padding-bottom: 160px;
  padding-inline: 20px;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 117px;
}

.contact-title h2 {
  color: #8B8562;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}

.contact-grid {
  width: 100%;
  max-width: 1770px;
  margin-inline: auto;
  display: flex;
  gap: 73px;
}

.contact-left-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  flex: 1;
  max-width: 500px;
}

.contact-image img {
  width: 100%;
  max-width: 405px;
}

.contact-left-card h4 {
  color: #754B26;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.44px;
  padding-top: 20px;
}

.contact-left-card ul {
  color: #754B26;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-left-card ul a {
  font-weight: 500;
}

.contact-right-card {
  flex: 1;
  padding: 47px 79px;
  padding-bottom: 85px;
  border-radius: 15px;
  background: #F3EAE2;
}

.contact-right-card form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 911px;
  gap: 17px;
  align-items: start;
}

.contact-right-card h4 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
}

.form-status {
  display: none;
  width: 100%;
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.4;
}

.form-status.is-visible {
  display: block;
}

.form-status strong,
.form-status span {
  display: block;
}

.form-status strong {
  font-size: 20px;
  margin-bottom: 6px;
}

.form-status-success {
  color: #35461D;
  background: #F2F1E6;
  border: 2px solid #8B8562;
  box-shadow: 0 10px 24px rgba(53, 70, 29, 0.12);
}

.form-status-success::before {
  content: "✓";
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 10px;
  color: #FFF;
  background: #8B8562;
  font-weight: 700;
}

.form-status-error {
  color: #754B26;
  background: #FFF;
  border: 2px solid #754B26;
}

.form-status-info {
  color: #754B26;
  background: #F2F1E6;
  border: 1px solid #8B8562;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-top: 35px;
}

.single-input {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 19px;
  width: 100%;
}

.single-input label {
  font-weight: 500;
}

.single-input input {
  border-radius: 28.5px;
  border: 1px solid #754B26;
  height: 57px;
  padding: 5px 20px;
  width: 100%;
  transition: 0.3s;
}

.single-input input:focus {
  background: #F2F1E6;
  border-color: #000;
}

.single-input textarea {
  width: 100%;
  background: transparent;
  border-radius: 22px;
  border: 1px solid #754B26;
  min-height: 236px;
}

.single-input textarea:focus {
  background: #F2F1E6;
  border-color: #000;
  outline: none;
}

.custom-checkbox label {
  display: flex;
  align-items: start;
  gap: 18px;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid #754B26;
  background: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
}

.custom-checkbox label span {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.custom-checkbox label span a {
  text-decoration: underline;
  font-weight: 500;
}

.custom-checkbox input:checked+label .checkbox-box {
  background: #754B26;
}

.submit-button {
  display: inline-flex;
  padding: 14px 34px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 33px;
  background: #754B26;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.4px;
  margin-top: 43px;
  transition: 0.3s;
}

.submit-button:hover {
  background: #5F3B1C;
}

/*========== Kurs Page ========== */

.kurs-area {
  padding-top: 182px;
  padding-bottom: 130px;
}

.kurs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.page-title h2 {
  color: #8B8562;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}

.sr-content-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1028px;
  align-items: center;
  gap: 30px;
}

.sr-content-block h4 {
  color: #754B26;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.76px;
}

.sr-content-block p {
  color: #754B26;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.expect-block {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1294px;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  max-width: 554px;
  align-items: start;
}

.expect-list li {
  display: flex;
  align-items: baseline;
  gap: 15px;
  color: #754B26;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.44px;
}

.expect-list li i {
  font-size: 16px;
}

.duration-btn {
  display: inline-flex;
  padding: 7px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  background: #8B8562;
  color: #FBF8F3;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
}

.duration-btn:hover {
  background: #726D50;
}

.expect-wp {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  align-items: center;
}

.action-btn.btn-four {
  background: #F28976;
  color: #fff;
}

.action-btn.btn-four:hover {
  background: #DF7866;
}

.banner-wp {
  position: relative;
}

.banner-image img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 3.47/1;
  object-fit: cover;
}

.banner-wp .circle-image {
  position: absolute;
  left: 116px;
  top: -140px;
  width: 209px;
  height: 209px;
  border-radius: 50%;
  border: 2px solid #F28976;
  object-fit: cover;
}

.expect-list h5 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.48px;
}

/*========= Impressum page========= */

.impressum-wrapper {
  display: flex;
  flex-direction: column;
  gap: 65px;
  width: 100%;
  max-width: 1200px;
}

.impressum-wrapper h3 {
  color: #8B552A;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.6px;
}

.impressum-item h4 {
  color: #754B26;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.48px;
}

.impressum-item p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.36px;
}

.impressum-item p span {
  color: #6E92C7;
}

.impressum-item p a {
  text-decoration: underline;
}

.impressum-content-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}

.max-w-100 {
  max-width: 100%;
}

.impressum-item ul {
  padding-left: 20px;
  list-style: disc;
}

.mobile-nav-list a {
  position: relative;
}

.navbar-menu ul li a.active::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #754B26;
}

.mobile-nav-list a.active::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #fff;
}