@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');

*{
	padding: 0px;
	margin: 0px;

	box-sizing: border-box;
	font-family: 'Cairo', sans-serif;

      text-rendering: optimizeLegibility;
	 -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}

/*  
   bgc grey          #efeeec
   button yellow     #f9b100
   footer            #313130

*/


/*---------------------------------------------------------*/



h1,
p {
  margin: 0;
  padding: 0;
}

button {
  background: #f9b100;
  border: none;
  color: #ececec;
  padding: 5px 40px;
  border-radius: 15px;
}

body {
  background: white;
  display: grid;
  place-items: center;
  height: calc(100vh - 50px);
  padding: 40px;

  
}



.navbar {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  align-items: center;
}

.navbar-logo {
  margin: 20px
}

.navbar-logo i {
  font-size: 30px;
  margin-right: 10px;
  color: #737ffa;
}

.navbar-logo-text img{
  
    width: 200px;
	height: 200px;
	position: relative;
	position: relative;
	left: 50%;
	top: 0;
	margin-left: -100px;

	

	
  
}

.navbar-links-ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-link {
  list-style-type: none;
  margin: 0 10px;
  font-weight: 700;
  font-size: 20px;
  padding: 20px;
}

.navbar-link a {
  color: #bbb;
  text-decoration: none;
}





.navbar-link-active a {
  color: white;
  background: #f9b100;
  border-radius: 10px;
  padding: 6px 30px;
}


.navbar-link-active a:hover{
      background: #313130;
}




.navbar-mobile-menu {
  display: none;
}

.navbar-mobile-menu i {
  color: #4d4d4e;
}

.hero-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-copy-container {
  width: 80%;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-copy {
  margin-bottom: 30px;
  color: #6d6d6d;
  font-size: 25px;
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;

  
}




.hero-form-button a {
  color: #4d4d4e;
 
  border-radius: 10px;
  padding: 6px 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  

}




.hero-form-button {
     
	border:0;
	background: #f9b100;
	
	padding:5px 40px;
	border-radius: 15px;
	cursor: pointer;
	transition: 0.5s;
	
}

.hero-form-button:hover{
	background:#313130 ;

}



@media (max-width: 760px) {
  body {
    display: block;
    padding: 0;
  }

  .navbar {
    padding: 10px 0;
  }

  
.navbar-link {
  list-style-type: none;
  margin: 0 10px;
  font-weight: 500;
  font-size: 13px;
  padding: 1px;
}








  .navbar-mobile-menu {
    display: block;
  }

  .hero-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-form-input {
    width: 100%;
    margin-right: 0;
  }

  .hero-form-button {
    width: 100%;
  }

  .section-hero {
    height: auto;
    width: 100%;
    padding: 0 20px;
    grid-template-rows: 80px 1fr 80px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
  }

  .hero-image {
    order: 1;
    width: 100%;
  }

  .hero-copy-container {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 25px;
  }
}

/*-----------------our objectives----------------*/


.services{
	text-align: center;
}

.services h1{
	display: inline-block;
	border-bottom: 4px solid #f9b100;
	padding-bottom: 10px;
	margin-top: 40px;
	font-size: 40px;
}



.services p{
	display: inline-block;
	text-align: center;
	padding-bottom: 10px;
	margin-top: 40px;
	margin-right: 20px;
	margin-left: 20px;
	font-size: 25px;
}






.cen{

	max-width: 1200px;
	margin:auto;
	overflow: hidden;
	padding: 50px ;
}

.service{
	display: inline-block;
	width: clac(100% / 3);
	margin: 0 -2px;
	padding: 30px;
	box-sizing: border-box;
	cursor: pointer;
	transition: 0,4S;
	margin-bottom: 20px;
}


.service:hover{
	background: white;
	border-radius: 15px;

}


.service i {
	font-size: 70px;
	margin-bottom: 5px;
	padding: 20px;
}

.service h2{
	font-size: 20px;
	margin: 0;
}

@media screen and (max-width: 769){
	.service{
		width: 50%;
	}
}


@media screen and (max-width: 500){
	.service{
		width: 100%;
	}
}




/*----------donate now---------------*/

.image {
  width: 100%;
}

.image img {
  width: 100%;
  border-radius: 15px;
  
  
}





/*---------------contact us----------------*/


.contact{
	margin-bottom: 150px;
	margin-top: 150px;
}


.contact h1 {
     color: #313130;
 	padding-left: 40px;
 	font-size: 40px;
 	font-weight: bold;
 	text-align: center;
 	margin-top: 80px;
}

.contact-form {
	max-width: 600px;
	margin: auto;
	padding: 0 10px;
	overflow: hidden;

}

.contact-form-text{
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 16px 0;
	background: #efeeec;
	padding: 20px 40px;
	border:0;
	border-radius: 15px;
	outline: none;
	color:  #313130;
	transition: 0.5s;
}

.contact-form-text:hover{
	box-shadow: 0 0 10px 4px #f9b100;
}


textarea .contact-form-text {
	resize: none;
	height: 120px;
	resize: vertical;

}


.contact-form-btn{
	float: right;
	border:0;
	background: #f9b100;
	color: #fff;
	padding:5px 40px;
	border-radius: 15px;
	cursor: pointer;
	transition: 0.5s;
	font-size: 18px;
	font-weight: bold;
}


.contact-form-btn:hover{
       background: #313130;
}


.image {
 width: 100%;

}

.image img {
  
width: 100%;
  
}


/*-----------------footer-------------------*/

footer{
	
	
	background-color:#313130;
	height: auto;
	width: 100%;
	padding-top: 70px;
	color: #fff;
	border-radius: 15px;

}

.footer-content{
	
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;

   }

   .footer-content h5{
	
	font-weight: 400;
	text-transform: capitalize;
	line-height: 3rem;
}


.footer-content p{
	max-width: 500px;
	margin: 10px auto;
	line-height: 28px;
	font-size: 14px;
}



.socials{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 0 1rem 0;

}


.socials i {
	margin: 0 10px;

}


.socials a{
	text-decoration: none;
	color: #fff;

}

.socials a i{
    font-size: 2rem;
}


.socials a:hover{
	color: #f9b100;
}




/*----------------about-------------------*/































