.headerSection {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 0px 4px 4px #0000000d;
}
.headerContainer {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: auto;
}
.logo img {
  height: 71px;
  /* min-width: 120px; */
}

.menus {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}
.menuItem {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: Helvetica;
  font-weight: 400;
  color: #441100;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}
.menuItem.active {
  background: linear-gradient(180deg, rgba(36, 105, 215, 1) 0%, rgba(14, 30, 100, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: HelveticaI5;
  font-weight: 500;
  font-style: italic;
  color: transparent;
}
.rightItems {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}
.ctaBtn {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.call-now {
  position: relative;
  width: fit-content;
  font-family: Helvetica6;
  font-weight: 700;
  color: #004c83;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  transition: all 0.3s;
}
.call-now2 {
  position: relative;
  width: fit-content;
  font-family: Helvetica6;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  transition: all 0.3s;
}
.call-now-wrapper {
  border: 1px solid;
  border-color: #004c83;
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
   padding: 20px 24px 16px 24px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 86px;
  transition: all 0.3s;
  background: #ffffff;
}
.call-now-wrapper2 {
  border: 1px solid;
  border-color: #004c83;
  background-color: #004c83;
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px 16px 24px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 86px;
  transition: all 0.3s;
}
.menuBtn {
  width: 50px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #999;
  background: transparent;
  border-radius: 4px;
  display: none;
}
.menuIcon {
  height: 28px;
}
.ctaBtn1:hover .call-now-wrapper {
  background-color: #004c83;
}
.ctaBtn1:hover .call-now-wrapper .call-now {
  color: #fff;
}
.ctaBtn2:hover .call-now-wrapper2 {
  background: #fff;
}
.ctaBtn2:hover .call-now-wrapper2 .call-now2 {
  color: #004c83;
}

@media screen and (max-width: 1660px) {
  .menus {
    gap: 20px;
  }
  .menuItem {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .call-now-wrapper,
  .call-now-wrapper2 {
    height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px 10px 20px;
  }
  .call-now,
  .call-now2 {
    margin-top: -0;
    margin-bottom: -0;
    font-size: 18px;
    line-height: 100%;
  }
  .ctaBtn img {
    height: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .headerContainer {
    width: 95%;
  }
  .menuBtn {
    display: flex;
  }
  .menus {
    position: absolute;
    top: 90px;
    height: calc(100vh - 90px);
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #000;
    right: -400px;
    width: 100%;
    max-width: 400px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transition: all 0.3s;
  }
  .menuItem {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  .menus.active {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .call-now-wrapper,
  .call-now-wrapper2 {
    height: 40px;
    gap: 6px;
    padding: 8px 14px 4px 14px;
  }
  .call-now,
  .call-now2 {
    font-size: 16px;
  }
  .ctaBtn img {
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .logo img {
    height: 60px;
  }
  .headerSection {
    height: 70px;
  }
  .menus{
    top: 70px;
    height: calc(100vh - 70px);
  }
  .call-now-wrapper,
  .call-now-wrapper2 {
    height: 35px;
    gap: 0px;
    padding: 6px 14px 4px 14px;
  }
  .call-now,
  .call-now2 {
    font-size: 12px;
  }
  .ctaBtn img {
    height: 35px;
  }
  .menuBtn {
    width: 40px;
    height: 35px;
  }
  .menuIcon {
    height: 24px;
  }
  .headerContainer .ctaBtn {
    display: none;
  }
  .menuBtn {
    width: 47px;
    height: 37px;
  }
}
@media screen and (max-width: 460px) {
  .ctaBtn1 {
    display: none;
  }
}
