* {
  padding: 0;
  margin: 0;

  text-decoration: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/*////////// HEADING //////////*/

.heading-content {
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #FFFFFF, #EFE9E4);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.centered {
  position: relative;
  padding: 24px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.heading-title {
  font-family: "Jost", sans-serif;
  font-size: 1.3em;
  color: #4a4b49;
  letter-spacing: 0.2em;
}
.title {
  font-family: "Bodoni Moda", serif;
  font-size: 2.8em;
  color: #4a4b49;
}

.cta-button {
  padding: 20px;
  background-color: #bfa5a3;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  border: none;
  color: whitesmoke;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #d8c4c8; /* Change to green color of your choice */
  color: white; /* Change to the desired text color for the button */
}

/* ////////// NOTE TO CLIENTS ////////// */
.note-wrap {
  margin-right: 100px;
  margin-left: 100px;
  margin-top: 56px;
}
.note-title {
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  color: #4a4b49;
  padding: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.note {
  font-family: "Bodoni Moda", serif;
  font-size: 1.3em;
  font-weight: 200;
  color: #4a4b49;
}
.note-content {
  width: 100%;
  height: 40vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  justify-content: center;
  background-position: center;
  background-color: white;
}

.note-subcontent {
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  color: #4a4b49;
  padding: 8px;
}

/*////////// SERVICES //////////*/

.services-container {
  margin-right: 100px;
  margin-left: 100px;
  margin-top: 100px;
}

.services-title {
  font-family: "Bodoni Moda", serif;
  font-size: 2em;
  color: #4a4b49;
  margin-bottom: 24px;
}

.accordion {
  background-color: #efe9e3;
  color: #4a4b49;
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 1s;
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 24px !important;
}

.fee-text {
  font-size: 18px;
  font-family: "Jost", sans-serif !important;
  font-weight: 400;
  margin-top: 24px;
}

.service-description {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  padding-top: 12px;
  padding-bottom: 12px;
}

.link-button-2 {
  color: #a18e92;
  font-family: "Jost", sans-serif;
  letter-spacing: 2px;
  background: none;
  border: none;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.link-button-2:hover {
  color: #c7ada7;
}
.bullet-list li {
  list-style-type: disc;
  padding: 8px;
  font-size: 1.1em;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.numbered-list li {
  list-style-type: decimal;
  padding: 8px;
  font-size: 1.1em;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 16px;
  color: #4a4b49;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* ///////// Javascript Scroll Reveal ////////// */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}
