@font-face {
  font-family: "Gotham";
  src: url("./GothamPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
/**/
/**/
/**/
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**/
html, body {
  font-family: "Montserrat", sans-serif;
  font-family: "Gotham", sans-serif, Verdana;
  font-weight: 700;
  font-display: block;
  font-size: 12px;
  text-rendering: optimizeSpeed;
  background: #7095c3;
  color: #F7F7F7;
  user-select: none;
  overflow-x: hidden;
}

h1,
h2 {
  position: relative;
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  h1,
h2 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  h1,
h2 {
    font-size: 60px;
  }
}

h2 {
  letter-spacing: -2px;
}

/**/
.particles {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.particles::before {
  content: "";
  position: absolute;
  top: 0;
  width: 75px;
  height: 100%;
  background: rgba(49, 0, 130, 0.175);
  animation: bg-l 10s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .particles::before {
    width: 100px;
    background: rgba(49, 0, 130, 0.1);
  }
}
@media (min-width: 1024px) {
  .particles::before {
    width: 125px;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #F7F7F7;
  filter: blur(1px);
}

.control {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  right: 0;
  bottom: 40px;
  width: 100%;
  height: auto;
  z-index: 1000;
}
@media (min-width: 768px) {
  .control {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    width: auto;
    height: 160px;
    right: 80px;
    bottom: calc(50% - 80px);
  }
}
.control__item {
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border-radius: 50%;
  opacity: 0.4;
  background: #F7F7F7;
  transition: 0.45s ease;
  cursor: pointer;
}
.control__item:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .control__item {
    width: 8px;
    height: 8px;
    margin-top: 12px;
    margin-left: 0;
  }
}

.background {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  width: 0;
  height: 0;
  top: -100%;
  left: 0%;
  transition: 0.6s ease-in;
  visibility: hidden;
  opacity: 1;
}

.header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100vmax;
  top: 0;
  left: 0;
  background-color: #7095c3;
  background-image: url("../img/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  visibility: visible;
  opacity: 1;
  animation: zoom 10s ease infinite;
}
@media (min-width: 768px) {
  .header {
    height: 100vh;
    min-height: 500px;
  }
}

/**/
.header__logo {
  position: absolute;
  height: 75px;
  width: auto;
  object-fit: contain;
  margin: 30px;
  z-index: 10000;
}
@media (min-width: 768px) {
  .header__logo {
    margin: 40px 80px;
  }
}
.header__info {
  position: absolute;
  left: 30px;
  top: 45%;
}
@media (min-width: 768px) {
  .header__info {
    top: 40%;
    left: 92px;
  }
}

.portfolio__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100vmax;
  padding: 30px;
  background-color: #7095c3;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  animation: zoom 10s ease infinite;
}
.portfolio__item:nth-of-type(3) {
  background-image: url("../img/2.jpg");
}
.portfolio__item:nth-of-type(4) {
  background-image: url("../img/3.jpg");
}
.portfolio__item:nth-of-type(5) {
  background-image: url("../img/4.jpg");
}
.portfolio__item:nth-of-type(6) {
  background-image: url("../img/5.jpg");
}
.portfolio__item:nth-of-type(7) {
  background-image: url("../img/6.jpg");
}
@media (min-width: 768px) {
  .portfolio__item {
    height: 100vh;
    min-height: 520px;
    padding: 40px 80px;
  }
}
.portfolio__left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  width: auto;
  height: 100%;
  position: relative;
}
.portfolio__info {
  width: 100%;
  max-width: 450px;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: -0.4px;
}

/**/
/*Estados*/
.is-active {
  transform: scale(1.3);
  opacity: 1;
  background: #F7F7F7;
}

.bg-active {
  width: 100%;
  height: 100vmax;
  top: 0%;
  left: 0%;
  visibility: visible;
  opacity: 1;
  transition: 0.6s ease-in;
}
@media (min-width: 768px) {
  .bg-active {
    height: 100vh;
  }
}

.menu-active {
  transform: translateY(0vh);
  transition: 0.5s ease;
}

@keyframes move {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 0.1;
  }
  100% {
    transform: translateX(45vw);
    opacity: 0;
  }
}
@keyframes bg-l {
  0% {
    left: 10%;
  }
  25% {
    left: 12%;
  }
  70% {
    left: 15%;
  }
  100% {
    left: 20%;
  }
}
@keyframes zoom {
  0%, 30.5%, 31.5%, 32.5%, 34%, 100% {
    background-color: #7095c3;
    background-position: center center;
  }
  31%, 32%, 33% {
    background-color: #310082;
    background-position: right bottom;
  }
}

.social-icons {
  text-align: right;
}

.icon {
    float: right;
    position: relative;
    width: 60px;
    height: 0;
    padding-bottom: 60px;
    margin: 40px 0 0 0;
}

@media all and (min-width: 640px) {
  .icon {
    width: 9%;
    padding-bottom: 9%;
  }
}

.icon a {
    display: block;
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 4px;
    background-color: #fff;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .2s ease-out;
}

.icon:last-of-type {
  margin-right: 0;
}

.icon a:hover {
  background-color: rgb(245, 0, 0);
  transition: all .2s ease-out;
}

.icon__name {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -7px;
    color: #fff;
    font-size: 13px;
    text-align: center;
  
    transition: all .3s ease-out;
    opacity: 0;
    filter: blur(25px);
    transform: translateZ(0);
    will-change: transform;
}

  
.icon__name .icon:hover {
  transition: all .3s ease-out;
  opacity: 1;
  filter: blur(0);
}

.icon--linkedin a {
  z-index: 9999;
  background-color: #007fb1;
  background-image: url('../img/linkedin.svg');
}