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

html {
  scroll-behavior: smooth;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.header {
  position: relative;
  height: 100vh;
  background-image: url("../img/hero_medium.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -200px 0;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.burger-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
}

.hero-text {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: white;
  font-family: "Playfair Display", serif;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 10px;
  font-size: 28px;
  font-style: italic;
  letter-spacing: 1.5px;
}

.hero-text p {
  letter-spacing: 1px;
}

.arrow-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  display: none;
}

.arrow-container a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  transform: translate(-50%, -50%);
  background-color: transparent;
  cursor: pointer;
}
.arrow-container i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: white;
  transition: color 0.3s;
}

.arrow-container:hover i {
  color: #b2a59b;
}

.nav-items {
  white-space: nowrap;
  max-height: 200vh;
  display: flex;
  justify-content: space-around;
  display: none;
}

.nav-items a {
  margin-top: 20px;
  padding: 30px 25px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s;
  color: white;
  z-index: 1;
}
.nav-items a:visited {
  color: white;
}
.nav-items a:hover {
  color: #b2a59b;
}

.burger-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 50px;
  margin: 15px;
  border: none;
  font-size: 40px;
  background-color: transparent;
  z-index: 20;
}

.burger-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 100%;
  margin-bottom: 5px;
  background-color: white;
  border-radius: 25px;
  transition: 0.3s;
}

.burger-first {
  top: 25%;
}

.burger-third {
  top: 75%;
}

.burger-first-animation {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.burger-second-animation {
  display: none;
}

.burger-third-animation {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.find-us-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
  padding: 20px;
  position: relative;
  text-align: center;
}

.find-us-header {
  font-size: 30px;
  font-family: "Playfair Display", serif;
}

.find-us-text {
  text-wrap: wrap;
  font-size: 18px;
  font-family: "Playfair Display", serif;
}

.find-us-invite {
  font-size: 18px;
  font-family: "Playfair Display", serif;
}

.contact {
  height: 100vh;
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  height: 100vh;
  text-align: center;
}

.contact-header {
  font-size: 30px;
}

.contact-company-name {
  text-transform: uppercase;
}

.contact h2 {
  font-family: "Playfair Display", serif;
}
.contact div {
  display: flex;
  font-size: 18px;
  font-family: "Playfair Display", serif;
}
.contact div i {
  margin-right: 2rem;
  display: inline;
  font-size: 24px;
}
.contact div .contact-label {
  margin-right: 2rem;
}

.build {
  margin-top: 50px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #120f09;
}

.footer p {
  color: white;
}

@media (max-width: 430px) and (min-height: 715px) {
  .header {
    background-position: -230px 0;
  }
  .find-us-text {
    font-size: 20px;
    font-family: "Playfair Display", serif;
  }
  .find-us-invite {
    font-size: 20px;
    font-family: "Playfair Display", serif;
  }
}
@media (max-width: 430px) and (min-height: 762px) {
  .header {
    background-position: -240px 0;
  }
}
@media (max-width: 430px) and (min-height: 830px) {
  .header {
    background-position: -270px 0;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 32px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .hero-text p {
    letter-spacing: 1px;
    font-size: 18px;
  }
  .burger-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    border: none;
    font-size: 40px;
    color: white;
    background-color: transparent;
  }
}
@media (min-width: 431px) and (min-height: 768px) {
  .header {
    background-position: -100px center;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 46px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .hero-text p {
    letter-spacing: 1px;
    font-size: 24px;
  }
  .burger-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    border: none;
    font-size: 40px;
    color: white;
    background-color: transparent;
  }
  .find-us-header {
    font-size: 32px;
    font-family: "Playfair Display", serif;
  }
  .find-us-text {
    font-size: 22px;
    font-family: "Playfair Display", serif;
  }
  .find-us-invite {
    font-size: 20px;
  }
  .contact-company-name {
    text-transform: uppercase;
  }
  .contact i {
    display: inline;
    font-size: 24px;
  }
}
@media (min-width: 1100px) and (min-height: 820px) {
  .header {
    background-position: -150px center;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 64px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .hero-text p {
    letter-spacing: 1px;
    font-size: 28px;
  }
}
@media (min-width: 1024px) and (min-height: 1366px) {
  .header {
    background-position: -150px center;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 82px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .hero-text p {
    letter-spacing: 1px;
    font-size: 44px;
  }
  .burger-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    border: none;
    font-size: 40px;
    color: white;
    background-color: transparent;
  }
  .find-us-header {
    font-size: 46px;
    font-family: "Playfair Display", serif;
  }
  .find-us-text {
    font-size: 28px;
    font-family: "Playfair Display", serif;
  }
  .find-us-invite {
    font-size: 28px;
  }
  .contact-company-name {
    text-transform: uppercase;
  }
  .contact i {
    display: inline;
    font-size: 24px;
  }
}
@media (min-width: 375px) and (orientation: landscape) {
  .nav-items a {
    margin-top: 20px;
    padding: 10px 25px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .header {
    background-position: center center;
  }
  .hero-text {
    margin: 45px 0 0 150px;
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .header {
    background-position: center center;
  }
  .hero-text {
    margin: 45px 0 0 200px;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 34px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
}
@media (orientation: landscape) and (min-width: 1180px) {
  .header {
    background-position: center center;
  }
  .hero-text {
    margin: 45px 0 0 300px;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 56px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
}
@media (orientation: landscape) and (min-width: 1366px) {
  .header {
    background-position: center center;
  }
  .hero-text {
    margin: 45px 0 0 300px;
  }
  .hero-text h1 {
    margin-bottom: 10px;
    font-size: 58px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .burger-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    border: none;
    font-size: 40px;
    color: white;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  .header {
    background-image: url("../img/hero-large-extended.png");
    background-position: -80px;
  }
  .hero-text {
    position: absolute;
    top: 40%;
    left: 55%;
  }
  .hero-text h1 {
    margin-bottom: 35px;
    font-size: 52px;
    font-style: italic;
    letter-spacing: 1.5px;
  }
  .hero-text p {
    letter-spacing: 1px;
    font-size: 30px;
  }
  .burger-icon {
    display: none;
  }
  .nav-items {
    display: flex;
    justify-content: space-between;
  }
  .arrow-container {
    display: block;
  }
  .find-us-header {
    font-size: 30px;
    font-family: "Playfair Display", serif;
  }
  .find-us-text {
    font-size: 24px;
    font-family: "Playfair Display", serif;
  }
  .find-us-invite {
    font-size: 24px;
  }
  .contact-company-name {
    text-transform: uppercase;
  }
  .contact div {
    display: flex;
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */