* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #edfddc;
}

.wrap {
  height: 100vh;
  width: 100%;

  display: flex;
  justify-content: center;
  align-content: center;
}

.container {
  /* border: 1px solid black; */
  width: 75%;
  margin-top: 10px;
}

/* Header Styling */
header {
  width: 100%;
  height: 150px;

  /* border: 1px solid red; */
}

#img-header {
  width: 100%;
  height: 150px;
}

/* Navbar Styling */
nav {
  width: 100%;
  height: 40px;
  /* border: 1px solid red; */
  background-color: #70873f;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: rgb(242, 241, 241);
  font-weight: bold;
  font-size: 0.8rem;
}
nav ul li a:hover {
  color: white;
  text-shadow: 0px 2px 2px rgba(250, 248, 248, 0.4);
}

main {
  /* border: 1px solid purple; */
  /* height: 400px; */
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  width: 95%;
  /* border: 1px solid black; */

  text-align: justify;
}
p {
  margin-top: 20px;
}

.main-container a {
  color: black;
  font-weight: bold;
}

footer {
  width: 100%;
  height: 50px;
  color: white;
  background-color: black;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 200px;
}

.right-footer {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}

.right-footer a {
  text-decoration: none;
  color: rgb(242, 241, 241);
  font-weight: bold;
}

.right-footer a:hover {
  color: white;
  text-shadow: 0px 2px 2px rgba(250, 248, 248, 0.4);
}
.left-footer {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 30px;
}

.left-footer span {
  color: green;
}

.headers2 {
  margin-top: 20px;
}

.profile-cards {
  /* border: 1px solid red; */
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
}

.card a {
  text-decoration: none;
  font-size: 15px;
  color: black;
}

button:hover,
a:hover {
  opacity: 0.7;
}

/* contact Us Page */

.main-new {
  width: 100%;
  /* border: 1px solid red; */

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.left-main {
  /* border: 1px solid black; */
  width: 35%;
  margin: 0px 10px;
  height: 450px;
}
.right-main {
  /* border: 1px solid purple; */
  height: 300px;
  width: 60%;
  margin: 0px 10px;
  height: 450px;
}

.news-links {
  margin-top: 10px;
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-news-links {
  height: 250px;
  width: 40%;
  /* border: 1px solid black; */

  display: flex;
  justify-content: center;
  align-items: center;
}
.right-news-links {
  height: 250px;
  width: 40%;
  /* border: 1px solid black; */

  display: flex;
  flex-direction: column;
  border-left: 1px solid black;
  justify-content: center;
  align-items: center;
}
.ctheader{
	position:relative;
}
.ctnumber{
	position:absolute;
	right:0;
	bottom:13px;
	width:300px;
	height:40px;
}
@media only screen and (min-width: 1400px) {
	.ctnumber{
		width:400px;
	}
}
@media only screen and (max-width: 1024px) {
	.ctnumber{
		width:250px;
	}
}
@media only screen and (max-width: 768px) {
	.ctnumber{
		width:200px;
	}
}
@media only screen and (max-width: 600px) {
  body {
    background-color: white;
    /* border: 1px solid red; */
    width: 100%;
    overflow-x: hidden;
    height: 100vmax !important;
  }

  .wrap {
    justify-content: flex-start;
    overflow-x: hidden;
    height: 100vmax !important;
    /* border: 4px solid purple; */
  }

  .container {
    margin-top: 0px;
    /* border: 4px solid pink; */
    width: 100%;
    overflow-x: hidden;
    height: 100vmax !important;
  }
  header {
    /* border: 1px solid red; */
    height: 70px;
  }

  #img-header {
    width: 100%;
    height: 70px;
  }
  nav a {
    font-size: 0.5rem !important;
  }

  footer {
    margin-top: 100px;
    font-size: 0.5rem;
  }
  .ctnumber{
	  bottom: 7px;
    width: 144px;
    height: 26px;
  }
}

@media only screen and (max-width: 500px) {
	.ctnumber{
	 
    width: 120px;
  }
}