* {
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/*==Navigation=====================================*/
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  border: 1px solid #eeeeee;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo strong {
  text-decoration: none;
  color: #383838;
  margin-left: 10px;
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: 0.5px;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu li a {
  margin: 0px 5px;
  padding: 4px 10px;
  color: #313131;
  letter-spacing: 1px;
}
.menu li .nav-invest-btn {
  background-color: #fca311;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 20px;
  overflow: hidden;
}
/*==Main/Hero Section================================*/
#main {
  width: 90%;
  min-height: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 50px auto;
  border-radius: 20px;
  overflow: hidden;
}
#main::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(20, 20, 20, 0.5);
  background: linear-gradient(
    0deg,
    rgb(20, 20, 20, 0.8) 0%,
    rgba(22, 22, 22, 0.2) 100%
  );
  z-index: 98;
}
.main-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.main-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-content {
  margin: auto;
  width: 90%;
  height: 100%;
  z-index: 99;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-c-text h1 {
  font-size: 3rem;
  color: #ffffff;
}
.main-c-text p {
  color: #cccccc;
}
.main-c-text .main-text-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
}
.main-c-text .main-text-btns a {
  color: #ffffff;
  margin-right: 10px;
  width: 150px;
  height: 45px;
  background-color: #313131;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-c-text .main-text-btns .main-text-invest-btn {
  background-color: #fca311;
}
.main-c-yvideo iframe {
  width: 450px;
  height: 250px;
  object-fit: contain;
  object-position: center;
  border: none;
  box-shadow: 2px 2px 30px rgba(20, 20, 20, 0.5);
}
/*==about-us==============================*/
#about-us {
  width: 100%;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0px;
}
.about-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
}
.about-text {
  max-width: 500px;
  width: 100%;
}
.about-img-container {
  position: relative;
  margin-bottom: 100px;
}
.about-img {
  width: 700px;
  height: 400px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-1 {
  z-index: 4;
  position: relative;
  box-shadow: 2px 2px 30px rgba(22, 22, 22, 0.09);
}
.about-img-2 {
  position: absolute;
  left: 150px;
  top: 120px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.about-text h2 {
  font-size: 2.4rem;
  color: #313131;
}
.about-text p {
  color: #585858;
}
.about-text p b {
  color: #fca311;
  letter-spacing: 1px;
}
.about-text .button{
  width: 180px;
  height: 45px;
  color: #ffffff;
  background-color: #fca311;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
/*==community-details============================*/
#community-details,
#invest-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 90%;
  margin: 50px auto;
}
.community-text {
  width: 500px;
}
.community-text h2,
.community-text h3 {
  font-size: 2.6rem;
  color: #383838;
}
.community-text p {
  color: #585858;
}
.community-text a {
  padding: 10px 30px;
  background-color: #fca311;
  color: #ffffff;
  display: inline-block;
  max-width: 300px;
  margin-top: 15px;
  margin-right: auto;
}

.community-img {
  width: 500px;
  max-height: 500px;
}
.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*==Team=====================================*/
#team {
  max-width: 1400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 100px auto;
}
#team h3 {
  font-size: 2.3rem;
  line-height: 2.3rem;
  padding-left: 10px;
  color: #383838;
  border-left: 30px solid #fca311;
}
.team-container {
  margin: 30px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
}
.team-box {
  background-color: #f6f6f6;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  padding: 10px;
}
.team-box-img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.team-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
}
.team-box-text {
  padding: 10px;
}
.team-box-text h4 {
  font-size: 1.4rem;
  color: #383838;
}
.team-box-text strong {
  color: #fca311;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-box-text p {
  color: #585858;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 250px;
}
/*==invest-interest-form=======================*/
#invest-intrest-form {
  margin: 80px auto;
  max-width: 1400px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.invest-form-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.invest-form-heading h4 {
  font-size: 2.6rem;
  color: #fca311;
}
.invest-form-heading strong {
  color: #383838;
  font-size: 1.2rem;
}
.invest-form-heading span {
  color: #3b3b3b;
  letter-spacing: 1px;
}
.invest-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #1d1d1d;
  max-width: 700px;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.invest-form h3 {
  color: #fca311;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
}

.invest-form form {
  width: 100%;
  margin-top: 10px;
}
.invest-form-input-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  width: 100%;
}

.invest-form-input-container-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  width: 100%;
}

.invest-form-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px 0px;
}
.invest-form-input label {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 1rem;
}
.invest-form-input input {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  background-color: #252629;
  padding: 0px 15px;
  color: #ffffff;
}
.invest-form-input input::placeholder {
  color: #5d5d5d;
}
.invest-form input[type="submit"] {
  background-color: #fca311;
  color: #ffffff;
  width: 30%;
  height: 45px;
  border: none;
  outline: none;
  margin-top: 15px;
  margin-left: 225px;
}

#disclaimer {
  font-size: .8rem;
}

/*==footer==========================*/
footer {
  background-color: #171718;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  flex-wrap: wrap;
}
.footer-nav .footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-nav .footer-logo strong,
.footer-logo-sharp p {
  color: #ffffff;
  margin-left: 15px;
  margin-top: 8px;
  letter-spacing: 1px;
}

.post-nav {
  width: 90%;
}

.footer-logo-sharp {
  font-size: 0.8rem;
  text-align: center;
  display: block;
  width: fit-content;
}
.footer-logo-sharp p {
  color: #707070;
}

#sharp-footer-logo {
  max-height: 40px;
  filter: invert(42%) sepia(11%) saturate(0%) hue-rotate(266deg) brightness(98%)
    contrast(80%);
}

footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-menu li a {
  margin: 0px 5px;
  padding: 8px 18px;
  color: #cecece;
  background-color: #1b1b1d;
  border-radius: 20px;
  border: 1px solid #272727;
}
footer .footer-menu li .nav-invest-btn {
  color: #fca311;
}
footer .copyright {
  color: #707070;
  text-align: center;
  font-size: 0.9rem;
}

/*==Making-Responsive==============================*/
nav .menu-btn {
  display: none;
}
@media (max-width: 1200px) {
  .about-img {
    width: 340px;
    height: 340px;
    margin-left: 20px;
  }
  .community-img {
    width: 400px;
    margin-left: 30px;
  }
}
@media (max-width: 1070px) {
  .main-content {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .main-c-text {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .main-c-text-h {
    margin-right: 30px;
  }
  .about-us-content {
    flex-direction: column-reverse;
  }
  .about-text {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }
  #community-details,
  #invest-details {
    flex-direction: column-reverse;
  }
  .community-img {
    margin-left: 0px;
  }
  .community-text {
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .community-text a {
    margin: 15px auto 0px auto;
  }
  .team-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 950px) {
  nav {
    justify-content: space-between;
    padding: 20px !important;
    position: relative;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    background-color: #ffffff !important;
    width: 100%;
    z-index: 120;
  }
  .menu li {
    width: 100%;
  }
  nav .menu li a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 25px;
    border-top: 1px solid rgba(38, 38, 38, 0.03);
    background-color: #ffffff;
  }
  .menu li .nav-invest-btn {
    border-radius: 0px;
    height: 40px;
    margin: 0px;
    padding: 25px;
  }
  nav .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  nav .menu-icon .nav-icon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 25px;
  }

  nav .menu-icon .nav-icon:before,
  nav .menu-icon .nav-icon:after {
    background: #333;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }

  nav .menu-icon .nav-icon:before {
    top: 8px;
  }

  nav .menu-icon .nav-icon:after {
    top: -8px;
  }

  /* menu btn */

  nav .menu-btn {
    display: none;
  }

  nav .menu-btn:checked ~ .menu {
    display: block;
  }

  nav .menu-btn:checked ~ .menu-icon .nav-icon {
    background: transparent;
  }

  nav .menu-btn:checked ~ .menu-icon .nav-icon:before {
    transform: rotate(-45deg);
    top: 0;
  }

  nav .menu-btn:checked ~ .menu-icon .nav-icon:after {
    transform: rotate(45deg);
    top: 0;
  }
}
@media (max-width: 886px) {
  .main-c-text-h {
    text-align: center;
  }
  .main-text-btns {
    margin-top: 15px;
  }
  .copyright {
    margin-top: 20px;
  }
  .footer-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .footer-menu {
    margin-top: 30px;
  }

  .footer-logo-sharp {
    margin-right: 0px;
    display: inline;
    justify-content: center;
  }

  .post-nav {
    width: auto;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .team-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
  footer .footer-menu {
    flex-wrap: wrap;
  }
  footer .footer-menu li a {
    display: flex;
    margin: 5px;
  }
}
@media (max-width: 600px) {
  .about-img {
    width: 90%;
    height: 320px;
  }

  .main-c-yvideo {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-c-yvideo iframe {
    max-width: 400px;
    width: 100%;
    height: 100%;
    margin: 0px auto;
  }
  .main-c-text h1,
  .about-text h2,
  .community-text h3,
  .community-text h2,
  .invest-form-heading h4 {
    font-size: 1.8rem;
  }
  #team h3 {
    font-size: 1.6rem;
  }
  .logo strong {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-img {
    width: 90%;
    height: 240px;
  }
  .about-img-container {
    margin: 0px;
    margin-bottom: 100px;
    margin-right: 30px;
  }
  .about-img-2 {
    left: 30px;
  }
  .community-img {
    width: 90%;
    max-width: 100%;
  }
  .team-container {
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .invest-form-input-container {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}
@media (max-width: 400px) {
  .team-container {
    grid-template-columns: 1fr 1fr;
  }
  .main-text-btns {
    flex-direction: column;
    width: 100%;
  }
  .main-c-text .main-text-btns a {
    margin: 5px 0px;
    width: 100%;
    max-width: 100%;
  }
  .main-c-yvideo iframe {
    min-height: 170px;
  }
  .logo img {
    height: 40px;
  }
}
@media (max-width: 380px) {
  .about-img {
    height: 200px;
  }
  .community-text a {
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-text .button {
    width: 100%;
  }
}
@media (max-width: 310px) {
  .about-img {
    height: auto;
  }
  .logo img {
    height: 40px;
    object-fit: contain;
  }
  .logo strong {
    display: none;
  }
}

