*{
  margin: 0;
  padding: 0;
}
html, body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin: 0;
  overflow-x: hidden;
}
:root{
  --primary:#2771f2;
  --danger:#c21029;
  --light:#F0F0F0;
  --secondary:#092edb;
}
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
#topbar {
  background: var(--primary);
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
  overflow: hidden;
}
#topbar.topbar-scrolled {
  top: -40px;
}
#topbar i {
  padding-right: 6px;
  line-height: 0;
}
.tag {
    border-radius: 3px 0 0 3px;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 36px;
    font-size: 14px;
    background: var(--secondary);
    padding: 0 20px 0px 23px;
    position: relative;
    text-decoration: none;
    transition: 0.2s;
}
.tag:hover{
  color: #fff;
}
.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 14px;
}
.tag::after {
  border-bottom: 20px solid transparent;
  border-left: 14px solid var(--secondary);
  border-top: 21px solid transparent;
  content: '';
  position: absolute;
  right: -13px;
  top: 0;
}
marquee{
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.mobile_menu{
  display: none;
}
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}
#header.header-scrolled {
  top: 0;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#header .logo a {
  color: #555555;
}
#header .logo img {
  max-height: 90px;
}
.usfi_logo{
  max-height: 90px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--primary);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 113px;
  bottom: 15px;

  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary);
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Banner Slider */
.banner_section{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.my_banner{
position: relative;
  overflow: hidden;
}
.my_banner img{
width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 5px;
}
.banner_content{
  position: absolute;
  left: 12%;
  top: 40%;
  background: #092edba3;
  color: #fff;
  font-weight: bold;
  padding: 45px 16px;
  border-radius: 4px;
  text-align: left;
}
.banner_content h1,h2{
  font-size: 35px;
  font-weight: 900;
}
.banner_content p{
  font-size: 16px;
  font-weight: bold;
}
.about_btn{
  display: inline-block;
  background-color: #fff;
  color: var(--secondary);
  padding: 4px 16px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 15px;
  margin-left: 14px;
}
.btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 10px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  margin-right: 8px;
}
.btn-watch-video:hover{
  color: #fff;
}
.blue{
background: #3652D9;
}
.circle {
width: 25px;
height: 25px;
border-radius: 50%;
box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
0% {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
  box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}
}
.hero-waves {
display: block;
width: 100%;
height: 60px;
position: absolute;
bottom: 0;
z-index: 99;
}
.wave1 use {
-webkit-animation: move-forever1 10s linear infinite;
animation: move-forever1 10s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

.wave2 use {
-webkit-animation: move-forever2 8s linear infinite;
animation: move-forever2 8s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

.wave3 use {
-webkit-animation: move-forever3 6s linear infinite;
animation: move-forever3 6s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
0% {
  transform: translate(85px, 0%);
}
100% {
  transform: translate(-90px, 0%);
}
}

@keyframes move-forever1 {
0% {
  transform: translate(85px, 0%);
}
100% {
  transform: translate(-90px, 0%);
}
}
@-webkit-keyframes move-forever2 {
0% {
  transform: translate(-90px, 0%);
}
100% {
  transform: translate(85px, 0%);
}
}
@keyframes move-forever2 {
0% {
  transform: translate(-90px, 0%);
}
100% {
  transform: translate(85px, 0%);
}
}
@-webkit-keyframes move-forever3 {
0% {
  transform: translate(-90px, 0%);
}
100% {
  transform: translate(85px, 0%);
}
}
@keyframes move-forever3 {
0% {
  transform: translate(-90px, 0%);
}
100% {
  transform: translate(85px, 0%);
}
}
/* About Section */
.about_head{
  color: #2c4964;
  font-weight: 600;
  font-size: 30px;
  font-weight: bold;
}
.about_text{
  font-style: italic;
  color: #444444;
  font-size: 16px;
  font-weight: 500;
}
ul{
  margin: 0;
  padding: 0;
}
.about_list_content li{
  list-style: none;
}
.about_list_content li i{
  color: var(--secondary);
}
.about_list_content li{
  color: #444444;
  font-size: 16px;
  margin-bottom: 10px;
}
.gallery {
overflow: hidden;
}
.gallery .swiper-pagination {
margin-top: 20px;
position: relative;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid var(--primary);
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--secondary);
}
.gallery .swiper-slide img {
  border-radius: 4px;
  height: 33vh;
  object-fit: cover;
}
.gallery .swiper-slide-active {
text-align: center;
}
@media (min-width: 992px) {
.gallery .swiper-wrapper {
  padding: 40px 0;
}
.gallery .swiper-slide-active {
  padding: 4px;
  background: #fff;
  z-index: 1;
  transform: scale(1.2);
  margin-top: 10px;
}
}
/* The event */
.event_bg{
background:url(../image/banner.jpg) no-repeat 0 0;
background-size: cover;
padding: 50px 0px;
width: 100%;
}
.event_contents h2{
font-size: 30px;
color: #000;
}
.event_contents p{font-size: 15px;color: #444444;padding: 25px;font-weight: 600;border-radius: 4px;background: #fff;}
.register_btn.dark{
  background-color: var(--secondary);
  color: #fff;
}
.register_btn.dark:hover{
  
  color: #fff;
}
.register_btn{
background: #fff;
padding: 12px 25px;
color: var(--secondary);
border-radius: 4px;
font-size: 15px;
display: inline-block;
font-weight: 600;
}
.register_btn:hover{
color:var(--secondary);
animation: shake 150ms 2 linear;
}
@keyframes shake {
0% {
  transform: translate(3px, 0);
}
50% {
  transform: translate(-3px, 0);
}
100% {
  transform: translate(0, 0);
}
}
/* Eligibility */
.circles {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--primary);
text-align: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.circles{
font-size: 26px;
text-align: center;
line-height: 43px;
color: #fff;
}
.pulse_icon{
display: inline-block;
}
.pulse {
animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
0% {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
  box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}
}
.eligibility_text p{color: #444444;font-size: 15px;font-weight: 600;text-align: start;}
/* Committee */
.committee_wrapper{
background-color: var(--light);
}
.committee_box{padding: 25px 10px;box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;background-color: aliceblue;border-radius: 4px;}
.user_image_box{
width: 110px;
height: 110px;
border-radius: 50%;
margin: 0 auto;
background-color: #7a7561;
}
.user_image_box img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.committee_box h4{
font-size: 16px;
color: var(--secondary);
font-weight: 600;
}
.committee_box h5{
color: #444444;
font-size: 14px;
}
/* video gallery */
.glightbox-video{
  position: relative;
}
.play_btn{
  position: absolute;
  right: 38%;
  display: block;
  bottom: -73%;
}
.play_btn i{
  color: #fff;
  font-size: 50px;
}
.play-circle{
  width: 75px;
  height: 75px;
  display: inline-block;
  border-radius: 50%;
}
.red{
  display: inline-block;
  background: var(--danger);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 26px rgba(0, 0, 0, 0);
  }
  }
/* Discipline */
.discipline_text{
  font-size: 15px;
  font-style: italic;
  color: #444;
}
.discipline_text i{
  font-size: 25px;
}
.team_official_list{
  display: flex;
  width: 100%;
  gap: 10px;
}
.official_box{
  text-align: center;
}
.official_box span{ 
  background-color: var(--danger);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.official_box span:after{
  content: '';
  position: absolute;
  width: 4px;
  height: 25px;
  bottom: -17px;
  left: 50%;
  background-color: var(--danger);
}
.official_box div strong{
  color: #000;
}
.dicipline_content{
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 26px;
}
.discipline_wrapper{
  background-color: var(--light);
}
/* Footer */
#footer {
  background: #121d24;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
.txt{
  color: #d00;
}
#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d92f39;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #d92f39;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--secondary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  transition: 0.3s;
  background-color: var(--light);
  color: var(--primary);
  padding: 3px 12px;
  font-weight: bold;
  display: inline-block;
  margin-left: 8px;
  border-radius: 8px;
}
/* District */
.event_content h2 {
  font-size: 30px;
  color: #000;
}
.event_content p {
  font-size: 15px;
  color: #444444;
  font-weight: 600;
  padding: 0;
  border-radius: 4px;
  background: #fff;
}
/* Championship Css */
.championship_image_wrapper{
  background: #fafafa;
}
.championship_heading h4{
  font-size: 30px;
  font-weight: 600;
  color: #203572;
  margin-bottom: 20px;
}
.championship_heading h5{
  background: #203572;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 22px;
}
.championship_heading h2{
  font-size: 30px;
  font-weight: 600;
  color: #2c4964;
  margin-bottom: 20px;
}
.championship_heading h3{
  background: #2c4964;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 22px;
}
.championship_gallery{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-bottom: 30px;
}
.championship_gallery a img {
  width: 100%;
  border-radius: 4px;
  height: 35vh;
  object-fit: cover;
}