html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "Nunito", sans-serif;
  color: #000000;
}

.wrapper-img {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-img img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

p {
  font-size: 18px;
}
p.small {
  font-size: 16px;
}

.hide {
  display: none !important;
}

a {
  text-decoration: none;
  color: #000000;
}

.regular-width {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 950px) {
  .regular-width {
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
}

.full-width {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, .title {
  font-family: "Libre Baskerville", serif;
  color: #000000;
  font-weight: bold;
}

h2 {
  text-align: center;
  font-size: 30px;
  margin-top: 100px;
  margin-bottom: 40px;
}

*:focus {
  outline: none;
}

.separator {
  margin: 0 auto;
  width: 100px;
  height: 5px;
  background-color: #eec163;
  border-radius: 100px;
  margin-top: -30px;
  margin-bottom: 30px;
}

.bg-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bg-wrapper img {
  height: auto;
  width: 100%;
  filter: grayscale(5);
  opacity: 0.9;
}

.btn {
  display: inline-block;
  border: 2px solid #eec163;
  border-radius: 100px;
  padding: 10px 25px;
  background-color: #eec163;
  font-weight: bold;
  color: #000000;
  transition-duration: 0.3s;
  cursor: pointer;
}
.btn.cta:hover {
  background-color: rgba(238, 193, 99, 0);
  color: #eec163;
}
.btn.cta.phantom {
  background-color: rgba(238, 193, 99, 0);
  color: #eec163;
}
.btn.cta.phantom:hover {
  color: #000000;
  background-color: #eec163;
}
.btn.submit {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0);
}
.btn.submit:hover {
  box-shadow: 2px 2px 6px black;
}
.btn.display {
  padding: 5px 10px;
}
.btn.display svg {
  width: 15px;
  height: 15px;
}

#header {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  height: 80px;
  position: fixed;
  width: 100%;
  transition-duration: 0.3s;
}
#header.scroll {
  height: 40px;
}
#header.scroll .content .logo {
  height: 40px;
}
#header.scroll .btn.cta.phantom {
  padding: 5px 20px;
}
#header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .content .logo {
  height: 80px;
  width: auto;
  transition-duration: 0.3s;
}
#header .content .logo img {
  height: 100%;
  width: auto;
  filter: invert(1);
}
#header .content nav {
  margin: 0;
  padding: 0;
}
#header .content nav ul {
  margin: 0;
  padding: 0;
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .content nav ul li {
  list-style: none;
}
#header .content nav ul li a {
  display: inline-block;
  font-size: 14px;
  transition-duration: 0.3s;
  color: #fff;
}
#header .content nav ul li a:not(.cta) {
  padding: 15px;
  border-bottom: 2px solid rgba(238, 193, 99, 0);
}
#header .content nav ul li a.cta {
  margin-left: 10px;
}
#header .content nav ul li a:hover {
  border-bottom: 2px solid #eec163;
}
#header .content .btn.display {
  display: none;
}
@media screen and (max-width: 800px) {
  #header {
    background: rgba(0, 0, 0, 0.8);
    height: 395px;
    align-items: flex-start;
  }
  #header.clossed {
    height: 85px;
  }
  #header.clossed .content nav {
    display: none;
  }
  #header.clossed .content .btn.display {
    transform: rotate(0deg);
  }
  #header.clossed .content .logo {
    height: 60px;
  }
  #header .content {
    flex-direction: column;
    justify-content: center;
  }
  #header .content nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  #header .content nav ul li a.cta {
    margin-left: 0;
  }
  #header .content .btn.display {
    transition-duration: 0.5s;
    display: inline-block;
    position: absolute;
    bottom: -14px;
    transform: rotate(180deg);
  }
  #header .content .logo {
    height: 60px;
  }
}

.wrapper-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: video-opacity;
  animation-duration: 2s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
  background-color: #fff;
  /* Video logo sound button */
}
.wrapper-video video {
  width: 100%;
  height: auto;
  /* Responsive video */
}
.wrapper-video video .vertical {
  width: auto;
  height: 100%;
}
.wrapper-video button {
  position: fixed;
  bottom: 15px;
  left: 15px;
  border-radius: 100px;
  background-color: #eec163;
  border: none;
}
.wrapper-video button img {
  width: 30px;
  height: 30px;
  padding: 10px;
}

@keyframes video-opacity {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
section.hero {
  position: relative;
}
section.hero .bg-wrapper {
  height: 620px;
  align-items: flex-end;
}
@media screen and (max-width: 1085px) {
  section.hero .bg-wrapper img {
    height: 100%;
    width: auto;
  }
}
section.hero .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 250px;
  padding-bottom: 80px;
}
section.hero .text h1 {
  font-size: 90px;
  text-align: center;
  color: #fff;
  padding-bottom: 30px;
  margin: 0;
  width: 90%;
}
@media screen and (max-width: 1058px) {
  section.hero .text h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 823px) {
  section.hero .text {
    padding-top: 200px;
  }
}
@media screen and (max-width: 580px) {
  section.hero .text {
    padding-top: 250px;
  }
  section.hero .text h1 {
    font-size: 50px;
  }
}
section.hero .text .btn {
  margin: 0 auto;
  display: inline-block;
  font-size: 20px;
}

section.cards-section {
  position: relative;
  overflow: hidden;
}
section.cards-section .content .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
}
@media screen and (max-width: 650px) {
  section.cards-section .content .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  section.cards-section .content .cards .card {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  section.cards-section .content .cards .card {
    width: 80%;
  }
}
section.cards-section .content .cards .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  text-align: center;
}
section.cards-section .content .cards .card:hover svg, section.cards-section .content .cards .card:hover .photo-wrapper {
  transform: translateY(-10px);
}
section.cards-section .content .cards .card svg {
  transition-duration: 0.3s;
  width: 40px;
  height: 40px;
}
section.cards-section .content .cards .card svg use {
  fill: rgba(0, 0, 0, 0.8);
}
section.cards-section .content .cards .card .photo-wrapper {
  transition-duration: 0.3s;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
section.cards-section .content .cards .card .photo-wrapper img {
  width: 100%;
  height: auto;
}
section.cards-section .content .cards .card p {
  text-decoration: none;
}
section.cards-section .bg-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 300px;
  width: auto;
  opacity: 0.2;
}
@media screen and (max-width: 1150px) {
  section.cards-section .bg-image {
    display: none;
  }
}
section.cards-section .bg-image.left {
  left: -120px;
}
section.cards-section .bg-image.right {
  right: -120px;
}

section.gallery .splide__slide {
  width: 33.33%;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
section.gallery .splide__slide img {
  width: 100%;
  height: auto;
}
section.gallery button.splide__arrow {
  top: 65% !important;
}
@media screen and (max-width: 800px) {
  section.gallery .splide__slide {
    padding: 5px;
  }
  section.gallery button.splide__arrow {
    top: 60% !important;
  }
}

section.contact {
  position: relative;
  margin-top: 100px;
  height: 360px;
}
section.contact .bg-wrapper {
  height: 360px;
  align-items: center;
}
section.contact .bg-wrapper img {
  filter: brightness(0.5);
}
@media screen and (max-width: 1050px) {
  section.contact .bg-wrapper img {
    height: 100%;
    width: auto;
  }
}
section.contact form, section.contact fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
section.contact form {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.contact form h2 {
  color: #fff;
  text-shadow: 2px 2px 6px #000000;
  margin-top: 0;
}
section.contact form input {
  margin: 10px;
}
section.contact form input:not(.btn) {
  padding: 15px 20px;
  border: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  width: 250px;
}
section.contact form input:not(.btn):focus {
  box-shadow: 2px 2px 6px #000000;
}
@media screen and (max-width: 800px) {
  section.contact {
    height: 420px;
  }
  section.contact .bg-wrapper {
    height: 420px;
  }
  section.contact fieldset {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

section.testimonials .splide__slide {
  height: 280px;
  width: 33.33%;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
section.testimonials .splide__slide blockquote header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}
section.testimonials .splide__slide blockquote header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 30px;
}
section.testimonials .splide__slide blockquote header .metadata {
  display: flex;
  flex-direction: column;
}
section.testimonials .splide__slide blockquote header .metadata .name {
  font-weight: bold;
}
section.testimonials .splide__slide blockquote header .metadata time {
  font-style: italic;
  font-size: 14px;
}
@media screen and (max-width: 670px) {
  section.testimonials .splide__slide blockquote header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  section.testimonials .splide__slide blockquote header img {
    margin: 0;
  }
}
section.testimonials button.splide__arrow {
  top: 65% !important;
}

#footer {
  position: relative;
  margin-top: 100px;
  color: white;
  padding-top: 100px;
}
#footer a {
  color: #eec163;
}
#footer a:hover {
  opacity: 0.5;
}
#footer .bg-wrapper {
  height: 377px;
  align-items: flex-end;
}
@media screen and (max-width: 1350px) {
  #footer .bg-wrapper img {
    height: 100%;
    width: auto;
  }
}
#footer .widgets {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#footer .widgets .left, #footer .widgets .middle {
  width: 40%;
}
#footer .widgets .left .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .widgets .left .menu ul li {
  list-style: none;
}
#footer .widgets .left .menu ul li a {
  text-transform: uppercase;
  padding: 5px 10px;
  display: inline-block;
  transition-duration: 0.3s;
  font-weight: bold;
}
#footer .widgets .left address {
  text-align: center;
}
#footer .widgets .left address a {
  display: block;
}
#footer .widgets .middle .hours {
  width: 400px;
}
#footer .widgets .middle .hours th {
  text-align: left;
}
#footer .widgets .right .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#footer .widgets .right .socials svg {
  width: 30px;
  height: 30px;
  padding: 10px;
  fill: #fff;
}
#footer small {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 922px) {
  #footer {
    padding-top: 46px;
  }
  #footer .widgets {
    justify-content: space-around;
    flex-direction: column;
  }
  #footer .widgets .middle {
    display: none;
  }
  #footer .widgets .left, #footer .widgets .right {
    width: 100%;
  }
  #footer .widgets .left p, #footer .widgets .left a, #footer .widgets .right p, #footer .widgets .right a {
    font-weight: 13px;
  }
  #footer .widgets .right {
    order: -1;
  }
  #footer .widgets .right .socials {
    flex-direction: row;
  }
  #footer small {
    font-size: 10px;
    margin-top: 30px;
  }
}

/*# sourceMappingURL=styles.css.map */
