/*font-family: 'Roboto', sans-serif;*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
main{
  min-height: calc(100vh - 54px);
}
body {
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  background-color: #f8f8ff;
}
header {
  width: 100%;
  background-color: white;
  border-bottom: 4px solid #f8f8ff;
}
nav {
  display: flex;
  font-family: sans-serif;
  font-weight: bold;
  gap: 2rem;
  height: 54px;
  width: 100%;
  padding: 0 2rem;
  align-items: center;
  max-width: 1550px;
  margin: 0 auto;
  background-color: white;
}
.mobile-nav,
.left-nav-menu {
  display: none;
}
.left-nav {
  display: flex;
  min-width: 90px;
}
.left-nav img {
  width: 90%;
}
.middle-nav,
.middle-mobile-nav {
  height: 54px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-evenly;
}
.middle-nav a,
.middle-mobile-nav a {
  color: #002233;
  text-align: center;
  flex-basis: 53px;
  padding: 17px 0;
  border-bottom: 1px solid white;
  text-decoration: none;
  transition: all 0.1s ease-in-out 0.05s;
}
.middle-nav a:hover,
.middle-nav a:focus,
.middle-mobile-nav a:hover,
.middle-mobile-nav a:focus {
  border-bottom: 2px solid #2ebd7f;
}
.middle-nav a:active {
  border-bottom: 2px solid #002233;
}
.right-nav {
  display: flex;
  flex-basis: 100px;
}
.right-nav a {
  text-align: center;
  width: 100%;
  background-color: #002233;
  color: white;
  text-decoration: none;
  padding: 10px 0;
}
.right-nav a:hover,
.right-nav a:focus {
  background-color: #2ebd7f;
  color: #023;
} /*navigation style ends here*/
/*main style style here*/
.top-banner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('https://img.freepik.com/free-photo/view-new-york-city-manhattan-midtown-dusk-with-skyscrapers-illuminated-east-river_268835-754.jpg?w=1060&t=st=1681577358~exp=1681577958~hmac=ea24cba7855ae89701b7d28f4e8a8fdaf34f0e59c3e228c86daa22374a89f56b');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 54px);
  position: relative;
}
.top-banner-container .welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 3rem;
  height: 100%;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7); /* adjust the opacity to your liking */
}
.welcome span {
  color: #2ebd7f;
  font-weight: bold;
}
main {
  display: flex;
  flex-direction: column;
  max-width: 1550px;
  width: 100%;
  margin: 0px auto;
  background-color: white;
}
.banner-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  flex-direction: column;
  flex-basis: 100%;
  gap: 2rem;
  color: black;
}
.banner-container span {
  color: #2ebd7f;
  font-weight: bold;
}
.banner-container .paragraph-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}
.banner-container .paragraph {
  line-height: 1.5;
  text-align: justify;
  border-left: 4px solid #2ebd7f;
  margin: 0 0 1.5rem 2rem;
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
.banner-container a {
  color: #2ebd7f;
  text-decoration: none;
  font-weight: bold;
}
.mission-container {
  display: flex;
  flex-basis: 100%;
  padding: 1rem;
}
.mission-statement {
  flex-basis: 50%;
  padding: 1rem;
}
.mission-image {
  flex-basis: 50%;
  display: flex;
  align-items: center;
}
.mission-image img {
  width: 100%;
}
/*feedback starts here*/
.main-feedback-container {
  display: flex;
  margin-top: 2rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.what-our-clients {
  text-align: center;
  margin-bottom: 3rem;
}
.what-our-clients h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.what-our-clients .word {
  font-size: 4rem;
}
.what-our-clients p {
  font-size: 1.5rem;
  line-height: 1.5;
}
.main-feedback-container span {
  color: #2ebd7f;
}
.main-feedback-container .quote {
  font-weight: bolder;
}

.feedback-container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.feedback1,
.feedback2,
.feedback3,
.feedback4,
.feedback5,
.feedback6 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 384px;
  height: 474px;
  padding: 1.5rem;
  text-align: center;
  line-height: 1.5;
  gap: 1rem;
  background-color: white;
  border-radius: 50px;
  margin-bottom: 3rem;
}
.feedback1 img,
.feedback2 img,
.feedback3 img,
.feedback4 img,
.feedback5 img,
.feedback6 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.newsletter-container {
  margin: 0 auto;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  background-color: #002233;
  padding: 2rem;
  color: white;
  border-radius: 10px;
}
.newsletter-container p {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.newsletter-container form {
  display: flex;
  width: 100%;
  justify-content: center;
  max-width: 640px;
}
.newsletter-container input {
  height: 35px;
  color: white;
  margin-bottom: 1.5rem;
}
.newsletter-container input:nth-child(1) {
  flex-basis: 75%;
  background-color: #1a3847;
  border: none;
}
#email-address::placeholder {
  color: white;
  padding-left: 2em;
}
.newsletter-container input:nth-child(2) {
  color: white;
  flex-basis: 25%;
  background-color: #2ebd7f;
  border: none;
}

/*footer starts here*/
footer {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  background-color: #000;
  color: white;
  align-items: first baseline;
  flex-wrap: wrap;
}
.top-footer-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 2rem;
}
.first-footer-container,
.second-footer-container,
.third-footer-container,
.fourth-footer-container {
  border-left: 1px solid white;
  padding-left: 2rem;
  flex-basis: 20%;
  gap: 1rem;
}
.first-footer-container,
.second-footer-container {
  display: flex;
  flex-direction: column;
}
.first-footer-container img {
  width: 60%;
}
.first-footer-container p,
.second-footer-container p {
  line-height: 1.5rem;
}
.first-footer-container p:first-of-type,
.second-footer-container p:first-of-type {
  color: #2ebd7f;
}
.first-footer-container a {
  color: #2ebd7f;
  text-decoration: none;
  border-bottom: 2px solid #2ebd7f;
  width: 100px;
}
.first-footer-container a:hover {
  color: white;
  text-decoration: none;
  border-bottom: 2px solid white;
  width: 100px;
}
.second-footer-container img {
  margin-right: 0.7rem;
  width: 20px;
  height: 20px;
}
.second-footer-container a {
  color: white;
  text-decoration: none;
  display: flex;
}
.second-footer-container a:hover {
  color: #2ebd7f;
}
.second-footer-container .specific-requirements-link {
  color: #2ebd7f;
  text-decoration: none;
  border-bottom: 2px solid #2ebd7f;
  width: 70px;
}
.specific-requirements-link:hover {
  color: white;
  text-decoration: none;
  border-bottom: 2px solid white;
}

.third-footer-container {
  display: flex;
  flex-direction: column;
}
.third-footer-container p:first-of-type {
  color: #2ebd7f;
}
.third-footer-container ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style-type: none;
}
.third-footer-container a {
  color: white;
  text-decoration: none;
}
.third-footer-container a:hover {
  color: #2ebd7f;
  text-decoration: none;
}

.fourth-footer-container {
  display: flex;
  flex-direction: column;
}
.fourth-footer-container img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.fourth-footer-container img:hover {
  outline: 1.5px solid #2ebd7f;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #000;
}
.fourth-footer-container p:first-of-type {
  color: #2ebd7f;
}
.fourth-footer-container p {
  line-height: 1rem;
}
.fourth-footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fourth-footer-bottom-container a {
  color: white;
  text-decoration: none;
  display: flex;
}
.fourth-footer-bottom-container a:hover {
  color: #2ebd7f;
  text-decoration: none;
}
.fourth-footer-bottom-container img {
  margin-right: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 0%;
}
footer hr {
  background-color: #f8f8ff;
  width: 100%;
  height: 2px;
  border-color: grey;
  margin-bottom: 2rem;
}
.bottom-footer-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 2rem;
  width: 15%;
  min-width: 210px;
  margin: 0 auto;
}
.bottom-footer-container img {
  width: 30px;
  height: 30px;
}
.copyright {
  margin: 2rem auto;
  font-size: 1.2rem;
  color: grey;
}

@media only screen and (max-width: 1300px){
  .listing-1 {
    flex-basis: 40%;
  }
}
@media only screen and (max-width: 1000px) {
  .top-footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 2rem;
  }
  .first-footer-container,
  .second-footer-container,
  .third-footer-container,
  .fourth-footer-container {
    border-bottom: 1px solid white;
    padding-left: 2rem;
    padding-bottom: 2rem;
    flex-basis: 20%;
    margin-bottom: 2rem;
  }
  footer hr {
    display: none;
  }
  .copyright {
    text-align: center;
    margin-bottom: none;
  }
  .banner-container {
    flex-wrap: wrap;
  }
  .banner-container {
    flex-basis: 100%;
  }
  .mission-container {
    flex-wrap: wrap;
  }
  .mission-statement {
    flex-basis: 100%;
    padding: 1rem;
  }
  .mission-image {
    flex-basis: 100%;
    display: flex;
    align-items: center;
  }
  .mission-image img {
    width: 100%;
  }
  .banner-container .paragraph {
    line-height: 1.2;
    margin: 0 0 1rem 1rem;
    padding-left: 0.3rem;
    font-size: 1.2rem;
  }
  .mission-container:first-of-type {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 700px) {
  nav {
    padding: 1rem;
    gap: 0;
    justify-content: space-between;
  }
  .middle-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
    color: black;
  }
  .top-banner-container .welcome {
    font-size: 2rem;
  }
  .listing-1 {
    flex-basis: 100%;
  }
}