::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #bebebe;
  border-radius: 20px;
}
.parent-container {
  padding: 0 12.5%;
}
.all-padding {
  padding: 0 36px;
}
.wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
small {
  color: #6d6f6d;
  line-height: 0;
}
.scroll {
  display: flex;
  gap: 10px;
}
.scroll i {
  color: rgba(140, 137, 137, 0.891);
  border: 1px solid #6d6f6d42;
  border-radius: 50%;
  width: 35px;   /* equal width */
  height: 35px;  /* equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.scroll i:hover {
  background-color: #070707b2;
  color: rgba(216, 215, 215, 0.724);
}


.box {
  opacity: 0;
  scroll-behavior: smooth;
}
.show {
  animation: fadeInUp 1s ease-out forwards;
}

.sidebarBtn {
  display: flex;
  padding: 10px 0 0 14px;
  gap: 27px;
}

.sidebar-nav .button {
  background-color: transparent;
  color: white;
  border: 1px solid #bebebe;
  border-radius: 60px;
  padding: 17px 39px;
  font-size: 13px;
  -webkit-animation: scale-up-center 2s ease-out 1s alternate both;
  animation: scale-up-center 2s ease-out 1s alternate both;
}

.sidebar-nav .learnMoreBtn {
  background-color: #009ad2;
  color: white;
  padding: 19px 33px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: .6px;
 -webkit-animation: scale-up-center 2s ease-out 1s alternate both;
  animation: scale-up-center 2s ease-out 1s alternate both;
}
.sidebar-nav .learnMoreBtn:hover {
  background-color: white;
  color: black;
}