:root{
  ---home-color: #1E75BC;
  ---home-font-size: 45px;
  ---home-text-color: #1E1E1E;
  ---title-font: 35px;
  ---home-text-size: 18px;
  ---title-color: #1A202C;
  ---title-color-second: #FF6600;
  ---nexa: 'Nexa', sans-serif;
  ---gilroy: 'Gilroy', sans-serif;
  ---lemon: 'Lemon Milk', sans-serif;
  ---bg-color: #EAF5FE;
  ---nav-font: 16px;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
nav {
display: flex;
width: 100%;
z-index: 1000;
background-color: white;
position: fixed;
top: 0;
box-shadow: 0 2px 4px rgba(204, 167, 167, 0.1);
animation: backgroundAnimation 20s linear infinite alternate;
transition: background-color 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
/* border: 3px solid red; */
}
.nav-content{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
max-width: 1400px;
margin: 0 auto;
}
header.scrolled nav{
/* background-color: var(---bg-color); */
background-color: white;
box-shadow: 0px 3px 10px rgb(0,0,0,0.05);
}
.nav-links {
list-style: none;
display: flex;
justify-content: right;
align-items: center;
margin: 0px;
margin-right: 50px;
}
.nav-links li a {
  /* border: 3px solid red; */
text-decoration: none;
color: var(---title-color-second);
font-size: 16px;
font-family: var(---lemon);
font-weight: normal;
}
header.scrolled .nav-links li a{
color: var(---title-color-second);
}
.nav-links li a.active {
color: var(---title-color-second);
}
.logo {
min-width: min-content;
margin: 5px;
width: 100px;
height: 30px;
}
.logo img {
height: 100%;
object-fit: contain;
}
.menu-toggle {
display: none;
cursor: pointer;
font-size: 1.5em;
color: #f6821f;
font: ;
/* border: 2px solid red; */
}
.close-button {
font-size: 1.5em;
color: black;
cursor: pointer;
display: none;
}
#check {
display: none;
}
span {
flex: 1;
}
nav ul {
flex: 1;
display: flex;
justify-content: flex-start;
list-style: none;
color: var(---bg-text);
font-weight: bold;
gap: 25px;
}
.button button {
  background-color: #1E75BC; 
  color: #ffffff;
  border: none; 
  padding: 12px 12px; 
  font-size: 16px; 
  cursor: pointer; 
  border-radius: 5px; 
  transition: background-color 0.3s ease, transform 0.3s ease; 
}
.button button:hover {
  background-color: #43a2f0; 
  /* transform: scale(1.05);  */
}
.slick-dots li button{
  display: none;
}
.nav-links a.active {
  /* border: 3px solid red; */
  color: var(---home-color) !important;
  border-radius: 4px;
  transition: color 0.3s ease;
}


/* Responsive Styles */
@media screen and (max-width: 479px) {
nav{
    padding: 0;
  }
.nav-content{
  padding: 10px;
}
.menu-toggle {
  display: block;
  cursor: pointer;
  font-size: 1.5em;
  color: black;
  padding: 10px;
}
.close-button {
  display: none;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 1.5rem;
}
#check:checked ~ label .menu-toggle {
  display: none;
}
#check:checked ~ label .close-button {
  display: block;
}
#check:checked ~ ul {
  left: 0;
}
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -110%;
  background-color: var(---bg-color);
  transition: transform 0.3s ease, left 0.5s ease;
  margin-top: 49px;
  z-index: 100;
}
.nav-links a {
  font-size: 35px;
  padding-bottom: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#check:checked ~ .nav-links {
  left: 0;
  top: 5px;
}
#check:checked ~ .nav-links a {
  opacity: 1;
  transition-delay: calc(0.15s * var(--i));
}
.nav-links.show {
  margin-top: 50px;
}
.nav-links li {
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.logo {
}
.tagline {
  font-size: 36px;
}
.button{
  display: none;
}
}



/* Smaller Laptop and Tablet */
@media (min-width: 768px) {
  .nav-content {
    padding: 20px 10px;
  }
  .logo {
    width: 100px;
    height: 30px;
  }
  .nav-links{
    margin-right: 25px;
  }
  .nav-links li a {
    font-size: 14px;
  }
  .button button {
    font-size: 16px;
    padding: 8px 10px;
  }
}

/* Small Desktops */
@media (min-width: 1024px)  {
  .nav-content {
  }
  .logo {
    width: 110px;
    height: 32px;
  }
  .nav-links li a {
    /* font-size: 20px; */
  }
  .button button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Larger Desktop */
@media (min-width: 1280px) {
  .nav-content {
    padding: 10px 30px;
  }
  .logo {
    width: 120px;
    height: 35px;
  }
  .nav-links li a {
    /* font-size: 20px; */
  }
  .button button {
    /* font-size: 16px; */
    padding: 10px 20px;
  }
}