.navbar {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px #0000000d;
  position: fixed;
  top: 0;
  z-index: 10000;
}
.navbox {
  width: 90%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navLeft {
  margin-top: 50px;
}
.navLeft img {
  height: 128px;
  width: auto;
}
.ctaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  gap: 10px;
  padding: 10px;
  background: linear-gradient(180deg, #ee202d 0%, #88121a 100%);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1%;
  text-transform: uppercase;
  text-decoration: none;
}
.ctaBtn img {
  height: 40px;
  width: 40px;
}
.ctaBtn:hover {
  box-shadow: 0px 4px 15px 0px #88121a;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .navbar {
    height: 80px;
  }
  .navbox {
    height: 60px;
  }
  .navLeft {
    margin-top: 40px;
  }
  .navLeft img {
    height: 100px;
  }
  .ctaBtn {
    padding: 10px;
  }
  .ctaBtn img {
    height: 35px;
    width: 35px;
  }
}
@media screen and (max-width: 990px) {
  .navbar {
    height: 70px;
  }
  .navbox {
    width: 95%;
    height: 50px;
  }
  .navLeft {
    margin-top: 30px;
  }
  .navLeft img {
    height: 80px;
  }
  .ctaBtn {
    padding: 8px 10px;
  }
  .ctaBtn img {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    height: 60px;
  }
  .navbox {
    height: 40px;
  }
  .navLeft {
    margin-top: 30px;
  }
  .navLeft img {
    height: 70px;
  }
  .ctaBtn {
    padding: 8px;
    font-size: 16px;
  }
  .ctaBtn img {
    height: 25px;
    width: 25px;
  }
}

@media screen and (max-width: 600px) {
  .navLeft {
    margin-top: 30px;
  }
  .navLeft img {
    height: 70px;
  }
  .ctaBtn {
    padding: 8px;
    gap: 6px;
    font-size: 14px;
  }
  .ctaBtn img {
    height: 22px;
    width: 22px;
  }
}
@media screen and (max-width: 460px) {
  .navbox {
    justify-content: center;
  }
  .navLeft img {
    height: 75px;
  }
  .navbox .ctaBtn {
    display: none;
  }
}
