@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
}
body h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
body h2 {
  font-size: 44px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
body h3 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
body h6 {
  font-size: 20px;
  padding-top: 12px;
  color: #50557c;
}
body p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
body span {
  font-size: 24px;
}

.primaryButton {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  border-radius: 35px;
  background: transparent linear-gradient(271deg, #a22cff 0%, #7c21e2 52%, #5a00c4 100%) 0% 0% no-repeat padding-box;
  background-size: 0% 100%;
  border-radius: 25px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  padding: 15px 35px;
  font-size: 16px;
  transition: 0.4s ease-in-out;
}
.primaryButton:hover {
  background-size: 100% 100%;
  color: #FFFFFF !important;
  border: 1px solid #5a00c4;
}

#header .navBrand {
  font-size: 24px;
}

#banner {
  padding-bottom: 50px;
  background-color: #161527;
}
#banner .row {
  min-height: 95vh;
}
#banner .imageBox {
  border-radius: 50%;
  padding: 10px;
  color: #fff;
  width: 330px;
  height: 330px;
  border: 5px solid #fff;
}
#banner .imageBox img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#heroSection {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -50px;
  padding-top: 70px;
  padding-bottom: 70px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: #fff;
  min-height: 100vh;
}
#heroSection h3 {
  color: #50557c;
}
#heroSection span {
  color: #161527;
}
#heroSection .rightSide {
  position: relative;
}
#heroSection .rightSide img {
  max-width: 500px;
}
#heroSection .rightSide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("/assets/triangle.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  #heroSection .rightSide::after {
    left: 125px;
    bottom: -100px;
  }
}
@media screen and (max-width: 768px) {
  #heroSection .rightSide::after {
    left: 10px;
    bottom: -100px;
  }
}

#allSection {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#allSection .projectSection {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding-top: 100px;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: #161527;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #allSection .projectSection {
    position: sticky;
    top: 0px;
  }
}
#allSection .projectSection span {
  font-size: 18px;
  text-decoration: underline;
}
#allSection .firstSection {
  padding-bottom: 100px;
  color: #fff;
}
#allSection .firstSection .leftSide {
  position: relative;
}
#allSection .firstSection .leftSide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -115px;
  z-index: -1;
  background-image: url("/assets/blob.svg");
  background-position: center;
  background-repeat: no-repeat;
}
#allSection .firstSection .leftSide img {
  width: 100%;
}
#allSection .firstSection .points i {
  color: #50557c;
}
#allSection .firstSection .points span {
  color: #fff;
}
#allSection .firstSection .points p {
  opacity: 1;
}
#allSection .firstSection h3 {
  color: #fff;
}
#allSection .firstSection span {
  color: #50557c;
}
#allSection .firstSection p {
  opacity: 0.7;
}
#allSection .secondSection {
  top: 0px;
  z-index: 1;
  background-color: #50557c;
  margin-top: -100px;
  position: relative;
}
#allSection .secondSection a {
  text-decoration: none;
  color: #161527;
}
#allSection .secondSection .projectCard {
  border-radius: 20px;
  background-color: #fff;
  padding: 10px;
  box-shadow: rgba(17, 12, 46, 0.5) 0px 48px 100px 0px;
}
#allSection .secondSection .projectCard p {
  margin: 10px 0;
}
#allSection .secondSection .projectCard img {
  border-radius: 20px;
  width: 100%;
}
#allSection .thirdSection {
  top: 0px;
  z-index: 2;
  background-color: #fff;
  margin-top: -100px;
}

#footer {
  background-color: #161527;
  min-height: 70vh;
}
#footer h2 {
  font-size: 64px;
  padding-top: 100px;
  color: #fff;
}/*# sourceMappingURL=style.css.map */