/**************************************************/
/* load */
/**************************************************/
#container_loader {
  margin-top: 0px;
  background: white;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'  viewBox='0 0 90 100' style='enable-background:new 0 0 90 100;' xml:space='preserve'><style type='text/css'> .st0{fill:%239B9A9A;} .st1{fill:%23FFFFFF;} .st2{fill:%23D8D8D8;} .st3{fill:%23585856;}</style><g><polygon class='st0' points='18.2,33.67 45.9,17.68 45.92,17.69 45.92,49.69 18.22,65.68 18.2,65.67 	'/>	<polygon class='st1' points='45.92,17.69 45.93,17.68 73.63,33.67 73.63,65.67 73.62,65.68 45.92,49.69 	'/>	<polygon class='st1' points='45.92,81.68 18.22,65.68 45.92,49.69 73.62,65.68 	'/>	<polygon class='st0' points='45.92,81.68 73.63,65.67 73.63,33.67 85.14,27.03 85.14,72.31 45.92,94.96 	'/>	<polygon class='st2' points='18.2,33.67 18.2,65.67 45.92,81.68 45.92,94.96 6.7,72.31 6.7,27.03 	'/>	<polygon class='st3' points='73.63,33.67 45.92,17.67 18.2,33.67 6.7,27.03 45.92,4.39 85.14,27.03 	'/></g></svg>");
  display: flex;
  width: 100px;
  height: 115px;
  position: relative;
  -webkit-animation: goDownUp 1s ease infinite alternate;
          animation: goDownUp 1s ease infinite alternate;
}

@-webkit-keyframes goDownUp {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(50px);
  }
}

@keyframes goDownUp {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(50px);
  }
}
#container_cubo {
  display: flex;
  margin: auto;
  perspective: 2000px;
  perspective-origin: 0px -700px;
}

.cube {
  width: 25px;
  height: 25px;
  position: relative;
  transform-style: preserve-3d;
  animation: girar 5s infinite linear reverse;
}

@-webkit-keyframes girar {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes girar {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.face {
  position: absolute;
  height: 100%;
  width: 100%;
}

#sfront {
  background: linear-gradient(to bottom, #f3d73b, yellow);
  transform: translateZ(12.5px);
}

#sright {
  background: #f3d73b;
  transform: translateX(12.5px) rotateY(90deg);
}

#sback {
  background: linear-gradient(to bottom, #f3d73b, yellow);
  transform: translateZ(-12.5px);
}

#sleft {
  background: linear-gradient(to bottom, #f3d73b, yellow);
  transform: translateX(-12.5px) rotateY(90deg);
}

#stop {
  background: linear-gradient(to bottom right, #E19605, yellow);
  transform: translateY(-12.5px) rotateX(90deg);
}

#sbottom {
  background: yellow;
  transform: translateY(12.5px) rotateX(90deg);
}

/**************************************************/
/* sections */
/**************************************************/
section {
  padding-top: 0px;
  background-color: #DBDBDB;
}

.container-scroll {
  position: relative;
}

#Inicio .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/bg-inicio.jpg);
}

#Nosotros .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/nosotros/bg-nosotros.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

#Servicios .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/servicios/bg-servicios.jpg);
  background-size: cover;
  background-position: bottom;
}

#Clientes .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/servicios/bg-servicios.jpg);
  background-size: cover;
  background-position: bottom;
}

#Metodo .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/metodo/bg-metodo.jpg);
  background-size: cover;
}

#Portafolio .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/portfolio/bg-portafolio.jpg);
  background-size: cover;
}

#Contacto .bg-title {
  background-image: linear-gradient(rgba(251, 191, 36, 0.9), rgba(252, 211, 11, 0.9)), url(../img/contacto/bg-contacto.jpg);
  background-size: cover;
  background-position: top;
}

/**************************************************/
/* slide */
/**************************************************/
.slideshow {
  width: 100%;
  position: relative;
}

.slider li, ul {
  width: 100%;
}

.slider li {
  overflow: hidden;
}

.slider li img {
  width: 100%;
}

.slider .caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 15px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.slider .caption h1 {
  font-size: 50px;
}

.slider .caption p {
  margin-top: 10px;
  font-size: 20px;
}

.slideshow .pagination {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.slideshow .pagination li {
  display: inline-block;
  margin: 2px 5px;
  color: #858585;
  cursor: pointer;
}

.left, .right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.slide-circle {
  height: 20px;
  width: 20px;
  background-color: #585856;
  border-radius: 50%;
  display: inline-block;
}

/**************************************************/
/* menu */
/**************************************************/
.navbar {
  background-color: #aaa9a9;
  color: #141414;
  width: 100%;
  height: 80px;
  line-height: 80px;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo-m {
  margin-left: 0px;
}

.navbar a {
  text-decoration: none;
}

.menu ul {
  list-style: none;
  height: inherit;
  line-height: inherit;
}

.menu ul li {
  display: inline-block;
}

.menu ul li a {
  display: block;
  text-align: center;
  padding: 0 30px;
}

.menu .active, .menu ul li a:hover {
  background-color: rgba(124, 123, 123, 0.596);
  color: black;
  transition: 0.5s ease-in;
}

.navbar-toggler {
  display: none;
}

/**************************************************/
/* pages */
/**************************************************/
/* intro */
.intro {
  margin-top: 10px;
  background-color: #444444;
}

/* nosotros */
ul.costum-bullet li {
  position: relative;
  padding-left: 1em;
}

ul.costum-bullet > li::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2'><path stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7' /></svg>");
  background-repeat: no-repeat;
  background-position: left top;
  height: 10px;
  width: 10px;
  margin-left: -15px;
  margin-top: 6px;
  position: absolute;
}

/* contacto */
.form-outer {
  width: 100%;
  overflow: hidden;
}

.form-outer form {
  display: flex;
  width: 400%;
}

.form-outer form .page {
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}

/* progress */
.progress-bar .step {
  position: relative;
  text-align: center;
  width: 100%;
}

.progress-bar .step:last-child .bullet::before,
.progress-bar .step:last-child .bullet::after {
  display: none;
}

.progress-bar .step .bullet {
  position: relative;
  border: 2px solid #858585;
  border-radius: 50%;
  display: inline-block;
  transition: 0.2s;
}

.progress-bar .step .bullet.active {
  background-color: #F9B807;
}

.progress-bar .step .bullet.active:after {
  background-color: #E19605;
  transform: scaleX(0);
  transform-origin: left;
  -webkit-animation: animate 0.3s linear forwards;
          animation: animate 0.3s linear forwards;
}

@-webkit-keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}
.progress-bar .step .bullet::before,
.progress-bar .step .bullet::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100px;
  left: 40px;
  bottom: 12px;
  background-color: #aaa9a9;
}

.progress-bar .step .bullet span {
  position: absolute;
  transform: translateX(-50%);
}

.progress-bar .step .bullet.active span {
  display: none;
}

.progress-bar .step p.active {
  color: black;
  transition: 0.2s linear;
}

.progress-bar .step .chkBox {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  display: none;
}

.progress-bar .step .chkBox.active {
  display: block;
}

/**************************************************/
/* media query */
/**************************************************/
@media (max-width: 768px) {
  .navbar {
    color: #F9B807;
    padding: 0;
    font-weight: 500;
    line-height: 50px;
  }

  .menu {
    position: fixed;
    top: 80px;
    width: 100%;
    padding: 0;
    background-color: #666666;
    max-height: 0;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
  }

  .logo-m {
    margin-left: 18px;
  }

  .open {
    max-height: 100vh;
  }

  .menu ul {
    height: 22rem;
  }

  .menu ul li {
    width: 100%;
    border-bottom: 0.3px solid #585856;
  }

  .menu ul li a {
    padding: 0 30px;
    text-align: left;
  }

  .menu ul li a:hover {
    color: #aaa9a9;
  }

  .navbar-toggler {
    display: block;
    position: absolute;
    height: 40px;
    top: 20px;
    right: 20px;
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    outline: none;
    padding: 0 5px;
    cursor: pointer;
  }

  .navbar-toggler span, .navbar-toggler span::before, .navbar-toggler span::after {
    display: block;
    content: "";
    background-color: #fff;
    height: 3px;
    width: 28px;
    border-radius: 4px;
    transition: all ease-in-out 0.3s;
  }

  .navbar-toggler span::before {
    transform: translateY(-8px);
  }

  .navbar-toggler span::after {
    transform: translateY(5px);
  }

  .open-navbar-toggler span {
    background-color: transparent;
  }

  .open-navbar-toggler span::before {
    transform: translateY(0px) rotate(45deg);
  }

  .open-navbar-toggler span::after {
    transform: translateY(-3px) rotate(-45deg);
  }

  /**************************************************/
  /* slide  */
  .slideshow .pagination {
    display: none;
  }

  .progress-bar .step .bullet::before,
.progress-bar .step .bullet::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 20px;
    left: 40px;
    bottom: 12px;
    background-color: #585856;
  }

  .progress-bar .step .chkBox {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    display: none;
  }
}
@media (min-width: 769px) {
  .menu ul li a {
    min-width: 10px;
    padding: 0 5px;
  }
}
@media (min-width: 900px) {
  .menu ul li a {
    min-width: 12px;
    padding: 0 6px;
  }
}
@media (min-width: 1055px) {
  .menu ul li a {
    min-width: 18px;
    padding: 0 15px;
  }
}
@media (min-width: 1242px) {
  .menu ul li a {
    min-width: 18px;
    padding: 0 25px;
  }
}
@media (min-width: 1300px) {
  .menu ul li a {
    min-width: 20px;
    padding: 0 30px;
  }
}
