.navbarSection {
  width: 100%;
  height: 120px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.navbarContainer {
  width: 100%;
  /* width: 90%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  /* border-radius: 50px; */
  padding: 1rem 1rem;
}
.navbarSection .logo {
  height: 93px;
  margin-left: 1rem;
}
.applyBtn {
  width: 230px;
  height: 60px;
  color: #ffffff;
  background-color: #fe7301;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  font-family: "Roboto", serif;
}
.applyBtn img {
  width: 23px;
}
@media screen and (max-width: 990px) {
  .navbarSection .logo {
    height: 70px;
  }
  .applyBtn {
    width: 200px;
    height: 45px;
    /* height: 55px; */
    font-size: 18px;
  }
  .applyBtn img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .navbarSection {
    height: 80px;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  }
  .navbarContainer {
    width: 95%;
    padding: 0;
    border-radius: 0;
    height: 80px;
    box-shadow: none;
  }
  .navbarSection .logo {
    height: 70px;
    margin-left: 0rem;
  }
  .applyBtn {
    height: 45px;
    width: 150px;
    font-size: 16px;
    gap: 4px;
  }
  .applyBtn img {
    width: 16px;
  }
}

@media screen and (max-width: 550px) {
  .applyBtn {
    height: 40px;
    width: 120px;
    font-size: 14px;
  }
  .applyBtn img {
    display: none;
  }
}

@media screen and (max-width: 465px) {
  .applyBtn {
    height: 40px;
    width: auto;
    padding: 0 1rem;
    font-size: 12px;
  }
}
