/*-----------------------------------*\
  #style.css
\*-----------------------------------*/





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /** 
  * colors
  */

  /* NEW COLORS */

  --rich-black-fogra-39_50: hsla(0, 0%, 5%, 0.5);
  --rich-black-fogra-39: hsl(0, 0%, 5%);
  --indian-yellow_10: hsla(36, 61%, 58%, 0.1);
  --indian-yellow: hsl(36, 61%, 58%);
  --harvest-gold: hsl(36, 66%, 53%);
  --eerie-black-1: hsl(0, 0%, 14%);
  --eerie-black-2: hsl(0, 0%, 12%);
  --eerie-black-2_85: hsla(0, 0%, 12%, 0.85);
  --eerie-black-3: hsl(0, 0%, 8%);
  --sonic-silver: hsl(0, 0%, 44%);
  --davys-gray: hsl(210, 9%, 31%);
  --light-gray: hsl(0, 0%, 80%);
  --platinum: hsl(0, 0%, 91%);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --white_20: hsla(0, 0%, 100%, 0.2);
  --white_30: hsla(0, 0%, 100%, 0.3);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 21%);

  --indian-yellow_10: hsla(42, 80%, 60%, 0.1);
  --indian-yellow_50: hsla(42, 80%, 60%, 0.5);
  --indian-yellow: hsl(36, 61%, 58%);

  --stone-path-gray: hsl(0, 0%, 60%);
  --wood-bark-brown: hsl(28, 52%, 5%);

  --cloud-pastel: hsl(0, 0%, 90%);
  --platinum: hsl(0, 0%, 91%);

  --stone-shadow_30: hsla(0, 0%, 30%, 0.3);
  --morning-fog_10: hsla(0, 0%, 100%, 0.1);
  --morning-fog_30: hsla(0, 0%, 100%, 0.3);
  --morning-fog_50: hsla(0, 0%, 100%, 0.5);
  --white: hsl(0, 0%, 100%);

  --fern-green: hsl(96, 45%, 60%);

  --old-deep-forest-green: hsl(120, 47%, 6%);

  --deep-forest-green: hsla(120, 48%, 11%);
  --deep-forest-green_30: hsla(120, 48%, 11%, 0.4);
  --deep-forest-green_50: hsla(120, 48%, 11%, 0.5);
  --deep-forest-green_80: hsla(120, 48%, 11%, 0.9);

  --forest-green_10: hsla(120, 80%, 60%, 0.1);
  --forest-green_50: hsla(120, 80%, 60%, 0.5);
  --forest-green: hsl(120, 80%, 60%);

  --moss-green_10: hsla(135, 80%, 60%, 0.1);
  --moss-green_50: hsla(135, 80%, 60%, 0.5);
  --moss-green: hsl(135, 80%, 60%);

  --pine-green_10: hsla(150, 60%, 30%, 0.1);
  --pine-green_20: hsla(150, 60%, 30%, 0.2);
  --pine-green_50: hsla(150, 60%, 30%, 0.5);
  --pine-green: hsl(150, 60%, 30%);


  /**
  * Typography
  */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-40: 4rem;
  --fs-30: 3rem;
  --fs-24: 2.4rem;
  --fs-18: 1.8rem;
  --fs-14: 1.4rem;
  --fs-13: 1.3rem;

  --fw-300: 300;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
  * Spacing
  */

  --section-padding: 80px;

  /**
  * Shadow
  */

  --shadow-1: 10px 0 60px hsla(0, 0%, 15%, 0.07);
  --shadow-2: 10px 0 60px hsla(0, 0%, 15%, 0.1);

  /**
  * Border radius
  */

  --radius-5: 5px;
  --radius-8: 8px;

  /**
  * Transtition
  */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
span,
data,
input,
select,
button,
textarea,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
select,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 2;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

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

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.3;
}

.h1,
.h2 {
  text-transform: uppercase;
}

.h1,
.h3 {
  font-weight: var(--fw-600);
}

.h1 {
  color: var(--white);
  font-size: var(--fs-40);
}

.h2,
.h3 {
  color: var(--eerie-black-1);
}

.h2 {
  font-size: var(--fs-30);
}

.h3 {
  font-size: var(--fs-24);
}



.btn {
  color: var(--white);
  background-color: var(--indian-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  padding: 10px 25px;
  font-family: var(--ff-oswald);
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  border-radius: var(--radius-5);
  overflow: hidden;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn::before {
  background-color: var(--deep-forest-green);
  inset: 0;
  z-index: -1;
  transform: skewY(-15deg) scaleY(0);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before {
  transform: skewY(-15deg) scaleY(2.5);
}

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

.grid-list {
  display: grid;
  gap: 30px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--white);
  overflow: hidden;
  width: 90px;
  height: 90px;
}

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

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


.header-top-item,
.header .btn {
  display: none;
}

.header-top-list,
.header-top-list .social-list {
  display: flex;
  align-items: center;
}

.header-top-list {
  justify-content: center;
}

.header-top-list .social-list {
  gap: 20px;
  padding-block: 15px;

}

.header-top-list .social-link {
  color: var(--sonic-silver);
  font-size: 15px;
  transition: var(--transition-1);
}

.header-top-list .social-link:is(:hover, :focus) {
  color: var(--indian-yellow);
}

.header-bottom {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  padding-block: 10px;
  z-index: 4;
}

.header-bottom.active {
  position: fixed;
  top: 0;
  background-color: var(--deep-forest-green_50);
  transform: translateY(-100%);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header-bottom>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Adjust spacing between image and text */
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 90px;
  /* Adjust as needed */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--ff-oswald);
  font-size: 2.7rem;
  font-weight: var(--fw-600);
  text-transform: uppercase;
  color: var(--white);
}


.logo-text span {
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: 1.3rem;
  font-weight: var(--fw-300);
  text-transform: capitalize;
  letter-spacing: 2px;
}



.nav-toggle-btn {
  color: var(--white);
  font-size: 40px;
}

.navbar {
  position: absolute;
  padding-inline: 0;
  top: 100%;
  left: 15px;
  right: 15px;
  background-color: var(--deep-forest-green_50);
  max-height: 0;
  overflow: hidden;
  transition: 0.15s var(--cubic-out);
}

.navbar.active {
  max-height: 321px;
  transition-duration: 0.5s;
}

.navbar-list {
  border-block-start: 1px solid var(--jet);
  margin-block: 25px;
}

.navbar-item {
  border-block-end: 1px solid var(--jet);
}

.navbar-link {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  line-height: 1.5;
  padding: 10px 30px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--indian-yellow);
}


/*-----------------------------------*\
  #HEADER ABOUT
\*-----------------------------------*/

.header-top.about {
  position: relative;
  z-index: 0;
}

.header-bottom.about {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  background-color: var(--deep-forest-green);
  z-index: 1;
  transform: none;
  animation: none;
}

.header-bottom.about.active {
  position: fixed;
  top: 0;
  background-color: var(--deep-forest-green_50);
  transform: translateY(-100%);
  animation: slideIn 0.5s ease forwards;
}

.header-bottom.about>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.static-header .btn {
  display: none;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/


.hero {
  --section-padding: 100px;
  padding-block-start: calc(var(--section-padding) + 40px);
  background-position: center;
}

.hero-title {
  text-shadow:
    -0.1px -0.1px 0 var(--deep-forest-green),
    0.1px -0.1px 0 var(--deep-forest-green),
    -0.1px 0.1px 0 var(--deep-forest-green),
    0.1px 0.1px 0 var(--deep-forest-green);
}

.hero::before {
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: -1;
}

.hero-text {
  color: var(--white);
  margin-block: 15px 40px;

  font-weight: var(--fw-600);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


/*-----------------------------------*\
  #Behandling
\*-----------------------------------*/

.Behandling {
  text-align: center;
}

.Behandling .section-text {
  margin-block: 15px 55px;
}

.Behandling-card {
  background-color: var(--pine-green_20);
  padding: 60px 25px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
}

.Behandling-card .card-icon {
  color: var(--indian-yellow);
  font-size: 70px;
  line-height: 1;
}

.Behandling-card .card-title {
  margin-block: 15px 12px;
  transition: var(--transition-1);
}

.Behandling-card .card-title:is(:hover, :focus) {
  color: var(--indian-yellow);
}

.Behandling-card .card-text {
  margin-block-end: 30px;
}

.Behandling-card .card-btn {
  color: var(--pine-green);
  background-color: var(--white);
  max-width: max-content;
  margin-inline: auto;
  font-size: 20px;
  padding: 15px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-5);
  transition: var(--transition-2);
}

.Behandling-card:is(:hover, :focus-within) .card-btn {
  background-color: var(--indian-yellow);
  color: var(--white);
}


/*-----------------------------------*\
  #THERAPY
\*-----------------------------------*/
.T-Info h2 {
  margin-block: 15px 25px;
}

.T-Info {
  background-color: var(--pine-green_20);
}

.T-card {
  padding-inline: 15px;
  max-width: 1200px;
  margin-inline: auto;
}

.grid-list-t {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid-list-t>li {
  flex: 1 1 500px;
}

.t-card {
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
  padding: 20px 25px;
  font-family: var(--ff-rubik);
  font-size: 1.6rem;
  min-height: 870px;
}

.t-card p {
  margin-bottom: 1.5em;
  line-height: 1.7;
  font-family: var(--ff-rubik);
}

.t-card strong {
  display: block;
  font-weight: var(--fw-700);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: var(--fs-18);
  color: var(--rich-black-fogra-39);
  font-family: var(--ff-oswald);
}

.t-list {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0 0 1.5em 0;
}

.t-list li {
  margin-bottom: 0.8em;
  line-height: 1.6;
  list-style-type: disc;
  list-style-position: inside;
}

/*-----------------------------------*\
  #GENERAL INFO
\*-----------------------------------*/

.g-Info h2 {
  margin-block: 15px 25px;
}

.grid-list-g {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-inline: 16px;
  /* Keeps spacing on smaller screens */
  margin-top: 40px;
}

.grid-list-g>li {
  flex: 1 1 calc(33.333% - 20px);
  /* 3 columns on wide screens */
  display: flex;
}

.g-card-1 {
  padding: 30px;
  background-color: var(--pine-green_20);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.g-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.g-card p.extra {
  font-style: italic;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.image-wrapper img {
  width: 200px;
  height: auto;
}

/*-----------------------------------*\
  #NEW INFO
\*-----------------------------------*/

.N-Info .section-text,
.section-text-N {
  margin-block: 25px 25px;
}

.N-Info {
  background-color: var(--pine-green_20);
}

.N-card {
  padding-inline: 15px;
  max-width: 1200px;
  margin-inline: auto;
}

.grid-list-N {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid-list-N>li {
  flex: 1 1 500px;
}

.N-card {
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
  padding: 20px 25px;
  font-family: var(--ff-rubik);
  font-size: 1.6rem;
  min-height: 200px;
}

.N-card p {
  margin-bottom: 1.5em;
  line-height: 1.7;
  font-family: var(--ff-rubik);
}

.N-card strong {
  display: block;
  font-weight: var(--fw-700);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: var(--fs-18);
  color: var(--rich-black-fogra-39);
  font-family: var(--ff-oswald);
}

.N-list {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0 0 1.5em 0;
}

.N-list li {
  margin-bottom: 0.8em;
  line-height: 1.6;
  list-style-type: disc;
  list-style-position: inside;
}

.social-N {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.3s ease;
}

.social-N:hover {
  color: var(--indian-yellow);
  text-decoration: underline;
}

.section-text-N {
  display: block;
  text-align: center;
}


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

.section-text-N {
  font-size: var(--fs-14);
  margin-bottom: 1rem;
}

.update-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.update-links li a {
  font-size: 40px;
  color: #4a4a4a;
  transition: color 0.3s ease;
}

.update-links li a:hover {
  color: var(--indian-yellow);
}

@media (max-width: 480px) {
  .update-links {
    gap: 1rem;
  }

  .update-links li a {
    font-size: 20px;
  }
}

/*-----------------------------------*\
  #About
\*-----------------------------------*/
.info-photo .img-cover {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.img-wrap-desktop {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  float: right;
  shape-outside: circle();
  object-fit: cover;
  object-position: top;
  margin: 0 20px 20px 0;
}

.img-wrap-mobile {
  display: none;
}

.info-card {
  background-color: var(--white);
  padding: 60px 25px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
}

.Info {
  text-align: center;
}

.Info .section-text {
  margin-block: 15px 15px;
}

.section.Info .h2 {
  margin: 0px 50px 50px;
}

@media (max-width: 768px) {

  .img-wrap-desktop {
    display: none;
  }

  .img-wrap-mobile {
    display: block;
    float: none;
    margin: 20px auto;
    width: 250px;
    height: 250px;
    shape-outside: circle();
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
  }

  .info-card {
    padding: 30px 15px;
  }

  .Info .section-text {
    margin-block: 10px 10px;
  }

  .section.Info .h2 {
    margin: 0px 20px 30px;
  }
}

/*-----------------------------------*\
  #PHOTO SLIDER
\*-----------------------------------*/

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slider-button {
  top: 50%;
  position: absolute;
  height: 50px;
  width: 50px;
  color: var(--platinum);
  border: none;
  outline: none;
  background: var(--indian-yellow);
  font-size: 2.2rem;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slider-button:hover {
  background: var(--indian-yellow_50);
}

.slider-wrapper .slider-button#prev-slide {
  left: -20px;
  display: none;
}

.slider-wrapper .slider-button#next-slide {
  right: -20px;
}


.slider-wrapper .image-list {
  display: grid;
  gap: 18px;
  font-size: 0;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  grid-template-columns: repeat(10, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  height: 2px;
  width: 100%;
  background: #ccc;
  position: relative;
  border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;

}


.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 50%;
  background: #000;
  border-radius: inherit;
  cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/

.FAQ {
  text-align: center;
  background-color: var(--pine-green_20);
}

.FAQ .section-text {
  margin-block: 15px 55px;
}

.faq-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
  /* Tilføjet horisontal padding */
}

.faq-column {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.faq-column li {
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
  overflow: hidden;
  transition: box-shadow var(--transition-1);
  height: fit-content;
}

.question {
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--ff-rubik);
  font-weight: var(--fw-700);
  font-size: var(--fs-14);
  display: flex;
  align-items: center;
  border-left: 6px solid var(--pine-green);
  transition: border-color var(--transition-1), background-color var(--transition-1);
}

.question:hover {
  background-color: var(--pine-green_10);
}

.arrow {
  display: inline-block;
  margin-right: 0.8rem;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 10px solid var(--pine-green);
  border-bottom: 6px solid transparent;
  transition: transform var(--transition-2);
}

.arrow-rotated {
  transform: rotate(90deg);
}

.answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.4rem;
  font-family: var(--ff-rubik);
  font-size: var(--fs-14);
  color: var(--davys-gray);
  transition: max-height var(--transition-2), padding var(--transition-2);
}

.answer-opened {
  padding: 1rem 1.4rem 1.4rem 1.4rem;
}

/*-----------------------------------*\
  #REVIEWS
\*-----------------------------------*/
[id] {
  scroll-margin-top: 150px;
  /* fallback for instant links */
}


.review-slider h2 {
  margin-block: 15px 55px;
}

.review-slider {
  font-family: var(--ff-oswald);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  background-color: var(--white);
}


.carousel-container {
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--white);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
  /* Three times the container width for three testimonials */
}

.testimonial {
  flex: 0 0 33.33%;
  /* One-third of the carousel width */
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  line-height: 1.6;
  visibility: visible;
  opacity: 1;
  padding: 30px;
  background-color: var(--pine-green_20);
  border-radius: var(--radius-8);
}

.review-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--indian-yellow);
  object-fit: cover;
}

.review-stars {
  color: var(--indian-yellow);
  font-size: var(--fs-18);
}

.testimonial p {
  padding: 0 40px 0;
}

.testimonial .author {
  font-size: var(--fs-18);
  color: var(--rich-black-fogra-39);
  display: block;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.nav-button {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nav-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.indicators {
  display: flex;
  justify-content: center;
  margin: 15px 0px;
}

.indicator {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #1a1a1a;
}

@media (max-width: 600px) {
  .carousel-container {
    max-width: 70%;
  }

  .testimonial {
    font-size: 1rem;
  }

  .nav-button {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
  }

}

@media (max-width: 800px) {
  .carousel-container {
    max-width: 90%;
  }
}




/*-----------------------------------*\
  #Policy info
\*-----------------------------------*/
.P-Info h2 {
  margin-block: 15px 25px;
}

.P-Info {
  background-color: var(--pine-green_20);
  margin: -20px;
}

.P-card {
  padding-inline: 15px;
  max-width: 1200px;
  margin-inline: auto;
}

.grid-list-P {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid-list-P>li {
  flex: 1 1 500px;
}

.P-card {
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
  padding: 20px 25px;
  font-family: var(--ff-rubik);
  font-size: 1.6rem;
}

.P-card p {
  margin-bottom: 1.5em;
  line-height: 1.7;
  font-family: var(--ff-rubik);
}

.P-card strong {
  display: block;
  font-weight: var(--fw-700);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: var(--fs-18);
  color: var(--rich-black-fogra-39);
  font-family: var(--ff-oswald);
}

.P-list {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0 0 1.5em 0;
}


.policy-link {
  color: var(--sonic-silver);
  font-weight: var(--fw-600);
  transition: color 0.3s, border-bottom 0.3s;
  text-decoration: underline;
  margin: 0;
  padding: 0;
}

.policy-link:hover {
  color: var(--indian-yellow);
}

.P-Info br {
  padding: 5px;
}

.P-card-2 ul li {
  list-style-type: disc;
  margin: 0px 15px;
}


.P-card-2 ul li p {
  margin: 0;
  padding: 0;
}

.P-card-2 ol li {
  list-style-type: decimal;
  margin: 0px 15px;
}



/*-----------------------------------*\
  #Priser
\*-----------------------------------*/

.Priser::before {
  inset: 0;
  background-color: var(--eerie-black-2_85);
  mix-blend-mode: multiply;
  z-index: -1;
}


.Priser .section-title {
  color: var(--white);
}

.Priser .section-text {
  margin-block: 15px 55px;
  color: var(--white_50);
}

.Priser-tab-container {
  background-color: var(--white);
  padding: 40px 5px;
}

.tab-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-block-end: 30px;
}

.filter-btn {
  color: var(--eerie-black-1);
  font-family: var(--ff-oswald);
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  min-width: 130px;
  padding-block: 12px;
  border: 1px solid var(--platinum);
  transition: var(--transition-1);
}

.filter-btn .btn-icon {
  display: none;
}

.filter-btn.active {
  background-color: var(--indian-yellow);
  border-color: var(--indian-yellow);
  color: var(--white);
}

.Priser .grid-list {
  padding-inline: 20px;
}

.Priser .grid-list>li.active {
  animation: popup 0.75s ease forwards;
}

@keyframes popup {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.Priser-card {
  background-color: var(--indian-yellow_10);
  padding: 20px 25px;
  border-radius: var(--radius-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.Priser-card .card-banner {
  border-radius: 50%;
  overflow: hidden;
}

.Priser-card .wrapper {
  order: 1;
}

.Priser-card .h3 {
  --fs--24: 2rem;
  margin-block-end: 8px;
}

.Priser-card .card-pris {
  color: var(--indian-yellow);
  font-family: var(--ff-oswald);
  font-size: var(--fs-30);
  font-weight: var(--fw-500);
}

/*-----------------------------------*\
  #BOOKING
\*-----------------------------------*/

.bookingpage::before {
  inset: 0;
  background-color: var(--eerie-black-2_85);
  mix-blend-mode: multiply;
  z-index: -1;
}

.bookingpage .container iframe {
  margin: 25px 0px;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--eerie-black-3);
  padding-block-end: 30px;
}

.footer-top {
  margin-block-end: 65px;
}


.footer-brand {
  border: 0px solid var(--white_30);
  margin-block-end: 70px;
}

.footer .logo {
  text-align: center;
  padding: 25px;
  border-block-end: 0px solid var(--white_30);
}

.footer .input-wrapper {
  background-color: var(--white);
  position: relative;
  margin: 25px;
  padding: 15px;
}

.footer .input-wrapper:focus-within {
  outline: 3px solid var(--white_30);
}

.footer .email-field {
  text-align: center;
  margin-block-end: 15px;
  color: inherit;
  outline: none;
}

.footer .btn {
  max-width: 100%;
  width: 100%;
  justify-content: center;
}

.footer-link-box {
  display: grid;
  gap: 50px;
}

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-18);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-block-end: 30px;
}

.footer-link::before {
  position: static;
  padding: 2.5px;
  background-color: var(--white_30);
  display: block;
  border-radius: 50%;
  transition: var(--transition-1);
}

.footer-link,
.blog-card,
.blog-card .card-date,
.footer-list-item {
  display: flex;
  align-items: center;
}

.footer-link {
  color: var(--white_50);
  gap: 10px;
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--white);
}

.footer-link:is(:hover, :focus)::before {
  background-color: var(--white);
}


.blog-card {
  gap: 25px;
  margin-block-start: 20px;
}

.blog-card .card-banner {
  flex-shrink: 0;
}

.blog-card .card-title {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  line-height: 1.5;
  margin-block-end: 5px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--indian-yellow);
}

.blog-card .card-date {
  gap: 5px;
  font-size: var(--fs-13);
  text-transform: uppercase;
  color: var(--white_50);
}

.blog-card .card-date ion-icon {
  --icnicon-stroke-width: 50px;
}


.footer-list-item {
  align-items: flex-start;
  gap: 10px;
  margin-block-start: 10px;
}

.footer-list-item ion-icon {
  color: var(--indian-yellow);
  font-size: 18px;
  flex-shrink: 0;
  --ionicon-stroke-width: 50px;
  margin-block: 7px;
}

.contact-link {
  color: var(--white_50);
  transition: var(--transition-1);
}

a.contact-link:is(:hover, :focus) {
  color: var(--white);
}

.footer-bottom {
  background-color: var(--eerie-black-3);
  text-align: center;
  padding: 15px;
  outline: 0px solid var(--white_30);
}

.copyright-link {
  display: inline-block;
  color: var(--indian-yellow);
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/


.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--indian-yellow);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  border-radius: var(--radius-5);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
  * Responsive for larger than 575px screen
  */

@media (min-width: 575px) {

  /**
    * CUSTOM PROPERTY
    */

  :root {

    /**
      * typograhy
      */

    --fs-40: 6rem;
  }



  /**
    * REUSED STYLE
    */
  .container,
  .header-top {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .btn {
    padding: 13px 40px;
  }

  .h2 {
    --fs-30: 3.5rem;
  }



  /**
    * HEADER
    */

  .header-top .header-top.about {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    z-index: 4;
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
  }

  .header-top-item:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-top-item ion-icon {
    font-size: 18px;
    color: var(--indian-yellow);
    --ionicon-stroke-width: 50px;
  }

  .header-top-item .item-title {
    color: var(--eerie-black-1);
    font-weight: var(--fw-500);
  }

  .header-top-item .item-link {
    transition: var(--transition-1);
  }

  .header-top-item .item-link:is(:hover, :focus) {
    color: var(--indian-yellow);
  }

  .header-top-list {
    justify-content: space-between;
  }

  .logo {
    font-size: 3rem;
  }

  .logo .span {
    font-size: 1.4rem;
  }



  /**
    * HERO
    */

  .hero {
    padding-block-start: calc(var(--section-padding) + 80px);
  }

  .hero-text {
    font-size: var(--fs-18);
  }

  /**
    * Priser
    */

  .filter-btn .btn-icon {
    display: block;
    font-size: 55px;
    line-height: 1;
    margin-block-end: 5px;
  }

  .Priser-card {
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
  }

  .Priser-card .wrapper {
    order: 0;
  }

  .Priser-card .card-pris {
    align-self: flex-start;
    line-height: 1.6;
  }




  /**
    * APPOINTMENT
    */

  .appoin-card .card-content {
    padding-inline: 50px;
  }



  /**
    * FOOTER
    */


  .footer .email-field {
    margin-block-end: 0;
    text-align: left;
    font-size: var(--fs-18);
    padding: 10px 15px;
    padding-inline-end: 210px;
  }

  .footer .btn {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    width: max-content;
  }

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

  .footer-list:is(:nth-child(3), :nth-child(4)) {
    grid-column: 1 / 3;
  }

  .blog-card .card-title {
    --fs-14: 1.7rem;
    max-width: 25ch;
  }


}



/**
  * Responsive for larger than 768px screen
  */

@media (min-width: 768px) {

  /**
    * CUSTOM PROPERTY
    */

  :root {

    /**
      * typograhy
      */

    --fs-40: 8rem;
  }



  /**
    * REUSED STYLE
    */

  .container {
    max-width: 720px;
  }

  .h2 {
    --fs-30: 4rem;
  }

  .section-text {
    max-width: 50ch;
    margin-inline: auto;
  }



  /**
    * HEADER
    */

  .header-top {
    max-width: 780px;
  }
  

  .static-header .btn {
    display: flex;
  }


  /**
    * Behandling
    */

  .Behandling .grid-list {
    grid-template-columns: 1fr 1fr;
  }


  /**
    * Priser
    */

  .Priser-tab-container {
    padding: 40px;
  }

  .Priser-card .wrapper {
    margin-inline-end: auto;
  }



  /**
    * APPOINTMENT
    */

  .appoin-card .card-banner {
    display: block;
  }

  .appoin-card {
    display: center;
  }



  /**
    * FOOTER
    */

  .footer-list:is(:nth-child(3), :nth-child(4)) {
    grid-column: auto;
  }

  /**
    * FAQ
    */

  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

}



/**
  * Responsive for larger than 992px screen
  */

@media (min-width: 992px) {

  /**
    * CUSTOM PROPERTY
    */

  :root {

    /**
      * typograhy
      */

    --fs-40: 10rem;
  }



  /**
    * REUSED STYLE
    */

  .container {
    max-width: 960px;
  }


  /**
    * HEADER
    */

  .nav-toggle-btn {
    display: none;
  }

  .header-top {
    max-width: 1020px;
  }

  .header-bottom {
    padding-block: 20px;
  }

  .navbar,
  .navbar-list,
  .navbar-item {
    all: unset;
  }

  .navbar-list,
  .header .btn {
    display: flex;
  }


  .navbar-link {
    padding-inline: 10px;
  }


  /**
    * HERO
    */

  .hero {
    --section-padding: 150px;
    padding-block-start: calc(var(--section-padding) + 100px);
  }

  .hero-title,
  .hero-text {
    max-width: 600px;
  }


  /**
    * Behandling
    */

  .Behandling .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }


  /**
    * Priser
    */

  .Priser .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .Priser-card {
    height: 100%;
  }

  .Priser-card .card-banner {
    flex-shrink: 0;
  }



  /**
    * APPOINTMENT
    */

  .appoin-card .input-wrapper {
    display: flex;
    gap: 20px;
  }



  /**
    * FOOTER
    */

  .footer-brand {
    display: flex;
    align-items: center;
  }

  .footer .logo {
    padding: 60px 70px;
    border-block-end: none;
    border-inline-end: 0px solid var(--white_10);
  }

  .footer .input-wrapper {
    flex-grow: 1;
    margin-inline: 70px;
  }


}



/**
  * Responsive for larger than 1200px screen
  */

@media (min-width: 1200px) {


  /**
    * CUSTOM PROPERTY
    */

  :root {

    /**
        * typograhy
        */

    --fs-40: 11rem;

    /**
        * Spacing
        */

    --section-padding: 100px;

  }



  /**
    * REUSED STYLE
    */

  .container {
    max-width: 1200px;
  }




  /**
    * HEADER
    */

  .header-top {
    max-width: 1260px;
  }

  .header-top-list {
    gap: 30px;
  }

  .header-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-top-item:nth-child(2) {
    margin-inline-end: auto;
  }
  

  /**
    * HERO
    */

  .hero {
    background-position: center;
    padding-block-end: 200px;
  }

  .hero-title,
  .hero-text {
    max-width: 680px;
  }


  /**
    * Priser
    */

  .filter-btn {
    min-width: 178px;
  }



  /**
    * APPOINTMENT
    */


  .appoin-card .card-content {
    flex-grow: 1;
  }

  /**
    * FOOTER
    */

  .footer-link-box {
    grid-template-columns: 0.5fr 0.5fr 1fr 0.8fr;
  }

  /**
    * BACK TO TOP
    */

  .back-top-btn {
    padding: 15px;
  }

}

@media (max-width: 1023px) {
  /**
    * Photo slider
    */

  .slider-wrapper .slider-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
  }

  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }

  .img-wrap {
    height: 250px;
    width: 250px;
  }

  .grid-list-g>li {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .question {
    padding: 1rem;
    font-size: 1rem;
  }

  .answer-opened {
    padding: 1rem;
  }
}