.headerRight > .headerNavbar > li.header_button > a::after {
    display: none;
}
.headerRight > .headerNavbar > li.header_button > a::before {
    display: none;
}
.headerRight > .headerNavbar > li.header_button > a {
    width: 145px;
    height: 37px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: #FFFFFF;
    background: linear-gradient(to left, #00287A, #059AD6);
    text-align: center;
}

.cityAndCallWrap ul.cityAndCall li.header_button a{
    width: 100%;
    height: 37px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: #FFFFFF;
    justify-content: center;
    background: linear-gradient(to left, #00287A, #059AD6);
    border: 0px;
}

.fixed-button{
  display: none;
}

@media (max-width:768px) {
  .cityAndCallWrap ul.cityAndCall li.header_button a{
    width: max(173px, 100%);
    
  }
}

@media (max-width: 767px){
  /* Fixed Button */

  .fixed-button{
    width: 173px;
    height: 36px;
    border-top-left-radius: 20px;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 20px;
    background-color: #F6D9A9E5;
    backdrop-filter: blur(8.1px);
    position: fixed;
    z-index: 50;
    bottom: 32px;
    left: 16px;
    display: flex;
    align-items: center;
  }

  .fixed-button-circle{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #FF9E00;
    align-content: center;
    text-align: center;
  }

  .fixed-button-circle img{
    width: 24px;
    height: 24px;
  }

  .fixed-button-text{
    color: #1B1B1B;
    margin-left: 12px;
    font: normal normal 500 16px/24px Poppins;
    text-transform: uppercase;
  }
}

.mobile-header {
  display: none;
  background: #fff;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  
}
@media (max-width: 992px) {
  .mobile-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
  }
}

.mobile-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-header__hamburger span {
  width: 24px;
  height: 3px;
  background: #333;
  display: block;
}

.mobile-header__logo img {
  height: 40px;
}

.mobile-header__menu {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 999;
  padding: 10px 20px 10px 10px;
  display: none;
  height: calc(100vh - 125px);
  max-height: calc(100vh - 125px);
  overflow-y: auto;
}
.mobile-header__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-header__menu li {
  border-bottom: 1px solid #eee;
}

.mobile-header__menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #00287A;
  font-size: 20px;
  font-family: 'PoppinsBold';
}

.mobile-header__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.mobile-header__arrow {
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23000' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s;
  cursor: pointer;
}
.mobile-header__arrow.open {
  transform: rotate(180deg);
}

.mobile-header__submenu.open li{
  border-bottom: none;
}

.mobile-header__submenu {
  display: none;
}
.mobile-header__submenu.open {
  display: block;
}
.mobile-header__submenu li a {
  padding-left: 20px;
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 500;
}

.mobile-header__cta a {
  display: block;
  background: linear-gradient(to left, #00287A, #059AD6);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-header-bottom-menu{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.mobile-header-bottom-menu .mobile-header-bottom-menu-content{
  background-color: #E3F7FF;
  border-radius: 16px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #00287A;
}

@font-face {
  font-family: 'Poppins';
  src: url('./font/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PoppinsBold';
  src: url('./font/Poppins-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}