.earth {
    width: 500px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;

  box-shadow: 0 0 20px 20px #000 inset, 0 0 20px 2px #000;
}

.earth > div {
  width: 200%;
  height: 100%;
  animation: rotation 30s linear alternate infinite;
  background: url(/wp-content/uploads/2018/04/world-map.jpg);
  background-size: cover;
}

@keyframes spin {
  to {
    transform: translateX(-50%);
  }
}

@keyframes rotation {
  0% {
    background-position: 0px -90px;
	}
	100% {
    background-position: -4000px -90px;
	}
}




.onshore_service_item img {
    filter: grayscale(100%);
  transition: filter .3s ease;
}
.onshore_service_item img:hover {
    filter: grayscale(0%);
}

.cta_menu a {
    background-color: #f16334;
    
}

