@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;1,100&display=swap');

/*Colors*/
:root {
  --color-accent-light: #414141;
  --color-accent-dark: #943594;
  --color-secondary: #ccc;
  --color-opposite: #fff;

  --font-size-default: 15px;
  --font-size-lg: 25px;

  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-default: var(--font-weight-regular);

  --border-color-default: var(--color-secondary);
  --border-color-accent: var(--color-accent-dark);

  --bg-color-default: #fff;
  --bg-color-dark: #2c2c2c;
  --bg-color-accent--lignt: var(--color-accent-light);
  --bg-color-accent--dark: var(--color-accent-dark);

  --transition-duration: .2s;
  --transition-timing-function: linear;
  --transition-delay: 0s;

  --negative-multiplier: -1;

  --gradient-default: linear-gradient(90deg, var(--color-accent-light) 0%, var(--color-accent-dark) 100%);
}

/*Colors end*/

/*Estilos Generales*/

* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--font-size-default);
  color: var(--text-color-default);
}

h2 {
  text-shadow: 1px 1px 2px #797979;
  color: var(--gradient-default);
}

#navbar {
  background: var(--gradient-default);
  color: white;
  position: sticky;
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btnForm {
  background-color: var(--color-opposite);
  box-shadow: 2px 3px 3px #c6c6c6;
}

.img-form {
  width: 32px;
  height: 32px;
}

.card_servicios {
  border: 0, 5px solid;
  border-radius: 15px;
  box-shadow: 5px 10px 8px #c6c6c6;
  background-color: #f0f0f070;
}

.card_servicios:hover {
  transform: scale(1.10);
  transition: 1s;
  transition-timing-function: ease-in;
}

li {
  list-style: none;
}

.logo_footer {
  width: 32px;
  height: 32px;
}

.footer-link {
  text-decoration: none;
  color: white;
}

#footer {
  background-color: var(--gradient-default);
}

/*Back to top button*/
#back-to-top-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
}

#back-to-top-button.show {
  display: block;
}

/*Back to top button*/

/*Estilos Generales Fin*/

/*Waves*/
.header {
  position: relative;
  text-align: center;
  /*background: linear-gradient(60deg, rgb(73, 73, 73) 0%, rgb(0, 0, 0) 100%);*/
  background: var(--gradient-default);
  color: white;
}

.logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

/* Animation */

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}
/*Waves end*/
