html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.box-container,
.img-container {
  width: 100%;
  position: relative;
}

.box-transparent p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #001339;
}

.bg-carton-blue {
  background: url("../assets/blue-BG.png") no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.bg-carton {
  background: url("../assets/grayPaper-BG_02.png");
  padding: 0 40px 20px;
  background-size: cover;
}

#img-one, #box-one {
  animation: opaci 0.8s 0.4s forwards;
  scale: 0.1;
  opacity: 0;
}

.content-projects {
  width: 100%;
  min-height: 455px;
}
.content-projects .project-item {
  animation: clear 1.2s 0.8s forwards;
  transform: translateY(30rem);
  transition: all 0.5s ease;
  scale: 0;
  opacity: 0;
  padding: 0;
}
.content-projects .project-item:hover {
  background: url("../assets/background-hover-btn_1.png");
  background-size: cover;
  padding: 20px;
}
.content-projects .project-item .circule-blue {
  display: flex;
  margin-top: -30px;
  align-items: center;
  justify-content: center;
}

.content-logos {
  background: url("../assets/footer-fondo.png") no-repeat;
  background-size: 100% 100%;
  padding: 20px 60px 20px;
}
.content-logos .logos {
  text-align: center;
}
.content-logos .logos a {
  margin-bottom: 20px;
}

@media (max-width: 767.9px) {
  .bg-carton {
    padding: 40px 40px 140px;
  }
  #box-one {
    text-align: center;
  }
  .logos a {
    margin-bottom: 20px;
  }
}
@keyframes clear {
  to {
    opacity: 1;
    scale: 1;
    transform: none;
  }
}
@keyframes opaci {
  to {
    opacity: 1;
    scale: 1;
  }
}/*# sourceMappingURL=style.css.map */