body {
  font-family: 'Lato';
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Futura';
}
.dummy-wrapper {
    margin-top: 100%;
}
.gear-wrapper {
    position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.gear{
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  background: #e0a11b;
  border-radius: 50%;
  animation-name: spin;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.gear .center{
  position: absolute;
  top: 12.5%;
  left: 12.5%;
  z-index: 10;
  width: 75%;
  height: 75%;
  background: #fff;
  border-radius: 50%;
}

.tooth{
  position: absolute;
  top: -10%;
  left: 37.5%;
  z-index: 1;
  width: 25%;
  height: 120%;
  background:#e0a11b;
  border-radius: .3rem;
}

.tooth:nth-child(2){
  transform: rotate(45deg);
}

.tooth:nth-child(3){
  transform: rotate(90deg);
}

.tooth:nth-child(4){
  transform: rotate(135deg);
}
.gear-box-end {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-left: -3%;
    z-index: 99;
}
.gear-box-start {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    margin-right: -3%;
    z-index: 99;
}
@media (min-width: 767px) {
    .gear-text {
        font-size: calc(1.3rem + .6vw) !important;
    }   
}
.gear-text {
    font-size: 0.9rem;
    font-weight: bold;
}
.bg-factory-red {
    background-color: #d73f23;
}
.bg-factory-yellow {
    background-color: #e0a11b;
}
.bg-factory-cyan {
    background-color: #338b8c;
}
.bg-factory-brown {
    background-color: #4a3529;
}
.text-factory-brown {
    color: #4a3529;
}
@media (min-width: 1200px) {
.divided-section {
    margin-top: -4%;
}
}
.text-cyan {
    color: #338b8c
}