html {
  --fs-10: 10px;
}

:root {
  --background-color: rgb(255, 255, 255);
  --fs-small-200: 0.1rem;
  --fs-small-300: 0.2rem;
  --fs-small-400: 1rem;
  --fs-small-450: 1.2rem;
  --fs-small-500: 1.4rem;
  --fs-small-600: 1.6rem;
  --fs-small-700: 1.8rem;
  --fs-large-300: 2rem;
  --fs-large-400: 2.5rem;
  --fs-large-500: 3rem;
  --fs-large-600: 4rem;
  --fs-large-700: 6rem;
  --fs-large-800: 7rem;
}

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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b,
u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot,
thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

html a, a:visited, a:active {
  text-decoration: none;
  color: black;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

h2,
h3 {
  font-weight: 500;
}

h2 {
  font-size: var(--fs-small-700);
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: black;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  font-size: var(--fs-10);
}

body {
  font-family: Montserrat;
  background-color: var(--background-color);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  margin-top: 5px;
  line-height: var(--fs-large-400);
  color: rgb(0, 0, 0);
  font-size: var(--fs-small-500);
  font-weight: 300;
  letter-spacing: 0.05rem;
}

.cta {
  display: inline-block;
  transition: 0.3s ease;
  margin-top: 20px;
  border: 2px solid rgb(236, 141, 7);
  background-color: transparent;
  padding: 10px 30px;
  letter-spacing: var(--fs-small-300);
  font-size: var(--fs-large-300);
  transition-property: background-color, color;
}
.cta:hover {
  color: rgb(252, 252, 252);
  background-color: rgb(236, 141, 7);
}

@media only screen and (min-width: 48rem) {
  .cta {
    padding: 10px 50px;
    font-size: var(--fs-large-400);
  }
}
#hero {
  z-index: 1;
  background-image: url("../assets/img/background-hero-mobile.webp");
  background-position: top center;
  background-size: cover;
}
#hero .hero {
  padding: 0 50px 265px;
  max-width: 1200px;
}
#hero .hero h1 {
  display: block;
  position: relative;
  width: fit-content;
  color: transparent;
  font-size: var(--fs-large-600);
  animation: text-reveal 0.5s ease forwards;
  animation-delay: 1s;
  font-weight: 700;
}
#hero .hero h1:nth-child(1) {
  animation-delay: 1s;
}
#hero .hero h1:nth-child(1) span {
  animation-delay: 0.5s;
}
#hero .hero h1:nth-child(2) {
  animation-delay: 2s;
}
#hero .hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}
#hero .hero h1:nth-child(3) {
  animation: text-reveal-name 0.5s ease forwards;
  animation-delay: 3s;
}
#hero .hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}
#hero .hero h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: rgb(236, 141, 7);
  animation: text-reveal-box 1s ease 1;
  animation-delay: 0.5s;
}
#hero .hero .cta {
  color: rgb(252, 252, 252);
}
#hero .hero:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  content: "";
}

@keyframes text-reveal-box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes text-reveal {
  100% {
    color: rgb(252, 252, 252);
  }
}
@keyframes text-reveal-name {
  100% {
    color: rgb(236, 141, 7);
  }
}
@media only screen and (min-width: 48rem) {
  #hero {
    background-image: url("../assets/img/background-hero-desktop.webp");
  }
  #hero .hero {
    padding: 0 50px;
  }
  #hero .hero h1 {
    font-size: var(--fs-large-700);
  }
}
#about .about {
  padding-top: 156px;
}
#about .about .col-left {
  width: 250px;
  height: 360px;
}
#about .about .col-left .about-img {
  border: 10px solid var(--background-color);
  width: 100%;
  height: 100%;
}
#about .about .col-left .about-img::after {
  position: absolute;
  top: 19px;
  left: -33px;
  z-index: -1;
  border: 7px solid rgb(236, 141, 7);
  width: 98%;
  height: 100%;
  content: "";
}
#about .about .col-right {
  width: 100%;
}
#about .about .col-right h2 {
  margin-bottom: 20px;
  letter-spacing: var(--fs-small-300);
}
#about .about .col-right .cta {
  margin: 30px 0;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  font-size: var(--fs-large-300);
}
#about .about .col-right .cta:hover {
  color: rgb(252, 252, 252);
}

@media only screen and (min-width: 48rem) {
  #about .about {
    flex-direction: row;
  }
  #about .about .col-left {
    padding-left: 60px;
    width: 600px;
    height: 400px;
  }
  #about .about .col-left .about-img::after {
    top: 34px;
    left: -45px;
    border: 10px solid rgb(236, 141, 7);
    height: 98%;
  }
  #about .about .col-right {
    padding: 30px;
    text-align: left;
  }
  #about .about .col-right h1 {
    text-align: left;
  }
  #about .about .col-right p {
    max-width: 540px;
  }
}
#technologies .technologies {
  max-width: 1500px;
  padding-bottom: 90px;
}
#technologies .technologies .tech-top {
  max-width: 390px;
  width: 100%;
}
#technologies .technologies .tech-top h1 span {
  margin: 5px 0 5px;
  font-size: var(--fs-large-300);
}
#technologies .technologies .tech-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
#technologies .technologies .tech-bottom .tech-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex-basis: 100%;
  align-items: flex-start;
  justify-content: start;
  z-index: 1;
  margin: 10px 0;
  border-radius: 10px;
  background-image: url("../assets/img/tech-item.webp");
  height: 270px;
  background-size: cover;
  padding: 25px 30px;
  color: rgb(252, 252, 252);
  max-width: 390px;
}
#technologies .technologies .tech-bottom .tech-item::after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
}
#technologies .technologies .tech-bottom .tech-item .tech-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  position: relative;
  right: 10px;
  margin-bottom: 8px;
}
#technologies .technologies .tech-bottom .tech-item .tech-icons .icon-tools {
  scale: 1.1;
}
#technologies .technologies .tech-bottom .tech-item p {
  text-align: left;
  color: rgb(252, 252, 252);
}
#technologies .technologies .tech-bottom .tech-item .logo-vs {
  position: absolute;
  right: 7px;
  bottom: 5px;
}
#technologies .technologies .tech-bottom .tech-item .second-column-tools {
  margin-left: 35px;
}

@media only screen and (min-width: 48rem) {
  #technologies .technologies {
    padding-bottom: 100px;
  }
  #technologies .technologies .tech-top {
    max-width: 540px;
  }
  #technologies .technologies .tech-bottom .tech-item {
    flex-basis: 37%;
    margin: 2.5%;
    height: 300px;
    max-width: 390px;
  }
}
@media only screen and (min-width: 75rem) {
  #technologies .technologies .tech-bottom .tech-item {
    flex-basis: 24%;
    margin: 0.5%;
    height: 280px;
    max-width: initial;
    gap: 5px;
  }
}
#projects .projects {
  padding-bottom: 80px;
}
#projects .projects .project-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 390px;
  overflow: hidden;
}
#projects .projects .project-item .project-img {
  cursor: pointer;
}
#projects .projects .project-item .project-img:hover img {
  transform: scale(1.06);
}
#projects .projects .project-item .project-img:hover::after {
  position: relative;
}
#projects .projects .project-item .project-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-basis: 50%;
  align-items: start;
  padding: 18px;
  width: 100%;
  height: 100%;
  background-color: rgb(252, 252, 252);
  background-image: linear-gradient(60deg, #3b495b 0%, #29323c 100%, #3a454f 80%);
  color: rgb(252, 252, 252);
}
#projects .projects .project-item .project-info h2 {
  font-size: var(--fs-small-700);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#projects .projects .project-item .project-info p {
  padding: 5px 0;
  color: rgb(252, 252, 252);
  margin-bottom: -5px;
  font-size: var(--fs-small-500);
}
#projects .projects .project-item .project-info .code-stack {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  align-items: center;
}
#projects .projects .project-item .project-info .code-stack .tech-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}
#projects .projects .project-item .project-info .code-stack .tech-stack ul {
  margin-top: 0;
}
#projects .projects .project-item .project-info .code-stack .tech-stack ul li {
  font-weight: 700;
}
#projects .projects .project-item .project-info .code-stack img {
  width: 35px;
  height: auto;
}
#projects .projects .project-item .project-info .code-stack a {
  font-size: var(--fs-small-500);
  color: rgb(252, 252, 252);
}
#projects .projects .project-item .project-img {
  position: relative;
  overflow: hidden;
  flex-basis: 50%;
  height: 300px;
}
#projects .projects .project-item .project-img img {
  transition: 0.3s ease transform;
  scale: 1.27;
}
#projects .projects .project-item .project-img .task-platform {
  scale: 1.4;
}
#projects .projects .project-item .project-img:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.8;
  background-image: linear-gradient(60deg, #3b495b 0%, #29323c 100%, #3a454f 80%);
}
#projects .projects .project-item:first-child {
  margin: 0 auto;
}

@media only screen and (min-width: 48rem) {
  #projects .projects {
    padding-bottom: 100px;
  }
  #projects .projects .all-projects {
    min-height: initial;
    align-items: center;
  }
  #projects .projects .all-projects .project-item {
    flex-direction: row;
    margin: 0;
    border-radius: 0;
    max-width: initial;
    width: 96%;
    height: 258px;
  }
  #projects .projects .all-projects .project-item .project-info {
    height: 100%;
  }
  #projects .projects .all-projects .project-item .project-info h2 {
    font-size: var(--fs-large-300);
  }
  #projects .projects .all-projects .project-item .project-info p {
    font-size: var(--fs-small-450);
  }
  #projects .projects .all-projects .project-item .project-img {
    height: 100%;
  }
  #projects .projects .all-projects .project-item .project-img img {
    scale: 1;
  }
  #projects .projects .all-projects .project-item .project-img:after {
    z-index: auto;
  }
  #projects .projects .all-projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 75rem) {
  #projects .projects .all-projects .project-item {
    width: 100%;
    height: 340px;
  }
  #projects .projects .all-projects .project-item .project-info {
    padding: 30px;
    gap: 5px;
  }
  #projects .projects .all-projects .project-item .project-info h2 {
    font-size: var(--fs-large-400);
  }
  #projects .projects .all-projects .project-item .project-info p {
    font-size: var(--fs-small-600);
  }
  #projects .projects .all-projects .project-item .project-info .code-stack a {
    font-size: var(--fs-small-700);
  }
  #projects .projects .all-projects .project-item .project-img img {
    scale: 1.22;
  }
}
#contact .contact-items {
  max-width: 400px;
  width: 100%;
  gap: 20px;
}
#contact .contact-items .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s ease box-shadow;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgb(81, 93, 99);
  padding: 10px;
  padding-bottom: 15px;
  width: 80%;
  text-align: center;
}
#contact .contact-items .contact-item .icon {
  margin-bottom: 5px;
}
#contact .contact-items .contact-item .icon svg {
  width: 100%;
  height: 100%;
}
#contact .contact-items .contact-item .contact-info h2 {
  margin-bottom: 8px;
  font-size: var(--fs-large-300);
}
#contact .contact-items .contact-item .contact-info a {
  font-size: var(--fs-small-600);
}
#contact .contact-items .contact-item:hover {
  box-shadow: 0 0 3px 0 rgb(81, 93, 99);
}

@media only screen and (min-width: 48rem) {
  #contact .contact {
    min-height: 20vh;
  }
  #contact .contact .contact-items {
    flex-direction: row;
    justify-content: center;
    margin: 0;
    width: 100%;
    gap: 30px;
    max-width: initial;
  }
  #contact .contact .contact-items .contact-item {
    flex-direction: row;
    padding: 15px;
    width: 29%;
  }
  #contact .contact .contact-items .contact-item .icon {
    margin-bottom: 0;
    margin-right: 4px;
  }
  #contact .contact .contact-items .contact-item .contact-info {
    padding-left: 15px;
    width: 100%;
    text-align: left;
    word-break: break-all;
    width: max-content;
  }
  #contact .contact .contact-items .contact-item .tel-info {
    position: relative;
    right: 14px;
  }
  #contact .contact .contact-items .contact-item .address-info {
    position: relative;
    right: 8px;
  }
}
#footer {
  background-image: linear-gradient(60deg, #3b495b 0%, #29323c 100%, #3a454f 80%);
}
#footer .footer {
  padding: 50px 0 10px;
  min-height: 200px;
}
#footer .footer .brand h2 {
  color: rgb(252, 252, 252);
  font-size: var(--fs-large-400);
}
#footer .footer .brand h2 span:nth-child(2) {
  margin-left: 7px;
}
#footer .footer .brand h2 span {
  color: rgb(236, 141, 7);
}
#footer .footer h3 {
  margin: 20px 0 20px;
  letter-spacing: var(--fs-small-300);
  color: rgb(252, 252, 252);
  font-size: var(--fs-small-700);
}
#footer .footer .social-icon {
  margin-bottom: 30px;
}
#footer .footer .social-icon .social-item {
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
#footer .footer .social-icon .social-item:hover svg {
  filter: grayscale(0);
}
#footer .footer .social-icon .social-item svg {
  filter: grayscale(1);
  transition: 0.3s ease filter;
}

@media only screen and (min-width: 48rem) {
  #footer .footer .brand h2 {
    font-size: var(--fs-large-500);
  }
}
#header {
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: auto;
}
#header .header {
  min-height: auto;
  transition: 0.3s ease background-color;
}
#header .header .nav-bar {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  padding: 0 20px;
}
#header .header .nav-bar .brand h1 {
  margin-bottom: 0;
  padding-right: 10px;
  font-weight: 600;
  color: rgb(252, 252, 252);
  font-size: var(--fs-small-600);
}
#header .header .nav-bar .brand h1 span:nth-child(2) {
  margin-left: 7px;
}
#header .header .nav-bar .nav-list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 100%;
  transition: 0.5s ease left;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-color: rgb(31, 30, 30);
}
#header .header .nav-bar .nav-list ul a {
  display: block;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: var(--fs-small-300);
  color: rgb(252, 252, 252);
  font-size: var(--fs-large-400);
  font-weight: 500;
}
#header .header .nav-bar .nav-list ul a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: 0.3s ease letter-spacing;
  z-index: -1;
  letter-spacing: 50px;
  color: rgba(240, 248, 255, 0.021);
  font-size: 8rem;
  content: attr(data-after);
}
#header .header .nav-bar .nav-list ul li:hover a {
  color: rgb(236, 141, 7);
}
#header .header .nav-bar .nav-list ul li:hover a::after {
  transform: translate3d(-50%, -50%, 0) scale(1);
  letter-spacing: initial;
}
#header .header .nav-bar .nav-list .active {
  left: 0;
}
#header .header .nav-bar .nav-list .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  z-index: 100;
  margin-right: -6px;
  border: 3px solid rgb(252, 252, 252);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
#header .header .nav-bar .nav-list .hamburger .bar {
  z-index: -1;
  background-color: rgb(252, 252, 252);
  width: 30px;
  height: 2px;
}
#header .header .nav-bar .nav-list .hamburger .bar::after, #header .header .nav-bar .nav-list .hamburger .bar::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
  transition-property: top, bottom;
  background-color: white;
  content: "";
}
#header .header .nav-bar .nav-list .hamburger .bar::after {
  top: 8px;
}
#header .header .nav-bar .nav-list .hamburger .bar::before {
  bottom: 8px;
}
#header .header .nav-bar .nav-list .hamburger::after {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgb(252, 252, 252);
  animation: hamburger-puls 1s ease infinite;
  content: "";
}
#header .header .nav-bar .nav-list .active .bar::before {
  bottom: 0;
}
#header .header .nav-bar .nav-list .active .bar::after {
  top: 0;
}

@keyframes hamburger-puls {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
@media only screen and (min-width: 75rem) {
  #header .header .nav-bar {
    padding: 0 20px;
  }
  #header .header .nav-bar .brand h1 {
    font-size: var(--fs-large-400);
  }
  #header .header .nav-bar .nav-list .hamburger {
    display: none;
  }
  #header .header .nav-bar .nav-list ul {
    display: block;
    position: initial;
    background-color: transparent;
    width: fit-content;
    height: auto;
  }
  #header .header .nav-bar .nav-list ul li {
    display: inline-block;
  }
  #header .header .nav-bar .nav-list ul li a {
    font-size: var(--fs-small-600);
  }
  #header .header .nav-bar .nav-list ul a::after {
    display: none;
  }
}
.tools {
  display: flex;
  gap: 2px;
  margin: 3px 0 0 15px;
  list-style: circle;
  font-size: var(--fs-small-500);
}
.tools li {
  padding: 4px 0;
}
.tools.tech-info {
  margin-top: 10px;
  gap: 13%;
  font-size: var(--fs-small-500);
  text-align: center;
  flex-wrap: wrap;
}

.main-info {
  font-weight: 700;
}

b {
  font-weight: 700;
}

.title-comm {
  margin-bottom: 30px;
}
.title-comm h1 {
  margin-bottom: 0;
}

@media only screen and (min-width: 48rem) {
  .tools {
    font-size: var(--fs-small-500);
  }
  .tools.tech-info {
    gap: 21px;
  }
  .title-comm {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 75rem) {
  .tools {
    font-size: var(--fs-small-500);
  }
  .tools.tech-info {
    font-size: var(--fs-small-700);
    gap: 25px;
  }
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.section-container {
  flex-direction: column;
  margin: 0 auto;
  max-width: 1200px;
  padding: 100px 20px 100px;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-jc-fs {
  justify-content: flex-start;
}
.flex-ai-c {
  align-items: center;
}
.flex-ai-s {
  align-items: start;
}
.flex-fd-c {
  flex-direction: column;
}
.flex-fd-c-r {
  flex-direction: column-reverse;
}
.flex-fd-r {
  flex-direction: row;
}
.flex-fw-w {
  flex-wrap: wrap;
}
.flex-ff-c {
  flex-flow: column;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}

.pointer {
  cursor: pointer;
}

.m-auto {
  margin: 0 auto;
}

.section-title {
  margin-bottom: 18px;
  letter-spacing: var(--fs-small-300);
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-size: var(--fs-large-500);
  font-weight: 300;
  text-align: center;
}
.section-title span {
  color: rgb(236, 141, 7);
}

@media only screen and (min-width: 48rem) {
  .section-title {
    font-size: var(--fs-large-600);
  }
}

/*# sourceMappingURL=style.css.map */
