
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');

.slider-three {
    background-color: #F8F8F8;
    padding-top: 112px;
    padding-bottom: 130px;
  }
  .slider-three .section-title .title {
    font-size: 44px;
    line-height: 55px;
    font-weight: 600;
    color: #1d1d1d;
  }
  @media (max-width: 767px) {
    .slider-three .section-title .title {
      font-size: 28px;
      line-height: 32px;
    }
  }
  .slider-three .section-title .text {
    color: #6d6d6d;
    margin-top: 24px;
  }
  .slider-three .slider-items-wrapper {
    position: relative;
  }
  .slider-three .slider-items-wrapper .tns-nav {
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .slider-three .slider-items-wrapper .tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #155bd5;
    opacity: 0.5;
    border: 0;
    margin: 0 5px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .slider-three .slider-items-wrapper .tns-nav button.tns-nav-active {
    width: 20px;
    opacity: 1;
    border-radius: 5px;
  }
  .slider-three .single-items-one {
    margin-top: 40px;
  }
  .slider-three .single-items-one img {
    width: 100%;
    height: 200px;
    box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
    border-radius: 10px;
  }
  .single-items-one{
    padding-left: 26px;
  }


  /* flipping class and key frames*/
.flipX {
  /* color: #ffffff; */
  animation: 4s anim-flipX ease infinite;
}
@keyframes anim-flipX {
  0% {
    opacity: 0;
    transform: rotateX(90def);
  }
  50% {
    opacity: 1;
    transform: rotateX(720deg);
  }
  100% {
    /* animate nothing to pause animation at the end */
    opacity: 1;
    transform: rotateX(720deg);
  }
}

.anim-title{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #1c6d5a 0%,
    #14634b 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 10% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 38px;
      font-family: 'Young Serif', serif;
}

@keyframes textclip {
  to {
    background-position: 10% center;
  }
}


/* CSS */
.view-btn {
  padding: 0.6em 2em;
  margin-top: 20px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.view-btn a{
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
}

.view-btn:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-view-btn 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-view-btn {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.view-btn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}





