@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body,
html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

.header {
  max-width: 100vw;
  width: 100vw;
  height: 48.52vh;
  position: relative;
  background-size: cover;
  background-position: center center;
  font-size: 1rem;
  padding-top: 19.35vh;
  background-image: url('../assets/img/776.jpg');
}

.header::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  content: '';
}

.header__head {
  position: relative;
  z-index: 50;
  color: #fff;
  width: 50vw;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 11.4vh;
}

.header__title {
  font-size: 3.3em;
  font-weight: 500;
  margin-bottom: 5vh;
  animation: fade 1500ms forwards;
  animation-delay: 200ms;
  opacity: 0;
}

.header__subtitle {
  font-size: 1.2em;
  line-height: 1.8em;
  font-weight: 500;
  margin-bottom: 2.5vh;
  animation: fade 1500ms forwards;
  animation-delay: 400ms;
  opacity: 0;
}

.header__nav {
  font-size: 1.2em;
  font-weight: 300;
  animation: fade 1500ms forwards;
  animation-delay: 600ms;
  opacity: 0;
}

.header__nav a {
  color: #fff;
  text-decoration: none;
}

.header__nav a:not(:last-child) {
  margin-right: 0.5em;
}

.header__nav a:hover {
  color: #d29723;
}

.header__nav span {
  margin-right: 0.5em;
}

@keyframes fade {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.container {
  max-width: 100vw;
  width: 100vw;
  background-color: #fff;
  padding-left: 14.48vw;
  padding-right: 23.94vw;
  padding-top: 8.66vh;
  padding-bottom: 17.22vh;
}

.title {
  font-size: 2.33em;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 3vh;
  padding-top: 3vh;
}

.title span {
  width: 0.5vw;
  height: 1em;
  border-radius: 0.5em;
  display: inline-block;
  background-color: #d29723;
  margin-right: 0.8vw;
}

.paragraph {
  font-size: 1.33em;
  font-weight: 400;
  line-height: 1.5em;
}

.paragraph:not(:last-child) {
  margin-bottom: 5vh;
}

.subtitle {
  font-size: 2em;
  font-weight: 500;
  margin-left: 3vw;
}

.subparagraph {
  font-size: 1.33em;
  font-weight: 400;
  line-height: 1.5em;
  margin-left: 3vw;
  margin-bottom: 5vh;
}

.list {
  font-size: 1.33em;
  font-weight: 400;
  line-height: 1.5em;
  margin-left: 3vw;
  margin-bottom: 5vh;
}

.footer {
  font-size: 1rem;
  max-width: 100vw;
  width: 100vw;
  padding: 15vh 0;
  position: relative;
  overflow: hidden;
}

.footer:hover .footer__cover {
  transform: scale(1.05);
}

.footer::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(210, 151, 35, 0.8);
  content: '';
}

.footer__cover {
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url('../assets/img/3016411.jpg');
  background-position: 10% center;
  background-size: cover;
  transition: 1000ms;
}

.footer__content {
  position: relative;
  z-index: 100;
  color: #fff;
}

.footer__title {
  font-size: 2.1em;
  line-height: 1.5em;
  font-weight: 500;
  width: 60vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5vh;
}

.footer__button {
  background-color: #fff;
  color: #d29723;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  border-radius: 2rem;
  padding: 0.8em 1.2em;
  margin: 0 auto;
  width: max-content;
  height: max-content;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5em;
}

.footer__button > span {
  margin-right: 1em;
  transition: margin-right 500ms ease;
}

.footer__button img {
  width: 0.7em;
  height: auto;
}

.footer__button:hover > span {
  margin-right: 1.5em;
}

@media only screen and (max-width: 1366px) {
  .header {
    font-size: 0.71rem;
  }
  .container {
    font-size: 0.71rem;
  }
  .footer {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .header {
    font-size: 0.66rem;
  }
  .container {
    font-size: 0.66rem;
  }
  .footer {
    font-size: 0.66rem;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    font-size: 0.53rem;
  }
  .container {
    font-size: 0.53rem;
  }
  .footer {
    font-size: 0.53rem;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    font-size: 1rem;
  }
  .header__head {
    width: 80vw;
  }
  .header__title {
    font-size: 3em;
  }
  .container {
    font-size: 1rem;
    padding-right: 15vw;
    padding-left: 10vw;
  }
  .title {
    font-size: 2em;
  }
  .title span {
    margin-right: 2vw;
    width: 1vw;
  }
  .paragraph {
    font-size: 1.1em;
  }
  .subtitle {
    font-size: 1.8em;
  }
  .subparagraph {
    font-size: 1.1em;
  }
  .footer {
    font-size: 1rem;
    padding: 10vh 0;
  }
  .footer__title {
    font-size: 1.9em;
    width: 70vw;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.54rem;
  }
  .container {
    font-size: 0.54rem;
  }
  .footer {
    font-size: 0.54rem;
  }
}
