*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

svg,
img {
  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #1361B6;
}

::-webkit-scrollbar-thumb:hover {
  background: #0F172A;
}

.container {
  max-width: 1216px;
  margin-inline: auto;
  padding-inline: 3.2rem;
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 320px) {
  .container {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
  }
}

.section {
  padding-bottom: 10.4rem;
  padding-top: 120px;
  border-top: 1px solid #cbd5e1;
}

.hidden {
  visibility: hidden;
}

.title {
  font-family: "Poppins", sans-serif;
  color: #0f172a;
  text-align: center;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 120%;
}

.subtitle {
  color: #0f172a;
  font-family: "Poppins", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 576px) {
  .subtitle {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 320px) {
  .subtitle {
    font-size: 2.4rem;
  }
}

.paragraph {
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 150%;
}
@media screen and (max-width: 576px) {
  .paragraph {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .paragraph {
    font-size: 1.4rem;
  }
}

.button {
  color: #475569;
  text-align: center;
  font-family: Poppins;
  font-size: 1.4rem;
  width: 100%;
  display: flex;
  white-space: nowrap;
  padding: 0.8rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  border-radius: 4.6rem;
  border: 1px solid #cbd5e1;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.button::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c3d7f 0%, #123259 100%);
  transform: translateY(101%);
  transition: all 0.5s ease;
}
.button.secondary {
  color: #f1f5f9;
  background: linear-gradient(135deg, #0c3d7f 0%, #123259 100%);
}
.button:hover {
  color: #f1f5f9;
}
.button:hover::after {
  transform: translateY(0);
}

.divider {
  position: relative;
  width: 100%;
  height: 104.2px;
  overflow: hidden;
}
.divider .line {
  position: absolute;
  width: 101%;
  height: 78.81px;
}
.divider .line-light {
  transform: translateX(-1px) rotate(1.002deg);
  background-color: #1361b6;
}
.divider .line-dark {
  transform: translateX(-1px) rotate(-1.002deg);
  background-color: #0f172a;
}
.divider .content {
  transform: translateY(50%) translateX(50%);
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  white-space: nowrap;
  animation: move-content-divider 20s linear infinite;
}
.divider .content span {
  color: #f8fafc;
  font-family: Poppins;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 3.84rem */
}
.divider .content svg {
  width: 100%;
  height: 2.4rem;
  stroke: #1361b6;
  fill: #1361b6;
}

.had-section {
  color: #1361b6;
  font-family: Inter;
  font-size: 1.6rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  display: inline-flex;
  padding: 0.8rem 1.6rem;
  justify-content: center;
  align-items: center;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
}
@media screen and (max-width: 320px) {
  .had-section {
    font-size: 1.2rem;
  }
}

@keyframes move-content-divider {
  0% {
    transform: translateY(50%) translateX(100vw);
  }
  100% {
    transform: translateY(50%) translateX(calc(-100vw - 100%));
  }
}
#header {
  width: 100%;
  padding-top: 3.2rem;
}
#header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .navigation-links {
  display: flex;
  gap: 3.2rem;
}
#header .navigation-link {
  color: #64748b;
  font-family: Inter;
  font-size: 1.6rem;
  position: relative;
  display: block;
  overflow: hidden;
}
#header .navigation-link::after {
  content: attr(data-css-name);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -100%;
  transition: all 0.3s ease;
  color: #1361b6;
}
#header .navigation-link span {
  display: block;
  transition: all 0.3s ease;
  transform: translateY(0);
}
#header .navigation-link:hover span {
  display: block;
  transform: translateY(-100%);
}
#header .navigation-link:hover::after {
  bottom: 0;
}
#header .logo {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: linear-gradient(135deg, #0c3d7f 0%, #123259 100%);
}
#header .button-menu {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}
#header .button-menu .icon-menu {
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
#header .button-menu::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  transition: all 0.3s ease-out;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transform: scale(0);
}
#header .button-menu:hover::after {
  background: #11366d;
  transform: scale(1);
}
#header .button-menu:hover .icon-menu {
  stroke: #f1f5f9;
}
@media screen and (max-width: 576px) {
  #header .button-menu {
    display: flex;
  }
  #header .navigation-links {
    inset: 0;
    transform: translateX(-100%);
    position: fixed;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
  }
  #header .navigation-links.open {
    z-index: 9999;
    transform: translateX(0);
  }
  #header .navigation-links .navigation-link {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 320px) {
  #header {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
    padding-top: 16px;
  }
}

#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 0;
  padding-top: 12rem;
  padding-bottom: 18rem;
}
#main .had-text {
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
}
#main .title {
  max-width: 92.6rem;
  position: relative;
  margin: 1.2rem 0 2.4rem;
}
#main .title span {
  color: #11366d;
}
#main .title::after {
  content: "";
  position: absolute;
  width: 64.6rem;
  transform: scaleX(0);
  height: 0.9rem;
  inset: auto 0 0 auto;
  border-radius: 11.3rem;
  background: linear-gradient(90deg, #0c3d7f 0%, rgba(18, 50, 89, 0.5) 100%);
  transform-origin: right;
  transition: transform 1.5s 1s ease;
}
#main .title.visible::after {
  transform: scaleX(1);
}
#main .paragraph {
  text-align: center;
  max-width: 65.6rem;
  margin-bottom: 3.2rem;
}
#main .wrapper-buttons {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
#main .wrapper-buttons .button.secondary .button-contact {
  transform: rotateZ(0);
  transition: all 0.3s ease;
}
#main .wrapper-buttons .button.secondary:hover .button-contact {
  transform: rotateZ(135deg);
}
@media screen and (max-width: 992px) {
  #main .title {
    font-size: 4.8rem;
  }
  #main .title.visible::after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  #main {
    padding-top: 12rem;
    padding-bottom: 20rem;
  }
  #main .had-text {
    font-size: 1.4rem;
  }
  #main .title {
    font-size: 2.8rem;
    margin: 1.2rem 0 1.6rem;
  }
  #main .description {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
  #main .wrapper-buttons {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  #main .wrapper-buttons svg {
    width: auto;
  }
}
@media screen and (max-width: 320px) {
  #main {
    padding-top: 64px;
  }
  #main .had-text {
    font-size: 1.2rem;
  }
  #main .title {
    font-size: 2.4rem;
  }
  #main .paragraph {
    margin-bottom: 2.4rem;
  }
}

#about {
  padding-bottom: 10.4rem;
  padding-top: 120px;
}
#about h2 {
  max-width: 65.1rem;
  margin: 1.6rem 0 2rem;
}
#about h2 span {
  width: 4.8rem;
  height: 4.8rem;
  display: inline-block;
  border-radius: 100%;
  background: #11366d;
  transform: translateY(8px);
}
#about .paragraph {
  max-width: 80rem;
}
#about .cards {
  display: flex;
  align-items: start;
  gap: 40px;
  margin-top: 4rem;
}
#about .card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
  padding: 32px 16px 40px;
  max-width: 31.2rem;
}
#about .card .icon {
  padding: 0.8rem;
  color: #f1f5f9;
  border-radius: 3.3rem;
  background: linear-gradient(135deg, #0c3d7f 0%, #123259 100%);
}
#about .card h3 {
  color: #0f172a;
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 2.4rem */
  margin: 1.6rem 0 1.2rem;
}
#about .card p {
  color: #64748b;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.1rem */
}
@media screen and (max-width: 768px) {
  #about .cards {
    flex-wrap: wrap;
    gap: 20px;
  }
  #about .card {
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (max-width: 320px) {
  #about .container {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
  }
  #about .subttitle {
    margin: 8px 0 16px;
  }
  #about .subttitle span {
    width: 3.2rem;
    height: 3.2rem;
  }
}

#projects {
  background: #f8fafc;
}
#projects .projects-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
#projects .projects-header h2 {
  margin: 1.6rem 0 0.8rem;
}
#projects .projects-header p {
  color: #64748b;
  font-family: Inter;
  font-size: 1.6rem;
}
#projects .projects-header a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.2rem;
  background: #11366d;
  color: #f1f5f9;
  border-radius: 100%;
  transition: transform 0.3s ease;
}
#projects .projects-header a:hover {
  transform: scale(1.2);
}
#projects .list-projects {
  margin-top: 4.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 86px 32px;
}
#projects .project {
  display: flex;
  flex-direction: column;
}
#projects .project img {
  border-radius: 20px;
}
#projects .project .category {
  color: #1361b6;
  font-family: Inter;
  font-size: 1.4rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  margin: 1.6rem 0 1.2rem;
}
#projects .project h3 {
  color: #0f172a;
  font-family: Poppins;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 120%; /* 3.84rem */
}
#projects .project .description {
  color: #64748b;
  font-family: Inter;
  font-size: 1.6rem;
  line-height: 150%;
  margin: 0.8rem 0 1.2rem;
}
#projects .project .technologies {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
#projects .project .technology {
  color: #1361b6;
  font-family: Inter;
  font-size: 1.2rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  gap: 0.8rem;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
}
#projects .project .links {
  display: flex;
  gap: 3.2rem;
  margin-top: 1.2rem;
}
#projects .project .links a {
  color: #64748b;
  font-family: Inter;
  font-size: 1.6rem;
}
#projects .project:nth-child(1) {
  margin-top: 86px;
}
#projects .project:nth-child(3) {
  margin-top: 86px;
}
@media screen and (max-width: 576px) {
  #projects .list-projects {
    grid-template-columns: 1fr;
  }
  #projects .list-projects .project:nth-child(1) {
    margin-top: 0;
  }
  #projects .list-projects .project:nth-child(3) {
    margin-top: 0;
  }
}

#skills {
  background: #fff;
}
#skills .container > div {
  display: flex;
  margin-top: 32px;
  justify-content: space-between;
}
#skills .subtitle {
  margin-top: 16px;
}
#skills .paragraph {
  max-width: 59.2rem;
  margin-bottom: 12px;
}
#skills .wrapper-skills {
  max-width: 48.8rem;
  width: 100%;
}
#skills .wrapper-skills > div {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 40px;
}
#skills .area {
  color: #64748b;
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
#skills .list {
  width: 100%;
  display: flex;
  gap: 2rem 1.6rem;
  flex-wrap: wrap;
}
#skills .skill {
  color: #1361b6;
  font-family: Inter;
  font-size: 1.6rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
}
@media screen and (max-width: 992px) {
  #skills .container > div {
    flex-direction: column;
  }
  #skills .wrapper-skills {
    margin-top: 32px;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  #skills .skill {
    flex: 1;
    text-align: center;
  }
}

#contact {
  border-top: 1px solid #cbd5e1;
  padding-top: 12rem;
  padding-bottom: 10.4rem;
  background: #f8fafc;
}
#contact .container {
  max-width: 1216px;
  margin-inline: auto;
  padding-inline: 3.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#contact .subtitle {
  text-align: center;
  margin: 1.6rem 0 2.4rem;
}
#contact .status {
  color: #1361b6;
  font-family: Inter;
  font-size: 2rem;
  display: block;
  position: relative;
}
#contact .status::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  background: #1361b6;
  border-radius: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(calc(-13px - 100%));
}
#contact h3 {
  color: #0f172a;
  text-align: center;
  font-family: Poppins;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 5.76rem */
  margin: 4rem 0 6.4rem;
}
#contact .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 52.5rem;
  gap: 1.6rem 3.2rem;
  flex-wrap: wrap;
}
#contact .link {
  color: #64748b;
  font-family: Inter;
  font-size: 2rem;
  line-height: 150%;
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  z-index: 1;
  border-radius: 3.5rem;
  border: 1px solid #cbd5e1;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
#contact .link svg,
#contact .link .behance-icon {
  color: #1361b6;
  transition: all 0.3s ease;
}
#contact .link::after {
  content: "";
  inset: 100% 0;
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 3.5rem;
  height: 100%;
  width: 100%;
  background: #1361b6;
  transition: all 0.3s ease;
}
#contact .link:hover {
  color: #f1f5f9;
}
#contact .link:hover::after {
  inset: 0;
}
#contact .link:hover svg {
  color: #f1f5f9;
}
#contact .link:hover .behance-icon {
  fill: #f1f5f9;
}
@media screen and (max-width: 576px) {
  #contact h3 {
    font-size: 2rem;
  }
  #contact ul,
  #contact li {
    width: 100%;
  }
  #contact svg {
    width: auto;
  }
  #contact .link {
    justify-content: center;
  }
}

#footer {
  padding: 48px 0 32px;
  border-top: 1px solid #cbd5e1;
  background: #fff;
}
#footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}
#footer ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#footer h3 {
  color: #0f172a;
  font-family: Poppins;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
}
#footer span {
  color: #64748b;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 120%; /* 1.68rem */
}
#footer p {
  color: #64748b;
  font-family: Poppins;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 1.92rem */
}
#footer .icon {
  padding: 0.8rem;
  color: #fff;
  display: flex;
  border-radius: 3.3rem;
  background: linear-gradient(135deg, #0c3d7f 0%, #123259 100%);
  transition: transform 0.3s ease;
}
#footer .icon:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 992px) {
  #footer .container {
    flex-direction: column;
    gap: 32px;
  }
  #footer .container div {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  #footer ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */