@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,500;0,700;1,400&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2 {
  font-family: "Grad", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

p.lead {
  color: #8E8E8E;
  font-size: 20px;
  font-weight: 400;
}

h2 {
  font-size: 40px;
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
section.bg-beige {
  background-color: #F2F0EC;
}

.pretitle {
  color: #353535;
  font-size: 14px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  font-weight: 400;
}
.pretitle:not(.no-line)::after {
  display: inline-block;
  content: "";
  margin-left: 25px;
  width: 40px;
  height: 1px;
  background: #353535;
  margin-bottom: 4px;
}

.maps-iframe {
  height: 350px;
}

header {
  position: fixed;
  z-index: 1;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 73.33%);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo img {
  height: 75px;
}
header .container .menu {
  display: flex;
  gap: 1.5rem;
}
header .container .menu a {
  color: white;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 10px;
  transition: background-color 0.25s ease;
}
header .container .menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
header .container .menu-toggler {
  font-size: 32px;
  color: white;
  cursor: pointer;
}
header #offcanvasMenu {
  background: #F2F0EC;
  color: #353535;
  max-width: 75%;
}
header #offcanvasMenu .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
header #offcanvasMenu .menu a {
  text-decoration: none;
  color: #353535;
  font-size: 24px;
  font-weight: medium;
}
header #offcanvasMenu .contact .icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
header #offcanvasMenu .contact .icons a {
  font-size: 24px;
  color: #353535;
}

footer {
  background-color: #353535;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: white;
}
footer .logo {
  width: 140px;
}
footer .footer-text {
  font-weight: 400;
}
footer .copyright {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
footer .contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .contact a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 300;
  transition: opacity 0.25s ease;
}
footer .contact a i {
  font-size: 24px;
}
footer .contact a:hover {
  opacity: 0.8;
}
footer .social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer .social a {
  text-decoration: none;
  color: white;
}
footer .social a i {
  font-size: 24px;
}

@media (max-width: 767px) {
  [class*=col-]:not([class*=col-auto]) + [class*=col-]:not([class*=col-auto]) {
    margin-top: 1em;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

a[data-hs-anchor=true] {
  display: block;
  position: relative;
  visibility: hidden;
  top: -100px;
}

.floating-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: #353535;
  padding: 0.5rem 1.5rem;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: all 0.1s linear;
}
.floating-button.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  cursor: default;
}
.floating-button:hover {
  opacity: 0.9;
}

.page-homepage .hero {
  position: relative;
  height: 100vh;
}
.page-homepage .hero .overlay {
  height: 100%;
  position: relative;
}
.page-homepage .hero .overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.page-homepage .hero .overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s;
  position: absolute;
}
.page-homepage .hero .overlay img:is(:first-child) {
  opacity: 1;
}
.page-homepage .hero .content {
  position: absolute;
  top: 45%;
  width: 100%;
}
.page-homepage .hero .content .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.page-homepage .hero .content .container .title {
  font-size: 48px;
}
.page-homepage .hero .content .container .subtitle {
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-homepage .hero .content .container .title {
    font-size: 88px;
  }
  .page-homepage .hero .content .container .subtitle {
    font-size: 26px;
  }
}
.page-homepage section.section-image {
  position: relative;
}
.page-homepage section.section-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}
.page-homepage section.section-image.quote {
  height: 550px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .page-homepage section.section-image.quote {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 15%;
  }
}
.page-homepage section.parallax-image {
  position: relative;
}
.page-homepage section.parallax-image.emotion {
  height: 150px;
  width: 100%;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-homepage section.parallax-image.emotion {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  @supports (-webkit-touch-callout: none) {
    .page-homepage section.parallax-image.emotion {
      background-attachment: scroll;
    }
  }
}
.page-homepage section.parallax-image.testimonial {
  min-height: 400px;
  width: 100%;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  .page-homepage section.parallax-image.testimonial {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  @supports (-webkit-touch-callout: none) {
    .page-homepage section.parallax-image.testimonial {
      background-attachment: scroll;
    }
  }
}
.page-homepage section.parallax-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}
.page-homepage section.menu-example .menu-example-tabs .nav-tabs {
  display: flex;
  justify-content: center;
  border: 0;
  gap: 1rem;
}
.page-homepage section.menu-example .menu-example-tabs .nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #353535;
  text-transform: uppercase;
}
.page-homepage section.menu-example .menu-example-tabs .nav-tabs .nav-link.active {
  border-bottom: 2px solid #353535;
}
.page-homepage section.menu-example .menu-example-tabs .tab-content ul li {
  color: #8E8E8E;
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 768px) {
  .page-homepage section.menu-example .menu-example-tabs .tab-content .menu-image {
    width: 100%;
  }
}
.page-homepage section.our-team .team-card {
  margin-top: 2rem;
}
.page-homepage section.our-team .team-card h3 {
  margin-top: 1.5rem;
}
.page-homepage section.our-team .team-card .position {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.page-homepage section.our-team .team-card .contact-details {
  margin-top: 0.5rem;
  font-weight: 400;
}
.page-homepage section.our-team .team-card .about {
  margin-top: 1rem;
  font-size: 17px;
  font-weight: 400;
  color: #8E8E8E;
}
.page-homepage section.gallery .gallery-image {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.page-homepage section.section-image.quote .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 20%;
  color: white;
}
.page-homepage section.section-image.quote .content .quote {
  font-size: 28px;
  font-family: "Grad", sans-serif;
  font-style: italic;
  position: relative;
}
@media (min-width: 768px) {
  .page-homepage section.section-image.quote .content .quote {
    font-size: 48px;
  }
}
.page-homepage section.section-image.quote .content .quote::before {
  background-image: url("../images/quote-element.png");
  background-size: 40px 27px;
  display: block;
  width: 40px;
  height: 27px;
  content: "";
  margin-bottom: 1rem;
}
.page-homepage section.section-image.quote .content .author {
  text-align: start;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.page-homepage section.section-image.quote .content .signature {
  margin-top: 1rem;
  width: 90px;
  height: auto;
}
.page-homepage section.parallax-image.testimonial .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.page-homepage section.parallax-image.testimonial .content .testimonial {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-homepage section.parallax-image.testimonial .content .testimonial {
    font-size: 20px;
  }
}
.page-homepage section.parallax-image.testimonial .content .author {
  margin-top: 10px;
  font-weight: bold;
}

.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #999;
  border: 0;
}

.tns-nav > .tns-nav-active {
  background: #ddd;
}

.page-event .hero {
  position: relative;
  height: 40vh;
}
.page-event .hero .overlay {
  height: 100%;
  position: relative;
}
.page-event .hero .overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.page-event .hero .overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-event .hero .content {
  position: absolute;
  top: 55%;
  width: 100%;
}
.page-event .hero .content .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.page-event .hero .content .container .title {
  font-size: 32px;
}
.page-event .hero .content .container .subtitle {
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-event .hero .content .container .title {
    font-size: 64px;
  }
  .page-event .hero .content .container .subtitle {
    font-size: 26px;
  }
}
.page-event section.event-details .event-time {
  text-transform: uppercase;
}
.page-event section.event-details .event-time span {
  background-color: #F2F0EC;
  padding: 0.5rem 1rem;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-event section.event-details .event-time span {
    padding: 1rem 2rem;
  }
}
.page-event section.event-details .event-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-event section.event-details .event-content {
  color: #8E8E8E;
  font-weight: 400;
}
.page-event section.event-details .event-content p {
  font-size: 18px;
}
.page-event section.event-details .event-content p.strong {
  font-weight: bold;
}
.page-event section.event-details .event-price {
  font-size: 24px;
  font-weight: bold;
  font-family: "Grad", sans-serif;
  color: #353535;
}
.page-event section.event-cta h3 {
  font-family: "Grad", sans-serif;
}
.page-event section.event-cta .text {
  font-size: 20px;
  font-weight: 400;
}

.page-custom .hero {
  position: relative;
  height: 40vh;
}
.page-custom .hero .overlay {
  height: 100%;
  position: relative;
}
.page-custom .hero .overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.page-custom .hero .overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-custom .hero .content {
  position: absolute;
  top: 55%;
  width: 100%;
}
.page-custom .hero .content .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.page-custom .hero .content .container .title {
  font-size: 32px;
}
.page-custom .hero .content .container .subtitle {
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-custom .hero .content .container .title {
    font-size: 64px;
  }
  .page-custom .hero .content .container .subtitle {
    font-size: 26px;
  }
}

.link-button {
  display: flex;
  gap: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #353535;
  font-size: 18px;
}
.link-button:hover {
  color: #353535;
  cursor: pointer;
}

.btn {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 3.5rem;
  border: none;
  border-radius: 0;
}
.btn.btn-primary {
  background: #353535;
  color: white;
}
.btn.btn-primary:hover {
  opacity: 0.9;
}
.btn.btn-primary:active, .btn.btn-primary:focus {
  background: #353535;
}
.btn.btn-outline-primary {
  color: #353535;
  font-weight: 500;
  border: 1px solid #353535;
}
.btn.btn-outline-primary:hover {
  opacity: 0.8;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:active, .btn.btn-outline-primary:focus {
  background: transparent;
}

form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: none;
}
form input,
form textarea,
form select {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #8E8E8E !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
form .form-floating label {
  color: #353535;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-bottom: 1px solid red !important;
}

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