@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@500;700&family=Julius+Sans+One&family=Source+Sans+Pro:ital,wght@0,400;0,600;1,200&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-one) var(--color-two);
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background-color: var(--color-one);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-two);
  border-radius: 10px;
}

:root {
  --color-one:#023059;
  --color-two:#f1f1f1;
  --color-three:#adc8d9;
  --color-four:#f2884b;
  --color-five:#0d3c66;
  --color-six:#ffffff;
  --tipo-title: "Julius Sans One", sans-serif;
  --tipo-subtitle:"Archivo Narrow", sans-serif;
  --tipo-text:"Source Sans Pro", sans-serif;
}

body {
  color: var(--color-two);
  font-family: var(--tipo-text);
  position: relative;
  z-index: 2;
  /* cursor: none; */
}

#particles-js{
  background-color: #041830d0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.h1 {
  font-family: var(--tipo-title);
}

.h2, .h3, .h4, .h5, .h6 {
  font-family: var(--tipo-subtitle);
}

li {
  list-style-type: none;
}

.a {
  text-decoration: none;
}

.header .div{
  width: 100%;
  min-height: 5em;
  background-color: var(--color-one);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}

.header .h1 .a {
  color: var(--color-two);
}

.header .img {
  max-width: 60px;
  opacity: 30%;
}

.header .ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.header .li {
  margin: 0 1em;
}

.header .li .a {
  color: var(--color-two);
}

.main {
  text-align: center;
  background-color: #011c4439;
 
}

.circles {
  position: fixed;
  width: 100%;
  height: 100%;
 inset: 0;
  background-color: var(--color-two);
  z-index: -2;
 
  background-color: #000000;
}

.circles .circle {
  position: absolute;
  width: 50%;
  height: 50%;
  filter: blur(20px);
}

.circle .svg {
  width: 15%;
}

.circles .circle1 {
  top: 0%;
  left: 0%;
}

.circle1 .path {
  fill: #2476a9;
}

.circles .circle2 {
  top: 2%;
  right: 15%;
}

.circle2 .path {
  fill: #ff660e;
}

.circles .circle3 {
  bottom: 0%;
  left: 0%;
}

.circle3 .path {
  fill: var(--color-one);
}

.circles .circle4 {
  bottom: 15%;
  right: 0%;
}

.circle4 .path {
  fill: #ff4400;
}

.section {
  width: 100%;
  /* margin: 1em 0; */
  padding-bottom: 2rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

.info {
  padding: 10rem 0;
  -webkit-animation-name: aparecer1;
          animation-name: aparecer1;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.section .h2 {
  font-family: var(--tipo-title);
  font-size: 4rem;
  font-weight: 1000;

}

.section .myLogo {
  width: 70vw;
  min-width: 30rem;
}
.section .h1 .myLogo2{
  display: none;
} 

@-webkit-keyframes aparecer1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes aparecer1 {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.section .ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem;
  min-height: 120px;
}

.section .ul .li {
  margin: 0 1em;
}

.section .ul .a {
  border: 2px solid rgba(2, 48, 89, 0.4352941176);
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.5em 1em;
  color: #f1f1f1;
  transition: all 0.5s ease;
}

.section .ul .a:hover {
  border: 2px solid #3188d4;
  color: var(--color-two);
}

.divider{
  max-width: 90%;
  height: .1rem;
  margin: auto;
  background-color: var(--color-three);
}
.works {
  color: var(--color-six);
  background-color: #010101;
  padding: 5rem 0;
  min-height: 100vh;
}

.works .h2 {
  margin-bottom: 1rem;
}

.section .grid {
  width: 90%;
  margin: 1em 0;
  max-width: 70em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1em;
}

.section .article {
  width: 100%;
  min-height: 20vh;
  background-color: #f1f1f1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section .a {
  width: 100%;
  height: 100%;
}

.section .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section .h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  color: var(--color-two);
  background-color: rgba(50, 54, 79, 0.5);
  font-family: var(--tipo-title);
  font-size: 1.3rem;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateZ(1) scale(1.2);
  transition: all 0.5s ease;
}

.section .article:hover .h4 {
  opacity: 1;
  transform: scale(1);
}

.section .i, section .svg {
  width: 4em;
  height: 4rem;
  color: var(--color-three);
}

.section .i {
  width: 3;
  margin: 2rem;
}

.section .i:hover {
  transform: scale(1.1);
  transition: all 0.5s linear;
}

.about {
  padding: 5rem 0;
}

.about .h2 {
  margin: 1rem;
}

.about .p {
  max-width: 40rem;
  text-align: center;
  margin: 1em 0;
  font-size: 1.5em;
}
.about .subtitle{
  font-size: 2em;
  font-family: var(--tipo-subtitle);
}

.about .rrss {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.about .li {
  margin: 0 1em;
}

.about .svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-three);
  margin: 2rem 0;
  /* background-color: aqua; */
  transition: all .5s ease;
}
.about .svg:hover{
  color: var(--color-two);
}

.tech{
  min-height: 50vh;
  padding: 5rem 0;
}

.footer {
  padding: 3rem 0;
  text-align: center;
}
.tools{
  margin-top: 2rem;
}

@media (max-width: 500px) {
  .section .h2 {
    font-size: 3rem;
  }
  .works {
    padding: 2rem 1rem;
  }
  .about .p {
    padding: 0 1rem;
    font-size: 1rem;
  }
}

@media screen and (max-width:520px) {
  .header .div{
    display: none;
  }
  .myLogo{
    display:none;
  }
  .section .h1 .myLogo2{
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
  .info{
    padding: 4rem 0 3rem 0 ;
  }
  .tech .p{
    padding: 2rem;
  }
  .tech .i{
    margin: 1rem;
  }
  .works{
    padding: 3rem 0;
  }
}