* {
  margin: 0;
  padding: 0;
}

.content {
  padding-top: 70px;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}

body {
  background-color: #FFFBF5;
  width: 100vw;
  overflow-x: hidden;
}

.topnav {
  overflow: hidden;
  position: absolute;
  max-height: 57px;
  width: 87vw;
  align-items: center;
  margin: 5vh 0 0 0;
  border-radius: 28.5px;
  backdrop-filter: blur(35px);
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.6s cubic-bezier(0.68, 0, 0.03, 1);
}

.open {
  position: absolute;
  max-height: 70vh;
  width: 90vw;
  margin: 3vh 0 0 0;
  transition: all 0.6s cubic-bezier(0.68, 0, 0.03, 1);
}

.topNavGradient {
  width: 100vw;
  height: 15vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  transition: height 0.25s cubic-bezier(0.68, 0, 0.03, 1);
}

.topNavGradientOpen {
  height: 100vh;
  transition: height 0.25s cubic-bezier(0.68, 0, 0.03, 1);
}

.topnavLayer {
  z-index: 102;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menuItemsGrouper {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 57px;
  justify-content: space-between;
  padding: 0 25px 0 25px;
}

.menuListGrouper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10% auto 10% auto;
  height: 90%;
  width: 85%;
}

.menuItem {
  font-family: "IBM Plex Sans";
  font-size: 1.5rem;
  font-weight: 250;
  color: #FFFBF5;
  cursor: pointer;
  transition: color ease-in-out 0.2s;
}

.active {
  color: #FFC852;
  font-weight: 450;
}

.menuItem:hover {
  transition: color ease-in-out 0.2s;
  color: #ffe2a3;
}

.small {
  font-size: 1.2rem;
  margin-left: 5%;
  font-weight: 150;
}

.greenItem {
  color: #8AAC4A;
}

.menuItemExpandGrouper {
  width: 100%;
}

.menuItemExpand {
  margin-top: 0px;
  padding: 0px;
  width: 100%;
  border-left: 0px solid gray;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.menuItemOpen {
  margin-top: 10px;
  padding: 5px;
  border-left: 2px solid gray;
  max-height: 40vh;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.hamburgerGrouper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landingGrouper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.landingImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.landingGrouper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78); /* or gradient */
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.landingItemGrouper {
  z-index: 101;
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  bottom: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.landingTitle {
  color: #FFFBF5;
  font-family: "IBM Plex Serif";
  font-size: 3.5rem;
  margin-left: 5vw;
}

.landingUnderTitle {
  color: #FFFBF5;
  font-family: "IBM Plex Sans";
  font-weight: 200;
  font-size: 1.5rem;
  width: 90%;
  margin-top: 2vh;
  align-self: center;
}

.landingImageLogo {
  width: 90%;
  height: auto;
  align-self: center;
  margin-top: 20vh;
}

.link {
  position: relative;
  display: inline-block;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FF7733, #FFC852);
}

.underlineLanding {
  width: 38vw; /* follows text width */
  height: 6px; /* fixed height */
  display: block;
  margin-left: 5vw;
}

.buttonGrouper {
  display: flex;
  gap: 15%;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 50px;
}

.buttonBase {
  font-family: "IBM Plex Sans";
  font-size: 1.4rem;
  font-weight: 350;
  padding: 7px 15px 7px 15px;
  background-color: #BBCD98;
  color: #2A3419;
  border-radius: 15px;
  background: linear-gradient(#BBCD98, #BBCD98) padding-box, linear-gradient(165deg, #54603A, #BBCD98, #54603A) border-box;
}

.orange {
  background-color: rgba(227, 155, 0, 0.12);
  color: #FFC852;
  border: 2px solid transparent;
  background: linear-gradient(#111, #111) padding-box, linear-gradient(165deg, #FF7733, #FFC852, #FF7733) border-box;
}

.h1Grouper {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block; /* key part */
  position: relative;
}

.underline {
  width: 100%; /* follows text width */
  height: 3.4px; /* fixed height */
  display: block;
}

.h1 {
  margin: 0;
  font-family: "IBM Plex Serif";
  font-weight: 500;
  font-size: 2.3rem;
  color: #54603A;
}

.h1light {
  font-family: "IBM Plex Sans";
  font-weight: 550;
  margin-top: 50px;
  text-align: center;
  font-size: 1.7rem;
}

.h2 {
  margin-left: 2vw;
  font-family: "IBM Plex Sans";
  font-weight: 300;
  font-size: 1.5rem;
  color: #1C1F15;
}

.h3 {
  margin: 0 0 5px 0;
  font-family: "IBM Plex Serif";
  font-weight: 400;
  font-size: 1.1rem;
  color: #536942;
}

.h3Lighter {
  margin: 0;
  font-family: "IBM Plex Serif";
  font-weight: 400;
  font-size: 1rem;
  color: rgba(83, 105, 66, 0.7);
}

.paragraph {
  font-family: "IBM Plex Sans";
  font-size: 1.1rem;
  line-height: 128%;
  font-weight: 350;
}

.imagesScroller {
  width: 100vw;
  margin-left: -5vw;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 25px 0 25px 0;
}

.spacer {
  width: 5vw;
  height: 100%;
}

.spacerVertical {
  width: 100%;
  height: 6vh;
}

.localPicture {
  height: 250px;
  width: auto;
  scroll-snap-align: center;
  border-radius: 25px;
  margin-left: 5vw;
}

.localPicture:not(:first-child) {
  margin-left: 2vw;
}

.localPicture:last-child {
  margin-right: 5vw;
}

.service {
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  border-radius: 50px;
  padding: 25px;
  margin-left: 5vw;
  gap: 5px;
  background-color: #F3F0E7;
  border: 2px dotted #2A3419;
  transition: transform cubic-bezier(0.68, 0, 0.03, 1) 0.3s;
}

.service.focused {
  transition: transform cubic-bezier(0.68, 0, 0.03, 1) 0.3s;
  transform: scale(1.05);
}

.service:not(:first-child) {
  margin-left: 5vw;
}

.service:last-child {
  margin-right: 5vw;
}

.serviceIcon {
  height: 20vh;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.75;
}

.serviceButton {
  width: 100%;
  height: 40px;
  font-size: 1.2rem;
  font-family: "IBM Plex Sans";
  border-radius: 50px;
  margin-top: auto;
  border: none;
  color: #1C1F15;
  background-color: rgb(161.8255319149, 173.570212766, 152.429787234);
  transition: background-color 0.15s ease-in-out;
}

.serviceButton:hover {
  transition: background-color 0.15s ease-in-out;
  background-color: rgb(125.4545454545, 155.3246753247, 74.6753246753);
}

.qNaGrouper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  max-width: calc(95vw - 40px);
  margin-left: -2.5vw;
  height: auto;
  background-color: rgba(115, 82, 24, 0.05);
  border-radius: 25px;
  gap: 15px;
}

.questionDivider {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.questionText {
  font-family: "IBM Plex Sans";
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 20px;
  margin-right: 15px;
}

.questionAnswer {
  border-left: 2px solid gray;
  font-family: "IBM Plex Sans";
  font-weight: 350;
  font-size: 1.1rem;
  padding-left: 15px;
  width: 100%;
  max-height: 0px;
  opacity: 0;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

.questionOpen {
  opacity: 1;
  max-height: 200px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}

.plusIcon {
  height: 25px;
  width: auto;
  transform: rotate(0deg);
  transition: transform ease-in-out 0.2s;
  cursor: pointer;
}

.plusIconRotated {
  transform: rotate(45deg);
  transition: transform ease-in-out 0.2s;
}

.behandlingImg {
  width: 100vw;
  height: 30vh;
  margin-left: -5vw;
  margin-bottom: -5vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent);
          mask-image: linear-gradient(to bottom, black 60%, transparent);
}

.endCreditGrouper {
  margin-left: -5vw;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  border-top: 2px dotted #2A3419;
  padding: 2vh 5vw 5vw 0;
  width: 95vw;
}

.contact {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-family: "IBM Plex Sans";
  font-weight: 300;
  font-size: 1.1rem;
  align-items: center;
}

.contactIcon {
  height: auto;
  width: 22px;
}

.divider {
  height: 30px;
  width: 2px;
  display: block;
}

.socialsGrouper {
  width: 50%;
  display: flex;
  flex-direction: row;
  padding-bottom: 100px;
  margin: 3vh 5vw 0 5vw;
  justify-content: space-between;
}

#quote {
  font-family: "Alex Brush";
  font-size: 240px;
  font-weight: 500;
  color: #88977C;
  margin-top: -5%;
}

.quote {
  width: 90vw;
  gap: 25px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  margin-left: -5vw;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #F3F0E7;
  padding: 0 5vw 0 5vw;
  margin-top: 10vh;
}

.quotationmark {
  height: 5vh;
  margin-top: 10%;
  -o-object-fit: contain;
     object-fit: contain;
}

.quoteParagraph {
  font-family: "Alegreya SC";
  font-size: 1.2rem;
  line-height: 158%;
  font-weight: 350;
  text-align: center;
  color: #1C1F15;
  max-width: 90%;
}

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

.quoteGrouper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.alwaysVertical {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contactsGrouper {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-left: 4vw;
  gap: 20px;
}

.alwaysVisibleSpacer {
  display: block;
}

.quoteBox {
  width: 100vw;
  gap: 25px;
  margin-left: -5vw;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F3F0E7;
  padding-bottom: 5vh;
  border-radius: 0;
  border-top: 2px dotted #2A3419;
  border-bottom: 2px dotted #2A3419;
}

.profilePhoto {
  width: 100vw;
  margin: -70px 0 0 -5vw;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 98%);
          mask-image: linear-gradient(to bottom, black 80%, transparent 98%);
}

.onlyHorizontal {
  display: none;
}

.isMainTitle {
  margin-top: 10vh;
}

@media (min-width: 1000px) {
  .content {
    width: 80vw;
  }
  .qNaGrouper {
    margin-left: 0;
  }
  .imagesScroller {
    width: 50vw;
    margin-left: -10vw;
    overflow: visible;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
            mask-image: linear-gradient(to right, black 90%, transparent 100%);
  }
  .canBeLonger {
    width: 100vw;
    margin-left: -10vw;
    -webkit-mask-image: none;
            mask-image: none;
    justify-content: space-between;
  }
  .quotationmark {
    height: 7vh;
    margin-top: 5%;
  }
  .quoteBox {
    width: 80vw;
    border-radius: 25px;
    margin-left: 0;
    margin-right: auto;
    border: 2px dotted #2A3419;
  }
  .h2vGrouper {
    flex-direction: row;
    max-width: 100vw;
  }
  .spacerVertical {
    display: none;
  }
  .paragraph {
    max-width: 700px;
    text-align: left;
  }
  .dParagraph {
    max-width: 90%;
  }
  .contactsGrouper {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 2vw;
  }
  .landingItemGrouper {
    z-index: 101;
    position: absolute;
    display: flex;
    flex-direction: row;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .landingTitle {
    margin-top: 20vh;
    font-size: 5rem;
    margin-left: 2vw;
  }
  .landingImageLogo {
    width: 45%;
    margin-left: 5vw;
    margin-top: 0;
  }
  .landingContent {
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
  }
  .buttonGrouper {
    margin-top: 50px;
  }
  .quoteGrouper {
    width: 60vw;
  }
  .localPicture {
    margin-left: 10vw;
  }
  .quote {
    width: 100vw;
    margin-left: -10vw;
  }
  .menuItem {
    font-size: 1.8rem;
  }
  .small {
    font-size: 1.5rem;
    font-weight: 135;
  }
  .menuListGrouper {
    margin: 3% auto 5% auto;
  }
  .profilePhoto {
    width: 30%;
    height: auto;
    margin: 0 0 0 -5vw;
    -webkit-mask-image: none;
            mask-image: none;
    border-radius: 25px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.15);
  }
  .reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .onlyHorizontal {
    display: block;
  }
  .service {
    margin-left: 10vw;
    scale: 1;
    transition: scale cubic-bezier(0.68, 0, 0.03, 1) 0.3s;
  }
  .service:hover {
    scale: 1.1;
    transition: scale cubic-bezier(0.68, 0, 0.03, 1) 0.3s;
  }
  .service:not(:first-child) {
    margin-left: 2vw;
  }
  .service:last-child {
    margin-right: 10vw;
  }
  .serviceIcon {
    height: 15vh;
    padding: 15px;
  }
}/*# sourceMappingURL=style.css.map */