
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border: 1px transparent red;
  line-height: 1.5;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.flex {
  display: flex;
  align-items: center;

}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 10px;
  padding: 0 20px;
  justify-content: center;

}

.content {
  text-align: center;
  margin-top: 3vh;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.navbar {
  justify-content: space-between;
}

.nav-links {
  gap: 50px;
  list-style: none;
}

.navbar a {
  padding: 20px 0;
  display: inline-block;
  color: black;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s;
}

.navbar a:hover {
  color: #ff8856;
}


/*Homepage*/
.homepage {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url(Images/AboutUs.png);
  background-position: center;
  background-size: cover;
}

.homepage::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /*background: rgba(0, 0, 0, 0.2);*/
}

.homepage .content {
  position: relative;
  height: 85%;
  margin-top: 10px;
  flex-direction: column;
  justify-content: center;
}

.homepage .text {
  color: white;
  text-align: center;
  margin-bottom: 50px;

}

.homepage .text h1 {
  font-size: 85px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}

.homepage .text h2 {
  font-size: 18px;
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 50px;
  text-align: left;

}

.homepage a {
  color: #333;
  text-decoration: none;
  background: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0 5px 10px;
  font-size: 18px;
  transition: .3s;
}

.homepage a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
}

/*About Us*/
.aboutus .content {
  display: block;
  padding: 20px;
}

.aboutus .content img {
  height: 350px;
  width: 500px;
  margin-bottom: 20px;
}

.aboutus .content p{
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  padding: 10px;
  margin-left: 20px;
}

/*Our Team*/
.ourteam{
  padding: 20px;
  margin-bottom: 20px;
}

.ourteam .content h1{
  font-size: 40px;
  color: grey ;
}

section .points {
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

section .poin {
  width: calc(100% / 2 - 50px);
  height: auto;
  text-align: center;
  list-style: none;
  background-color: #f0f0f0;
  padding: 20px 0 20px;
  border-radius: 0px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  color: #040404;
}

section .poin img {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-top: 20px;
}

section .poin h3{
  font-size: 18px;
}

section .poin p {
  margin-top: 5px;
  font-size: 15px;
  margin-bottom: 30px;
  color: #340235;
  font-weight: 100;
}

/*Footer*/
.footer {
  background-color: #333;
  padding: 20px 0;
}

.footer .span {
  color: #fff;
  font-size: 10px;
}

#menu-toggle,
#bar-btn {
  display: none;

}


/*Responsive*/

@media(width < 1200px) {
  .content {
    margin-left: 20px;
    margin-right: 20px;
  }
  /*.aboutus .content img{
    display: none;
  }*/
}


@media (width < 860px) {
  .navbar .nav-links {
    position: fixed;
    left: 0;
    top: 80px;
    height: 100%;
    display: block;
    background: #fff;
    width: 300px;
    padding-left: 20px;
    padding-top: 40px;
    left: -100%
  }

  #menu-toggle:checked~.nav-links {
    left: 0;
  }

  .nav-links li {
    font-size: 18px;
  }

  #bar-btn {
    display: block;
    color: black;
    font-size: 22px;
    cursor: pointer;
  }

  .homepage .text h1 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
  }

  .homepage .text h2 {
    text-align: left;
  }

  .content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .content p {
    text-align: center;
    margin-top: 5vh;
    font-size: 15px;
  }

  .content .points .poin p {
    font-size: 15px;
  }


  section .points .poin {
    width: calc(100% / 2 - 15px);
  }

}

@media (width < 560px) {

  .content p {
    text-align: center;
    margin-top: 2vh;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
  }


  .homepage .text h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;

  }

  .homepage .text h2 {
    font-size: 12px;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 50px;
    text-align: left;
  }

  .homepage .text p {
    font-size: 15px;
  }

  .aboutus .content {
    width: 100%;
    flex-direction: column;
    text-align: justify;
    list-style: none;
    padding: 10px 0 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
    margin: 10px;
  }

  .aboutus .content img{
    height: 150px;
    width: 200px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    display: block;
  }

  section .poin {
    flex-direction: column;
  }
  section .poin img {
    height: 120px;
    width: 120px;}
}