/* This stylesheet is meant for custom styles, on top of the Bone Template */
header {
  box-shadow: none;
}

.dark-hero header {
  color: white;
  box-shadow: none;
}

header.affix {
  height: 120px;
  color: hsl(0, 0%, 20%);
}

.brand.smooth {
  display: none;
}

header .menu {
  display: none;
}

header .content h1 {
  margin-bottom: 10px;
}

header .content h1 a {
  color: inherit;
  text-decoration: none;
}

header nav .nav-list {
  display: flex;
  gap: 50px;
  justify-content: center;
  list-style: none;
  font-weight: bold;
  text-transform: uppercase;
}

header nav .nav-list li ul {
  display: none;
  position: absolute;
  padding: 10px;
  padding-top: 15px;
  width: max-content;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  text-transform: none;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
}

header nav .nav-list li a {
  color: inherit;
}

header.affix nav .nav-list li ul {
  background-color: #fff;
}

header nav .nav-list li {
  position: relative;
  text-align: center;
}

header nav .nav-list li:hover ul {
  display: flex;
}

footer {
  padding: 100px 0;
  margin: 0;
}

.whatsapp {
  position: fixed;
  bottom: 14px;
  right: 12px;
  z-index: 98;
  background-color: #25d366;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.whatsapp img {
  width: 30px;
  height: 30px;
}

.telegram {
  position: fixed;
  bottom: 74px;
  right: 12px;
  z-index: 98;
  background-color: #0088cc;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.telegram img {
  width: 44px;
  height: 44px;
}

.offset-top {
  margin-top: 40vh;
}

.video-iframe {
  padding: 0;
}

@media (max-width: 768px) {
  .brand.smooth {
    display: inline-block;
  }

  header .menu {
    display: inline-block;
  }

  header .text-center {
    display: none;
  }

  header nav {
    display: none;
  }

  .whatsapp img {
    width: 25px;
    height: 25px;
  }

  .telegram {
    bottom: 64px;
  }

  .telegram img {
    width: 39px;
    height: 39px;
  }

  .video-iframe {
    height: 300px;
  }
}