.ResultMessage{
  margin: 0.5rem 1rem;
  text-align: center;
}

.ErrorMessage{
  color: red;
}

.SuccessMessage{
  color: green;
}




#HomeIntroduction{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

#HomeIntroductionContent{
  display: flex;
  justify-content: space-between;
  margin: 5rem 10vw;
  font-size: max(1.1vw, 1rem);
  color: var(--ThemeTextGrey);
}

#HomeIntroductionSideImage{
  width: 15vw;
  margin: 1rem 2vw 0 2vw;
}

#HomeStagingTranslation{
  color: var(--ThemePink);
  margin-bottom: 1rem;
}

#HomeIntroductionHat{
  width: max(1.5vw, 1rem);
  margin-bottom: 0.5vw;
}

#HomeIntroductionText{
  text-align: justify;
}

#HomeIntroductionSummary{
  display: flex;
  justify-content: space-around;
  color: var(--ThemeTextGrey);
  font-size: max(1.2vw, 1.1rem);
  width: 90%;
  margin-top: 2rem;
}

.HomeIntroductionSummaryBlock{
  width: 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
}

.HomeIntroductionSummaryIcon{
  height: 6vw;
  margin-bottom: 1rem;
}






#ProfessionalTitle{
  display: flex;
  justify-content: flex-end;
  margin-right: 20vw;
  margin-top: 3rem;
}

#ProfessionalSection{
  display: flex;
  justify-content: space-between;
  padding: 0 10vw;
  margin-top: 3rem;
}

#ProfessionalPhotoSection{
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

#ProfessionalPhotoSection img{
  width: 60%;
  box-shadow: 1rem 1rem 0.5rem 0 var(--ThemeLightBrown);
}

#ProfessionalTextSection{
  width: 50%;
  padding: 3rem 4rem;
  color: var(--ThemeTextGrey);
  font-size: max(1.2vw, 1rem);
  font-weight: bold;
  text-align: justify;
  background: url("./img/cadre-text.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#ComparisonSection{
  background-color: var(--ThemeLightBrown);
  margin-top: 3rem;
  padding: 5rem 20vw;
}

#ComparisonSection img{
  width: 100%;
}










#ContactUsSection{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 4rem 0;
}

#ContactUsSectionWindow{
  background: var(--ThemeLightBrown);
  padding: 1.5rem;
}

#ContactUsSectionTitle{
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-size: max(2.5vw, 2rem);
}

.ContactUsSectionLine{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.ContactUsInput{
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 0.25rem;
  font-size: max(1.6vw, 1.15rem);
  color: inherit;
}

.ContactUsInput::placeholder{
  color: inherit;
  font-family: inherit;
}

.ContactUsSectionLine > *{
  width: calc(50% - 1rem);
}

#ContactUsCategories{
  padding: 0.75rem 0;
  font-size: max(1.5vw, 1.05rem);
}

.ContactUsCheckBoxTitle{
  text-align: center;
  margin: 1rem 0;
  font-weight: bold;
}

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

.ContactUsCheckBoxContainer > div{
  margin: 0.25rem 1vw 0.25rem 1vw;
  width: max(25%, 8rem);
}

.ContactUsCheckBoxLine{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ContactUsCheckBoxLine > input{
  margin-right: 0.5rem;
}

#ContactUsButton{
  padding: 1rem 0.5rem;
  min-width: 70%;
  border-radius: 0.25rem;
  color: #fff;
  font-size: max(1.5vw, 1.3rem);
  border: none;
  background: var(--ThemeBrown);
  cursor: pointer;
  margin-top: 1rem;
}





@media screen and (max-width: 1000px) {
  #ContactUsSectionWindow{
    position: relative;
  }
}

@media screen and (max-width: 700px) {
  #HomeIntroductionContent{
    margin: 5rem 5vw;
  }

  #ProfessionalSection{
    flex-direction: column;
    padding: 0 5vw;
  }

  #ProfessionalPhotoSection{
    width: 100%;
  }

  #ProfessionalTextSection{
    width: 100%;
  }

  #ComparisonSection{
    padding: 3rem 3vw;
  }
}
