/* general */
body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
}
p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgb(112, 112, 112);
    line-height: 1.75;
}
h2 {
    font-size: 24px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
nav {
    background-color:#222222;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    font-size: 1.5rem;
    width: 160px;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    list-style: none;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 5px;
  }
  /* dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 200px;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  .dropdown-content a:hover {
    color: rgb(0, 208, 255);
    text-decoration: underline;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    background-color: #222222;

  }
  
  .dropbtn {
    background-color: rgba(0,0,0,0.2);
    color: rgb(255, 255, 255);
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropbtn:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #ddd;
    color: black;
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  
  .nav-active {
    transform: translateX(0%);
  }
  
  .nav-links li.fade {
    opacity: 1;
  }

  .hero {
    position: relative;
    height: 100vh;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  }
  
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #F6F9F9;
  }
  
  .hero-cta {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    background-color: rgb(0, 208, 255);
    color: rgb(0, 0, 0);
    cursor: pointer;
  }
  .hero-cta:hover {
    background-color: rgb(112, 112, 112);
    color:rgb(255, 255, 255)
  }
/* service section */
#services {
  padding: 32px 0px;
}
hr {
  max-width: 20%;
  border-color: rgb(0, 255, 242);
  margin-top: 0;
}
#services h3  {
  display: block;
  text-align: center;
}
#services li {
  line-height: 1.75;
}
#services> div  {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 100px;
}
#services > div:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #F6F9F9;
}
#services > div > img {
  width: 40%;
  max-width: 400px;
  /* margin: 0 20px; */
}

#services > div > div {
  width: 50%;
}
/*ABOUT US SECTION*/
#about-us{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 64px;
  background: #043D55;
  width: auto;
  height: auto;
}

#about-us > h2 {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #FFFFFF;
}
#about-us > p {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: normal;
  color: #FFFFFF;
}
/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #222222;
  padding: 32px;
  color: #F6F9F9;

}
footer > div {
  display: flex;
  justify-content: center;
  flex-direction: row;
  /* width: 50%; */
  padding: 1% 200px;
  flex-grow: 1;
}
footer p {
  width: 50%;
}
footer a {
  color: #F6F9F9;
  text-decoration: none;
  display: block;
  padding-bottom: 5%;
  min-width: 300px;
}
footer a:hover {
  color: rgb(0, 208, 255);
}

#consultancy h3,
#consultancy p {
  margin: 0;
}


/* responsive */
@media only screen and (max-width: 600px) {
  .dropdown {
    display: block;
  }

  .dropdown-content {
    position: static;
  }
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
  .nav-links {
    position: fixed;
    right: 0;
    top: 70px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    transform: translateX(100%);
    transition: all 0.3s ease;
  }
  .nav-links li {
    opacity: 0;
  }
  
  .burger {
    display: block;
  }
  #services >div {
    flex-direction: column;
    margin-bottom: 0px;
  }

  hr {
    max-width: 20%;
    border-color: rgb(0, 255, 242);
    margin-top: 0;
  }
  #services h2 {
    display: block;
  }
  #services {
    padding: 0px;
  }
  #services > div > img {
    min-width: 200px;
    height: auto;
  }

  #services > div {
    padding: 24px 40px;
  }
  #services > div:nth-child(even) {
    flex-direction: column;
  }
  #services > div > div {
    width: 100%;
    text-align: center;
  }
  footer  {
    align-items: center;
    justify-content: center;
  }
  footer > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2%;
    /* justify-content: center; */
    /* align-items: center; */
  }
}