.black-border {
  border: 2px solid black;
  transition: 250ms;
  transition-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

.black-border:hover {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: pointer;
  transition: 250ms;
  transition-timing-function: cubic-bezier(0.15, 0.8, 1.5, 0.15);
}

.img-border {
  border: 2px solid var(--accent-color);
}

.portfolio-accordions .link-icon {
  transition: all ease-in 300ms;
}

.portfolio-accordions .link-icon:hover {
  background-color: var(--button-hover-color1);
  border-color: var(--button-hover-color1);
  color: #fff;
  transition: all ease-in 300ms;
}

/* Scrolling logo list */
.is-section:has(.scrolling-list) {
  width: 100%;
  overflow-x: hidden;
}

.scrolling-list {
  --gap: 40px;
  position: relative;
  overflow: hidden;
  user-select: none;
  display: flex;
  width: fit-content;
}

.scrolling-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  animation-delay: 1s;
  transform: translate(-100%);
}

.scrolling-list ul li {
  flex-shrink: 0;
  margin-inline: var(--gap);
  text-align: center;
}

.scrolling-list img {
  object-fit: contain;
  max-width: 150px;
}

wm-dnn-carousel {
  --btn-color: var(--accent-color);
  height: 500px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100%));
  }
}

@media screen and (max-width: 768px) {
  .scrolling-list img {
    max-width: 30vw;
  }
}

/* End Scrolling logo list */

@media screen and (max-width: 576px) {
  .mobile-header .area-center {
    display: none;
  }
}

.link-header a:hover {
  color: var(--default-color) !important;
}

.rotate-parent {
  overflow: hidden;
  display: inline-block;
  position: relative;
  color: #009dff;
  vertical-align: top;
}
.active-rot {
  position: absolute;
  color: #009dff;
  top: 0px;
  transition: 1s all;
  width: max-content;
}
.next-rot {
  position: absolute;
  top: 100%;
  color: transparent;
  opacity: 0;
  transition: 1s all;
  width: max-content;
}
.last-rot {
  position: absolute;
  top: -100%;
  transition: .8s all;
  color: transparent;
  opacity: 0;
}

/* Blogs */
.xBlog_list, .blog-detail01 {
    margin-top: 50px;
}




