@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}

/* utility classes */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  background-color: #5438dc;
  color: white;
}

/* HEader */
header {
  min-height: 100vh;
  margin-bottom: 0;
}
.full-nav {
  box-shadow: 0px 6px 10px -6px rgba(84, 56, 220, 0.81);
  -webkit-box-shadow: 0px 6px 10px -6px rgba(84, 56, 220, 0.81);
  -moz-box-shadow: 0px 6px 10px -6px rgba(84, 56, 220, 0.81);
}
.navBar {
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 1rem;
}
.logo img {
  width: 40px;
  height: 40px;
}
.closeButton {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 30px;
}
.menus ul li {
  display: inline-block;
  padding: 0 1rem;
}
.menus ul li a {
  text-decoration: none;
  color: black;
  position: relative;
}
.menus ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #5438dc;
  transition: ease-in 0.2s;
}
.menus ul li a:hover::after {
  width: 100%;
}

.heroContent {
  width: 90%;
  margin: 2rem auto;
  justify-content: space-around;
  padding: 1rem 0;
}
.contentBox {
  width: 50%;
  padding: 1rem;
}
.contentBox > h1 {
  font-size: 2.5rem;
}
.contentBox > h3 {
  font-size: 1.5rem;
}
.contentBox > p {
  margin: 1rem 0;
  font-size: 1.2rem;
}
.title {
  text-transform: uppercase;
}
.buttonBox button {
  margin: 0.5rem;
}
.imageBox {
  width: 400px;
  height: 400px;
  background-color: rgba(83, 56, 220, 0.096);
  border: none;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.heroImage {
  width: 280px;
  border-radius: 50%;
}
button > a {
  text-decoration: none;
  color: white;
}

/* Contact */

.formSection {
  height: fit-content;
}
.half-color {
  height: 50%;
  padding: 0.5rem 1rem;
}
.half-width {
  width: 90%;
  margin: 0 auto;
}
.formContent {
  color: black;
}
.formContent > p {
  margin-top: 1rem;
}
.contact-title {
  font-size: 2rem;
  margin-top: 1rem;
}
.formBox {
  margin: 1rem auto;
  padding: 2rem;
  min-width: 70%;
  height: 100%;
  gap: 2rem;
  border-radius: 10px;
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.75);
}
.mainForm {
  width: 50%;
}
.mainForm > form > div {
  margin-bottom: 0.8rem;
}
input {
  height: 2rem;
  width: 100%;
  padding-left: 0.5rem;
  font-family: inherit;
  color: #807e88;
}
textarea {
  width: 100%;
  height: 180px;
  max-width: 100%;
  max-height: 200px;
  padding: 0.5rem;
  font-family: inherit;
  color: #807e88;
}
.icons {
  padding: 0.1rem;
  color: green;
}
.default-hide {
  display: none;
}
.errorMessage {
  color: red;
  font-size: 0.7rem;
}

.socialBox {
  /* height: 100%; */
  align-self: stretch;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(22, 13, 78, 1) 0%,
    rgba(57, 47, 228, 1) 0%,
    rgba(69, 50, 222, 1) 0%,
    rgba(78, 53, 217, 1) 0%,
    rgba(86, 55, 213, 0.6643032212885154) 0%,
    rgba(0, 31, 255, 0.5550595238095238) 68%
  );
  padding: 1rem;
  width: 50%;
  border-radius: 10px;
}
.socialContainer {
  height: 100%;
}
.socialLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.socialIcons ul li {
  padding: 0 0.5rem;
  font-size: 1.5rem;
  background-color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin: 0 0.5rem;
}
.fa-twitter {
  color: #1da1f2;
}
.fa-linkedin {
  color: #0077b5;
}
.fa-github {
  color: #000000;
}

.projectSection {
  height: 100vh;
  padding: 1rem;
  width: 90%;
  margin: 0 auto;
}
.projectBox {
  height: 100%;
}

/* FOOTER */
footer {
  margin-top: 1rem;
  padding: 1rem;
  background-image: linear-gradient(
    to bottom,
    #5438dc,
    #4535cb,
    #3732ba,
    #2a2fa8,
    #1d2b97
  );
  color: rgb(177, 177, 177);
}
footer > .width-90 {
  width: 90%;
  margin: 0 auto;
}
.links {
  margin: 1rem 0;
}
.row {
  display: flex;
  justify-content: space-between;
}
.column {
  display: flex;
  margin: 1rem 0;
}
.column > a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

footer p {
  text-align: center;

  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
  .heroContent {
    width: 100%;
    flex-direction: column-reverse;
    padding: 1rem;
  }
  .contentBox {
    width: 100%;
  }
  .contentBox > h1 {
    font-size: 2rem;
  }
  .contentBox > h3 {
    font-size: 1.2rem;
  }
  .contentBox > p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
  }
  .menus {
    position: fixed;
    top: 0;
    right: -250px;
    background-color: black;
    height: 100%;
    transition: 0.7s ease-in-out;
    z-index: 999;
  }
  .menu-active {
    display: block;
    top: 0;
    right: 0;
    width: 200px;
  }
  .menus > ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 8rem;
  }
  .menus > ul > li {
    margin: 1rem 0;
  }
  .menus > ul > li > a {
    color: white;
  }
  .closeButton {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(226, 226, 226, 0.712);
  }
  .no-transition {
    transition: none;
  }

  .formBox {
    flex-direction: column;
  }
  .mainForm {
    width: 100%;
  }
  .socialLinks {
    margin-top: 2.5rem;
    width: 100%;
  }
  .socialBox {
    width: 100%;
  }
  .row,
  .column {
    flex-direction: column;
  }
}
