@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Damion&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

/* HERO */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* LOGO */
.hero-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-logo img {
  height: 70px;
}

/* SLIDER */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  /*background:
    radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.65));*/
  z-index: 3;
}

/* NAV */
.hero-nav {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 5;
}

.hero-nav button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  font-size: 22px;
  cursor: pointer;
  transition: .3s;
}

.hero-nav button:hover {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-logo img {
    height: 52px;
  }

  .hero-nav {
    bottom: 40px;
  }
}






/* GALLERY */
.gallery {
  background: url("../img/partners-1.png") center/contain repeat;
  position: relative;
}


.gallery .container {
  position: relative;
  z-index: 2;
}

/* TITLES */
.gallery-title {
  font-family: 'Pacifico', cursive;
  font-size: 72px;
  color: #111;
}

.gallery-sub {
  font-size: 26px;
  color: #ff7a18;
}

/* ITEM */
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  background: #000;
}

.gallery-item img {
  transition: .6s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 48px;
  }

  .gallery-sub {
    font-size: 20px;
  }
}








/* MAP */
.map-section {
  width: 100%;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-wrapper {
    height: 340px;
  }
}





/* FOOTER */
.site-footer {
  background: radial-gradient(circle at top, #1d1f24, #121417);
  padding: 90px 0;
  color: #fff;
}

/* BOX */
.footer-box {
  max-width: 300px;
  margin: auto;
}

/* ICON */
.footer-icon {
  color: #E48216;
  font-size: 28px;
  margin-bottom: 14px;
}


/* TITLES */
.site-footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.site-footer p {
  font-size: 15px;
  color: #d7d7d7;
  line-height: 1.6;
}


.footer-mail {
  color: #d7d7d7;
  text-decoration: none;
}

.footer-mail:hover {
  color: #ff7a18;
  text-decoration: underline;
}
