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

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

/********************* START HEADER *********************/
header {
  background-color: #f0f0f0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
}

.logo {
  color: #3a6cf4;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8em;
}

header .navigation a {
  color: #3a6cf4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
  padding-left: 30px;
  transition: 0.5s;
}

header i.menu-icon {
  display: none;
}

.navigation a:hover {
  display: inline-block;
  color: #601cfc;
  transform: scale(1.1);
}
/********************* END HEADER *********************/

/********************* START SECTION *********************/
section {
  padding: 100px 200px;
}

.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: url(../img/images.jpg) no-repeat; */
  /* background-image: linear-gradient(213deg, #35001f, #20005f); */
  /* background-image: linear-gradient(55deg, #51006f, black); */
  /* background-image: linear-gradient(230deg, #5b007c, #001756); */
  /* background-image: linear-gradient(359deg, #2d003d, #00081c); */
  /* background: url(../img/118255927_2421411121485801_7784577368770174598_1n.jpg) no-repeat; */
  background-image: linear-gradient(359deg, #000015, #210037);
  background-size: 100;
  background-position: center;
  background-attachment: fixed;
}

.main h2 {
  color: white;
  font-weight: 500;
}

.main h2 span {
  display: inline-block;
  margin-top: 10px;
  color: #4e9eff;
  font-size: 3em;
  font-weight: 600;
}

.main h3 {
  color: white;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.main .main-btn {
  color: white;
  background-color: #3a6cf4;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  display: inline-block;
  padding: 0.9375em 2.1875em;
  letter-spacing: 1px;
  border-radius: 15px;
  margin-bottom: 40px;
  transition: 0.7s ease;
}

.main .main-btn:hover {
  background-color: #0a49f6;
  transform: scale(1.1);
}

.main .social-icon a {
  display: inline-block;
  color: white;
  font-size: 1.7em;
  padding-right: 30px;
  transition: 0.5s;
}

.main .social-icon a:hover {
  transform: scale(1.15);
}

.main .social-icon .instagram:hover {
  color: #f14b57;
}

.main .social-icon .gmail:hover {
  color: #ea4335;
}

.main .social-icon .twitter:hover {
  color: #2aa9e0;
}

.main .social-icon .linkedin:hover {
  color: #0a66c2;
}
/********************* END SECTION *********************/

/********************* START SERVICES *********************/
.title {
  display: flex;
  justify-content: center;
  color: #3a6cf4;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 30px;
}

.content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  width: 21.25em;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 20%);
  border-radius: 10px;
  padding: 25px;
  margin: 15px;
  transition: 0.7s;
}

.card:hover {
  transform: scale(1.1);
}

.icon {
  font-size: 8em;
  text-align: center;
}

.icon.html {
  color: #e54d26;
}
.icon.css {
  color: #0170ba;
}
.icon.js {
  color: #dbb92c;
}

.info {
  text-align: center;
}

.info h3 {
  color: #3a6cf4;
  font-size: 1.2em;
  font-weight: 700;
  margin: 10px;
}
/********************* END SERVICES *********************/

/********************* START PROJECT *********************/
.projects {
  background-color: #000016;
}

.projects .content {
  margin-top: 30px;
}

.project-card {
  background-color: white;
  border: 1px solid white;
  min-height: 14em;
  width: 20em;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px;
  transition: 0.7s ease;
}

.project-card:hover {
  transform: scale(1.1);
}

.project-card:hover .project-img {
  opacity: 0.95;
}

.project-img img {
  width: 100%;
}

.project-info {
  padding: 1em;
}

.project-category {
  font-size: 0.8em;
  color: black;
}

.project-title {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-top: 10px;
}
.project-title span {
  text-transform: uppercase;
}
.more-detalis {
  text-transform: uppercase;
  text-decoration: none;
  color: #3a6cf4;
}

.more-detalis:hover {
  color: #601cfc;
}
/********************* END PROJECT *********************/

/*********************  START CONTACT *********************/
.content.two .icon {
  font-size: 4.5em;
  color: #3261f3;
}

.contact .info h3 {
  color: black;
}

.contact .info {
  font-size: 1.3em;
}
/*********************  END CONTACT *********************/

/*********************  START FOOTER *********************/
.footer {
  background-color: #000016;
  color: white;
  padding: 2em;
  display: flex;
  justify-content: space-between;
}

.footer .social-icon a {
  display: inline-block;
  color: white;
  font-size: 1.3em;
  padding-right: 15px;
  transition: 0.5s;
}

.footer .social-icon a:hover {
  transform: scale(1.15);
}

.footer .social-icon .gmail:hover {
  color: #ea4335;
}
.footer .social-icon .instagram:hover {
  color: #f14b57;
}
.footer .social-icon .twitter:hover {
  color: #2aa9e0;
}
.footer .social-icon .linkedin:hover {
  color: #0a66c2;
}
.footer-title {
  font-size: 1.3em;
  font-weight: 600;
}

.footer-title span {
  color: #3a6cf4;
}
/*********************  END FOOTER *********************/

/*********************  START VIEWPORT *********************/
@media (min-width: 708px) and (max-width: 1024px) {
  body {
    font-size: 20px;
  }

  header {
    padding: 12px 50px;
  }

  nav.navigation a {
    padding-left: 50px;
  }

  .title {
    font-size: 2.5em;
  }

  section {
    padding: 50px 50px;
  }

  .main h2 {
    font-size: 1.5em;
  }

  .main h3 {
    font-size: 1.6em;
  }

  .contact {
    flex-direction: row;
    align-items: center;
  }

  .footer {
    padding: 1em;
  }

  .footer-title {
    font-size: 1.3em;
    font-weight: 600;
  }

  .footer .social-icon a {
    font-size: 1.3em;
    padding-right: 15px;
  }
}

@media (min-width: 361px) and (max-width: 708px) {
  header {
    padding: 12px 20px;
    position: relative;
  }

  nav.navigation {
    position: absolute;
    top: 55px;
    right: 21px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    display: none;
    z-index: 100;
  }

  nav.navigation::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    border: 10px solid;
    border-color: transparent transparent #f0f0f0 transparent;
  }

  nav.navigation a {
    padding-left: 0;
    font-size: large;
  }

  header i.menu-icon {
    display: block;
    font-size: x-large;
  }

  header i.menu-icon:hover + nav.navigation {
    display: flex;
  }

  .title {
    font-size: 1.8em;
  }

  section {
    padding: 10px 20px;
  }

  .main h2 {
    font-size: 1em;
  }

  .main h3 {
    font-size: 1.6em;
  }

  .contact {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 1em;
  }

  .footer-title {
    font-size: 0.8em;
    font-weight: 600;
  }

  .footer .social-icon a {
    font-size: 1em;
    padding-right: 5px;
  }
}

@media (max-width: 360px) {
  header {
    padding: 12px 10px;
    position: relative;
  }

  nav.navigation {
    position: absolute;
    top: 55px;
    right: 21px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    display: none;
    z-index: 100;
  }

  nav.navigation::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    border: 10px solid;
    border-color: transparent transparent #f0f0f0 transparent;
  }

  nav.navigation a {
    padding-left: 0;
    font-size: large;
  }

  header i.menu-icon {
    display: block;
    font-size: x-large;
  }

  header i.menu-icon:hover + nav.navigation {
    display: flex;
  }

  .title {
    font-size: 1.8em;
  }

  section {
    padding: 10px 20px;
  }

  .main h2 {
    font-size: 1em;
  }

  .main h3 {
    font-size: 1.6em;
  }

  .contact {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 1em;
  }

  .footer-title {
    font-size: 0.8em;
    font-weight: 600;
  }

  .footer .social-icon a {
    font-size: 1em;
    padding-right: 5px;
  }
}

@media (max-width: 300px) {
  body {
    font-size: 10px;
  }

  header {
    padding: 8px 10px;
    position: relative;
  }

  nav.navigation {
    position: absolute;
    top: 40px;
    right: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    display: none;
    z-index: 100;
  }

  nav.navigation::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    border: 10px solid;
    border-color: transparent transparent #f0f0f0 transparent;
  }

  nav.navigation a {
    padding-left: 0;
    font-size: small;
  }

  header i.menu-icon {
    display: block;
    font-size: large;
  }

  header i.menu-icon:hover + nav.navigation {
    display: flex;
  }
  .title {
    font-size: 1.8em;
  }

  section {
    padding: 10px 20px;
  }

  .main h2 {
    font-size: 1em;
  }

  .main h3 {
    font-size: 1.6em;
  }

  .contact {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 1em;
  }

  .footer-title {
    font-size: 0.8em;
    font-weight: 600;
  }

  .footer .social-icon a {
    font-size: 1em;
    padding-right: 5px;
  }
}

/*********************  END VIEWPORT *********************/
