nav {
  position: sticky;
  top: 0px;
  z-index: 1000;
}

.desktop-nav {
  border-bottom: 1px solid #b5b5b5;;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5px 4rem 2.5px 4rem;
  position: relative;
  min-height: 80px;
  box-shadow: 0px 4px 15px 0px rgba(29, 41, 57, 0.12);
  background-color: #d5d5d5;
}

.section-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.35s linear;
  border-radius: 12px;
  padding: 1rem;
  width: 15rem;
}

.section-container:hover {
  background-color: #f9f7fe;
}

.section-container img {
  width: 24px;
}

.section-content-container {
  display: flex;
  flex-direction: column;
}

.section-content-container h4 {
  margin: 0px;
  color: #1d2939 !important;
  margin-bottom: 4px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}

.section-content-container p {
  text-align: start !important;
  color: #475467 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  margin: 0px !important;
  padding: 0px !important;
}

.all-section-container {
  display: flex;
  position: fixed;
  left: 50%;
  background: #d5d5d5;
  padding: 2rem;
  width: 93.9%;
  box-sizing: border-box;
  transition: all 0.25s;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0px 10px 20px 0px rgba(29, 41, 57, 0.15);
  border-radius: 0 0 20px 20px;
}

#banner .all-section-container {
  top: 19%;
}

.responsive-all-section-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  top: 0%;
  left: 0%;
  margin-top: 1rem;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.25s;
}

.responsive-all-section-container.hidden {
  display: flex;
  /* display made flex to create animation by using max-width */
  margin-top: 0px;
}

.responsive-all-section-container a {
  padding: 1rem !important;
}

.responsive-all-section-container p {
  padding: 0px !important;
}

.responsive-all-section-container .section-container {
  padding: 0px !important;
}

.nav-in-top {
  box-sizing: border-box;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

#banner .desktop-nav {
  position: fixed;
  z-index: 1000;
  background: #d5d5d5;
  width: 88%;
  left: 50%;
  top: 7%;
  transition: all 0.3s;
  transform: translateX(-50%);
  padding: 0rem 2.5rem;
  border-radius: 12px 12px 0px 0px;
  border-radius: 12px;
}

#auth-buttons-container a {
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration: none;
}

#ot-logo-link {
  line-height: 0px !important;
}

#ot-logo-link h3 {
  color: black;
}

#nav-links-area{
    background-color: #d5d5d5 !important;
}

#nav-links-area a {
  font-family: "Inter", sans-serif;
  color: #1d2939;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

#nav-links-area a:hover,
#nav-links-area div:hover {
  color: #6938ef;
}

#nav-links-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

#logo {
  margin-right: 1.1rem;
}

#auth-buttons-container {
  display: flex;
  gap: 1rem;
}

#sign-up-btn {
  display: flex;
  max-width: 188.95px;
  padding: 11px 32.95px 11px 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #7f56d9;
  /* background: #6938ef; */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #fff;
  background: linear-gradient(to top, #000 50%, #6938ef 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

#sign-up-btn:hover {
  background-position: bottom;
}

.mobile-sign-up-button {
  margin-top: 1rem;
  max-width: 100%;
  margin-bottom: 1rem;
  max-width: 100% !important;
  font-size: 14px !important;
  padding: 10px 32.95px 10px 32px !important;
}

#log-in-button {
  color: black;
  background-color: #fff;
  border-radius: 8px;
  padding: 11px 32.95px 11px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 0 30px rgba(29, 41, 57, 0.06);
  background: linear-gradient(to top, #6938ef 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  text-align: center;
}

.mobile-log-in-button {
  font-size: 14px !important;
  padding: 10px 32.95px 10px 32px !important;
}

#log-in-button:hover {
  background-position: bottom;
  color: black;
}

#burger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background-color: #d5d5d5;
  border-radius: 8px;
  margin: 1rem;
  margin-bottom: 0px;
  transition: all 0.3s;
  box-shadow: 0px 4px 20px 0px rgba(29, 41, 57, 0.12);
}

.mobile-nav img {
  width: 95px;
}

.hamburger svg {
  animation: show 100ms 100ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: left center;
}

.show-dropdown {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}

.mobile-nav-childs {
  margin: 1rem;
  margin-top: 0.1rem;
  background: #d5d5d5;
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 300ms;
  padding-bottom: 1rem;
}

.mobile-nav-childs a {
  font-family: "inter", "sans-serif";
  padding: 1rem;
  padding-left: 0px;
  color: #1d2939;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.resources-dropdown-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #1d2939;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "inter", "sans-serif";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

@keyframes show {
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1001px) and (max-width: 1250px) {
  #banner .desktop-nav {
    width: 94%;
    padding: 0rem 0.5rem;
  }
}

@media (min-width: 1000px) and (max-width: 1160px) {
  #sign-up-btn {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }

  #log-in-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1000px) {
  .mobile-nav-container {
    position: fixed;
    z-index: 1000;
    left: 0%;
    top: 0%;
    right: 0px;
  }

  .mobile-nav {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-content-container h4 {
    font-size: 14px !important;
  }
}
