.navbarSection {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(124px);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  z-index: 1000;
}
.navbarContainer {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbarSection .logo {
  height: 100px;
}
.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: 1440px) {
  .navbarSection {
    height: 100px;
  }
  .navbarSection .logo {
    height: 90px;
  }
}

@media screen and (max-width: 990px) {
  .navbarSection {
    height: 90px;
  }
  .navbarSection .logo {
    height: 80px;
  }
  .applyBtn {
    width: 200px;
    height: 55px;
    font-size: 18px;
  }
  .applyBtn img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .navbarSection {
    height: 80px;
  }
  .navbarSection .logo {
    height: 70px;
  }
  .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;
  }
}
