@import url(global.css);
/*loder css*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.site_loader {
  background: var(--theme-color);
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.site_loader.unactive {
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}

/*loder css end*/
.top_header span, .top_header a {
  color: var(--white-color);
}

header.header_section {
  position: sticky;
  top: 0px;
  z-index: 99;
  width: 100%;
  display: flex;
  background-color: rgb(249, 249, 249);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
header.header_section nav.navbar {
  display: flex;
  flex: 1;
}
header.header_section nav.navbar .navbar-brand img {
  position: absolute;
  top: 0;
  z-index: 2;
  filter: drop-shadow(2px 4px 6px black);
  transition: all 0.4s linear;
}
header.header_section nav.navbar .navbar-brand.js-scrolling img {
  width: 60px;
  transition: all 0.4s linear;
}
header.header_section nav.navbar ul {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
header.header_section nav.navbar ul li {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
header.header_section nav.navbar ul li a {
  color: var(--theme-blue-color);
}
header.header_section nav.navbar ul li a.register {
  background-color: var(--theme--secondary-color);
  color: var(--white-color);
  border-radius: 5px;
  margin: 0 10px;
}
header.header_section nav.navbar ul li a i {
  font-size: 18px;
}
header.header_section nav.navbar ul li.nav-item:hover ul.dropdown-menu {
  display: block;
}

section.banner-section .banner_item {
  position: relative;
}
section.banner-section .banner_item .banner_image {
  background: linear-gradient(95.62deg, rgba(218, 154, 41, 0.5) 100%, rgb(27, 150, 186) 24%);
}
section.banner-section .banner_item .banner_image img {
  width: 100%;
  height: 100%;
}
section.banner-section .banner_item .banner_content_wrapper {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 5px;
}
section.banner-section .banner_item .banner_content_wrapper p {
  color: var(--white-color);
}
section.banner-section .slick-next {
  right: 30px;
  z-index: 3;
}
section.banner-section .slick-prev {
  left: 10px;
  z-index: 3;
}
section.banner-section .slick-prev, section.banner-section .slick-next {
  opacity: 0;
  transition: all 0.5s linear;
}
section.banner-section:hover .slick-prev, section.banner-section:hover .slick-next {
  opacity: 1;
}

.about_sec .about_img__wrapper img {
  width: 100%;
}
.about_sec .about_img__wrapper .sec_img {
  width: 50%;
  position: absolute;
  left: -15%;
  bottom: -50%;
  border-right: 15px solid #fff;
  border-top: 15px solid #fff;
  z-index: 5;
  transform: translate(0%, -50%);
}
.about_sec .about_img__wrapper .third_img {
  width: 50%;
  position: absolute;
  right: -15%;
  bottom: -50%;
  border-right: 15px solid #fff;
  border-top: 15px solid #fff;
  z-index: 5;
  transform: translate(0%, -50%);
}
.about_sec .about_wrapper {
  padding-left: 4rem;
}

.winning_champ_section {
  background: var(--theme-gradient-color);
}
.winning_champ_section .cup_wrapper .winning_item {
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 10px;
  border-radius: 5px;
}
.winning_champ_section .cup_wrapper .winning_item .cp_image {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 2rem;
}
.winning_champ_section .cup_wrapper .winning_item .cp_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  /*filter: grayscale(1);*/
}
.winning_champ_section .cup_wrapper .winning_item .cup_wrapper {
  padding: 1rem;
}
.winning_champ_section .cup_wrapper .winning_item .cup_wrapper p {
  margin-bottom: 0;
}
.winning_champ_section .cup_wrapper .winning_item:hover .cp_image img {
  filter: grayscale(0);
}
.winning_champ_section .cup_wrapper .winning_item.slick-current.slick-active.slick-center img {
  filter: grayscale(0);
}

.upcoming_tournament_sec {
  background: var(--theme-gradient-color);
}
.upcoming_tournament_sec .data_table table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.upcoming_tournament_sec .data_table table tr th {
  border: 0;
  border: 1px solid #ddd;
  border-bottom-color: #ddd !important;
  background-color: var(--theme--secondary-color);
}
.upcoming_tournament_sec .data_table table tr td {
  border: 1px solid #ddd;
}
.upcoming_tournament_sec .data_table table::-webkit-scrollbar {
  background-color: #F5F5F5;
  height: 5px;
}
.upcoming_tournament_sec .data_table table::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: var(--theme--secondary-color);
}
.upcoming_tournament_sec .tournament_series_table table tr {
  border-style: hidden;
}
.upcoming_tournament_sec .tournament_series_table table tr th.table_top_header {
  background-color: #c40030;
}
.upcoming_tournament_sec .tournament_series_table table tr th {
  background-color: var(--black-color);
  color: var(--white-color);
}
.upcoming_tournament_sec .tournament_series_table table tr:nth-child(even) {
  background-color: #f3f3f3;
}
.upcoming_tournament_sec .tournament_series_table table tr td.price {
  color: #c40030;
}
.upcoming_tournament_sec .winner_wrapper {
  position: relative;
  transition: all 0.4s linear;
}
.upcoming_tournament_sec .winner_wrapper .winner_img {
  height: 300px;
}
.upcoming_tournament_sec .winner_wrapper .winner_img img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}
.upcoming_tournament_sec .winner_wrapper .winner_details {
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  row-gap: 0.5rem;
  border-radius: 0 0 5px 5px;
}
.upcoming_tournament_sec .winner_wrapper:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  transform: scale(1.01);
}

.news_section .news_slider .news_item {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 7.65px 1.35px rgba(0, 0, 0, 0.07);
  border-radius: 0px 0px 0px 0px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin: 10px;
  transition: 0.4s;
  min-height: 328px;
}
.news_section .news_slider .news_item .news_image img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 100%;
}
.news_section .news_slider .news_item .news_content {
  padding: 2rem 0.8rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}
.news_section .news_slider .news_item .news_content .plus_icon {
  position: absolute;
  right: 6px;
  top: 0;
}
.news_section .news_slider .news_item .news_content .plus_icon::after {
  content: "\f067";
  position: absolute;
  font-family: "FontAwesome";
  right: 0;
}
.news_section .news_slider .news_item .news_content a[aria-expanded=true] .plus_icon::after {
  content: "\f068";
}
.news_section .news_slider .news_item .news_content p {
  margin-bottom: 0;
}
.news_section:hover .slick-prev, .news_section:hover .slick-next {
  opacity: 1;
}

.become_a_part_sec {
  background-image: url("../../assets/images/tournament-img.jpg");
  background-attachment: fixed;
  background-position: top;
}
.become_a_part_sec .become_a_wrapper .become_text h1, .become_a_part_sec .become_a_wrapper .become_text p {
  color: var(--white-color);
}

.sponsor_section {
  background: var(--theme-gradient-color);
}
.sponsor_section .sponsor_wrapper .sponsor_item {
  background-color: var(--white-color);
  border: 1px solid #ddd;
  margin: 0 10px;
  padding: 0.8rem;
  border-radius: 5px;
}
.sponsor_section .sponsor_wrapper .sponsor_item .sponcer_img img {
  /*filter: grayscale(1);*/
  width: 100%;
}
.sponsor_section .sponsor_wrapper .sponsor_item.slick-center .sponcer_img {
  padding: 1rem;
}
.sponsor_section .sponsor_wrapper .sponsor_item.slick-center .sponcer_img img {
  filter: grayscale(0);
  width: 100%;
}
.sponsor_section .sponsor_wrapper .sponsor_item:hover .sponcer_img img {
  filter: grayscale(0);
}

.breadcrumb-section {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: 100% 60%;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.breadcrumb-section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #222222;
  opacity: 0.6;
  content: "";
}
.breadcrumb-section .breadcrum_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.breadcrumb-section .breadcrum_wrapper nav {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb-section .breadcrumb-text {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.breadcrumb-section .breadcrumb-text h1 {
  font-size: 46px;
  text-transform: uppercase;
  color: #fff;
}
.breadcrumb-section ul.breadcrumb-nav {
  padding: 20px 25px;
  background: #fff;
  text-align: center;
  display: inline-flex;
}
.breadcrumb-section ul.breadcrumb-nav li {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  margin-right: 6px;
  padding-right: 23px;
  position: relative;
}
.breadcrumb-section ul.breadcrumb-nav li::after {
  position: absolute;
  font-weight: 400;
  content: "\f101";
  font-family: "FontAwesome";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb-section ul.breadcrumb-nav li:last-child::after {
  display: none;
}

.about_page .about_sec {
  position: relative;
}
.about_page .about_sec .about-img img {
  width: 100%;
}
.about_page .about_sec .about_img__wrapper .sec_img, .about_page .about_sec .about_img__wrapper .third_img {
  transform: translate(0%, -50%);
  width: 227px;
  height: 227px;
}
.about_page .about_sec .about_img__wrapper .sec_img img, .about_page .about_sec .about_img__wrapper .third_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  image-rendering: auto;
}

.contact_sec::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  height: 100%;
  width: 100%;
  background-image: url("../images/contact_bg.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.contact_sec .contact_wrapper {
  background-color: #fff;
  padding: 60px;
  height: 100%;
}
.contact_sec .contact_wrapper .info_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f3f3f3;
}
.contact_sec .contact_wrapper .info_box:last-child {
  border-bottom: 0;
}
.contact_sec .contact_wrapper .info_box p {
  display: flex;
  align-items: start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.contact_sec .contact_wrapper .info_box p a {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.contact_sec .contact_wrapper .info_box p a i {
  font-size: 23px;
  padding: 10px;
  border: 1px solid #ddd;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: #198754;
}
.contact_sec .contact_form_wrapper {
  padding: 60px;
  background-color: #222;
}
.contact_sec .contact_form_wrapper input.form-control,
.contact_sec .contact_form_wrapper textarea.form-control {
  background: #595656;
  border: none;
  width: 100%;
  height: 68px;
  padding-left: 65px;
  padding-right: 30px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  border-radius: 0 !important;
  color: var(--white-color);
}
.contact_sec .contact_form_wrapper textarea.form-control {
  height: auto !important;
  padding-top: 2rem;
}
.contact_sec .contact_form_wrapper .textarea label.input_label {
  top: 43px !important;
  left: 40px !important;
}
.contact_sec .contact_form_wrapper input.form-control::-moz-placeholder, .contact_sec .contact_form_wrapper textarea.form-control::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.contact_sec .contact_form_wrapper input.form-control::placeholder,
.contact_sec .contact_form_wrapper textarea.form-control::placeholder {
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.contact_sec .contact_form_wrapper input[type=submit] {
  border-radius: 0 !important;
}
.contact_sec .contact_form_wrapper label.input_label {
  top: 50%;
  left: 17%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
}
.contact_sec .contact_form_wrapper .form-group {
  margin-bottom: 1.9rem;
}
.contact_sec .contact_form_wrapper .is-invalid + .invalid-feedback {
  height: 0;
}

.gallery_section .image_wrapper {
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.5s;
}
.gallery_section .image_wrapper:hover {
  box-shadow: 0 4px 40px -4px rgba(0, 0, 0, 0.3);
}
.gallery_section .image_wrapper .image_box {
  margin-bottom: 1rem;
}
.gallery_section .image_wrapper .image_box img {
  width: 100%;
}
.gallery_section .card {
  background: var(--white-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333;
  border-radius: 2px;
}
.gallery_section .card.image {
  background: var(--white-color);
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.gallery_section .card.image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery_section .gallery-box .single-campus-card {
  margin-bottom: 30px;
  transition: all ease 0.5s;
  background-color: #fff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.gallery_section .gallery-box .single-campus-card:hover {
  transform: translateY(-10px);
}
.gallery_section .gallery-box .single-campus-card .img .fancybox img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery_section .gallery-box .single-campus-card .campus-content.acmi-gallery {
  padding: 20px;
  padding-bottom: 26px;
}
.gallery_section .gallery-box .single-campus-card .campus-content.acmi-gallery h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.sponsor_Page_sec .sponsor_wrapper .sponsor_item {
  margin: 10px;
  overflow: hidden;
  border: 1px solid #0d6efd;
  transition: 0.5s;
  border-radius: 4px;
}
.sponsor_Page_sec .sponsor_wrapper .sponsor_item .sponcer_img img {
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
  -o-object-fit: scale-down;
     object-fit: scale-down;
  /*filter: grayscale(1);*/
  transition: 0.5s;
  cursor: pointer;
}
.sponsor_Page_sec .sponsor_wrapper .sponsor_item:hover {
  border: 1px solid #ddd;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.25);
}
.sponsor_Page_sec .sponsor_wrapper .sponsor_item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.sponsor_Page_sec .sponsor_wrapper .sponsor_item .caption h3 {
  font-size: 22px;
  margin: 0;
  padding: 10px;
  background-color: #0d6efd;
  color: #fff;
  font-weight: 400;
  font-family: "Roboto", sans-serif !important;
}

.tournament_wrap ul li {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
}
.tournament_wrap .live_caption {
  position: absolute;
  top: 18px;
  right: 10px;
  z-index: 1;
}
.tournament_wrap .live_caption span.info-ongoing {
  background: #bd4233;
  color: #fff;
  padding: 0px 8px;
  position: relative;
  z-index: 100;
  text-transform: uppercase;
  margin-right: 8px;
  font-size: 14px;
  border-radius: 16px;
}

.tournament_sec .tournament_main_wrap {
  border: 1px solid #ddd;
  margin-bottom: 2rem;
}
.tournament_sec .tournament_main_wrap .about_wrapper {
  padding: 1rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.ec_section .xc_wrapper .xc_item {
  margin-bottom: 1rem;
}
.ec_section .xc_wrapper .xc_item .xc_img img {
  width: 100%;
}
.ec_section .xc_wrapper .xc_item .caption {
  display: flex;
  justify-content: center;
}
.ec_section .xc_wrapper .xc_item .mail_wrap {
  word-break: break-all;
  text-align: center;
  padding: 0 4px;
}
.ec_section .xc_wrapper .xc_item .mail_wrap p {
  padding: 0px;
  font-size: 0.9rem;
  overflow-wrap: break-word;
  margin-bottom: 0;
}
.ec_section .xc_wrapper .xc_item .mail_wrap p a {
  text-decoration: underline;
  color: var(--theme--secondary-color);
}

.form_section .card {
  transition: all 0.3s ease;
}
.form_section .card .form_icon {
  display: flex;
  justify-content: end;
}
.form_section .card .form_icon img {
  opacity: 0.2;
  transition: all 0.3s ease;
}
.form_section .card:hover {
  transform: scale(1.01);
}
.form_section .card:hover img {
  opacity: 1;
}
.form_section .card .card_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer.footer_section {
  position: relative;
  background-color: #06083B;
}
footer.footer_section:after {
  content: "";
  background: url(../../assets/images/banner_over-img.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: overlay;
}
footer.footer_section .footer_logo_wrapper {
  position: relative;
  z-index: 1;
}
footer.footer_section .footer_logo_wrapper .more_info .more_info_text a {
  color: var(--theme--secondary-color);
  text-decoration: underline;
}
footer.footer_section .footer_wrapper {
  color: var(--white-color);
  position: relative;
  z-index: 1;
}
footer.footer_section .footer_wrapper h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
footer.footer_section .footer_wrapper ul {
  padding: 0;
  list-style: none;
}
footer.footer_section .footer_wrapper ul.contact-list li {
  margin-bottom: 10px;
}
footer.footer_section .footer_wrapper ul.contact-list li a {
  margin-top: -7px;
}
footer.footer_section .footer_wrapper ul.socials_links {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
footer.footer_section .footer_wrapper ul.socials_links li a {
  font-size: 24px;
}
footer.footer_section .footer_wrapper ul li {
  display: flex;
  align-items: stretch;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
footer.footer_section .footer_wrapper ul li a {
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--white-color);
}
footer.footer_section .footer_wrapper ul li a:hover {
  color: var(--theme-light-color);
}
footer.footer_section .copy_right {
  position: relative;
  z-index: 2;
}
footer.footer_section .copy_right span {
  font-size: 14px;
  color: var(--white-color);
}
footer.footer_section hr {
  background-color: var(--white-color);
}

section.tournament_sec_wrapper table tr td a {
  border-radius: 50px;
}/*# sourceMappingURL=style.css.map */