.tabs {
  position: relative;
  padding: 20px 30px;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 auto;
}

.tabs .tab-header {
  height: 60px;
  display: flex;
  align-items: center;
}

.tabs .tab-header > div {
  width: calc(100% / 2);
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
}

.tabs .tab-header > div >i {
  display: none;
  margin-bottom: 5px;
}

.tabs .tab-header > div.active {
  color : #00bfff;
}

.tabs .tab-indicator {
  position : relative;
  width: calc(100% / 2);
  height: 2px;
  background: #00bfff;
  left:0px;
  border-radius: 5px;
}

.tabs .tab-body {
  position: relative;
  height: calc(100% - 60px);
  padding: 10px 5px;
  margin-top: 15px;
}

.tabs .tab-body > tab {
  position: relative;
  top: -200%;
  display: none;
  visibility: hidden;
  margin-top: 5px;
  transform: scale(0.9);
  transition: visibility 500ms ease-in-out 0ms, transform 500ms ease-in-out 0ms;
}

.tabs .tab-body > tab.active {
  top: 0px;
  visibility: visible;
  display: block;
  transform: scale(1);
  margin-top: 0px;
}

.welcome-area video {
  overflow: hidden;
  object-fit: cover;
  object-position: center ;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
  height: 100%;
  z-index: -50;
}

.homepage-4 .btn, .homepage-4 .btn:active, .homepage-4 .btn.sApp-btn:before, .homepage-4 .bg-overlay::after, .homepage-4 .benifits-item:after {
  z-index: -51;
}

.welcome-area {
  height: 500px;
}
