body, html {
height: 100%;
margin: 0;
font-family: 'Geist'!important;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%; 
min-height: 100%;
}
.bgimg { 
background: url(../img/body-bg.png) no-repeat;
height: 100%;
background-position: bottom center; 
position: relative;
color: #1ba6ae; 
}

.topleft {
position: absolute;
top: 20px;
left: 30px;
}

.bottomleft {
position: absolute;
bottom: 5%;
left: 50%;
transform: translate(-50%, -0%);
text-align: center;
}
 

.bottomleft a.features-btn{
background: #1C1C1C;
font-size: 1rem;
font-weight: 1rem;
color: #666;
font-weight: 500;
text-decoration: none;
padding: 10px 20px 12px 20px;
border-radius: 10px;
}

.bottomleft a.features-btn i{ 
font-size: 12px; 
color: #666; 
}

.top {
position: absolute;
width: 100%;
top: 15%;
left: 50%;
transform: translate(-50%, -15%);
text-align: center;
}
.top h1{
font-size: 40px;
line-height: 40px;
font-weight: 600;
color: #fff;
padding: 0px;
margin: 0 0 20px 0;
}
.top p{
width: 50%;
font-size: 20px;
line-height: 26px;
font-weight: 300;
color: #737373;
padding: 0px;
margin: 0 auto;
}
.middle {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
} 
.main-container{
  width: 500px;
  margin: 0px auto;
  overflow: hidden;
}

.tabs{
width: 480px;
margin: 0 auto;
}
.tabs .nav-pills .nav-link.active{
background-color:rgba(59, 59, 59, 25%)!important;
border: 1px solid #373737!important;
border-radius: 50px;
}
.tabs .nav-link{
color: #F4F4F4;
font-weight: 300;
font-size: 13px!important;
}

.search-wrapper{
display: flex;
border: 1px solid #666666;
align-items: stretch;
border-radius: 50px;
background-color:rgba(59, 59, 59, 25%);
overflow: hidden;
max-width: 480px; 
height: 50px;
margin: 0 0 20px 0;
}
.searchInput{
border:none;
width:480px;
font-size: 16px;
font-weight: 300;
background-color:transparent;
}
.searchInput:focus{
outline: none;
}
.search-icon{
  width: 20px;
  height: 20px;
  padding: 0px;
  margin: 14px 10px 14px 14px; 
}
.search-button{
border:none;
cursor: pointer;
color:#000;
background-color:#fff;
padding: 5px 9px 9px 9px;
margin: 10px;
border-radius: 100%;
font-size: 14px;
line-height: 14px;
}
.search-button .arrow-right-icon{
  width: 9px;
  height: 7px;
  padding: 0px;
  margin: 0px; 
}

.news_ticker { 
  width: 500px;
  margin:10px 0 0 0;
  position: relative;
  display: flex;
  align-items: center;
  /*overflow-y: visible;
  overflow-x: hidden;*/
  }

.news-group {
  position: relative;
  white-space: nowrap;
  will-change: transform;
  padding: 0px;
  margin: 0px;
  }

.news-group li {
  list-style-type:none; 
  display: inline-block; 
   padding:0 6px; 
  margin: 0px; 
  }
.news-group li a{
  list-style-type:none;
  /*border: 1px solid #666666; */ 
  background-color:rgba(59, 59, 59, 25%);
  color:#757575;
  font-size: 13px;
  font-weight: 500;
  display: inline-block; 
   padding:3px 10px; 
  margin:0px; 
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  background: 
    linear-gradient(to bottom, #141414, #141414), 
    linear-gradient(to bottom, #141414 , #182E50); 
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  }
 
 .copy-click {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
  cursor: copy;
  color: #484848;
  border-bottom: 1px dashed #767676;
  transition: background-color calc(var(--duration) * 2) var(--ease);
}
.copy-click:after {
  content: attr(data-tooltip-text);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  padding: 8px 16px;
  white-space: nowrap;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 0 0 -12px rgba(0, 0, 0, 0);
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: box-shadow calc(var(--duration) / 1.5) var(--bounce), opacity calc(var(--duration) / 1.5) var(--bounce), transform calc(var(--duration) / 1.5) var(--bounce);
}
.copy-click.is-hovered:after {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translate(-50%, 0);
  transition-timing-function: var(--ease);
}
.copy-click.is-copied {
  background-color: yellow;
}
.copy-click.is-copied:after {
  content: attr(data-tooltip-text-copied);
}