@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap");

/* navbar */
.navbar {
  background: #FFFFFF;
  padding: 0.55rem;
  box-sizing: border-box;
  font-family: sans-serif;
  /* transition: 0.6s; */
  height: 6rem;
  padding-top: 0;
  padding-bottom: 0;
}

.sticky {
  background: linear-gradient(180deg, #FFFFFF 80%, rgba(255, 255, 255, 0) 100%);
}
.sticky .navbar-brand,
.sticky ul li a {
    color: #000;
    transition: 0.3s;
}

.navbar-brand img {
  width: 100%;
  height: 5rem;
  transition: transform 0.3s;
}

nav ul li {
  margin: 0 0.4rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.navbar-light .navbar-collapse .navbar-nav .nav-link{
  font-size: 0.9rem;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #408e4e;
}
.navbar-toggler {
  font-size: 30px;
  color: black;
  /* float: right; */
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-bottom: 0.1rem #eee solid;
}
.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}
.navbar-nav .dropdown-menu {
  padding: 0;
}
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #d7e5d8;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 6rem;
  padding: 1rem 1.5rem;
  list-style: none;
  background-color: #daaa5f;
  border-radius: 0;
}

.breadcrumb li, .breadcrumb li a {
  display: inline;
  font-family: "Open Sans", Sans-serif;
  font-size: 1rem;
  color: #ede3d6;
}
.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #ede3d6;
  content: "/";
}
.breadcrumb li+li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  color: #ede3d6;
  font-weight: 900;
  width: 1rem;
  display: inline-block;
  text-align: center;
}

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

.breadcrumb li a:hover {
  color: #ede3d6;
  text-decoration: none;
}

/* footer */
.footer-dark {
  /* margin-top: 2em; */
  padding:0 0 1em;
  color: #f0f9ff;
  background-color: #408e4e;
  overflow: hidden;
  float: left;
  width: 100%;
}

.svg-shape {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 4rem;
  fill: #f8fbf9;
}

.bar-mobile {
  background: #b32329;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  border-radius: 20px 20px 0 0
}

.infinimed a, .bar-mobile a {
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    color: #b32329;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    line-height: 46px;
    margin: 8px 3px;
    /* background: #fcd730; */
    background: #fff;
    font-size: 2em;
    opacity: 1;
    vertical-align: middle;
    transition: all 0.4s;
}

.bar-mobile a.fab-whatsapp {
    /* background: #6dd467; */
    height: 75px;
    width: 75px;
    line-height: 58px;
    margin: -26px -5px -14px;
    font-size: 2.7em;
    border: 8px solid #b32329;
}

.scroll-to-top::before, .whatsapp-button::before {
    color: #fff;
    font-size: 2.4em;
    content: '\f106';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    line-height: 46px;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center;
}

.whatsapp-button::before {
    font-family: "Font Awesome 5 Brands";
    content: '\f232';
    color: #fff;
    font-size: 2.7em;
    line-height: 62px;
}

.fab-instagram::before {
    content: '\f16d';
}

.fab-whatsapp::before {
    content: '\f232';
}

.scroll-to-top, .whatsapp-button {
    text-decoration: none !important;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 1px -1px rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    z-index: 998;
    bottom: 140px;
    right: 20px;
    position: fixed;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    transition: all 0.4s;
}

.scroll-to-top {
    opacity: 0;
    visibility: hidden;
    background: #20b670;
}

.scroll-to-top.active {
    pointer-events: auto;
    opacity: 1;
    bottom: 80px;
    visibility: visible;
}

.whatsapp-button {
    display: block;
    bottom: 10px;
    right: 14px;
    opacity: 1;
    visibility: visible;
    background: #6dd467;
    height: 62px;
    width: 62px;
}
.scroll-to-top:hover, .whatsapp-button:hover {
    background: #20b670;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.3), 0 1px 1px -1px rgba(0,0,0,.4), 0 1px 5px 0 rgba(0,0,0,.2);
}
.footer-dark .logo img {
  margin-top: -290px;
  width: 140px;
  height: 120px;
  margin-left: 10px;
}
.footer-dark .nama-desa {
  margin-top: 70px;
  color: white;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "David Libre", serif;
}
.footer-dark .item p {
  line-height: 0.9rem;
  font-size: 0.9rem;
}
.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover {
  opacity: 0.8;
}

.footer-dark .foll {
  font-size: 26px;
  font-family: "David Libre", serif;
  color: white;
  padding-bottom: 10px;
  border-bottom: 1px #fff solid;
}
.border {
  width: 110px;
  height: 4px;
  background: #fc5c65;
  margin-left: 55%;
}
.social-media {
  margin: 20px 0;
}
.social-media a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s linear;
}
.social-media a:hover {
  color: #fc5c65;
}

.footer-dark .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-dark .item.social {
  text-align: center;
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social > a:hover {
  opacity: 0.9;
}

.footer-dark .copyright {
  text-align: center;
  font-size: 0.75rem;
  margin: 3rem 0 0;
}
.footer-dark .copyright a {
  color: #ccc;
  text-decoration: none !important;
}
.footer-dark .copyright a:hover {
  color: #eee;
}


@media only screen and (min-width: 768px) {
  .bar-mobile {
      display: none;
  }
}

@media only screen and (max-width: 768px) {
  .bar-mobile {
      display: block;
  }
  .scroll-to-top {
      bottom: 130px;
      right: 10px;
  }
}

@media (max-width: 991px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
  .footer-dark .logo img {
    margin-top: -630px;
    width: 140px;
    height: 120px;
    margin-left: 165px; 
  }
}

@media (max-width: 767px) {
  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
  .whatsapp-button {
    display: none;
  }
  
  .footer-dark .item.text {
    margin-bottom: 36px;
  }
  .footer-dark .item.text {
    margin-bottom: 0;
  }
  .footer-dark .foll {
    margin-left: -5px;
  }
  .border {
    margin-left: 37%;
  }
  .social-media {
    margin-left: 10%;
  }
.footer-dark .logo img {
    margin-top: -630px;
    width: 140px;
    height: 120px;
    margin-left: 165px;
  }
}
@media (max-width: 575px) {
  /* navbar */
  .navbar-toggler {
    margin-right: 0.4rem;
    margin-top: -3.2rem;
  }
  .navbar-brand img {
    height: 5rem;
    margin-left: 0.45rem;
    margin-top: -3.3rem;
  }
  nav ul {
    text-align: center;
    margin-top: 20px;
    height: 50vh;
  }
  nav ul li {
    font-size: 13px;
    padding: 2px 0;
  }
  .navbar-collapse {
    background: #2c3e50;
    opacity: 0.8;
    border-radius: 1rem;
  }
  .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: white;
  }
  .footer-dark .logo img {
    margin-top: -630px;
    width: 140px;
    height: 120px;
    margin-left: 120px;
  }
  .border {
    margin-left: 33%;
  }
}
