@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
body, html {
  font-family: "Roc Grotesk", sans-serif;
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

.circle {
  position: absolute;
  z-index: 2000;
  mix-blend-mode: difference;
  pointer-events: none;
}
.circle .circle-item {
  display: block;
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-25%, -25%);
}
.circle.hover .circle-item {
  width: 60px;
  height: 60px;
  transform: translate(-25%, -25%);
}

.btn {
  text-transform: uppercase;
  border-radius: 40px;
  border: 1px solid #010101;
  padding: 10px 20px;
}
.btn:hover {
  background: #010101;
  color: #fff;
}

header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  /* logo */
  /* menu */
  /* hamburger */
}
@media (min-width: 768px) {
  header {
    padding: 40px;
  }
}
header .logo-svg {
  width: 120px;
  mix-blend-mode: difference;
  fill: #fff;
}
header .logo-svg .iso {
  width: inherit;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
header .logo-svg .restofword {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
header .logo-svg.animate .iso {
  width: 80px;
  transform: scale(1.6);
  transition: all 0.5s ease-in-out;
}
header .logo-svg.animate .restofword {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .logo-svg:hover .iso {
  width: inherit;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
header .logo-svg:hover .restofword {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
header .menu {
  display: none;
  visibility: hidden;
}
@media (min-width: 768px) {
  header .menu {
    display: flex;
    visibility: visible;
  }
}
header .menu .link {
  padding: 10px 20px;
  color: #010101;
  text-decoration: none;
  text-transform: uppercase;
}
header .menu .link.cta {
  border-radius: 30px;
  border: 1px solid #010101;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
header .menu .link.cta:hover {
  background: #010101;
  color: #fff;
}
header .menu .lang {
  display: flex;
  flex-direction: column;
  text-align: right;
  justify-content: center;
  padding-left: 15px;
}
header .menu .lang .lang-item {
  color: #010101;
  text-decoration: none;
  font-size: 0.8rem;
}
header .menu .lang .lang-item.active {
  font-weight: bold;
}
header .hamburger {
  width: 20px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 768px) {
  header .hamburger {
    display: none;
    visibility: hidden;
  }
}
header .hamburger span {
  width: 100%;
  height: 1px;
  background: #010101;
}

/* menu mobile */
.menu-mobile {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1500;
  padding: 20px;
}
@media (min-width: 768px) {
  .menu-mobile {
    display: none;
    visibility: hidden;
  }
}
.menu-mobile .menu-mobile-bg {
  background: #fafafa;
  border-radius: 50%;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: all 0.5s ease-in-out;
}
.menu-mobile .close-btn {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.menu-mobile .close-btn span {
  height: 1px;
  width: 100%;
  background: #010101;
  display: block;
}
.menu-mobile .close-btn span:nth-of-type(1) {
  transform: rotate(45deg);
}
.menu-mobile .close-btn span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.menu-mobile .menu {
  position: absolute;
  z-index: 1550;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-mobile .menu a {
  color: #010101;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 1rem 0;
  font-weight: 300;
  text-transform: uppercase;
}
.menu-mobile .menu a.cta {
  border-radius: 50px;
  border: 1px solid #010101;
  padding: 10px 20px;
  margin-top: 1rem;
}
.menu-mobile .menu .lang {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  padding-top: 35px;
}
.menu-mobile .menu .lang .lang-item {
  color: #010101;
  text-decoration: none;
  font-size: 1rem;
  padding: 0 15px;
}
.menu-mobile .menu .lang .lang-item.active {
  font-weight: bold;
}
.menu-mobile.show {
  top: 0;
}
.menu-mobile.show .menu-mobile-bg {
  height: 800vh;
  width: 800vh;
}

.subtitle {
  letter-spacing: 2px;
  color: #010101;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "roc-grotesk-wide", sans-serif;
}
.subtitle.s1 {
  font-size: 1.6rem;
  font-weight: 300;
}

.light {
  font-weight: 300;
}

@keyframes arrow-movement {
  0% {
    transform: translate(-50%, 0);
  }
  30% {
    transform: translate(-50%, -20px);
  }
  60% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.cover {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0 20px;
  height: 100vh;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .cover {
    padding: 0 40px;
  }
}
.cover .arrow-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  animation: 4s ease-in-out infinite alternate arrow-movement;
}
.cover .arrow-down img {
  transform: rotate(90deg);
}
.cover .cover-img {
  grid-column: 1/3;
  height: 40vh;
  background-image: url("../pics/foto_cv.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 350px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .cover .cover-img {
    grid-column: 2/3;
    height: 60vh;
  }
}
.cover .cover-info {
  grid-column: 3/7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cover .cover-info .h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .cover .cover-info .h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .cover .cover-info {
    grid-column: 3/6;
  }
  .cover .cover-info .h1 {
    font-size: 4rem;
  }
}
.cover .cover-info .btns-wrap {
  display: flex;
  margin: 0 -5px;
  flex-wrap: wrap;
}
.cover .cover-info .btns-wrap .btn {
  font-family: "Poppins", sans-serif;
  margin: 5px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 1rem;
}

#works {
  padding: 4rem 20px 0;
  /* reverse */
}
@media (min-width: 768px) {
  #works {
    padding: 4rem 40px 0;
  }
}
#works .row {
  border-bottom: 1px solid #eee;
}
#works .img-proj {
  position: relative;
}
#works .img-proj .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: opacity 0.6s ease;
}
#works .img-proj .hover:hover {
  opacity: 0;
}
#works .proj-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}
#works .proj-info .tags {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
#works .proj-info .tags div {
  padding: 0 10px;
}
#works .proj-info .title {
  font-family: "roc-grotesk", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  #works .proj-info .title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  #works .proj-info .title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  #works .reverse {
    flex-direction: row-reverse;
  }
}

#aboutme .item {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
#aboutme .item .txt {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
#aboutme .item .txt span {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 40px;
  border: 1px solid #010101;
}
#aboutme .item .progress-bar {
  width: 100%;
  height: 2px;
  background: #ccc;
}
#aboutme .item .progress-bar span {
  height: 100%;
  background: #010101;
}

#contact {
  padding: 4rem 20px 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  #contact {
    padding: 4rem 40px 1rem;
  }
}
#contact .title {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #contact .title {
    font-size: 2rem;
  }
}
#contact .btn-main {
  text-decoration: none;
  color: #010101;
  border: 1px solid #010101;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 20px 30px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  max-width: 84vw;
}
@media (min-width: 768px) {
  #contact .btn-main {
    font-size: 2rem;
  }
}
#contact .btn-main .arrow {
  stroke: #010101;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  width: 14px;
}
@media (min-width: 768px) {
  #contact .btn-main .arrow {
    width: 28px;
  }
}
#contact .btn-main:hover {
  color: #fff;
  background: #010101;
}
#contact .btn-main:hover .arrow {
  stroke: #fff;
  margin-right: 30px;
}

.end-links {
  padding-top: 3rem;
  padding-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.end-links a {
  text-decoration: none;
  color: #010101;
  font-size: 1.6rem;
  padding: 15px;
}/*# sourceMappingURL=custom.css.map */