/* Header-section */

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section img {
  width: 80px;
}

.nav-section2 {
    display: none;
}

.nav-section ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-section ul li,
.nav-section2 ul li {
  list-style: none;
  padding: 10px;
}

.nav-section ul li a,
.nav-section2 ul li a {
  color: #1c274c;
  text-decoration: none;
}

.nav-section ul li a:hover,
.nav-section2 ul li a:hover {
    text-decoration: underline;
}

.orange-button {
  color: white;
  background-color: #ffa500;
  border: none;
  border-radius: 15px;
  padding: 10px 15px;
  font-family: Inter, sans-serif;
  font-size: 12pt;
  cursor: pointer;
  transition: 0.2s 0.1s;
}

.orange-button:hover {
    transform: scale(1.05);
}

/* CSS for hamburger */

#menu__toggle {
  opacity: 0;
}

/* Background color to change for all 3 strokes after open menu */
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
  background-color: white;
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
  background-color: white;
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: white;
}
#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
.menu__btn {
  position: absolute;
  top: 38px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 3;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2e3192;
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: -8px;
}
.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  /* Hamburger Menu background color, text size and font weight */
  background-color: #1c274c;
  color: white;
  font-size: var(--mobile-font2);
  font-weight: 400;
}

.menu__box li {
  padding: 10px;
}

.menu__box li a {
  color: white;
}

.menu__box li a:hover {
  font-weight: 400;
  text-decoration: underline;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  font-weight: 400;
  text-decoration: none;
}

/* end of CSS for hamburger-menu */

@media only screen and (max-width: 700px) {
    .nav-section {
        display: none;
    }
    
    .nav-section2 {
        display: flex;
        align-items: center;
        color: white;
    }
    
    .nav-section2 ul li a {
        color: white;
    }
}


@media only screen and (max-width: 800px){
    .nav-section ul li a {
        font-size: 11pt;
    }
}

/* Header-section end */