body {
  margin: 0;
  padding: 0;
  font-family: "Signika", sans-serif;
  position:relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  width: 150px;
}
a{
	text-decoration:none;
}
nav .right ul {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .right ul a li {
  color: #007940;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  margin: 0 10px;
  padding: 12px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

nav .right ul a.active li,
nav .right ul a:hover li {
  color: #006400;
  background: #f3f3f3;
}

h1, h2, h3 {
  font-weight: 500;
}

p {
  font-size: 17pt;
  font-weight: 100;
}

.section_header {
  height: 70vh;
  background: url('./images/abstract-design.jpg') center/cover no-repeat;
  position: relative;
}

.header h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40pt;
  padding: 40px 25px;
  border: 5px solid green;
}

.nav_buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}

.nav_buttons .left, .nav_buttons .right {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.two {
  text-align: center;
  padding: 50px 0px;
}

.two h2 {
  color: rgb(6, 6, 85);
  font-size: 30pt;
}

.brand {
  background: #EBF5EF;
}

.brand_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 40px 0px;
}

.brand_box {
  width: 30%;
  text-align: center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.brand_box img {
  width: 100%;
  margin:0px auto;
}

.Goal .container {
  position: relative;
  z-index: 5;
}

footer {
  background: #0f2D52;
  color: #67AE81;
  padding: 80px 0;
}

footer .columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.columns{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.columns .left, .columns .middle, .columns .right {
  flex: 1;
  min-width: 280px;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.socials i {
  font-size: 30px;
}
.sect{
	width:100%;
	background:#FEFDFC;
	padding:50px 0px;
	position:relative;
}
.abt::after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:9999;
	background: linear-gradient(184deg,rgba(254, 253, 252, 1) 33%, rgba(254, 253, 252, 0.3) 100%);
}
.imp .container{
	position:relative;
	z-index:3;

}
.team{
	background:#F2F5F7;
	padding:100px 0px;
}
.main{
	width:200px;
	margin:20px 0px;
}
.pop_up_content{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	width:60%;
	background:rgba(24,54,94, .95);
	color:#fff;
	padding:50px 20px;
	border-radius:20px;
	display:none;
}
.pop_up_content .columns{
	position:relative;
}
.pop_up_content .columns .left .teamimage{
	width:fit-content;
	margin:0px auto;
}
.close{
	position:absolute;
	font-size:20pt;
	color:#fff;
	top:-35px;
	right:10px;
}
.pop_up_content .columns .left img{
	width:300px;
	border-radius:20px;
}

.pop_up_content .columns .left p{
	text-align:center;
}
.pop_up_content .columns .right p{
	font-size:17px;
}
.pop_up_content.active {
	display: block;
}
.team .container button{
	cursor:pointer;
	background:none;
	border:none;
	outline:none;
}
.team_image{
	width:100%;
	height:300px;
}
.content{
	width:100%;
	padding:10px 0px;
	background:#13345C;
}
.content p{
	font-size:10pt;
	color:#fff;
}
.team_image img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.imp::before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	background:rgba(0,0,0,.4);
}
input[type="email"] {
  padding: 15px 10px;
  width: 80%;
  border: none;
  border-radius: 5px;
  outline: none;
}

input[type=submit] {
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  background-color: #67AE81;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.4s ease;
}

input[type=submit]:hover {
  background-color: #fff;
  color: #000;
}
.hamburger {
  display: none;
  font-size:25pt;
  float:right;
  cursor:pointer;
  color: #007940;
}
@media (max-width: 1000px) {
  .hamburger {
    display: block;
	float:right;
  }

  nav .right ul {
    display: none;
    flex-direction: column;
	gap:0px;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 120px;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
	z-index:99999;
  }

  nav .right ul.active {
    display: flex;
  }

  nav .right ul a li {
    margin: 0;
	width:100%;
    border-top: 1px solid #ddd;
	padding:10px 15px;
  }


  nav .right ul li a {
	  width:100% !important;
	  height:100% !important;
    color: #007940;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-family: "Signika", sans-serif;
    margin: 0 0px;
    padding: 0px 0px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }

  nav .right ul li.active,
  nav .right ul li:hover {
    color: #006400;
    background: #f3f3f3;
  }
  nav .right ul li a.active,
  nav .right ul li a:hover {
    color: ;
    background: #f3f3f3;
  }

}
.form{
	width:90% !important;
	border:none;
	outline:none;
	background:#eeeeee;
	padding:15px 10px;
	margin:10px 0px;
	border-radius:0px !important;
}
.a{
	color:#000;
}
.form::placeholder{
	font-family: "Signika", sans-serif;
}