html{
  font-size: 20px;
}

.logo{
  height: 2.5rem;
  width: 12.5rem;
}

.block-footer .logo{
  height: 1.5rem;
  width: 7.5rem;
  margin-bottom: .25rem;
}

.block-hero{
  background: #fff;
}

.block-explanation{
  background: #F0F7F1
}

.block-servicios{
  background: #e0ece2;
}

.block-contacto{
  background: #39B54A url(img/contact-bg.png) no-repeat center center;
  background-size: contain
}

.block-footer{
  background: #000;
}

.img-cont-stack{
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);

  &::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF6019;
    border-radius: 7.5px;
    transform: rotate(-2deg);
    z-index: 1;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

  img{
    position: relative;
    z-index: 3;
  }
}

.divider{
  height: 5rem;
  background: var(--from);

  &:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--to);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
}

.card{
  border-radius: .5rem;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  overflow: hidden;

  &.alt{
    background-color: #F0F7F1;
    box-shadow: none;
  }
}

.title-pill{
  display: inline-block;
  padding: .5rem 1rem;
  background: rgba(0,0,0,0.1);
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  text-transform: uppercase;

  &.neg{
    color: #fff;
    background: rgba(255,255,255,0.2);
  }
}

.map{
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 1rem;

  filter:grayscale(100);
  mix-blend-mode: screen;

  &:hover{
    filter:grayscale(0);
    mix-blend-mode: normal;
  }
}

.big{
  font-size: 1.5rem;
  font-weight: 500;
  display: block
}

.text-primary{
  color: #39B54A !important;
}

.btn-primary{
  background-color: #39B54A;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;

  &:hover{
    background-color: #FF6019;
    color: #fff;
  }
}

.nav-link{
  color: #000 !important;
  transition: color 0.3s ease;

  &:hover{
    color: #39B54A !important;
  }
}

a{
  color: #39B54A;
  transition: color 0.3s ease;

  &:hover{
    color: #00A0C9;
  }
}

.floating-link{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
  z-index: 1000;
  transition: .1s ease all;
  border: 2px solid #fff;

  &:hover{
    color: #fff;
    transform: scale(1.25);
  }

  i{
    font-size: 1.5rem;
  }
}