.header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.header .header-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.header .header-desc .header-img {
  width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.header .header-desc .header-img img {
  width: 100%;
}

.themeMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.themeMain .sidebar {
  width: 250px;
  width: 250px;
  position: fixed;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.themeMain .sidebar .sidebar-desc {
  border: 1px solid #00000033;
  border-radius: 15px;
  width: 100%;
}

.themeMain .sidebar .sidebar-desc ul {
  padding-left: 0;
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}

.themeMain .sidebar .sidebar-desc ul li {
  margin-bottom: 25px;
}

.themeMain .sidebar .sidebar-desc ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-decoration: none;
}

.themeMain .sidebar .sidebar-desc ul li a.active .sidebar-icon {
  background-color: #1DA1F3;
  color: #fff;
}

.themeMain .sidebar .sidebar-desc ul li a.active p {
  color: #1DA1F3;
}

.themeMain .sidebar .sidebar-desc ul li a .sidebar-icon {
  width: 45px;
  height: 45px;
  border-radius: 100px;
  background-color: #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.themeMain .sidebar .sidebar-desc ul li a .sidebar-icon img {
  width: 46%;
}

.themeMain .sidebar .sidebar-desc ul li a p {
  margin-left: 15px;
  margin-bottom: 0;
  font-size: 20px;
}

.themeMain .sidebar .sidebar-desc ul li:last-child {
  margin-bottom: 0;
}

.themeMain .themeMain-wapper {
  width: calc(100% - 250px);
  margin-left: 250px;
  padding: 0 60px;
  position: relative;
  top: -55px;
}

.themeMain .themeMain-wapper .share-icon {
  position: fixed;
  bottom: 14px;
  right: 30px;
  z-index: 2;
  top: 50%;
}

.themeMain .themeMain-wapper .share-icon span {
  font-size: 25px;
  margin: 0 10px;
  color: #cccccc;
  cursor: pointer;
}

.themeMain .themeMain-wapper .share-icon span:hover {
  color: #1DA1F3;
}

.themeMain .themeMain-wapper .banner-fixed {
  background-color: #1DA1F3;
  position: fixed;
  bottom: 0;
  right: 0px;
  z-index: 2;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.themeMain .themeMain-wapper .banner-fixed .arrow-img {
  margin-right: 20px;
}

.themeMain .themeMain-wapper .banner-fixed .arrow-desc p {
  margin-bottom: 0;
  font-size: 18px;
}

.themeMain .themeMain-wapper .banner-fixed .arrow-desc h2 {
  font-size: 24px;
}

.themeMain .themeMain-wapper .section-first {
  background-image: url("../assets/Images/Home.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 80%;
  height: 100vh;
  position: relative;
}

.themeMain .themeMain-wapper .section-first .mobile-background {
  display: none;
}

.themeMain .themeMain-wapper .section-first .icon-scroll,
.themeMain .themeMain-wapper .section-first .icon-scroll:before {
  position: absolute;
  left: 50%;
  cursor: pointer;
  z-index: 2;
}

.themeMain .themeMain-wapper .section-first .icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 45px;
  margin-top: -35px;
  border: 1px solid #1DA1F3;
  border-radius: 25px;
}

@media (max-width: 767px) {
  .themeMain .themeMain-wapper .section-first .icon-scroll {
    position: relative;
    display: none;
  }
}

.themeMain .themeMain-wapper .section-first .icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

.themeMain .themeMain-wapper .section-first .founder-desc {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.themeMain .themeMain-wapper .section-first .founder-desc .founder-img {
  width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 3px solid;
  padding-bottom: 10px;
}

.themeMain .themeMain-wapper .section-first .founder-desc .founder-img img {
  width: 100%;
}

.themeMain .themeMain-wapper .section-first .founder-desc p {
  margin-top: 20px;
  font-size: 24px;
}

.themeMain .themeMain-wapper .section-first .founder-desc h3 {
  font-weight: 600;
  margin-bottom: 25px;
}

.contact {
  height: 100vh;
  padding: 50px 0px;
  position: relative;
}

.contact .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.contact .contact-heading h1 {
  color: #1da1f3;
  font-size: 150px;
  font-weight: 700;
  opacity: 0.1;
  line-height: 150px;
  margin: 0px;
}

.contact .contact-heading p {
  margin: -24px 0px 0px 0px;
  padding: 0px;
  font-size: 25px;
  font-weight: 600;
}

.contact .contact-heading h2 {
  font-size: 80px;
  font-weight: 600;
}

.contact .contact-box {
  padding: 30px;
  border: 1px solid #00000033;
  background-color: #fafcfe;
}

.contact .contact-box .form-group .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #7070704d;
  border-radius: 3px;
  font-size: 16px;
  color: #000;
}

.contact .contact-box .form-group .form-control::-webkit-input-placeholder {
  color: #000;
  opacity: 0.6;
}

.contact .contact-box .form-group .form-control:-ms-input-placeholder {
  color: #000;
  opacity: 0.6;
}

.contact .contact-box .form-group .form-control::-ms-input-placeholder {
  color: #000;
  opacity: 0.6;
}

.contact .contact-box .form-group .form-control::placeholder {
  color: #000;
  opacity: 0.6;
}

.contact .contact-box .form-group .form-control:focus {
  border-color: #7070704d;
}

.contact .contact-box .form-group .contact-textarea {
  resize: none;
  height: 100px;
}

.productSection {
  height: 100vh;
  padding: 50px 0px;
  position: relative;
}

.productSection .icon-scroll,
.productSection .icon-scroll:before {
  position: absolute;
  left: 50%;
  cursor: pointer;
  z-index: 2;
}

.productSection .icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 10px;
  margin-top: -35px;
  border: 1px solid #1DA1F3;
  border-radius: 25px;
}

@media (max-width: 767px) {
  .productSection .icon-scroll {
    position: relative;
    display: none;
  }
}

.productSection .icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

.productSection:after {
  content: "Product";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #1da1f3;
  font-size: 200px;
  font-weight: 700;
  opacity: 0.1;
  text-align: center;
}

.productSection .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.productSection .productSection-img {
  text-align: center;
}

.productSection .productSection-img img {
  width: 100%;
  max-width: 450px;
}

.productSection .productSection-heading h5 {
  font-size: 30px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.productSection .productSection-heading h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.productSection .productSection-heading p {
  padding: 0px;
  font-size: 22px;
  font-weight: 500;
  margin: 0px;
}

.purposeSection {
  height: 100vh;
  padding: 50px 0px;
  position: relative;
}

.purposeSection .icon-scroll,
.purposeSection .icon-scroll:before {
  position: absolute;
  left: 50%;
  cursor: pointer;
  z-index: 2;
}

.purposeSection .icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 10px;
  margin-top: -35px;
  border: 1px solid #1DA1F3;
  border-radius: 25px;
}

@media (max-width: 767px) {
  .purposeSection .icon-scroll {
    position: relative;
    display: none;
  }
}

.purposeSection .icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

.purposeSection:after {
  content: "Purpose";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #1da1f3;
  font-size: 200px;
  font-weight: 700;
  opacity: 0.1;
  text-align: center;
}

.purposeSection .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.purposeSection .productSection-img {
  text-align: center;
}

.purposeSection .productSection-img img {
  width: 100%;
  max-width: 450px;
}

.purposeSection .productSection-heading h5 {
  font-size: 30px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.purposeSection .productSection-heading h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.purposeSection .productSection-heading p {
  padding: 0px;
  font-size: 22px;
  font-weight: 500;
  margin: 0px;
}

.peopleSection {
  height: 100vh;
  padding: 50px 0px;
  position: relative;
}

.peopleSection .icon-scroll,
.peopleSection .icon-scroll:before {
  position: absolute;
  left: 50%;
  cursor: pointer;
  z-index: 2;
}

.peopleSection .icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 10px;
  margin-top: -35px;
  border: 1px solid #1DA1F3;
  border-radius: 25px;
}

@media (max-width: 767px) {
  .peopleSection .icon-scroll {
    position: relative;
    display: none;
  }
}

.peopleSection .icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
  }
}

.peopleSection:after {
  content: "People";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #1da1f3;
  font-size: 200px;
  font-weight: 700;
  opacity: 0.1;
  text-align: center;
}

.peopleSection .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.peopleSection .productSection-img {
  text-align: center;
}

.peopleSection .productSection-img img {
  width: 100%;
  max-width: 450px;
}

.peopleSection .productSection-heading h5 {
  font-size: 30px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.peopleSection .productSection-heading h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0px;
  line-height: normal;
}

.peopleSection .productSection-heading p {
  padding: 0px;
  font-size: 22px;
  font-weight: 500;
  margin: 0px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .purposeSection:after {
    font-size: 140px;
  }
  .peopleSection:after {
    font-size: 140px;
  }
  .productSection:after {
    font-size: 140px;
  }
  .contact .contact-heading h1 {
    font-size: 140px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .themeMain .sidebar {
    top: 45px;
  }
  .themeMain .themeMain-wapper .section-first .founder-desc .founder-img {
    width: 270px;
  }
  .purposeSection:after {
    font-size: 100px;
  }
  .purposeSection .productSection-heading h2 {
    font-size: 42px;
  }
  .purposeSection .productSection-heading p {
    font-size: 16px;
  }
  .peopleSection:after {
    font-size: 100px;
  }
  .peopleSection .productSection-heading h2 {
    font-size: 42px;
  }
  .peopleSection .productSection-heading p {
    font-size: 16px;
  }
  .productSection:after {
    font-size: 100px;
  }
  .productSection .productSection-heading h2 {
    font-size: 42px;
  }
  .productSection .productSection-heading p {
    font-size: 16px;
  }
  .contact .contact-heading h1 {
    font-size: 100px;
  }
  .contact .contact-heading h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .header .header-desc .header-img {
    width: 140px;
  }
  .themeMain {
    margin-bottom: 100px;
  }
  .themeMain .sidebar {
    display: none;
  }
  .themeMain .themeMain-wapper {
    top: 30px;
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }
  .themeMain .themeMain-wapper .share-icon {
    right: 10px;
  }
  .themeMain .themeMain-wapper .banner-fixed {
    right: 0px;
    width: 100%;
    padding: 12px 20px;
  }
  .themeMain .themeMain-wapper .banner-fixed .arrow-desc h2 {
    font-size: 18px;
    font-weight: 600;
  }
  .themeMain .themeMain-wapper .section-first {
    background-position: bottom;
    height: 100%;
    background-image: none;
  }
  .themeMain .themeMain-wapper .section-first .founder-desc .founder-img {
    width: auto;
  }
  .themeMain .themeMain-wapper .section-first .mobile-background {
    display: block;
  }
  .themeMain .themeMain-wapper .section-first .mobile-background img {
    width: 100%;
  }
  .themeMain .themeMain-wapper .purposeSection {
    padding: 0;
    margin: 35px 0;
    height: 100%;
  }
  .themeMain .themeMain-wapper .purposeSection .productSection-heading h2 {
    font-size: 32px;
  }
  .themeMain .themeMain-wapper .purposeSection .productSection-heading p {
    font-size: 18px;
  }
  .themeMain .themeMain-wapper .peopleSection {
    height: 100%;
    padding: 0;
    margin: 35px 0;
  }
  .themeMain .themeMain-wapper .peopleSection .productSection-heading h2 {
    font-size: 32px;
  }
  .themeMain .themeMain-wapper .peopleSection .productSection-heading p {
    font-size: 18px;
  }
  .themeMain .themeMain-wapper .productSection {
    height: 100%;
    padding: 0;
    margin: 35px 0;
  }
  .themeMain .themeMain-wapper .productSection .productSection-heading h2 {
    font-size: 32px;
  }
  .themeMain .themeMain-wapper .productSection .productSection-heading p {
    font-size: 18px;
  }
  .themeMain .themeMain-wapper .contact {
    height: 100%;
    padding: 0;
    margin: 35px 0;
  }
  .themeMain .themeMain-wapper .contact .contact-heading h1 {
    font-size: 40px;
    line-height: 80px;
  }
  .themeMain .themeMain-wapper .contact .contact-heading h2 {
    font-size: 32px;
  }
  .themeMain .themeMain-wapper .purposeSection::after {
    font-size: 40px;
  }
  .themeMain .themeMain-wapper .peopleSection::after {
    font-size: 40px;
  }
  .themeMain .themeMain-wapper .productSection::after {
    font-size: 40px;
  }
}
/*# sourceMappingURL=index.css.map */