html {
  height: 100%;
}

body {
  font-family: 'Poppins',sans-serif;
  width: 100%;
  margin: 0;
}


/* Add a white background color to the top navigation */
.topnav {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

/* Style the links inside the navigation bar */
#navcontent a {
  display: inline-block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
#navcontent a:hover {
  color: #F7941E;
}

/* Add an active class to highlight the current page */
#navcontent a.active {
  background-color: #f3f3f3;
  color: white;
}


#hero {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-image: url("/images/national-cancer-institute-L8tWZT4CcVQ-unsplash.jpg");
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);
}

h2 {
  text-align: center;
}

ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

#clients ul li { 
  display:inline-block
}

#usp {
  background-color: #213870;
  color: #fff;
}

li {
  margin: 0px 10px;
}

.email-button {
  background-color: #213870;
  color: #fff ;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.email-button:hover {
  background-color: #2f4c94;
}

#past-projects a {
  color: #000;
}

#footer {
  background-color: #F7941E;
  padding: 25px 100px;
  color: #fff;
  text-align: center;
}

#footer img {
  max-height: 50px;
}

/* Desktop */
@media only screen and (min-width: 768px) {
#hero {
  height: 500px;
  padding-top: 50px;
}

#about, #clients, #usp, #past-projects {
  padding: 100px;
  text-align: center;
}


#clients {
display: flex;
}
.logos {
  width: 50%;
}

#clients img {
height: 100px;
}
.row {
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;

}

.col {
  flex-direction: column;
  display: flex;
  flex: 1;
  align-items: center;
  width: 700px;
  justify-content: space-between
}

.col:not(:last-child) {
  margin-right: 50px;
}

#usp img {
  max-width: 450px;
  width: 70%;
}

#past-projects img {
  max-height: 20vh;
  width: 70%;
}

.past {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.usptext {
  max-width: 400px;
}

  /* Hide the link that should open and close the topnav on small screens */
#navcontent .icon, #prev-btn, #next-btn {
  display: none;
}

#steps {
  padding: 50px 100px;
}
.item-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.item {
  width: 200px;
  justify-content: center;
}

.item img {
  max-height: 100px;
  object-fit: contain;
}


/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

#contact-us {
  text-align: center;
  padding: 50px 100px;
}
}

/* Mobile */
@media only screen and (max-width: 767px) {

  .topnav a:not(:first-child), #navcontent a:not(:last-child) {
    display: none;
  }
    .topnav a.icon {
      float: right;
      display: block;
    }
    .topnav img {
      position:absolute; 
      top: 0; 
      left: 0;
      height: 60px;
    }
  
    .topnavcon.responsive {
    position: relative;
    padding-top: 60px;
    width: 100%;
  }
  #navcontent.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    #navcontent.responsive a {
      float: none;
      display: block;
      text-align: left;
      
    }
    
  #hero {
    height: 500px;
    padding: 50px 20px 0 20px;
  }

  #about, #clients, #usp, #past-projects {
    padding: 20px;
    text-align: center;
  }

  #clients {
    display: block;
    }
    .logos {
      width: 100%;
    }
    
    #clients img {
    max-height: 70px;
    }

    #usp img {
      max-width: 80vw;
    }

    #past-projects img {
      max-width: 80vw;
    }

  #steps button{
    border: none;
    cursor: pointer;
    color: white;
    background: none;
    transition: all .3s ease-in-out;
  }
  
  #steps .container {
  width: 100%;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  }
  
  #steps .carousel-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.25s ease-in;
  }
  
  #steps .carousel-view .item-list {
  /* max-width: 100%; */
  width: 70vw;
  padding: 50px 10px;
  display: flex;
  gap:  50px;
  scroll-behavior: smooth;
  transition: all 0.25s ease-in;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: auto;
  scroll-snap-type: x mandatory;
  align-items: center;
  }

  #steps .carousel-view .item-list .item {
    max-width: 285;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  #steps .item-list::-webkit-scrollbar {
  display: none;
  }
  
  #steps .prev-btn {
  background: none;
  cursor: pointer;
  }
  
  #steps .next-btn {
  cursor: pointer;
  }
  
  #steps .itemimg {
    scroll-snap-align: center;
    max-width: 70vw;
    background-color: white;
    border-radius:8px;
  }

  #contact-us {
    text-align: center;
    padding: 50px 20px;
  }
}