/* Top Section of the header */
.header-wrapper {
  background-color: #164775;
}

/* Top Section of the header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  background-color: #164775;
}

.left-side,
.right-side {
  color: white;
}

.bottom-header {
  background-color: #f8f9fa;
}

/* Style all font awesome icons */
.icons {
  text-decoration: none;
  color: white;
  width: 25px;

  padding: 4px;
  text-align: center;
  border-radius: 50%;
}

.fa-facebook-f {
  background: #3b5998;
}

.fa-instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

/* Style the nav */
.nav-item {
  border-bottom: 0.25rem solid transparent;
  transition: all 0.2s ease;
}

.nav-item::after {
  transition: opacity 0.2s ease;
}

.nav-item:hover,
.nav-item:focus {
  border-bottom-color: #259bcf;
  transition: width 0.2s ease;
}

.nav-link .active {
  color: #1f3a63;
  border-bottom-color: #259bcf;
}

.dropdown-menu {
  display: none;
  background-color: #f8f9fa;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 770px) {
  .top-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .left-side {
    display: none;
  }
}

/* Style the footer */
.wrapper-footer-top {
  background-color: #034385;
  color: white;
  padding: 15px;
}

.wrapper-footer-bottom {
  background-color: #263242;
  color: white;
  padding: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
  .footer_list {
    list-style-type: none;
    padding: 0;
  }
  
  .footer_list a {
    color: white;
    text-decoration: none;
  }
  */

/* Style all font awesome icons */
.fa {
  padding: 5px;
  font-size: 5px;
  width: 25px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Facebook */
.fa-facebook {
  background: #3b5998;
  color: white;
}

/* Instagram */
.fa-instagram {
  color: white;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
