@font-face {
  font-family: AeoniK Regular;
  src: url(font/AEONIKTRIAL-REGULAR.OTF);
}
@font-face {
  font-family: AeoniK;
  src: url(font/AEONIKTRIAL-BOLD.OTF);
}
@font-face {
  font-family: AeoniK Italic;
  src: url(font/AEONIKTRIAL-REGULARITALIC.OTF);
}

:root {
  --primary-color: #4361ee;
  --heading-font: Aeonik, sans-serif;
  --para-font: Aeonik Regular, sans-serif;
  --button-border-radius: 50px;
  --light-background-color: rgba(67, 97, 238, 0.1);
  --section-divider-shape: 250px;
  --section-padding: 100px 0;
  --color-background-padding: 80px 0;
  --box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.headerwrapper {
  background-color: var(--light-background-color);
  height: 150px;
}
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.header-logo {
  height: 150px;
  width: 250px;
  display: flex;
  align-items: center;
}

.header-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.nav-bar ul {
  display: flex;
  list-style: none;
  text-transform: uppercase;
}
.nav-bar ul li a {
  font-family: var(--heading-font);
  text-decoration: none;
  display: block;
  color: black;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.2s;
  margin: 0px;
  cursor: pointer;
}
.nav-bar ul li a:hover {
  color: blue;
}
.nav-bar ul li a:active {
  color: blue;
}
@media screen and (max-width: 2000px) {
  .headerwrapper {
    padding: 30px 0px;
  }
}

@media only screen and (max-width: 1320px) {
  header {
    padding: 0 50px;
  }
  .headerwrapper {
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 1100px) {
  header {
    padding: 50px 30px;
  }
  .headerwrapper {
    padding: 20px 0 20px 0;
  }
}
@media only screen and (max-width: 990px) {
  .headerwrapper {
    height: 100px;
    padding: 0px 0px;
  }
  .header {
    margin-top: 20px; /* Adjust margin from top */
  }
  .header-logo {
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger .line {
    width: 30px;
    height: 3px;
    background: black;
    margin: 6px 0;
  }
  .nav-bar {
    position: absolute;
    color: white;
    width: 80%;
    top: 80px;
    left: 0;
    right: 0;
    height: 0px;
    width: 100vw;
    /* background-color: var(--primary-color); */
    background-color: #4362eef5;
    transition: height 0.5s, width 0.5s;
    z-index: 999;
    overflow: hidden;
  }
  .nav-bar.active {
    height: 450px;
    cursor: pointer;
  }
  .nav-bar ul {
    display: block;
    width: fit-content;
    margin: 80px auto 0 auto;
    align-items: center;
    transition: 0.5s;
    opacity: 0;
  }
  .nav-bar.active ul {
    opacity: 1;
  }
  .nav-bar ul li a {
    cursor: pointer;
    margin-bottom: 12px;
    color: white;
  }
  .nav-bar ul li a:hover {
    color: black;
    cursor: pointer;
  }
}
