:root{
  --ThemeBrown: #6b5153;
  --ThemeLightBrown: #fbf4ee;
  --ThemePink: #be93cc;
  --ThemeTextGrey: #444;
  --MenuLinksSize: max(8vw, 4rem);
}

*{
  box-sizing: border-box;
}

body{
  font-family: roboto, Google Sans;
  padding: 0;
  margin: 0;
  font-size: max(1vw, 0.8rem);
  color: var(--ThemeBrown);
  width: 100vw;
  display: flex;
  flex-direction: column;
}




.Title{
  font-weight: bold;
  text-align: center;
  font-size: max(2vw, 1.5rem);
  margin-top: 3rem;
}


.HorizontalLine{
  border-top: 2px solid #fff;
  margin: 0.5rem 0;
}



#PageIntro{
  padding: 2rem 10vw;
  background: var(--ThemeLightBrown);
  font-size: max(1.2vw, 1rem);
  text-align: justify;
  margin-bottom: 3rem;
}

#PageIntro > div{
  margin: 1rem 0;
}








#HeaderImage{
  width: 100vw;
}

#HeaderReturnHome{
  position: absolute;
  left: max(2vw, 1rem);
  top: max(2vw, 1rem);
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

#HeaderReturnHome > img{
  width: max(5vw, 1.5rem);
}

#HeaderMenu{
  display: flex;
  justify-content: space-around;
  margin-top: calc(-0.5 * var(--MenuLinksSize));
}

.HeaderMenuLinkContainer{
  position: relative;
}

.HeaderMenuLink{
  position: relative;
  width: var(--MenuLinksSize);
  height: var(--MenuLinksSize);
  background-color: #000;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.HeaderMenuLinkDecoration{
  position: absolute;
  width: var(--MenuLinksSize);
  height: var(--MenuLinksSize);
  background-color: #000;
  border-radius: 10rem;
  top: 0.6rem;
  left: 0.5rem;
  filter: blur(0.3rem);
}

.HeaderMenuLinkText{
  color: #fff;
  font-weight: bold;
  font-size: max(1.2vw, 0.6rem);
}

#MenuLinkCounseling .HeaderMenuLink{
  background-color: #ca802399;
}
#MenuLinkCounseling .HeaderMenuLinkDecoration{
  background-color: #ba7018;
}

#MenuLinkCoaching .HeaderMenuLink{
  background-color: #6d524e99;
}
#MenuLinkCoaching .HeaderMenuLinkDecoration{
  background-color: #553d34;
}

#MenuLinkDecorating .HeaderMenuLink{
  background-color: #9651a999;
}
#MenuLinkDecorating .HeaderMenuLinkDecoration{
  background-color: #814692;
}

#MenuLinkCottage .HeaderMenuLink{
  background-color: #88b6b599;
}
#MenuLinkCottage .HeaderMenuLinkDecoration{
  background-color: #7a9bab;
}
















.PricesTitle{
  font-size: max(1.8vw, 1.5rem);
  font-weight: bold;
  margin-left: 15%;
  margin-bottom: -0.5vw;
  margin-top: 2rem;
}

.Prices{
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.PricesContainer{
  border-radius: 2rem;
  width: 80%;
  padding: 2rem;
  z-index: 2;
  color: #fff;
}

.PricesSubContainer{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.PricesTextContainer{
  width: 45%;
}

.PricesTextContainer div{
  margin: 0.5rem 0;
}

.PricesTextSubContainer{
  display: flex;
  justify-content: space-between;
  text-align: justify;
  height: 100%;
}

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

.PricesIconsContainer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 0.5rem;
}

.PricesContainerDecoration{
  position: absolute;
  width: 80%;
  height: 100%;
  background-color: #000;
  border-radius: 2rem;
  top: 1rem;
  left: calc(10% + 1rem);
  filter: blur(0.3rem);
  z-index: 1;
}

.PricesSubTitle{
  font-weight: bold;
  text-align: center;
  font-size: max(1.2vw, 1rem);
  display: flex;
  justify-content: space-between;
}

.PricesSubTitle > div{
  width: 50%;
}

.PricesVerticalLine{
  width: min(1rem, 1vw);
  background: #fff;
  border-radius: 10rem;
}

.PricesTagsContainer{
  display: flex;
  justify-content: space-between;
}

.PricesTagsContainer > div{
  width: 50%;
  display: flex;
  justify-content: center;
}

.PricesTags{
  padding: 0.25rem 1rem;
  background: #fff;
  border-radius: 10rem;
  font-weight: bold;
}




























#Footer{
  padding: 5rem 2rem;
  background: #534344;
  margin-top: 3rem;
  color: #fff;
  display: flex;
  justify-content: space-around;
}

#Footer a{
  color: #fff;
}




@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 500px) {
  #PageIntro{
    padding: 2rem 5vw;
  }

  .PricesContainer{
    width: 90%;
  }

  .PricesContainerDecoration{
    width: 90%;
    left: calc(5% + 1rem);
  }
}
