  .tfsel-hero-2.swiper-container {
    height: 100vh;
  }
  
  .tfsel-hero-2 .swiper-slide {
    overflow: hidden;
  }
  
  .tfsel-hero-2 .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
  }
  .tfsel-hero-2 .hero-2-slide-text{
    position: absolute;
    width: 50%;
    height: 30%;
    top: 0;
    margin: auto;
    bottom: 0;
    left: 0;
    color: white;
    padding-left:8%;
  }
  .tfsel-hero-2 .hero-2-slide-text h1{
    font-size: 3.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .tfsel-hero-2 .hero-2-slide-text p{
    font-size: 1rem;
  }
  .tfsel-hero-2 .hero-2-slide-text .btn {
    font-family: "IBM Plex Mono", monospace;
    background-color: red;
    font-size: 14px;
    letter-spacing: 2px;
    color: inherit;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
    border: 0;
    padding: 10px 15px;
    text-decoration:none !important;
  }
  
  .tfsel-hero-2 .hero-2-slide-text .btn:before {
    content: "";
    background-color: #fff;
    width: 2px;
    height: 37px;
    position: absolute;
    z-index: 2;
    left: -1px;
    top: 0px;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
  }
  
  .tfsel-hero-2 .hero-2-slide-text .btn:after {
    content: "";
    width: 0px;
    height: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    border: solid 2px transparent;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    top: 3px;
    left: -10px;
    transition: all 0.3s ease-in-out;
  }
  
  .tfsel-hero-2 .hero-2-slide-text .btn:hover::before{
    left: 10px;
    height: 24px;
    top: 7px;
    transform: rotate(90deg);
  }
  
  .tfsel-hero-2 .hero-2-slide-text .btn:hover::after{
    border: solid 2px #fff;
    border-left: 0;
    border-bottom: 0;
    left: 11px;
    top: 14px;
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  
  .tfsel-hero-2 .hero-2-slide-text .btn:hover {
    padding-left: 35px;
  }
    

  .tfsel-swiper-button-next, .tfsel-swiper-button-prev{
    position: absolute;
    top: unset;
    bottom: 0;
    width: 65px;
    height: 60px;
    right: 0;
    background-color: white;
    background-image:none;
    z-index: 9090;
    cursor: pointer;
  }
  .tfsel-swiper-button-prev{
    margin-right:4rem;
    left: unset;
  }
  .tfsel-swiper-button-prev span{
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: solid 2px #666666;
    border-left: 0;
    border-bottom: 0;
    margin: auto;
    transform: translate(0, 25px) rotate(-135deg);
  }
  .tfsel-swiper-button-next span{
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: solid 2px #666666;
    border-left: 0;
    border-bottom: 0;
    margin: auto;
    transform: translate(0, 25px) rotate(45deg);
  }
  .tfsel-swiper-button-next.swiper-button-disabled,
  .tfsel-swiper-button-prev.swiper-button-disabled{
    background: #eee;
    cursor: default;
  }