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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 20px;
  font-family: "Domine", serif;
  line-height: 200%;
}

button {
  font-family: inherit;
}

input, textarea {
  all: unset;
}

h1, h2, h3 {
  line-height: 125%;
}

a {
  color: inherit;
}

section#intro::before {
  content: ""; /* empty but necessary */
  position: absolute;
  background-image: url("../images/kist-light.svg");
  background-repeat: no-repeat;
  z-index: -1;
  width: 1940px;
  height: 970px;
  top: 20px;
  left: -550px;
}

section#intro {
  max-width: 1440px;
  position: relative;
  padding: 200px 0 140px;
  color: #392915;
  text-align: center;
  margin: 25px auto 0;
  height: 1000px;
  overflow: none;
}
section#intro #innerContainer {
  max-width: 800px;
  padding: 0 24px;
  margin: 0px auto;
}
section#intro h1 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 150%;
}
section#intro p {
  margin-bottom: 24px;
}
section#intro a {
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  background-color: #392915;
  border: 2px solid #392915;
  color: #fff;
  padding: 4px 12px;
  margin: 0 4px;
  transition: 0.2s;
  cursor: pointer;
}
section#intro a:hover {
  background-color: #130d05;
  transform: scale(1.025);
}
section#intro a.secondary {
  background-color: transparent;
  color: #392915;
}
section#intro a.secondary:hover {
  background-color: rgba(57, 41, 21, 0.1);
}

section#process {
  max-width: 1440px;
  color: #392915;
  width: 100%;
  background-image: url("../images/line.svg");
  background-repeat: no-repeat;
  background-position: 40% 70%;
  position: relative;
  margin: 100px auto 300px;
  height: 1300px;
  box-sizing: border-box;
}
section#process h2 {
  font-size: 40px;
  text-align: center;
  position: absolute;
  left: 200px;
  top: 100px;
}
section#process .item1 {
  top: 175px;
  left: 625px;
}
section#process .item2 {
  top: 475px;
  left: 325px;
}
section#process .item3 {
  top: 775px;
  left: 800px;
}
section#process .item4 {
  top: 1100px;
  left: 475px;
}
section#process .timeline-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  align-items: center;
  position: absolute;
}
section#process .timeline-item .circle {
  width: 160px;
  height: 160px;
  display: flex;
  border-radius: 999px;
  background-color: #392915;
  align-items: center;
  justify-content: center;
  align-items: center;
}
section#process .timeline-item .circle img {
  width: 50%;
}
section#process .content {
  display: inline-block;
  position: relative;
  width: 300px;
}
section#process .content h3 {
  font-size: 24px;
  margin-bottom: 4px;
}
section#process .content .bigNumber {
  position: absolute;
  top: 48px;
  left: 64px;
  font-size: 240px;
  font-weight: 700;
  color: #e6e6e6;
  z-index: -1;
}

section#pricing {
  max-width: 1440px;
  margin: 150px auto 800px;
  padding: 100px 0;
  position: relative;
}
section#pricing #accordion {
  width: 600px;
}
section#pricing #images {
  position: absolute;
  top: 150px;
  right: 0;
}
section#pricing #images img {
  box-shadow: 0px 10px 20px -8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
section#pricing #images #imageOne {
  width: 400px;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 100px;
}
section#pricing #images #imageTwo {
  width: 400px;
  position: absolute;
  top: 340px;
  right: 0px;
  z-index: 2;
}
section#pricing #images #imageThree {
  width: 600px;
  position: absolute;
  top: 550px;
  right: 200px;
  z-index: 1;
}
section#pricing h2 {
  font-size: 40px;
  font-weight: 500;
  color: #444;
  margin-bottom: 32px;
}
section#pricing hr {
  border: none;
  border-top: 1px solid #F4ECE2;
}
section#pricing .accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  transition: 0.4s;
  position: relative;
}
section#pricing .coffinName {
  font-size: 20px;
  color: #392915;
  display: block;
  line-height: 200%;
}
section#pricing .coffinPrice {
  font-size: 40px;
  font-weight: 700;
  color: #897258;
  display: block;
}
section#pricing .coffinMoreinfo {
  width: auto;
  height: 20px;
  display: inline-block;
  position: absolute;
  padding-right: 24px;
  top: 24px;
  right: 20px;
}
section#pricing .coffinMoreinfo:after {
  background-image: url("../images/chevron.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  display: inline-block;
  top: 2px;
  right: -8px;
  content: "";
  transition: 0.2s ease-out;
}
section#pricing .active, section#pricing .accordion:hover {
  background-color: #F4ECE2;
  transition: 0.2s ease-out;
}
section#pricing .accordion.active .coffinMoreinfo:after {
  transform: rotate(180deg);
  top: -10px;
}
section#pricing .panel {
  padding: 0 12px;
  background-color: #F4ECE2;
  max-height: 0;
  overflow: hidden;
  line-height: 150%;
  transition: max-height 0.2s ease-out;
  border-radius: 4px;
}
section#pricing .panel p {
  margin-bottom: 24px;
}

section#contact {
  background-image: url("../images/kist-dark.svg");
  background-position: top center, 50%, 50%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 250px 0;
  color: #9D8971;
  text-align: center;
  margin: 0px auto;
}
section#contact #innerContainer {
  width: 900px;
  margin: 50px auto 0;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 24px;
}
section#contact #innerContainer h2 {
  font-size: 64px;
  color: #6B573D;
  margin-bottom: 12px;
}
section#contact #innerContainer p {
  margin-bottom: 32px;
}

input, textarea {
  width: 100%;
  display: block;
  margin-bottom: 24px;
  border-radius: 4px;
  background-color: #5D472C;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.2s ease-out;
  box-sizing: border-box;
  padding: 16px;
  color: #fff;
}
input:hover, input:focus-visible, textarea:hover, textarea:focus-visible {
  border: 1px solid rgb(255, 255, 255);
}

label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

input {
  height: 60px;
}

textarea {
  min-height: 120px;
}

#submit {
  height: auto;
  text-align: center;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #4D3A22;
  color: #fff;
  transition: 0.2s ease-out;
  cursor: pointer;
}
#submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#submit:focus {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}

#contactform {
  width: 450px;
  text-align: left;
}

#bottomSection {
  margin-top: 400px;
  color: inherit;
}
#bottomSection span, #bottomSection strong, #bottomSection #mail, #bottomSection #phone {
  display: block;
}
#bottomSection #distance {
  font-size: 16px;
  line-height: 150%;
  display: block;
  margin: 24px 0 64px;
}

@media only screen and (max-width: 1024px) {
  section {
    width: 100%;
  }
  section#intro {
    width: 100%;
    overflow: hidden;
    padding: 140px 0 140px;
  }
  section#intro h1 {
    font-size: 32px;
  }
  section#intro img {
    width: 80px;
  }
  section#intro::before {
    width: 1940px;
    height: 970px;
    top: 10px;
    left: -1060px;
  }
  section#process {
    padding: 0px 16px;
    height: auto;
    margin-bottom: 200px;
    background-image: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  section#process h2 {
    position: relative;
    top: 0;
    left: 0;
  }
  section#process .content {
    width: calc(100% - 160px);
  }
  section#process .timeline-item {
    position: static;
    align-items: flex-start;
    width: 100%;
  }
  section#process .timeline-item .circle {
    width: 80px;
    height: 80px;
  }
  section#process .timeline-item .circle img {
    width: 50%;
  }
  section#pricing {
    padding: 0px 16px;
    margin-bottom: 130%;
  }
  section#pricing #images {
    position: relative;
    width: 100%;
    top: 90px;
  }
  section#pricing #images #imageOne {
    width: 75%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  section#pricing #images #imageTwo {
    width: 75%;
    position: absolute;
    top: 220px;
    right: 0;
    z-index: 2;
  }
  section#pricing #images #imageThree {
    width: 75%;
    position: absolute;
    top: 330px;
    left: 0;
    z-index: 1;
  }
  section#pricing #accordion {
    width: 100%;
    box-sizing: border-box;
  }
  section#contact #innerContainer {
    width: 100%;
    padding: 0 24px;
    margin-top: 0px;
    box-sizing: border-box;
  }
  section#contact #innerContainer #contactform {
    width: 100%;
  }
  section#contact #innerContainer h2 {
    font-size: 48px;
  }
  #bottomSection {
    margin-top: 50%;
  }
}/*# sourceMappingURL=style.css.map */