body { background-color: #1f004d; background-image: url('https://i.imgur.com/poxNItz.jpeg'); background-repeat: no-repeat; background-position: center center; background-attachment: fixed;-webkit-background-size: cover;-moz-background-size: cover;-o-background-cover: cover;background-size: cover; z-index: -2; }
body{padding-bottom: 300px;}

body {
  font-family: 'Abel', sans-serif;
  margin: 0;
  	font-weight: 600;
	font-size: 16px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	overflow-x: hidden;
}



.content{
     position:relative; width: 100%; max-width: 860px; background-color: rgba(255,255,255,0);  color: black; text-align: center; margin: 1%  auto 0; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; padding-bottom: 3px; padding-top: 6px;  
     letter-spacing: 3px;
     margin-top: -2%;
      animation-name: createbox;
    animation: createbox 2s;
    animation-delay: 3s;
    visibility: hidden;
    animation-fill-mode: forwards;
}
@keyframes createbox{
   
    from {
        transform: scale(0);
        
    }
    to {
        transform: scale(1);
        visibility: visible; 
    }
}


@media only screen and (max-width: 700px){
 .content{
     max-width: 320px;
  
     font-size:11px !important;
 }
    
}
@media only screen and (min-width: 1440px){
 .content{
     max-width: 1320px;
  
     font-size:28px !important;
 }
    
}
@media only screen and (max-width: 700px){
 a{
     font-size:11px !important;
 }   
}

 .video-1 {
    position:relative;
       border: 1px solid transparent; 
 background: -webkit-linear-gradient(60deg, gold, #f39600);
 background-color:black;
 border-radius:10px;
  overflow: hidden;
 margin: 0 auto;
     width:52.5rem;
     height:32rem;
 }
  @media only screen and (max-width: 600px){
 .video-1 {
     width:20rem;
     height:12.5625rem;
 } 
}
 @media only screen and (min-width: 1440px){
 .video-1 {
     width:82.5rem;
     height:51.9375rem;
 } 
}
.float{
    top: 0; bottom: 0; left: 0; right: 0;

position: absolute;
margin: 30% auto;
	width:49%;
	height:10%;
	background: linear-gradient(rgb(255, 0, 0, 0.6), rgb(179, 0, 0, 0.6));
	color:#FFF;
	border-radius:10px;
	text-align:center;
	
	z-index:999;
}
 @media only screen and (max-width: 600px){
 .float {
     width:60%;
     height:10%;
 } 
}
.my-float{
	margin-top:15px;
}
 @media only screen and (max-width: 600px){
 .my-float{
	margin-top:8px !important;
}
}
@media only screen and (min-width: 1440px){
 .my-float{
	margin-top:20px !important;
}
    
}



.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 100%;
  font-size: 16px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index:1000;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}