.hero_bg_box::before {
/*  background: linear-gradient(to bottom, rgb(55 89 151 / 85%), rgba(39, 48, 63, 0.7));*/
/*  background: linear-gradient(to bottom, rgb(75 122 209 / 85%), rgba(39, 48, 63, 0.7));*/
background: linear-gradient(to bottom, rgb(46 107 219 / 85%), rgba(39, 48, 63, 0.7));
}

.hero {
  min-height: 0;
  background-image: none;
  background-color: var(--color-secondary);
  padding: 120px 0 0 0;
}

/* .hero:after {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.6);
  inset: 0;
} */

.call-to-action {
  background: var(--color-secondary);
  /* background-size: cover; */
  /* padding: 100px 0; */
}

.whatsapp-float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 11px;
  right: 60px;
  padding-top: 7px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-float:hover{
  color: #344d77;
}

/*.wa-float-icon {
 margin-top: 16px;
}*/

.header_top .contact_nav a:hover i {
    color: #ff7241;
}

.header_bottom .contact_nav{
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* TOGGLE BUTTON */
/*.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/

#language-checkbox {
  opacity: 0;
  height: 0;
  width: 0;
}

.toggle {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px;
  height: 24px;
/*  background: #211042;*/
  background: #fff;
/*  background: url("/static/images/american-flag-icon.jpg") 50% 0 no-repeat fixed;*/
  border-radius: 50px;
  transition: 500ms;
  overflow: hidden;
  margin-bottom: 0;
/*  margin-top: 15px;*/
}

.toggle-button {
  position: absolute;
  display: inline-block;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
/*  background: #FAEAF1;*/
  background: url("/static/img/american-flag-icon.png") 0 0 no-repeat;
  overflow: hidden;
  box-shadow: 0 0 7px 1px #344d77;
  transition: all 500ms ease-out;
}

#language-checkbox:checked + .toggle {
/*  background: #24D7F7;*/
  background: #211042;
}

#language-checkbox:checked + .toggle .toggle-button {
/*  background: #F7FFFF;*/
  background: url("/static/img/indonesian-flag-icon.png") 0 0 no-repeat;
  transform: translateX(26px);
  box-shadow: 0 0 7px 1px rgba(255, 255, 255);
}

#language-checkbox:checked + .toggle .toggle-button .crater {
  transform: rotate(-45deg) translateX(70px);
}

.link-divider{
  color: white;
}

.language-link{
  color: white !important;
}

.active-link{
  color: #ff7241 !important;
}

.gallery-img{
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
}

.gallery-img:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}