/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/BebasNeue-Regular.ttf");
}

@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Regular.ttf");
}

.font-family-beba {
  font-family: "BebasNeue";
}

.font-family-exo {
  font-family: "Exo2";
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Exo2";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "BebasNeue";
}

a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c42345;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c42345;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 10px;
}

.social-links a {
  color: #000;
  font-size: 30px;
  margin: 0 5px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo img {
  max-height: 55px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.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: #c42345;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar ul li:last-child ul {
  left: -95px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.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: #c42345;
}

.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;
}

.login-register a {
  background-color: #000;
  padding: 5px 15px;
  border-radius: 8px;
  color: #fff;
}

.login-register a:focus {
  padding: 5px 15px;
}

.login-register:hover a,
.login-register a:hover {
  color: #fff !important;
}

.nav-user-image {
  display: flex;
  align-items: center;
}

.nav-user-image .nav-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #c22441;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 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: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  /* color: #222222; */
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

#main {
  background-color: #fff;
}

.section-title h2 {
  font-size: 55px;
  color: rgba(252, 195, 1, 1);
}

.hero-slider-single-image {
  height: 100%;
  object-fit: cover;
}

.hero-slider-single {
  height: 100%;
  object-fit: cover;
}

.hero-slider-single img{
  height: 100%;
  object-fit: cover;
}

.hero-slider-main .slick-track{
  height: 100%;
}

.hero-slider-main .slick-list{
  height: 100%;
}

.hero-slider-main {
    margin-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
#hero-main {
  background-color: #fff;
  position: relative;
}

#hero-main .container {
  z-index: 9;
}

.hero-slider-single-image {
    height: 100%;
    object-fit: cover;
}

.hero-slider-single {
    position: relative;
    height: 100%;
}

.hero-slider-single {
    height: 100%;
    object-fit: cover;
}

.hero-slider-main .slick-track{
  height: 100%;
}

.form-main-screen {
  background-color: #fff;
}

.login-screen-form {
  padding: 0 60px 0 30px;
}

.login-screen-form h1 {
  font-size: 55px;
  color: #fcc301;
  letter-spacing: 2px;
}

.player-register-screen-form {
  padding: 30px;
}

.player-register-screen-form h1 {
  font-size: 55px;
  color: #fcc301;
  letter-spacing: 2px;
  text-align: center;
}

.player-register-screen-form hr:not([size]) {
  height: 2px;
  color: #525252;
}

.player-register-screen-form .profile-pic img {
  max-width: 100px;
  height: 100px;
}

.player-register-screen-form #profile-image-upload {
  display: none;
}

.player-register-form h3 {
  padding: 0px 0px 20px 0px;
  font-size: 26px;
  color: #fff !important;
  font-weight: 500;
  font-family: "Exo2";
}

.btn-browse {
  background-color: #C42345;
  padding: 8px 20px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}

.upload-area {
  width: 100%;
  border: 2px dashed #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #333333;
}

.upload-area .fa-image {
  font-size: 48px;
  color: #fff;
}

.upload-area--open {
  /* Slid Down Animation */
  animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
  from {
    height: 28.125rem;
    /* 450px */
  }

  to {
    height: 35rem;
    /* 560px */
  }
}

/* Header */

.upload-area__header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.upload-area__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
  font-size: 0.9375rem;
  color: #fff;
  margin-top: 0;
}

.upload-area__tooltip {
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: color 300ms ease-in-out;
}

.upload-area__tooltip:hover {
  color: #fff;
}

.upload-area__tooltip-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -125%);
  min-width: max-content;
  background-color: var(--clr-white);
  color: #fff;
  border: 1px solid var(--clr-light-blue);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: none 300ms ease-in-out;
  transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
  opacity: 1;
  visibility: visible;
}

/* Drop Zoon */
.upload-area__drop-zoon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed var(--clr-light-blue);
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover {
  border-color: #fff;
}

.drop-zoon__icon {
  display: flex;
  font-size: 3.75rem;
  color: #fff;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
  font-size: 0.9375rem;
  color: #fff;
  margin: 0;
  margin-top: 0.625rem;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: #fff;
  z-index: 10;
}

.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  z-index: 1fff;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}

.drop-zoon__file-input {
  display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
  border-color: #fff;
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}

/* (drop-zoon--over) Modifier Class */


.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}

/* File Details Area */
.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.file-details__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

/* Uploaded File */
.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}

.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}

.uploaded-file__icon {
  font-size: 3.4375rem;
  color: #fff;
}

.uploaded-file__icon-text {
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-white);
}

.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
  content: '';
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
}

.uploaded-file__info::before {
  width: 100%;
}

.uploaded-file__info::after {
  width: 100%;
  background-color: var(--clr-blue);
}

/* Progress Animation */
.uploaded-file__info--active::after {
  animation: progressMove 800ms ease-in-out;
  animation-delay: 300ms;
}

@keyframes progressMove {
  from {
    width: 0%;
    background-color: transparent;
  }

  to {
    width: 100%;
    background-color: var(--clr-blue);
  }
}

.uploaded-file__name {
  width: 100%;
  max-width: 6.25rem;
  /* 100px */
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploaded-file__counter {
  font-size: 1rem;
  color: var(--clr-light-gray);
}



.player-register-form .player-register-create-button {
  margin: 0 auto;
}

.change-password-screen-form {
  padding: 0 60px 0 30px;
}

.change-password-screen-form h1 {
  font-size: 55px;
  color: #fcc301;
  letter-spacing: 2px;
}

.form-fields label {
  font-size: 18px;
  color: #000;
  letter-spacing: 2px;
}

.form-fields input,
.form-fields select {
  background-color: #99999926;
  color: #000;
  padding: 10px;
  border: transparent;
  border-radius: 10px;
  position: relative;
}

select.form-select:after {
  content: "";
  background-image: url(../images/down-arrow.png);
}

.player-register-screen-form input[type=date] {
  color: #000;
}

.form-fields input:focus,
.form-fields .form-select:focus {
  color: #000;
  background-color: #99999926;
  border-color: #fff;
  outline: 0;
  box-shadow: unset;
  border-radius: 10px;
}

.form-checkbox {
  letter-spacing: 0px !important;
  font-size: 18px !important;
  margin-right: 10px;
}

.form-fields .form-select {
  content: "";
  background: url(../images/down-arrow.png) no-repeat right #f0f0f0;
  width: 100%;
  appearance: none;
  background-position-x: 97%;
}

.forget-password {
  text-align: right;
}

.forget-password a {
  font-size: 20px;
  color: #000;
  letter-spacing: 2px;
}

.button-main-common .button-common {
  width: 100%;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
  color: #fff;
  display: block;
  text-align: center;
}

.button-main-common .button-primary {
  background-color: #c42345;
  border-color: #c42345;
}

.button-main-common .button-seconary {
  background-color: rgba(196, 35, 69, 0.4);
  border: rgba(196, 35, 69, 0.4);
  display: block;
  cursor: pointer;
}

.button-divider {
  padding: 20px 0;
}

.button-divider div {
  color: #000;
  font-size: 22px;
  text-align: center;
  position: relative;
}

.button-divider div:after,
.button-divider div:before {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 2px;
  width: 45%;
  top: 55%;
  transform: translate(0, -55%);
  background-color: rgba(255, 255, 255, 0.3);
}

.button-divider div:after {
  right: 0;
  left: unset;
}

.button-divider div:before {
  left: 0;
}

.login-screen-form-text h2 {
  font-size: 28px;
  color: #fff;
}

.login-screen-form-text p {
  font-size: 18px;
  color: rgba(176, 176, 176, 1);
  margin-top: 10px;
}

.login-bg-element,
.register-bg-element {
  position: absolute;
  left: -260px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.hero-slider-single {
  position: relative;
}

.hero-slider-single-content {
  position: absolute;
  right: 15%;
  top: 50%;
  width: 33%;
  background-color: rgb(255 255 255);
  padding: 30px;
  transform: translate(0, -50%);
}

.hero-slider-single-content h1 {
  font-size: 65px;
  line-height: 66px;
  color: rgba(252, 195, 1, 1);
}

.hero-slider-single-content p {
  color: #fff;
  padding-bottom: 20px;
}

.hero-slider-single-content a {
  background-color: rgba(196, 35, 69, 1);
  color: #fff;
  padding: 15px 28px;
  font-size: 18px;
}

.hero-slider-main .slick-arrow {
  position: absolute;
  bottom: 20px;
  z-index: 9;
  cursor: pointer;
  width: 35px;
}

.hero-slider-main .left {
  left: 47%;
  z-index: 9;
}

.hero-slider-main .right {
  right: 47%;
}


.hero-slider-main .slick-dots {
  bottom: 25px;
}

.hero-slider-main .slick-dots li button:before {
  font-family: 'slick';
  font-size: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #871830;
  /* border-radius: 10px !important; */
  width: 20px;
  height: 20px;
  content: "";
  text-align: center;
  opacity: .50;
  color: #871830;
  border: 2px solid #a98504;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-slider-main .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #871830;
}

#player-profile {
  position: relative;
}

#player-profile .container {
  position: relative;
  z-index: 9;
}

.player-profile-slide {
  margin: 20px;
}

.player-image {
  position: relative;
}

.player-position {
  text-align: center;
  margin-top: -13px;
  position: absolute;
  left: 0;
  right: 0;
}

.player-info-main {
  background: rgba(28, 28, 28, 1);
  padding: 15px;
}

.player-position span {
  background-color: rgba(196, 35, 69, 1);
  padding: 5px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
}

.player-info-main h3 {
  text-align: center;
  margin: 15px 0;
  font-size: 26px;
  color: #fff;
  letter-spacing: 2px;
}

.player-info {
  display: flex;
  justify-content: space-between;
}

.player-info-common span {
  font-size: 16px;
  color: rgba(120, 120, 120, 1);
}

.player-info-common p {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.player-rank {
  text-align: right;
}

.player-profile-slider .slick-arrow {
  position: absolute;
  top: -85px;
  right: 0;
  width: 55px;
  cursor: pointer;
}

.player-profile-slider .left {
  left: 86%;
  z-index: 9;
}

.player-profile-slider .right {
  right: 20px;
}

.lion-element {
  position: absolute;
  top: 30%;
  left: -100px;
  z-index: 1;
}

#counts {
  position: relative;
}

.count-box {
  position: relative;
}

.count-box-contant {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.count-box-contant span {
  font-size: 90px;
  line-height: 90px;
  color: #fff;
  font-family: "BebasNeue";
}

.count-box-contant p {
  font-size: 25px;
  color: #fff;
}

.counter-element {
  position: absolute;
  top: 30%;
  right: 0;
}

.count-box-two-part {
  display: flex;
}

.seperater {
  font-size: 70px;
  color: #fff;
  margin-top: -15px;
  padding: 0 10px;
}

.event-lists table tr {
  border-top: 1px solid;
  display: block;
}

.event-lists table tr:last-child {
  border-bottom: 1px solid;
}

.event-lists table tr td .table-event-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.event-lists table tr td .table-event-date {
  margin-bottom: 0;
  margin-top: 5px;
}

.event-lists table tr td {
  border: none;
  display: block;
}

.event-image {
  position: relative;
}

.event-tag {
  text-align: right;
  position: absolute;
  bottom: -12px;
  right: 20px;
}

.event-tag span {
  background-color: rgba(196, 35, 69, 1);
  padding: 5px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
}

.event-info {
  padding: 20px;
  background-color: rgba(28, 28, 28, 1);
}

.event-info-name {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.event-info-name img {
  width: 70px;
  margin-right: 20px;
}

.event-info-name p {
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.event-info p {
  font-size: 24px;
  color: #fff;
}

.event-date {
  font-size: 18px;
  color: #fff;
}

.events-main-slider .slick-dots li button {
  width: 95px;
  height: 6px;
  background: rgba(28, 28, 28, 1);
  padding: 0px;
}

.events-main-slider .slick-active button {
  background-color: rgba(252, 195, 1, 1) !important;
}

.events-main-slider .slick-dots li button:before {
  display: none;
}

.events-main-slider .slick-dots {
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.events-main-slider .slick-dots li {
  width: 95px;
  height: 6px;
  margin: 0;
}

.news-slide-info {
  display: flex;
  align-items: center;
}

.news-image {
  margin-right: 30px;
  width: 50%;
}

.news-image img {
  width: 100%;
}

.news-content h3 {
  color: #000;
  font-size: 18px;
  font-family: "Exo2";
  font-weight: 600;
}

.news-content p {
  font-size: 18px;
  color: rgba(176, 176, 176, 1);
}

.news-main span.page-link {
  font-size: 20px;
  margin-right: 10px;
}

.news-main .pagination {
  display: flex;
  justify-content: space-between;
}

.news-main span.page-link {
  font-size: 20px;
  margin-right: 10px;
}

.news-main .pagination {
  display: flex;
  justify-content: space-between;
}

.news-content a {
  color: rgba(255, 46, 90, 1);
  display: flex;
  align-items: center;
  font-size: 20px;
}

.news-main .pagination a {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  font-family: "Exo2";
  background: #c42345;
  border: none;
  border-radius: 6px;
}

.news-main .pagination .page-item.disabled span {
  font-weight: 500;
  font-size: 20px;
  color: #c42345;
  font-family: "Exo2";
  background: #fff;
  border: none;
  border-radius: 6px;
}

.news-content a i {
  margin-left: 8px;
  font-size: 19px;
  transform: rotate(-35deg);
  margin-top: 5px;
}

.news-slider .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: -100px;
  width: 70px;
}

.news-slider .left {
  left: 70%;
  z-index: 9;
}

.news-slider .right {
  right: 0;
}

.news-content {
  width: 50%;
}

.achievements-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.achievements-title #myTab {
  border: none;
}

.achievements-title #myTab li {
  margin-right: 15px;
}

.achievements-title .nav-tabs .nav-link.active {
  background-color: rgba(196, 35, 69, 1);
  border: none;
}

.achievements-title .nav-tabs .nav-link {
  border-radius: 10px;
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(196, 35, 69, 0.4);
}

.nav-tabs .nav-link:hover {
  border: none;
}

.player-achievement-slide,
.coaches-achievement-slide {
  margin: 20px;
}

.achievements-image {
  position: relative;
}

.achievements-name span {
  background-color: rgba(196, 35, 69, 1);
  padding: 5px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
}

.achievements-name {
  position: absolute;
  bottom: -12px;
  left: 20px;
}

.achievements-info {
  padding: 30px 10px 30px 0;
  font-size: 20px;
  color: #000;
}

.player-achievement-slider .slick-arrow,
.coaches-achievement-slider .slick-arrow {
  position: absolute;
  bottom: -10px;
  width: 60px;
  cursor: pointer;
}

.player-achievement-slider .left,
.coaches-achievement-slider .left {
  left: 43%;
  z-index: 9;
}

.player-achievement-slider .right,
.coaches-achievement-slider .right {
  right: 43%;
}

.gallery-slide {
  margin: 20px;
}

.gallery-slide p {
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin: 0 20px;
}

.gallery-slide p {
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin: 20px 10px;
}

.gallery-slider .slick-arrow {
  position: absolute;
  top: -92px;
  width: 60px;
  cursor: pointer;
}

.gallery-slider .left {
  left: 86%;
  z-index: 9;
}

.gallery-slider .right {
  right: 0;
}

/*--------------------------------------------------------------
# Single News
--------------------------------------------------------------*/
.single-news-content-main {
  background-color: rgba(28, 28, 28, 1);
  margin-bottom: 40px;
}

.single-news-content {
  padding: 20px;
  color: #fff;
}

.single-news-content h2 {
  color: #fff;
  font-family: "Exo2";
  font-size: 28px;
  margin-bottom: 20px;
}

.single-news-content p,
.single-news-content li {
  font-size: 18px;
}

/*--------------------------------------------------------------
# CMS Player Profile
--------------------------------------------------------------*/
.cmsplayer-profile-screen {
  padding: 30px;
}

.cmsplayer-profile-screen h1 {
  font-size: 60px;
  color: #fcc301;
  letter-spacing: 2px;
  text-align: center;
}

.cmsplayer-profile-screen hr:not([size]) {
  height: 2px;
  color: #525252;
}

.cmsplayer-profile-screen-main .cmsplayer-detail {
  margin: 20px 0px;
}

.cmsplayer-profile-screen-main h3 {
  padding: 0px 0px 20px 0px;
  font-size: 28px;
  color: #fff !important;
  font-weight: 500;
  font-family: "Exo2";
}

.cmsplayer-profile-screen-main .defander {
  display: flex;
  /* justify-content: space-between; */
}

.cmsplayer-profile-screen-main .hand {
  display: flex;
  align-items: center;
}

.cmsplayer-profile-screen-main .defander p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding-left: 10px;
}

.cmsplayer-profile-screen-main .player-profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #c42345;
}

.cmsplayer-profile-screen-main h4 {
  font-size: 48px;
  font-weight: 400;
  color: #000;
  margin: 20px 0px;
}

.cmsplayer-profile-screen-main h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 5px 20px;
  font-family: "Exo2";
  background-color: #C42345;
  border-radius: 15px;
}

.cmsplayer-profile-screen-main h6 {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
  font-family: "Exo2";
  margin-bottom: 5px;
}

.cmsplayer-profile-screen-main p {
  font-size: 22px;
  font-weight: 400;
  color: #000;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .section-title h2 {
  font-size: 50px;
  font-weight: 400;
  color: #FCC301;
}

.about-us p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

/*--------------------------------------------------------------
# Vision & Mission
--------------------------------------------------------------*/
.vision .section-title h2 {
  font-size: 50px;
  font-weight: 400;
  color: #FCC301;
}

.vision p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

.mission {
  /* background-color: #161616; */
  background-color: #fff;
}

.mission h2 {
  font-size: 50px;
  font-weight: 400;
  color: #FCC301;
  text-align: center;
}

.mission .single-mission {
  background-color: #000;
  height: 100%;
  padding: 50px 20px 20px;
  border-radius: 10px;
  position: relative;
}

.mission .mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  padding: 10px;
  background-color: #C42345;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
}

.mission .single-mission h5 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}

.mission .single-mission p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}

.mission .mission-desc p {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  text-align: center;
}

/*--------------------------------------------------------------
# affiliated-districts
--------------------------------------------------------------*/
.affiliated-districts-banner {
  position: relative;
}

#affiliated-districts-table {
  padding: 30px 0px 60px;
}

.affiliated-districts-banner .inner-hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.affiliated-districts-banner h1 {
  color: #FCC301;
  font-size: 64px;
  font-weight: 400;
}

.affiliated-districts-banner p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.affiliated-districts-table thead {
  background-color: #333333;
}

.affiliated-districts-table thead th {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.affiliated-districts-table td {
  color: #000 !important;
  font-size: 18px;
  font-weight: 500;
}

.affiliated-districts-table tr {
  border-bottom: 1px solid #333333;
}

.affiliated-districts-table ul#myTab {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  border: none;
}

.affiliated-districts-table .nav-tabs .nav-item.show .nav-link,
.affiliated-districts-table .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #c42344;
  border-color: transparent;
  border-radius: 10px;
  border: none
}

.affiliated-districts-table .nav-tabs .nav-link {
  border: none;
  margin: 0px 5px;
  color: #000;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Office Bearers
--------------------------------------------------------------*/
.main-members h2 {
  color: #FCC301;
  font-size: 45px;
  font-weight: 400;
}

.main-members p {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Player Profile
--------------------------------------------------------------*/
.player-profile-screen {
  padding: 30px;
}

.player-profile-screen h1 {
  font-size: 60px;
  color: #fcc301;
  letter-spacing: 2px;
  text-align: center;
}

.player-profile-screen hr:not([size]) {
  height: 2px;
  color: #525252;
}

.player-profile-screen-main h3 {
  padding: 0px 0px 20px 0px;
  font-size: 28px;
  color: #fff !important;
  font-weight: 500;
  font-family: "Exo2";
}

.player-profile-screen-main .player-profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #c42345;
}

.player-profile-screen-main .player-profile img {
  border-radius: 50%;
}

.player-profile-screen-main h4 {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin: 20px 0px;
}

.player-profile-screen-main h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 5px 20px;
  font-family: "Exo2";
  background-color: #C42345;
  border-radius: 15px;
}

.player-profile-screen-main h6 {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
  font-family: "Exo2";
}

.player-profile-screen-main p {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.player-profile-screen-main .downloaded-pdf {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.player-profile-screen-main .downloaded-pdf img {
  max-width: 40px;
  margin-right: 10px;
}

.player-profile-screen-main .downloaded-pdf p {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-main a i {
  font-size: 18px;
  color: #FF2E5A;
  transform: rotate(-30deg);
  margin-left: 6px;
}

.news-main a {
  font-weight: 500;
  font-size: 18px;
  color: #FF2E5A;
  font-family: "Exo2";
}

.news-main .news-contain {
  font-size: 18px !important;
  font-weight: 400;
  color: #B0B0B0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news-main .news-name h2 {
  font-weight: 600;
  font-family: "Exo2";
  font-size: 22px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news-main .news-name {
  padding: 20px 0px;
}

/*--------------------------------------------------------------
# Notice Page
--------------------------------------------------------------*/
.notice-main .notice-title h3 {
  font-weight: 600;
  font-family: "Exo2";
  font-size: 22px;
  color: #fff;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event-main h6 {
  font-weight: 400;
  font-family: "Exo2";
  font-size: 18px;
  color: #fff;
}

.event-main input {
  background: transparent;
  border: none;
  padding: 8px;
  color: #fff;
  opacity: 1;
  font-size: 18px;
  font-weight: 400;
  font-family: "Exo2";
  width: 100%;
}

.event-main input:focus-visible {
  outline: none;
}

.event-main .button {
  background: transparent !important;
  border: none;
  color: #fff;
}

.event-main input::placeholder {
  color: #fff;
}

.event-main .input-box {
  background: #1C1C1C;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}

.event-main .event-date {
  background: #1C1C1C;
}

.updated-soon h3 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  font-family: "Exo2";
  margin: 30px 0px;
}

.event-main select.upcoming {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Exo2';
  background: #1c1c1c;
  border: none;
  color: #fff;
}

.event-main select:focus-visible {
  outline: none;
}

.event-search-main {
  width: 80%;
}

.event-date-main {
  width: 19%;
}

.event-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.event-main button.apply-now-btn {
  background-color: #c42345;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}

h1#exampleModalLabel2 {
  color: #fff;
  font-size: 30px;
}

.form-event-apply label.form-label {
  color: #fff;
}

.form-event-apply input:focus-visible {
  outline: none;
}

.form-event-apply input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.model-main .modal-header,
.model-main .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
}

.model-main .modal-content {
  background: #fff;
  padding: 20px;
}

.model-main .modal-body h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
}

.model-main .submit-btn {
  background-color: #c42345;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}

.model-main .submit-btn:hover {
  color: #fff;
}

.model-main .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #fff;
  background-image: url("../images/model-close.png");
  opacity: 1;
}



.event-main button.apply-now-btn {
  background-color: #c42345;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  margin: 10px;
}

.model-main .modal-header,
.model-main .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
}

.model-main .modal-content {
  background: #fff;
  padding: 20px;
}

.model-main .modal-body h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
}

.model-main .submit-btn {
  background-color: #c42345;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}

.model-main .submit-btn:hover {
  color: #fff;
}

.model-main .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #fff;
  background-image: url("../images/model-close.png");
  opacity: 1;
}


/*--------------------------------------------------------------
# In Press
--------------------------------------------------------------*/
.in-press-first {
  padding: 40px 0px;
}


.in-press-first h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  font-family: "Exo2";
  margin: 0px 0px 30px 20px;
}


.in-press-first .press-list {
  position: relative;
}


.in-press-first .press-list:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 189px;
  pointer-events: none;
  box-shadow: inset -92px 0 45px -40px rgb(255 255 255 / 99%);
}

.in-press-first .press-list:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 189px;
  pointer-events: none;
  box-shadow: inset 92px 0 45px -40px rgb(255 255 255 / 99%);
  z-index: 1;

  /* Ensure the shadow is above the slides */
}


.in-press-first .single-slide {
  padding: 10px;
}


.in-press-first .client-img img {
  height: 350px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-image: url(../images/Footer_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
}

.footer-logo-main {
  text-align: center;
  z-index: 9;
  position: relative;
}

.footer-logo-main img {
  margin-top: -50px;
  width: 130px;
  margin-bottom: 15px;
}

.footer-logo-main div {
  font-size: 46px;
  text-transform: uppercase;
  color: #fff;
  font-family: "BebasNeue";
  letter-spacing: 2px;
}

#footer .footer-top h4 {
  font-size: 28px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

#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: #106eea;
  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;
  font-size: 18px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fcc301;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  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: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  padding: 15px;
  background-color: #40000e;
  color: #fff;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}


/*--------------------------------------------------------------
# Contact us
--------------------------------------------------------------*/
.contect-information p {
  color: #000;
}

.con-detail a {
  color: #000;
}


.social-media li {
  list-style: none;
}


.font-icon {
  display: flex;
  list-style-type: none;
  padding: 0;
}

.item a {
  width: 30px;
  height: 30px;
  /* Adjusted height to match width */
  background-color: #f0f9fe;
  border: 3px solid black;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 5px;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 0;
  transform: scale(1, 0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.item:hover a::before {
  transform: scale(1, 1);
}

.icon {
  font-size: 18px;
  color: hsl(203, 92%, 8%);
  transition: transform 0.55s ease;
  z-index: 2;
}

.item a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.item:nth-child(1) a::before {
  --bg-color: #E1306C;
  /* Instagram color */
}

.item:nth-child(2) a::before {
  --bg-color: #0077b5;
  /* FaceBook color */
}

.Thank-You-Content {
  text-align: center;
}

.Thank-You .Thank-You-Button a {
  background: #c42345;
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 10px;
}

.Thank-You p {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  margin: 20px 0px;
  text-transform: capitalize;
}

.Thank-You h2 {
  font-size: 40px;
  color: #000;
  font-weight: 600;
  margin: 20px 0px;
  letter-spacing: 3px;
}

.Thank-You {
  padding-bottom: 100px;
}

.error-help-block {
  color: red !important;
}

.profile-id-main {
  border: 2px solid #000;
}

.profile-id-main .profile-id-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 60px 0px 60px;
  background: rgb(255, 255, 255);
  background: linear-gradient(117deg, rgba(255, 255, 255, 1) 15%, rgba(57, 163, 215, 1) 30%, rgba(254, 51, 10, 1) 49%, rgba(0, 166, 82, 1) 67%, rgba(255, 255, 255, 1) 85%);

}

.profile-id-main .profile-id-img img {
  max-width: 200px;
  margin-bottom: -30px;
}

.profile-id-main ul li {
  list-style-type: none;
  font-size: 18px;
  display: flex;
}

.profile-id-img h4 {
  color: #fff;
  margin: 20px 0px;
  font-size: 30px;
  letter-spacing: 1px;
}

.detail {
  padding: 60px;
}

.detail h3 {
  font-size: 35px;
  letter-spacing: 2px;
}

.detail li div {
  width: 33.33%;
}

.hero-slider-main .slick-dots {
  bottom: 25px;
}

.hero-slider-main .slick-dots li button:before {
  font-family: 'slick';
  font-size: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #871830;
  /* border-radius: 10px !important; */
  width: 20px;
  height: 20px;
  content: "";
  text-align: center;
  opacity: .50;
  color: #871830;
  border: 2px solid #a98504;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-slider-main .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #871830;
}

.card-body table.dataTable thead {
  background-color: #333333;
  color: #fff;
}

.card-body tbody tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
  border: var(--bs-table-striped-bg);
}

.card-body tbody tr {
  border: transparent;
}

.card-body tbody tr {
  border-bottom: 1px solid #000 !important;
}

.gallery-main .slick-dots {
  bottom: -25px;
}

.gallery-main .slick-dots li button:before {
  font-family: 'slick';
  font-size: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #871830;
  /* border-radius: 10px !important; */
  width: 16px;
  height: 16px;
  content: "";
  text-align: center;
  opacity: .50;
  color: #871830;
  border: 2px solid #a98504;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gallery-main .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #871830;
}

.achievements .slick-dots {
  bottom: -25px;
}

.achievements .slick-dots li button:before {
  font-family: 'slick';
  font-size: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #871830;
  /* border-radius: 10px !important; */
  width: 16px;
  height: 16px;
  content: "";
  text-align: center;
  opacity: .50;
  color: #871830;
  border: 2px solid #a98504;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.achievements .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #871830;
}

section#shadow-host-companion {
  padding: 0;
}

.affiliated-districts-table td a {
  color: #000 !important;
}


.achivments-table table tr th {
  background-color: #333333;
  color: #fff !important;
  border-bottom: 1px solid #fff;
}
.achivments-table table{
  border: 2px solid #000;
}
.achivments-table table td{
  border: 1px solid #000;
}
.inner-hero-main .register-btn a {
  color: #000000;
  background: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 18px;
}
.rsha-pin p{
  font-size: 18px;
}
.rsha-pin .section-title h2 {
  font-size: 45px;
  color: rgba(252, 195, 1, 1);
}
.rsha-pin{
  margin-bottom: 40px;
}