@keyframes slidein {
  0% {
    margin-left: -1200px;
    opacity: 0;
  }

  20% {
    margin-left: -900px;
    opacity: .2;
  }

  35% {
    margin-left: 0px;
    opacity: 1;
  }

  100% {
    margin-left: 0px;
    opacity: 1;
  }
}

@keyframes slideinright {
  0% {
    margin-left: 1400px;
    opacity: 0;
  }

  20% {
    margin-left: 1100px;
    opacity: 0.2;
  }

  35% {
    margin-left: 0px;
    opacity: 1;
  }

  100% {
    margin-left: 0px;
    opacity: 1;
  }
}

.animation-slidein {
  animation: slidein 7s 1;
}

.animation-slidein-right {
  animation: slideinright 7s 1;
}

.servicelinks a {
  color: #222;
}

.servicelinks a:hover {
  color: #009ad9;
}

@media only screen and (min-width:320px) {
  h1.main-service-titles {
    font-size: 70px !important;
    color: #fff;
    font-weight: 700;
    letter-spacing: -2px;
  }

  h2.tradeshow-title {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: -30px;
  }

  .block__border-left {
    border-left: 2px solid #1274A9;
  }

  .cta {
    overflow: hidden;
    display: inline-block;
    padding: 10px 18px;
    -webkit-transition: all .4s;
    transition: all .4s;
    font-size: 1.1rem;
    border-radius: 3px;
  }

  .cta__white-border {
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .cta__white-border:hover {
    color: #1B99D9 !important;
    text-decoration: none;
  }

  .cta__blue {
    color: #1B99D9;
    border: 1px solid #1B99D9;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .cta__blue:hover {
    background-color: #1B99D9;
    text-decoration: none;
    color: #fff;
  }

  .cta__top--margin {
    margin-top: 10px !important;
  }

  .services-title-borderbottom {
    display: block;
    border-bottom: 2px solid #707070;
    font-size: 1.4rem;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 14px !important;
  }

  .uk-text-blue {
    color: #1274A9;
  }

  .background-blue {
    background-color: #009ad9;
  }

  p {
    line-height: 1.8;
  }

  .text__white {
    color: #fff;
  }

  .services-hero-height {
    min-height: 640px;
  }

  .service-list li {
    color: #222;
    line-height: 1.8;
  }

  .service-list li:before {
    margin-right: 10px;
    display: inline-block;
    height: 10px;
    content: "";
    line-height: 1.8;
    width: 10px;
    background: url(../../images/services/service-list-blue-dot.svg) center center no-repeat;
  }

  .service-icons .uk-text-meta {
    color: #fff;
    font-size: 10px;
  }
}

@media only screen and (min-width:640px) {
  h1.main-service-titles {
    font-size: 90px !important;
    letter-spacing: -4px;
  }

  h2.tradeshow-title {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .services-hero-height {
    min-height: 480px;
  }
}

@media only screen and (min-width:960px) {
  h1.main-service-titles {
    font-size: 120px !important;
  }

  h2.tradeshow-title {
    font-size: 60px;
    margin-bottom: 0;
  }

  .services-hero-height {
    min-height: 680px;
  }
}

@media only screen and (min-width:1200px) {
  .services-title-borderbottom {
    margin-bottom: 30px !important;
    border-bottom: 3px solid #707070;
  }

  h1.main-service-titles {
    font-size: 155px !important;
    letter-spacing: -8px;
  }

  h2.tradeshow-title {
    font-size: 70px;
    letter-spacing: -4px;
  }
}

@media only screen and (min-width:1600px) {}

.cta::before {
  position: absolute;
  display: block;
  width: 400%;
  height: 800%;
  content: "";
  background-color: rgba(255, 255, 255, 1);
  transition: all ease-out .5s;
  bottom: -600%;
  left: -400%;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -1;
}

.cta:hover::before {
  left: -200%;
  bottom: -200%;
}

.cta__blue::before {
  position: absolute;
  display: block;
  width: 400%;
  height: 800%;
  content: "";
  background-color: #1b99d9;
  transition: all ease-out .5s;
  bottom: -600%;
  left: -400%;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -1;
}

.cta__blue:hover::before {
  left: -200%;
  bottom: -200%;
}