/* RESET */
 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
.sliders{
  
 display: flex;
  width: 100%;
height: auto;
 float: left;
  margin-top: 95px;
}
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* BASE STYLES */
body {
  background-color: #e8f0f7;
  font-family: 'Inter', sans-serif;

}

/* NORMAL STYLES */
.header {
  position: absolute;
  width: 100%;
  
}

.top-bar {
  background-color: rgb(3, 151, 65);
      
  
}

.top-bar__content {
  height: 30px;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 20px;
  font-size: 17px;
  color:#fff


  
}

.icon {
  
  color: #fff
}

.bottom-bar {
  background-color: #fff;
  box-shadow: 10px 10px 5px #aaaaaa;
 
}

.bottom-bar__content {
  min-height: 60px;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
 .logo img{

  margin-left: -95px;
 }
.logo {
  vertical-align: middle;
  display: flex;
  column-gap: 5px;
  align-items: center;
  
}

 

.logo__text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.nav {
  transition: all 0.3s ease-in-out;
  
  

}

.nav__list {
  display: flex;
  column-gap: 40px;
}

.nav__item {
 
  
}

.nav__link {
  color: #000;
  transition: all 0.2s;
  font-size: 18px;
}

.nav__link:hover,
.nav__link:focus {
  color: rgb(6, 180, 85);
}

.btn {
  color: #000;
  background-color: #0071e3;
  padding: 8px 20px;
  border-radius: 1000px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background-color:  rgb(28, 128, 228);
}

.hamburger {
  cursor: pointer;
  display: none;
}

.bar {
  height: 2px;
  width: 27px;
  background-color: #034e38;
  margin: 5px 0;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* For JS */
.nav--open {
  left: 50% !important;
 
  position:fixed;
}

.hamburger--open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
 
}

.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.slider-wrapper { 
	width: 100%; 
	 
	
	 
}
 /* card design */
  
  /* Flex four columns side by side


/* footer code */
 

/* footer complete */
 
/* Style the counter cards */
@media screen and (max-width: 480px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
 .top-bar__content {
    font-size: 12px; /* Adjust the font size as needed */
  }
  .card img {
    height: auto; /* Set the height of the image to auto to maintain aspect ratio */
  }
}
/* Existing styles */

/* ... */

 /* Existing styles */

/* ... */
/* Existing styles */

/* ... */

@media (max-width: 480px) {
  .sliders {
    margin-top: 60px; /* Adjust the top margin for mobile */
    width: 100%; /* Make the slider take up full width */
    overflow: hidden; /* Hide overflow to prevent horizontal scrolling */
  }
 
  .slider-wrapper {
    width: 100%;
    height: auto; /* Allow height to adjust based on image aspect ratio */
  }

  #slider img {
    width: 100%; /* Make images cover the full width of the slider */
    height: auto; /* Maintain image aspect ratio */
  }
}

/* ... */


/* ... */


 

@media screen and (min-width: 481px) and (max-width: 768px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
.top-bar__content {
    font-size: 14px; /* Adjust the font size as needed */
  }
}

@media screen and (min-width: 769px) {
  .column {
    flex: 33.33%;
    max-width: 33.33%;
  }
}
/* Style the counter cards */


/* MEDIA QUERIES */

@media(min-width:640px)
{
  
  .logo img{

    margin-left:-15px;
  }

}
@media (max-width: 850px) {

  /* .nav__list {
    display: flex;
    column-gap: 40px;
    
  } */
  
  
  
  .nav__item {
   
    
  }
  
  .sliders{

 position: relative;
    width: 100%;
  height: auto;
 
    margin-top: 90px;
    z-index: -100;
    
  }
  .logo img{

    margin-left:-15px;
  }
  .nav {
    
    position: fixed;
    top: 90px;
    left: -100%;
    transform: translateX(-50%);
    background-color: rgb(18, 241, 156);
    width: 100%;
    padding: 10px 0 25px;
     z-index: 1000;

  
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    display: flex;
    column-gap: 40px;

  }

  .nav__link {
    font-size: 16px;
  
  }

  .btn {
    font-size: 11px;
    padding: 7px 17px;
  }

  .hamburger {
    display: block;
  }
}

 
}