/* ------------------------------------------> Header <------------------------------------------ */
.top-header {
    background-color: #fff;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------------------------------------> Header Logo <--------------------------------------- */
#Logo img {
    width: 300px;
}

/* ---------------------------------------> Header Cert <--------------------------------------- */
#Cert {
    display: flex;
    align-items: center;
}
#Cert img {
    width: 400px;
    height: 90px;
}

/* --------------------------------------> Top Navigation <-------------------------------------- */

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  background-color: #006955;
  padding: 25px 20px;
  padding-right: 55px;
}
.logo img {width: 40px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: 0.15s ease-in-out;
  position: relative;
  text-transform: uppercase;
}
.menu li a:hover{
  color: #b3d6cf;
  
}
.open-menu , .close-menu {
  position: absolute;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
}
.open-menu {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.close-menu {
  top: 20px;
  right: 20px;
}

#check {display: none;}

/* -----------------------------------------> Footer <----------------------------------------- */

body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}
*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}
.container{
	max-width: 100%;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
  justify-content: space-evenly;
}
ul{
	list-style: none;
}
.footer{
	background-color: #006955;
  padding: 70px 25px;
}
.footer-col{
   width: 20%;
   padding-left: 90px;
}
.footer-col1{
  width: 40%;
  padding: 0 25px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col1 h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col1 p{
  color: #bbbbbb;
  font-size: small;
}

.footer-col h4::before{
	content: '';
	position: absolute;
	bottom: -10px;
	background-color: #66ac9e;
	height: 2px;
	box-sizing: border-box;
	width: 100px;
}

.footer-col1 h4::before{
	content: '';
	position: absolute;
	bottom: -10px;
	background-color: #66ac9e;
	height: 2px;
	box-sizing: border-box;
	width: 100px;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}

.copy{
  display: flex;
  padding: 20px 50px;
  background-color: #002f26;
}
.copy p{
  color: grey;
}
.copy .copy-1{
  flex-grow: 1;
}
/* -------------------------------------> Header (Mobile) <------------------------------------- */
@media(max-width: 822px){
  .top-header {
    background-color: #fff;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
}
/* ---------------------------------> Top Navigation (Mobile) <--------------------------------- */
@media(max-width: 822px){
  .nav-bar {
    background-color: #006955;
    padding: 25px 20px;
  }
  .menu {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 80%;
      height: 100vh;
      position: fixed;
      top: 0;
      right: -100%;
      z-index: 100;
      background-color:  	#002f26;
      transition: all 0.2s ease-in-out;
  }
  .menu li {margin-bottom: 90px;}
  .menu li {margin-top: -40px;}
  .menu li a {padding: 0px;}
  .open-menu , .close-menu {display: block;}
  #check:checked ~ .menu {right: 0;}

  .top-header{
    padding-left: 20px;
    padding-right: 20px;
  }
   #Logo img {
       width: 150px;
   }
   #Cert img {
       width: 180px;
       height: 50px;
   }

}

/* -------------------------------------> Footer (Mobile) <------------------------------------- */

/* Use a more specific media query to target mobile devices */
@media only screen and (max-width: 767px) {
  /* Use a common class for both footer columns */
 .footer-col,.footer-col1 {
    text-align: center;
    width: 50%;
    margin-bottom: 30px;
    padding-left: 100px;
    padding-right: 100px;
  }

  /* Use a single selector for both h4:before elements */
 .footer-col h4::before,.footer-col1 h4::before {
    content: '';
    position: absolute;
    bottom: -10px;
    background-color: #66ac9e;
    height: 2px;
    box-sizing: border-box;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .copy {
    display: block;
    text-align: center;
    font-size: x-small;
    padding: 0px 20px;
  }
}

/* Use a more specific media query to target smaller mobile devices */
@media only screen and (max-width: 574px) {
  /* Use the common class to target both footer columns */
 .footer-col,.footer-col1 {
    width: 100%;
  }
}