@charset "utf-8";
/* CSS Document */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header a {
  color: #231815;
  text-shadow: none;
  font-weight: 700;
}

.header.change-color {
  background-color: #fff; 
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .header a {
    color: #fff;
    font-weight: 400;
    text-shadow: 0 0 3px #000000;
    background: linear-gradient(#005AA0 0 0) 0 100% /var(--d, 0) 1px no-repeat;
  }
}

.header-color{
  background-color: #fff; 
  transition: 0.3s;
}


nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
}

.logo {
display: flex;
align-items: center;
padding: 0px 8px 0px 8px;
background-color: #ffffff;
  min-height: 8vh;
width: 30%;

}


.nav-links {
  display: flex;
  justify-content: space-around;
  width: 55%;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a {
  background: 
      linear-gradient(#005AA0 0 0) 
      0 100% /var(--d, 0) 1px 
    no-repeat;
  transition:0.5s;
}

.nav-links a:hover {
  --d: 100%;
}


.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #98A6B5;
  margin: 5px;
  transition: 0.5s ease;
}

.nav-active {
  transform: translateX(0%) !important;
}

@media screen and (max-width: 1024px) {
 .logo {
padding: 10px 4px 0px 4px;
width: 25%;
}
	
.nav-links {
    width: 70%;
  font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  /* body {
    display: none;
  } */
  body {
    overflow-x: hidden;
  }

.header {
    background-color: #ffffff;
	box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%), 
	0 0 5px rgb(0 0 0 / 10%);
}

 .logo {
width: 72%;
}	
	
  .nav-links {
    /* display: flex; */
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
  font-size: 1.8rem;
	  background-color: #005AA0;
    flex-direction: column;
    align-items: center;
    width: 72%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
	justify-content: flex-start;

  }

  .nav-links li {
    opacity: 0;
	  margin: 20px 0px;
  }

  .burger {
    display: block;
  }
}







@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(405deg) translate(-5px, -6px);
}