@font-face {
  font-family: Gotham-book;
  src: url(../fonts/Gotham/Gotham-Book.otf);
}
@font-face {
  font-family: Gotham-bold;
  src: url(../fonts/Gotham/Gotham-Bold.otf);
}
@font-face {
  font-family: Gotham-medium;
  src: url(../fonts/Gotham/Gotham-Medium.otf);
}
.animate-links {
  position: relative;
  width: 140px;
  height: 34px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #F6921E;
  box-shadow: 0px 5px 3px -5px rgba(75, 60, 42, 0.1490196078);
  -moz-box-shadow: 0px 5px 3px -5px rgba(75, 60, 42, 0.1490196078);
  -o-box-shadow: 0px 5px 3px -5px rgba(75, 60, 42, 0.1490196078);
  -webkit-box-shadow: 0px 5px 3px -5px rgba(75, 60, 42, 0.1490196078);
  overflow: hidden;
}
.animate-links .animate-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F6921E;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
}
.animate-links .animate-link span {
  font-family: Gotham-medium;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
  width: calc(100% - 33px);
  padding-right: 33px;
  text-align: center;
}
.animate-links .animate-link:nth-child(1) {
  animation: fade 4s linear infinite 0s;
}
.animate-links .animate-link:nth-child(2) {
  animation: fade 4s linear infinite 1s;
}
.animate-links .animate-link:nth-child(3) {
  animation: fade 4s linear infinite 2s;
}
.animate-links .animate-link:nth-child(4) {
  animation: fade 4s linear infinite 3s;
}
.animate-links .animate-link:nth-child(5) {
  animation: fade 4s linear infinite 4s;
}
.animate-links:hover .animate-link {
  animation-play-state: paused;
}
.animate-links.main-section-animate-links {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 5px;
  font-family: Gotham-medium;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
}
.animate-links.main-section-animate-links .animate-img {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 33px;
  height: 40px;
  background-color: #F6921E;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.animate-links.main-section-animate-links .animate-img:nth-child(1) {
  animation: fade 4s linear infinite 0s;
}
.animate-links.main-section-animate-links .animate-img:nth-child(2) {
  animation: fade 4s linear infinite 1s;
}
.animate-links.main-section-animate-links .animate-img:nth-child(3) {
  animation: fade 4s linear infinite 2s;
}
.animate-links.main-section-animate-links .animate-img:nth-child(4) {
  animation: fade 4s linear infinite 3s;
}
.animate-links.main-section-animate-links .animate-img:nth-child(5) {
  animation: fade 4s linear infinite 4s;
}
.animate-links.main-section-animate-links:hover img {
  animation-play-state: paused;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 577px) {
  .animate-links.main-section-animate-links {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  body header .navbar .container .links li .animate-links {
    display: none;
  }
}/*# sourceMappingURL=animate-link.css.map */