@font-face {
  font-family: Gotham-book;
  src: url(../font/Gotham/Gotham-Book.otf);
}
@font-face {
  font-family: Gotham-bold;
  src: url(../font/Gotham/Gotham-Bold.otf);
}
@font-face {
  font-family: Gotham-medium;
  src: url(../font/Gotham/Gotham-Medium.otf);
}
.animate-links {
  cursor: pointer;
  transition: all 0.3s ease;
  width: 170px;
  height: 38px;
  overflow: hidden;
  border-radius: 18px  0 18px 0;
  -moz-border-radius:  18px  0 18px 0;
  -o-border-radius:  18px  0 18px 0;
  -webkit-border-radius:  18px  0 18px 0;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
}
.animate-links .animate-link {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s 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% - 30px);
  padding-right: 30px;
  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:not(.main-section-animate-links) {
  position: relative; /* və ya heç yazmaya bilərsən */
  right: auto;
  bottom: auto;
  margin: 0; /* istəsən bir az aralıq verə bilərsən, məsələn margin-top: 10px; */
}
.animate-links.main-section-animate-links {
  position: relative;
  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 */
@media screen and (min-width: 991px) and (max-width: 1015px) {
  .nav_right .dropdown {
    margin-right: 16px;
  }
  .animate-links:not(.main-section-animate-links) {
  }
}
@media screen and (min-width: 991px) and (max-width: 1000px) {
  header .navbar .logo {
    width: 156px;
    margin-right: 18px;
  }
  header .navbar ul li {
    margin-right: 11px;
  }
  header .navbar ul li a, .animate-links .animate-link span {
    font-size: 13px;
  }
  .animate-links:not(.main-section-animate-links) {
    width: 130px;
  }
}
@media screen and (max-width: 991px) {
  .animate-links:not(.main-section-animate-links) {
    transform: scale(0.8);
    bottom: 0;
  }
}
@media screen and (min-width: 577px) {
  .animate-links.main-section-animate-links {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  body header .animate-links {
    display: none;
  }
}
/*# sourceMappingURL=animate-link.css.map */