@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap");
/* Globals */
* {
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  font-size: 1.1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  padding: 0;
  list-style: none;
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 500;
}

*::-webkit-scrollbar {
  width: 0.6vw;
  min-width: 6px;
  max-width: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 20px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #444;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
  box-sizing: border-box;
}
/* !Globals */
.header__content,
#servicios,
#portfolio,
#nosotros {
  text-align: center;
}
.loadPage {
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
	flex-direction:column;
	z-index: 1000000;
}
.loadPage.active {
  display: flex;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #4582ec;
  border-radius: 50%;
  -o-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -moz-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #4582ec transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -o-animation-delay: -0.45s;
  -moz-animation-delay: -0.45s;
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -o-animation-delay: -0.3s;
  -moz-animation-delay: -0.3s;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -o-animation-delay: -0.15s;
  -moz-animation-delay: -0.15s;
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

/* Nav */
.navbar {
  transition: height 0.5s;
  transition: background 0.5s;
  z-index: 10000;
}
.navbar.fixed {
  background-color: #4582ec55;
  backdrop-filter: blur(5px);
}
.navbar-brand {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
}
.nav-logo {
  width: 60px;
  transition: width 0.5s;
}
.navbar.fixed .nav-logo {
  width: 40px;
}
.navbar-brand:hover .nav-logo {
  -o-animation-name: animation;
  -o-animation-timing-function: cubic-bezier(0.445, 1.495, 0.62, 0.915);
  -o-animation-duration: 1s;

  -moz-animation-duration: 1s;
  -moz-animation-name: animation;
  -moz-animation-timing-function: cubic-bezier(0.445, 1.495, 0.62, 0.915);

  -webkit-animation-name: animation;
  -webkit-animation-timing-function: cubic-bezier(0.445, 1.495, 0.62, 0.915);
  -webkit-animation-duration: 1s;

  animation-name: animation;
  animation-timing-function: cubic-bezier(0.445, 1.495, 0.62, 0.915);
  animation-duration: 1s;
}
/* !Nav */

/* Nav Button */
#nav-btn {
  display: none;
  width: 35px;
  height: 31px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  right: 15px;
  top: 15px;
  background-color: transparent;
  outline: none;
  border: none;
  z-index: 11100;
}
#nav-btn span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: 10;
}
#nav-btn span:nth-child(1) {
  top: 0px;
}
#nav-btn span:nth-child(2) {
  top: 12px;
}
#nav-btn span:nth-child(3) {
  top: 24px;
}
#nav-btn.open span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
#nav-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#nav-btn.open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* Nav Button */
/* Header */
.header {
  height: 100vh;
  min-height: 620px;
  background-image: url(../img/pen-gad3fe0df4_1920.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.header__background {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(69, 130, 236);
  background: -moz-linear-gradient(
    135deg,
    rgba(69, 130, 236, 0.5) 0%,
    rgba(135, 167, 223, 0.5) 100%
  );
  background: -webkit-linear-gradient(
    135deg,
    rgba(69, 130, 236, 0.5) 0%,
    rgba(135, 167, 223, 0.5) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(69, 130, 236, 0.5) 0%,
    rgba(135, 167, 223, 0.5) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4582ec",endColorstr="#87a7df",GradientType=1);
}
.header__background > img {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.header__content {
  padding-top: 7rem;
  position: relative;
  z-index: 100;
}
.header__content > h2 {
  font-weight: 500;
}
.header__content > a > img {
  width: 60px;
}
/* !Header */

/* Phone Slider */
.phone {
  width: 80vw;
  height: 160vw;
  max-width: 320px;
  max-height: 640px;
  background-color: #fff;
  box-sizing: border-box;
  border: 0.5rem solid #000;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  position: relative;
  top: 2rem;
  margin: auto;
}
.phone::before {
  content: "";
  display: block;
  width: 50%;
  height: 1rem;
  background-color: #000;
  border-radius: 0 0 0.5rem 0.5rem;
  position: absolute;
  top: -1px;
}
.phone::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000;
  width: 0.8rem;
  height: 15vw;
  max-height: 5rem;
  top: 5rem;
  left: 100%;
  border-radius: 5px;
}
/* !Phone Slider */
/* PORTFOLIO */
.project.card {
  overflow: hidden;
}
.project.card > .card-img-top {
  height: 100%;
  height: 70vw;
  max-height: 300px;
  object-fit: cover;
  object-position: center !important;
  transition: width 1s;
}
.project.card:hover > .card-img-top {
  width: 110%;
}
.card-body {
  z-index: 100 !important;
}
/* !PORTFOLIO */
/* SERVICES */
.service__logo {
  height: 200px;
}
/* !SERVICES */
/* ABOUT US */
.los-pibes__img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.gears > img {
  width: 100px;
}
.gears > img:nth-child(1) {
  -o-animation-name: barrelRoll;
  -o-animation-duration: 5s;
  -o-animation-timing-function: linear;
  -o-animation-iteration-count: infinite;

  -moz-animation-duration: 5s;
  -moz-animation-name: barrelRoll;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;

  -webkit-animation-name: barrelRoll;
  -webkit-animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;

  animation-name: barrelRoll;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;

  position: relative;
  top: 48px;
  left: 28px;
}
.gears > img:nth-child(2) {
  -o-animation-name: invertBarrelRoll;
  -o-animation-duration: 5s;
  -o-animation-timing-function: linear;
  -o-animation-iteration-count: infinite;

  -moz-animation-duration: 5s;
  -moz-animation-name: invertBarrelRoll;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;

  -webkit-animation-name: invertBarrelRoll;
  -webkit-animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;

  animation-name: invertBarrelRoll;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
}
/* !ABOUT US */

/* Clients */
.client__logo {
  max-height: 125px;
  max-width: 45vw;
  filter: grayscale(1);
  opacity: 0.5;
}
.client__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
/* !Clients */
/* Contact */
.contact-ctn {
  color: #fff;
  background: rgb(69, 130, 236);
  background: -moz-linear-gradient(
    0deg,
    rgba(69, 130, 236, 1) 0%,
    rgba(133, 163, 215, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(69, 130, 236, 1) 0%,
    rgba(133, 163, 215, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(69, 130, 236, 1) 0%,
    rgba(133, 163, 215, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4582ec",endColorstr="#85a3d7",GradientType=1);
}

.contact-top {
  height: 50px;
  background: rgba(133, 163, 215, 1) 100%;
  border-radius: 50% 50% 0 0;
}
/* !Contact */
.copyright {
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
	.submit-cont{
		flex-direction: column-reverse !important;
	}
}
@media screen and (max-width: 980px) {
  .nav-ctn {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 70vw;
    height: 100vh;
    width: 0px;
    background-color: #4582ec;
    transition: width 0.2s;
    z-index: 11000;
  }
  .nav-ctn.active {
    width: 300px;
  }
  .nav-ctn > ul {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
  }
  .nav-ctn > ul > li,
  .nav-ctn > ul > li > a {
    font-size: 1.5rem;
  }
  .nav-ctn.open {
    width: 300px;
  }
  #nav-btn {
    display: block;
  }
  .overlay {
    width: 0vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    z-index: 10100;
    transition: background 0.2s;
  }
  .overlay.active {
    width: 100vw;
    background-color: #000000aa;
    z-index: 10100;
  }
}
@media screen and (min-width: 576px) {
  .project.card > .card-img-top {
    max-height: 150px;
  }
}

@media screen and (min-width: 768px) {
  #servicios,
  #portfolio,
  #nosotros {
    text-align: start;
  }

  .project.card > .card-img-top {
    max-height: 200px;
  }
}
@media screen and (min-width: 992px) {
  .project.card > .card-img-top {
    max-height: 150px;
  }
}
/* Animation */
@-o-keyframes animation {
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes animation {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes animation {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animation {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes barrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes barrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes barrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-o-keyframes barrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes invertBarrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@-webkit-keyframes invertBarrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@-moz-keyframes invertBarrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@-o-keyframes invertBarrelRoll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@-webkit-keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
