@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Allura";
  src: url(../fonts/Allura-Regular.ttf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: rgb(163, 129, 80);
  color: white;
}

*::selection {
  background-color: rgb(163, 129, 80);
  color: white;
}

strong {
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

body {
  font-family: Poppins, serif;
  color: #21201e;
}

a,
a:visited {
  text-decoration: none;
}

header {
  background: rgb(163, 129, 80) url(../img/background.webp) fixed center/cover;
  height: 100svh;
  position: relative;
  text-align: center;
}
header:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #eee;
  animation: whiteFlashAtStart 1.5s ease forwards;
  animation-delay: 0.15s;
}
@keyframes whiteFlashAtStart {
  to {
    opacity: 0;
  }
}
header a,
header a:visited {
  color: #21201e;
}
header a:hover,
header a:visited:hover {
  color: rgb(255, 231, 195);
}
@media screen and (max-width: 550px), (max-height: 400px) {
  header a:hover,
  header a:visited:hover {
    color: #21201e;
  }
}
header .titles-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #eee;
  height: 70vh;
  opacity: 0;
  transform: translateY(40px);
  animation: headerAnim 1.5s forwards;
}
@keyframes headerAnim {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 550px) {
  header .titles-content {
    height: 60vh;
  }
}
header .titles-content h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 4rem;
  margin-bottom: 1rem;
  padding: 0 2.5%;
}
@media screen and (max-width: 550px), (max-height: 400px) {
  header .titles-content h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
}
header .titles-content h2 {
  font-size: 3.5rem;
  letter-spacing: 1px;
  padding: 0 2.5%;
  font-family: Allura, cursive;
  color: rgb(255, 231, 195);
}
@media screen and (max-width: 550px), (max-height: 400px) {
  header .titles-content h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
header .nav-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(255, 231, 195, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  opacity: 0;
  animation: animNav 1.5s ease forwards;
  animation-delay: 0.15s;
}
@keyframes animNav {
  to {
    opacity: 1;
  }
}
header .nav-content nav {
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20vh;
}
@media screen and (max-width: 550px), (max-height: 400px) {
  header .nav-content nav {
    padding: 0.4rem 0;
  }
}
header .nav-content nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
header .nav-content nav ul li {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  transition: 0.2s;
  position: relative;
}
@media screen and (max-width: 550px), (max-height: 400px) {
  header .nav-content nav ul li {
    font-size: 1.5rem;
    padding: 0.2rem 0.6rem 0.2rem 0rem;
    line-height: 1.7rem;
  }
}
header .nav-content nav ul li a {
  text-transform: uppercase;
  transition: 0.2s;
  position: relative;
}
header .nav-content nav ul li a:after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 3px;
  width: 0%;
  background: rgb(163, 129, 80);
  left: 50%;
  transform: translate(-50%, 2rem);
  transition: 0.4s;
}
@media screen and (max-width: 740px), (max-height: 400px) {
  header .nav-content nav ul li a:after {
    display: none;
  }
}
header .nav-content nav ul li a:hover:after {
  width: 100%;
  background: rgb(255, 231, 195);
}

main {
  max-width: 1300px;
  width: 95%;
  margin: 0 auto 0;
}
main div {
  position: relative;
}
main div hr {
  position: relative;
  background-color: rgb(163, 129, 80);
  height: 1px;
  width: 100%;
  border: none;
  top: -2px;
}
main div img {
  width: 19%;
  height: auto;
  border-radius: 10px;
  float: left;
  shape-outside: margin-box;
  margin: 7px 20px 5px 0;
}
main div h3 {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  padding: 1.5rem 0;
}
main div h4 {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
main div h4 svg {
  margin-right: 0.5rem;
}
main div p {
  padding-bottom: 1.8rem;
  line-height: 1.8rem;
}
main div p:last-child {
  padding-bottom: 3rem;
}
main div p svg {
  fill: rgb(163, 129, 80);
}
main div ul {
  padding-bottom: 3rem;
}
main div ul li {
  padding: 0.5rem 0;
}

footer {
  background: #21201e;
  color: #eee;
}
footer .footer-container {
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
}
footer .footer-container .contact-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 2rem;
}
footer .footer-container .contact-content h3 {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  padding: 1.5rem 0;
}
footer .footer-container .contact-content ul {
  display: flex;
  flex-direction: column;
}
footer .footer-container .contact-content ul li {
  display: flex;
  justify-content: center;
  padding: 0.2rem 0;
}
footer .footer-container .contact-content ul li a,
footer .footer-container .contact-content ul li a:visited {
  display: flex;
  align-items: center;
  color: #eee;
  fill: #eee;
  transition: 0.2s;
}
footer .footer-container .contact-content ul li a:hover,
footer .footer-container .contact-content ul li a:visited:hover {
  color: rgb(163, 129, 80);
  fill: rgb(163, 129, 80);
}
@media screen and (max-width: 550px), (max-height: 400px) {
  footer .footer-container .contact-content ul li a:hover,
  footer .footer-container .contact-content ul li a:visited:hover {
    color: #eee;
    fill: #eee;
  }
}
footer .footer-container .contact-content ul li a svg,
footer .footer-container .contact-content ul li a:visited svg {
  margin-right: 0.3rem;
}
footer .footer-container .social-media {
  padding: 1.5rem 0;
}
footer .footer-container .social-media hr {
  position: relative;
  background-color: #eee;
  height: 1px;
  width: 100%;
  border: none;
  top: -1.5rem;
}
footer .footer-container .social-media ul {
  display: flex;
  justify-content: center;
}
footer .footer-container .social-media ul li {
  font-size: 1.5rem;
}
footer .footer-container .social-media ul li:nth-child(2) {
  padding: 0 75px;
}
footer .footer-container .social-media ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-container .social-media ul li a svg {
  transition: 0.2s;
  fill: #eee;
}
footer .footer-container .social-media ul li a svg:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 550px), (max-height: 400px) {
  footer .footer-container .social-media ul li a svg:hover {
    transform: none;
  }
}

.reveal [class*=reveal-] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(3px);
}

.reveal-visible [class*=reveal-] {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
  filter: blur(0px);
}

.reveal-visible .reveal-2 {
  transition-delay: 0.1s;
}
.reveal-visible .reveal-3 {
  transition-delay: 0.2s;
}
.reveal-visible .reveal-4 {
  transition-delay: 0.3s;
}
.reveal-visible .reveal-5 {
  transition-delay: 0.4s;
}
.reveal-visible .reveal-6 {
  transition-delay: 0.5s;
}
.reveal-visible .reveal-7 {
  transition-delay: 0.6s;
}
.reveal-visible .reveal-8 {
  transition-delay: 0.7s;
}/*# sourceMappingURL=index.css.map */