body {
  margin: 0;
  font:normal 85% Arial, Helvetica, sans-serif;


}

svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.containers {
  display: inline-block;
  position: fixed;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.home {
    background: #5ececf url('../img/bg-home.jpg') no-repeat top right;
    background-size: contain;
}

.home h1{
    color: #000000;
    text-shadow: 2px 2px 0 #bcbcbc, 4px 4px 0 #9c9c9c;
}

.vagas {
    margin-top:40px;
    margin-bottom:40px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    padding-top:5px;
    background-color: #f8f8f8;
}

.margin-menu{
    margin-bottom: 50px;
}

.testimonials img{
    max-width: 150px;
}

.empresas{
    margin-top: 40px;
}

.container {
  padding-bottom: 50px;
}

.fix-bottom {
  position: fixed;
  bottom: 0;
  display: block;
  width: 100%;
}

@-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-250px * 7));
              transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-250px * 7));
              transform: translateX(calc(-250px * 7));
    }
  }

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 960px;
  }
  .slider::before, .slider::after {
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: -webkit-box;
    display: flex;
    width: calc(250px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 250px;
  }
  