/*----------------------
# HP V2 Header Layout
------------------------------*/
.hp-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 20px;
  font-family: 'Lato', sans-serif;
}

.hp-v2-logo img {
  max-height: 60px;
  width: auto;
}

.hp-v2-button {
  flex-shrink: 0;
}

.hp-v2-button-float {
  position: fixed;
  right: 30px;
  top: 20px;
  z-index: 9999;
}
/* Button Base Styles */
.btn-common2 {
  border-style: none;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 24px !important;
  display: inline-block;
  padding: 0px 44px;
  border-radius: 70px;
  line-height: 70px;
  margin-top: 6px;
  border: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 70px;
  width: inherit;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
}

.btn-common2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFC13A;
  z-index: -2;
}

.btn-common2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: white;
  transition: all 0.3s;
  z-index: -1;
  border-radius: 32px;
}

.btn-common2:hover {
  background: white;
  color: #221E1F;
  text-decoration: none;
  border: 3px solid var(--color-orange);
  font-size: var(--font-size-6);
}

.btn-common2:hover::before {
  width: 100%;
  height: 100%;
}

.btn-common2 i {
  position: absolute;
  right: 40px;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-common2:hover>i {
  right: 25px;
}

/* Responsive for mobile devices */
@media (max-width: 768px) {
  .hp-v2-header {
    padding: 15px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hp-v2-logo img {
    max-height: 45px;
  }

  .hp-v2-button .btn-common2 {
    padding: 0px 25px;
    font-size: 16px !important;
    line-height: 45px;
    height: 45px;
    white-space: nowrap;
  }

  .hp-v2-button .btn-common2:hover {
    font-size: 16px !important;
  }
}
