@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
*
{
	font-family: 'Poppins';
  scroll-behavior: smooth;
}
body
{
	margin: 0;
	padding: 0;
}
.back-to-top
{
  position: fixed;
  bottom: 5%;
  right: 2%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(116, 185, 255,.5);
  z-index: 9999;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: .5s ease-in-out;
}
.back-to-top.fade-in
{
  opacity: 1;
  visibility: visible;
}
.back-to-top i
{
  color: #0984e3 !important;
  font-size: 23px;
  font-weight: 700 !important;
  line-height: 50px;
}
.navbar
{
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(to right,#fff,#0052D4);
  z-index: 9999;
}
.navbar:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right,#00c6ff,#0072ff);
  transition: .4s ease-in-out;
  z-index: -1;
}
.navbar.scrolled:before
{
  width: 100%;
}
.navbar .navbar-brand
{
  position: absolute;
}
.navbar .navbar-brand img
{
  margin-left: 30px;
  width: 150px;
  height: 120px;
  z-index: 2;
}
.navbar-nav .nav-item .nav-link
{
  text-decoration: none;
  margin: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  color: #fff !important;
  animation: menu-in 1s ease forwards;
}
.navbar-nav .nav-item:nth-child(1) .nav-link
{
  animation-delay: 0s;
}
.navbar-nav .nav-item:nth-child(2) .nav-link
{
  animation-delay: .2s;
}
.navbar-nav .nav-item:nth-child(3) .nav-link
{
  animation-delay: .4s;
}
.navbar-nav .nav-item:nth-child(4) .nav-link
{
  animation-delay: .6s;
}
.navbar-nav .nav-item:nth-child(5) .nav-link
{
  animation-delay: .8s;
}
.navbar-nav .nav-item:nth-child(6) .nav-link
{
  animation-delay: 1s;
}
@keyframes menu-in
{
  0%
  {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }
  100%
  {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}
.navbar-toggler
{
  position: relative;
  margin-right: 20px;
  border: 1px solid #fff !important;
  outline: none !important;
  z-index: 99999;
}
.navbar-toggler i
{
  color: #fff !important;
  font-size: 25px;
}
#banner
{
	position: relative;
	width: 100%;
	height: 90vh;
}
#banner .banner-sub
{
	position: relative;
	width: 100%;
	height: 90vh;
}
#banner .banner-sub video
{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
  object-position: top;
}
#banner .banner-sub .overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
}
#banner .ban-content
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}
#banner .ban-content h1
{
  font-size: 5em;
  letter-spacing: 10px;
  transform: translateY(50px);
  color: #f2f5f7;
  opacity: 0;
}
#banner .ban-content h2
{
  font-size: 2.5em;
  transform: translateY(100px);
  color: #f2f5f7;
  opacity: 0;
}
#banner .ban-content .line1
{
  position: absolute;
  top: 30%;
  left: -80%;
  width: 0px;
  height: 2px;
  opacity: 0;
  background: #f2f5f7;
}
#banner .ban-content .line2
{
  position: absolute;
  top: 30%;
  right: -80%;
  width: 0px;
  height: 2px;
  opacity: 0;
  background: #f2f5f7;
}
#rules
{
	position: relative;
	width: 100%;
	padding: 20px 0;
}
#rules .rules-sub
{
	position: relative;
	width: 90%;
	margin: 0 auto;
}
#rules .rules-sub .list
{
	position: relative;
	width: 100%;
}
#rules .rules-sub .list h2
{
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 30px;
	color: #7e1416;
}
#rules .rules-sub .list ul li
{
	list-style: none;
	color: #666;
}
#rules .rules-sub .list ul li::before {
  content: "\2022";
  color: #7e1416; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  font-size: 25px;
  margin-left: -1em; 
}
#rules .rules-sub .imgbx,
#rules .rules-sub .imgbx img
{
	padding: 20px 0;
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}
#rules .rules-sub .imgbx img
{
	padding: 0;
}
#rules .rules-sub .imgbx .img1
{
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
#rules .rules-sub .imgbx .img2
{
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  transition-delay: 1s;
}
#rules .rules-sub .imgbx .img1.reveal,
#rules .rules-sub .imgbx .img2.reveal
{
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition: .5s;
}
footer
{
  position: relative;
  width: 100%;
  background: linear-gradient(to right , #eee, #f2f5f7);
}
footer .footer-sec
{
  position: relative;
  width: 90%;
  margin: 0 auto;
}
footer .footer-sec .grid
{
  border-bottom: 1px solid #999;
  padding:2em 0 1em;
}
footer .footer-sec .logo
{
  position: relative;
}
footer .footer-sec .logo img
{
  width: 200px;
  height: 170px;
}
footer .footer-sec .menu
{
  position: relative;
  text-align: center;
}
footer .footer-sec .menu ul
{
  display: block;
}
footer .footer-sec .menu ul li
{
  text-align: center;
  list-style: none;
  margin: 10px 20px;
}
footer .footer-sec .menu ul li a
{
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
}
footer .footer-sec .subscribe
{
  text-align: center;
}
footer .footer-sec .subscribe h4
{
  margin: 0px 0 20px;
  padding: 0;
  text-align: left !important;
  font-size: 18px;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
}
footer .footer-sec .subscribe input
{
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: none;
  outline: none;
  padding: 0 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666;
  font-size: 16px;
}
footer .footer-sec .subscribe textarea
{
  width: 100%;
  height: 100px;
  border: none;
  outline: none;
  padding: 10px 20px;
  resize: none;
  color: #666;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer-sec .subscribe button
{
  position: relative;
  width: 180px;
  height: 45px;
  border: none;
  outline: none;
  font-weight: 500;
  background: #666;
  color: #fff;
  transition: .4s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}
footer .footer-sec .subscribe button:hover
{
  background: transparent;
  border: 2px solid #666;
  color: #666;
}
footer .footer-sec .social ul
{
  display: flex;
}
footer .footer-sec .social ul li
{
  list-style: none;
  margin: 10px 15px;
  font-size: 25px;
}
footer .footer-sec .social ul li:first-child
{
  margin: 10px 20px 0 0;
}
footer .footer-sec .social ul li a
{
  text-decoration: none;
  color: #666;
  transition: .4s ease-in-out;
}
footer .footer-sec .social ul li a:hover
{
  color: #0984e3 !important;
}
footer .footer-sec .copy span
{
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 60px;
  display: block;
  color: #999;
}
@media only screen and (max-width: 800px)
{
  .navbar-brand
  {
    position: relative !important;
  }
  .navbar-brand img
  {
    margin-left: 0px !important;
    width: 100px !important;
    height:80px !important;
  }
  .navbar-nav .nav-item .nav-link
  {
    text-align: center;
    margin: 10px 0;
    color: #000 !important;
  }
  .navbar-collapse
  {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    background: #fff;
  }
  #banner .ban-content
  {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
  }
  #banner .ban-content h1
  {
    font-size: 2.5em;
    letter-spacing: 10px;
    transform: translateY(50px);
    opacity: 0;
  }
  #banner .ban-content h2
  {
    font-size: 2em;
    transform: translateY(100px);
    opacity: 0;
  }
  #banner .ban-content .line1
  {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translate(-50%,0%);
    width: 0px;
    height: 2px;
    opacity: 0;
    background: #f2f5f7;
  }
  #banner .ban-content .line2
  {
    position: absolute;
    top: 0;
    bottom: -50%;
    left: 50%;
    right: 0;
    transform: translate(-50%,0%);
    width: 0px;
    height: 2px;
    opacity: 0;
    background: #f2f5f7;
  }
  #rules .rule-grid
  {
    -webkit-box-orient:vertical;
    -webkit-box-direction:reverse;
    flex-direction: column-reverse;
  }
  footer .footer-sec .copy span
  {
    text-align: left !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    color: #999;
  }
}
@media only screen and (min-width: 750px) and (max-width: 1024px)
{
  .navbar-collapse
  {
    padding: 0 !important;
    margin: 0 !important;
    width: unset;
    background: transparent;
  }
}