.carousel {
  overflow: hidden;
  position: relative
}

.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.carousel .list .item .content {
  position: absolute;
  top: 15%;
  width: 1140px;
  max-width: 80%;
  left: 45%;
  transform: translateX(-50%);
  padding-right: 20%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004
}

.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 4px
}

.carousel .list .item .des {
  font-size: 18px
}

.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 2em;
  font-weight: bold;
  line-height: 1em;
  margin: 10px 0
}

.carousel .list .item .topic {
  color: #0098AF
}

.carousel .list .item .buttons {
  display: grid;
  grid-template-columns: repeat(1, 190px);
  grid-template-rows: 60px;
  gap: 5px
}

.carousel .list .item .buttons button {
  background-color: #0098AF;
  padding: 10px 10px;
  color: #fff;
  letter-spacing: 1px;
  transition: .4s;
  border-radius: 20px
}

.carousel .list .item .buttons button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee
}

.thumbnail {
  visibility: hidden;
  height: 0;
  overflow: hidden
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px
}

.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px
}

.thumbnail .item .content .title {
  font-weight: 500
}

.thumbnail .item .content .description {
  font-weight: 300
}

.arrows {
  display: block;
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center
}

@media(max-width:500px) {
  .arrows {
    top: 85%
  }
}

@media(max-width:430px) {
  .arrows {
    top: 90%;
    display: none
  }
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: 0;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s
}

.arrows button:hover {
  background-color: #fff;
  color: #000
}

.carousel .list .item:nth-child(1) {
  z-index: 1
}

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1
  }
}

.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important
}

.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important
}

.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important
}

.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important
}

.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards
}

.carousel.prev .list .item img {
  z-index: 100
}

@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0
  }
}

.carousel.next .thumbnail {
  animation: effectNext .5s linear 1 forwards
}

@keyframes effectNext {
  from {
    transform: translateX(150px)
  }
}

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0;
  left: 0;
  top: 0
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards
}

@keyframes runningTime {
  from {
    width: 100%
  }

  to {
    width: 0
  }
}

.carousel.prev .list .item:nth-child(2) {
  z-index: 2
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame .5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0
}

@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0
  }
}

@media screen and (max-width:840px) {
  .carousel .list .item .content {
    padding-right: 0
  }

  .carousel .list .item .content .title {
    font-size: 24px
  }
}

@media screen and (max-width:640px) {
  .carousel .list .item .content .topic {
    font-size: 24px
  }

  .carousel .list .item .content .des {
    font-size: 14px
  }
}

@media screen and (max-width:450px) {
  .carousel .list .item .content {
    top: 6%
  }
}

.down-arrow-icon {
  color: white;
  display: block;
  margin-top: 25px;
  margin-bottom: 2px
}

.article-btn {
  background: transparent;
  border: 1px solid whitesmoke;
  color: white;
  width: 70%;
  font-weight: 600;
  padding: 5px;
  border-radius: 25px
}

.carousel-control-prev-icon {
  background-image: none !important
}

.carousel-control-next-icon {
  background-image: none !important
}
.a {
  text-decoration: none;
  background-color: transparent
}

.ftr {
  margin-top: -8%;
  color: white
}

.position {
  margin: 1pc
}

.li-style {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important
}

.text-center {
  padding: 15px
}
.a {
  text-decoration: none;
  background-color: transparent
}

.main-text {
  position: relative;
  color: blue;
  top: -108px;
  width: 200px;
  z-index: 4
}

.container {
  position: relative
}
.logo {
  margin-top: -11%
}

@keyframes slide {
  from {
    transform: translateX(100%)
  }

  to {
    transform: translateX(-100%)
  }
}

.carousel-inner-1 {
  display: flex;
  background: #fff;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: #8f8787 1px solid;
  border-bottom: #8f8787 1px solid
}

.carousel-item-1 {
  display: inline-block;
  padding: 2px;
  margin: 8px;
  flex: 1 0 22%;
  animation: slide 20s linear infinite;
  border: #787575 1px solid;
  border-radius: 16px;
  white-space: nowrap
}

.carousel-item-1 span {
  font-size: 14px;
  color: #0098AF;
}

@media(max-width:575.98px) {
  .carousel-item-1 span {
    font-size: 12px;
    padding: 2px
  }

  .carousel-item-1 {
    flex: 1 0 42%
  }
}

.centered-text {
  text-align: center;
  color: white;
  padding: 1.5rem
}

.centered-text p {
  font-size: 22px;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 1rem
}

.cta-button {
  display: inline-block;
  padding: 8px 14px;
  border: 2px solid #5a5858;
  color: #212121;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  margin-top: 1rem;
  transition: background-color .3s ease
}

@media(max-width:600px) {
  .cta-button {
    font-size: 16px
  }
}

.cta-button:hover {
  background-color: #0098AF;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button span {
  margin-left: .5rem
}

@media(min-width:992px) {
  .custom-mt {
    margin-top: 1.6rem !important
  }
}

.col-lg-3 a,
.col-md-5 a,
.col-sm-6 a {
  margin-bottom: -20px !important
}

@media(min-width:768px) {
  .text-sm-start {
    text-align: left !important
  }
}

.trusted-text {
   
  /* opacity: .8; */
  color: #222222;
  font-size: 20px;
  font-weight: 500
}

@media(min-width:542px) {
  .trusted-text {
    font-size: 30px
  }
}

.in-compliance {
  margin-right: 6px;
  opacity: .9
}

.iso {
  margin-right: 6px;
  font-weight: 500
}

@media(max-width:768px) {
  .iso {
    font-size: 18px;
    font-weight: 500
  }

  .in-compliance {
    font-size: 14px
  }
}
/* logos slider */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.logo-slider {
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.logo-slider::before,
.logo-slider::after {

  content: "";
  height: 100%;
  position: absolute;
  width: 100px;
  z-index: 2;
}

.logo-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  align-items: center;
}

.logo-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 250px;

}


.logo-slide img {
  height: 25vh;
  width: auto;
}

.slide-track {
  animation: scroll 40s linear infinite;

}

.paused .slide-track {
  animation-play-state: paused;
}