/* common css start  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a,
a:focus,
a:hover {
  text-decoration: none; }

ol,
ul {
  list-style: none; }

img {
  vertical-align: middle; }

h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul {
  margin-top: 0;
  margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

body {
  font-size: 16px;
  color: #505b73;
  line-height: 20px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  background: #f3f5f6; }

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1440px !important; }

h2 {
  font-size: 32px;
  color: #03122b; }
  @media (max-width: 767px) {
    h2 {
      font-size: 22px; } }
  @media (max-width: 575px) {
    h2 {
      font-size: 20px; } }

h3 {
  font-size: 24px;
  color: #03122b; }

.text-justify {
  text-align: justify !important; }

/* auth Section Styles */
#auth-section {
  padding: 4rem 0;
  background-color: white;
  /* Responsive adjustments */ }
  #auth-section .auth-wrapper {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Ensures rounded corners apply to children */ }
  #auth-section .auth-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  #auth-section .auth-form-container {
    padding: 2.5rem; }
  #auth-section h1 {
    font-size: 2.2rem;
    /* Adjusted for column layout */
    font-weight: 700;
    color: #045694;
    margin-bottom: 1.5rem;
    text-align: center; }
  #auth-section .form-label {
    font-weight: 600;
    color: #03122b;
    margin-bottom: 0.5rem; }
  #auth-section .form-control,
  #auth-section .form-select {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #505b73; }
    #auth-section .form-control:focus,
    #auth-section .form-select:focus {
      border-color: #007bff;
      box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25); }
  #auth-section .btn-submit {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50rem;
    /* Pill shape */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    /* Full width button */
    margin-top: 1.5rem; }
    #auth-section .btn-submit:hover {
      background-color: #002859;
      border-color: #002859;
      transform: translateY(-3px);
      /* Slight lift effect */ }
  #auth-section .form-check-label {
    color: #505b73;
    font-size: 0.9rem; }
  #auth-section .form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3; }
  #auth-section .form-check-label {
    color: #505b73;
    font-size: 0.9rem; }
  #auth-section .form-check-input:checked {
    background-color: #045694;
    border-color: #045694; }
  @media (max-width: 991.98px) {
    #auth-section {
      /* For Bootstrap's lg breakpoint and below */ }
      #auth-section .auth-image-container {
        display: none;
        /* Hide image on smaller screens */ }
      #auth-section .auth-form-container {
        padding: 1.5rem;
        /* Reduce padding on smaller screens */ }
      #auth-section h1 {
        font-size: 2rem; } }

.gallery-section {
  padding: 4rem 0; }

.gallery-header {
  text-align: center;
  margin-bottom: 3rem; }
  .gallery-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #045694;
    margin-bottom: 1rem; }
  .gallery-header p {
    font-size: 1.1rem;
    color: #515151;
    max-width: 800px;
    margin: 0 auto; }

/* Image card styling */
.bg-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  /* Consistent rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Consistent shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 280px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bg-image .my-video-links {
    height: 100%;
    width: 100%; }
  .bg-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
  .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure images cover the area without distortion */
    border-radius: 0.75rem; }
  .bg-image .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 251, 251, 0.2);
    /* Light ripple effect */
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    border-radius: 0.75rem; }
  .bg-image:hover .mask {
    opacity: 1;
    /* Show mask on hover */ }

/* MDB Ripple Mask */
/* Modal styling */
.modal-content {
  border-radius: 0.75rem;
  overflow: hidden;
  /* Ensures rounded corners on iframe */ }

.modal-dialog {
  max-width: 900px;
  /* Adjust modal width */ }

.modal-body {
  padding: 0;
  /* Remove padding around iframe */ }

.ratio-16x9 iframe {
  border-radius: 0.75rem;
  /* Match modal content border-radius */ }

.modal-footer-custom {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: white;
  /* Match card background */
  border-top: none; }
  .modal-footer-custom .btn-secondary {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    border-radius: 50rem;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease; }
    .modal-footer-custom .btn-secondary:hover {
      background-color: #002859;
      border-color: #002859; }

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .gallery-header h2 {
    font-size: 2.2rem; }
  .gallery-header p {
    font-size: 1rem; }
  .bg-image {
    height: 200px;
    /* Adjust height for smaller screens */ } }

#news-section {
  padding: 4rem 0px 2px 0; }
  #news-section .index_page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    #news-section .index_page h2 {
      color: #045694;
      margin-bottom: 0; }
    #news-section .index_page a {
      text-decoration: none;
      color: #505b73;
      transition: color 0.3s ease; }
      #news-section .index_page a:hover {
        color: #0056b3; }
  #news-section .header {
    text-align: center;
    margin-bottom: 3rem; }
    #news-section .header h2 {
      font-size: 3rem;
      font-weight: bold;
      color: #045694;
      margin-bottom: 1rem; }
    #news-section .header p {
      font-size: 1.1rem;
      color: #505b73;
      max-width: 800px;
      margin: 0 auto; }

.featured-news-post {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .featured-news-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
  .featured-news-post img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem; }
  .featured-news-post .post-content {
    padding: 2rem; }
  .featured-news-post .post-category {
    font-size: 0.9rem;
    color: #0056b3;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem; }
  .featured-news-post h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #03122b;
    margin-bottom: 1rem;
    line-height: 1.3; }
  .featured-news-post p {
    font-size: 1rem;
    color: #505b73;
    margin-bottom: 1.5rem; }
  .featured-news-post .read-more-btn {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: inline-block; }
    .featured-news-post .read-more-btn:hover {
      background-color: #0056b3;
      border-color: #0056b3; }

.news-post-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  .news-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  .news-post-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem; }
    @media (max-width: 575px) {
      .news-post-card img {
        height: 250px; } }
  .news-post-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
  .news-post-card .post-category {
    font-size: 0.8rem;
    color: #0056b3;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem; }
  .news-post-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #03122b;
    margin-bottom: 0.75rem;
    line-height: 1.3; }
  .news-post-card p {
    font-size: 0.9rem;
    color: #505b73;
    margin-bottom: 1rem;
    flex-grow: 1; }
  .news-post-card .read-more-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto; }
    .news-post-card .read-more-link:hover {
      color: #002859; }

.pagination-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center; }

.pagination .page-item .page-link {
  color: #0056b3;
  border: 1px solid #0056b3;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease; }
  .pagination .page-item .page-link:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white; }

.pagination .page-item.active .page-link {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white; }

@media (max-width: 991.98px) {
  .featured-news-post img {
    height: 250px; }
  .featured-news-post h3 {
    font-size: 1.7rem; }
  .news-post-card img {
    height: 180px; }
  .news-post-card h4 {
    font-size: 1.2rem; } }

@media (max-width: 767.98px) {
  #news-section .header h2 {
    font-size: 2.2rem; }
  #news-section .header p {
    font-size: 1rem; }
  .featured-news-post img {
    height: 200px; }
  .featured-news-post h3 {
    font-size: 1.5rem; }
  .featured-news-post .post-content {
    padding: 1.5rem; }
  .news-post-card img {
    height: 250px; }
  .news-post-card h4 {
    font-size: 1.1rem; } }

header {
  background: #045694;
  border-bottom: 1px solid white; }
  header .container-fluid {
    width: 95%;
    margin: 0px auto; }
    header .container-fluid ul {
      text-align: right;
      display: flex;
      justify-content: end; }
      header .container-fluid ul li {
        display: inline-block;
        padding-left: 25px; }
        header .container-fluid ul li a {
          color: white;
          font-size: 14px;
          line-height: 32px;
          font-weight: 300;
          font-family: "Fira Sans", sans-serif;
          text-transform: uppercase; }
          header .container-fluid ul li a i {
            color: white; }

.navbar {
  background: #045694;
  padding: 0px; }
  .navbar .container-fluid {
    width: 95%;
    margin: 0px auto; }
    .navbar .container-fluid .navbar-brand {
      padding: 0px;
      padding: 8px 0px; }
      .navbar .container-fluid .navbar-brand img {
        height: 49px; }
    .navbar .container-fluid .navbar-toggler {
      color: white; }
      .navbar .container-fluid .navbar-toggler:focus {
        box-shadow: none !important; }
    .navbar .container-fluid .nav-item .nav-link {
      color: white;
      font-size: 15px;
      line-height: 65px;
      text-transform: uppercase;
      font-weight: 400;
      padding: 0px 16px; }
      @media (max-width: 991px) {
        .navbar .container-fluid .nav-item .nav-link {
          line-height: 35px; } }
      @media (max-width: 767px) {
        .navbar .container-fluid .nav-item .nav-link {
          line-height: 30px; } }
      @media (max-width: 1200px) and (min-width: 990px) {
        .navbar .container-fluid .nav-item .nav-link {
          padding: 0px 10px; } }
    .navbar .container-fluid .social-media {
      font-size: 15px;
      line-height: 65px;
      padding: 0px 10px;
      color: white; }
      @media (max-width: 575px) {
        .navbar .container-fluid .social-media {
          line-height: 35px; } }
      .navbar .container-fluid .social-media a {
        color: white; }
      .navbar .container-fluid .social-media .dropdown-menu {
        padding: 0px; }
        .navbar .container-fluid .social-media .dropdown-menu li a {
          color: #045694;
          line-height: 25px; }

#hero-section {
  margin-bottom: 0;
  /* Remove default margin */
  height: 90vh;
  /* Slick Dots (Indicators) Styling */
  /* Slick Arrows (Navigation) Styling */
  /* Responsive adjustments for smaller screens */ }
  @media (max-width: 1199px) {
    #hero-section {
      height: 75vh; } }
  @media (max-width: 991px) {
    #hero-section {
      height: 50vh; } }
  @media (max-width: 575px) {
    #hero-section {
      height: 26vh; } }
  #hero-section .hero-slider {
    height: 100%;
    /* Ensure the slider takes full height */
    position: relative;
    overflow: hidden;
    /* Hide overflow for a cleaner look */ }
    #hero-section .hero-slider .slick-list, #hero-section .hero-slider .slick-track {
      height: 100%; }
  #hero-section .hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white; }
  #hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay for text readability */
    z-index: 1; }
  #hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    /* Add some padding for smaller screens */ }
  #hero-section .hero-title {
    font-size: 3.5rem;
    /* Default font size */
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Text shadow for readability */ }
  #hero-section .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); }
  #hero-section .hero-btn {
    background-color: #045694;
    border-color: #045694;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50rem;
    /* Pill shape */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    /* Ensure button text is white */ }
    #hero-section .hero-btn:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: scale(1.05);
      /* Slight scale effect on hover */ }
  #hero-section .slick-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    justify-content: center; }
    #hero-section .slick-dots li {
      padding: 10px; }
      #hero-section .slick-dots li button {
        font-size: 0;
        color: white;
        opacity: 0.6;
        height: 15px;
        width: 15px;
        border: 0px;
        background: #045694;
        border-radius: 50%; }
    #hero-section .slick-dots .slick-active button {
      background: white; }
    #hero-section .slick-dots li.slick-active button:before {
      color: white;
      opacity: 1; }
  #hero-section .slick-prev,
  #hero-section .slick-next {
    font-size: 0;
    /* Hide default text */
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 60px;
    /* Size of the arrow button */
    height: 60px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    /* Dark background for arrows */
    border-radius: 50%;
    /* Make them circular */
    z-index: 10;
    /* Ensure they are above content */
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.8; }
    #hero-section .slick-prev:hover,
    #hero-section .slick-next:hover {
      background: rgba(0, 0, 0, 0.7);
      opacity: 1; }
    #hero-section .slick-prev:before,
    #hero-section .slick-next:before {
      font-family: "Font Awesome 6 Free";
      /* Use Font Awesome for icons */
      font-weight: 900;
      /* Solid icon */
      font-size: 24px;
      /* Size of the icon */
      line-height: 1;
      color: white;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  #hero-section .slick-prev {
    left: 20px; }
    #hero-section .slick-prev:before {
      content: "\f053";
      /* Font Awesome left arrow */ }
  #hero-section .slick-next {
    right: 20px; }
    #hero-section .slick-next:before {
      content: "\f054";
      /* Font Awesome right arrow */ }
  @media (max-width: 767.98px) {
    #hero-section .hero-slide {
      height: 100%; }
    #hero-section .hero-title {
      font-size: 2.2rem; }
    #hero-section .hero-subtitle {
      font-size: 0.9rem; }
    #hero-section .hero-btn {
      padding: 0.6rem 1.8rem;
      font-size: 1rem; }
    #hero-section .slick-prev,
    #hero-section .slick-next {
      width: 40px;
      height: 40px; }
      #hero-section .slick-prev:before,
      #hero-section .slick-next:before {
        font-size: 18px; }
    #hero-section .slick-prev {
      left: 10px; }
    #hero-section .slick-next {
      right: 10px; }
    #hero-section .slick-dots {
      bottom: 10px; } }

#about-us {
  background-color: white;
  color: #505b73;
  padding-top: 30px; }
  @media (min-width: 768px) {
    #about-us {
      padding-top: 20px;
      padding: 30px; } }
  #about-us h2 {
    color: #045694;
    font-weight: 500;
    font-size: 40px; }
    @media (max-width: 767px) {
      #about-us h2 {
        font-size: 30px;
        text-align: center; } }
  #about-us p.lead {
    font-size: 1.25rem;
    color: #505b73; }
    @media (max-width: 767px) {
      #about-us p.lead {
        font-size: 18px; } }
  #about-us p.text-muted {
    color: #818da8; }
    @media (max-width: 767px) {
      #about-us p.text-muted {
        font-size: 16px; } }
  #about-us .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.8rem 2.8rem;
    font-weight: 700;
    color: white; }
    #about-us .btn-primary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); }
  #about-us .about-image-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0; }
    #about-us .about-image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  #about-us .btn {
    background: #045694;
    color: white; }
  #about-us .card {
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
    #about-us .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important; }
    #about-us .card .card-body {
      padding: 2rem; }
      @media (max-width: 991px) {
        #about-us .card .card-body {
          padding: 0px; } }
    #about-us .card i {
      color: #045694;
      margin-bottom: 1rem; }
    #about-us .card .card-title {
      color: #03122b;
      font-size: 1.5rem;
      margin-bottom: 0.75rem; }
    #about-us .card .card-text {
      color: #505b73;
      font-size: 0.95rem; }
  @media (max-width: 991.98px) {
    #about-us .about-image-wrapper {
      padding-bottom: 56.25%; } }
  @media (max-width: 767.98px) {
    #about-us .btn-primary {
      display: block;
      width: fit-content;
      margin: 0 auto; } }

#stories {
  padding: 2rem 0; }
  @media (max-width: 767px) {
    #stories {
      padding: 1rem 0; } }
  #stories .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    #stories .header h2 {
      font-size: 32px;
      color: #03122b;
      margin-bottom: 0; }
      @media (max-width: 575px) {
        #stories .header h2 {
          font-size: 20px; } }
    #stories .header a {
      color: #505b73;
      text-decoration: none;
      transition: color 0.3s ease; }
      #stories .header a:hover {
        color: var(--fifa-blue); }
  #stories .story_content {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    color: white; }
    #stories .story_content img {
      width: 100%;
      height: 590px;
      object-fit: cover; }
      @media (min-width: 1200px) {
        #stories .story_content img {
          height: 530; } }
      @media (max-width: 1199px) {
        #stories .story_content img {
          height: 360px; } }
      @media (max-width: 991px) {
        #stories .story_content img {
          height: 530px; } }
      @media (max-width: 767px) {
        #stories .story_content img {
          height: 250px; } }
    #stories .story_content h4 {
      font-size: 16px;
      color: #045694;
      padding-top: 20px; }
    #stories .story_content h3 {
      font-size: 24px;
      color: #03122b;
      padding: 8px 0px 10px 0px; }
    #stories .story_content p {
      color: #505b73;
      font-size: 20px; }
      @media (max-width: 767px) {
        #stories .story_content p {
          padding-bottom: 20px; } }
  #stories .story_list .story_item {
    background: transparent !important;
    border: 0 !important;
    padding-bottom: 20px; }
    #stories .story_list .story_item a .card-body {
      padding: 0px !important;
      display: flex; }
      #stories .story_list .story_item a .card-body img {
        height: 140px;
        width: 185px;
        object-fit: cover; }
        @media (max-width: 767px) {
          #stories .story_list .story_item a .card-body img {
            height: 100px;
            width: 120px; } }
      #stories .story_list .story_item a .card-body .story_item_content {
        padding-left: 20px; }
        @media (max-width: 767px) {
          #stories .story_list .story_item a .card-body .story_item_content {
            padding-left: 10px; } }
        #stories .story_list .story_item a .card-body .story_item_content h5 {
          font-size: 14px;
          font-weight: 300px;
          color: #045694;
          padding: 15px 0px; }
          @media (max-width: 767px) {
            #stories .story_list .story_item a .card-body .story_item_content h5 {
              padding: 5px 0px; } }
        #stories .story_list .story_item a .card-body .story_item_content h3 {
          color: #03122b;
          font-size: 20px; }
          @media (max-width: 767px) {
            #stories .story_list .story_item a .card-body .story_item_content h3 {
              font-size: 17px; } }

#story-page {
  padding: 2rem 0; }
  #story-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #story-page .header h2 {
      font-size: 32px;
      color: #045694;
      margin-bottom: 0; }
    #story-page .header a {
      color: #505b73;
      text-decoration: none;
      transition: color 0.3s ease; }
      #story-page .header a:hover {
        color: var(--fifa-blue); }
  #story-page .story_content {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    color: white; }
    #story-page .story_content img {
      width: 100%;
      height: 590px;
      object-fit: cover; }
    #story-page .story_content h4 {
      font-size: 16px;
      color: #045694;
      padding-top: 20px; }
    #story-page .story_content h3 {
      font-size: 24px;
      color: #03122b;
      padding: 8px 0px 10px 0px; }
    #story-page .story_content p {
      color: #505b73;
      font-size: 20px; }
  #story-page .story_list .story_item {
    background: transparent !important;
    border: 0 !important;
    padding-bottom: 0px;
    padding-top: 50px; }
    #story-page .story_list .story_item a .card-body {
      padding: 0px !important; }
      #story-page .story_list .story_item a .card-body img {
        height: 350px;
        width: 100%;
        object-fit: cover; }
        @media (min-width: 992px) and (max-width: 1200px) {
          #story-page .story_list .story_item a .card-body img {
            height: 280px; } }
      #story-page .story_list .story_item a .card-body .story_item_content h5 {
        font-size: 16px;
        color: #045694;
        padding: 15px 0px; }
        @media (max-width: 767px) {
          #story-page .story_list .story_item a .card-body .story_item_content h5 {
            padding: 10px 0px; } }
      #story-page .story_list .story_item a .card-body .story_item_content h3 {
        color: #03122b;
        font-size: 24px; }

#team-ranking, #team-ranking-division {
  padding: 45px 0px; }
  @media (max-width: 991px) {
    #team-ranking, #team-ranking-division {
      padding: 35px 0px; } }
  @media (max-width: 767px) {
    #team-ranking, #team-ranking-division {
      padding: 30px 0px; } }
  #team-ranking .header, #team-ranking-division .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    #team-ranking .header h2, #team-ranking-division .header h2 {
      color: #045694;
      margin-bottom: 0; }
    #team-ranking .header a, #team-ranking-division .header a {
      color: #505b73;
      text-decoration: none;
      transition: color 0.3s ease; }
      #team-ranking .header a:hover, #team-ranking-division .header a:hover {
        color: #0056b3; }
  #team-ranking .card, #team-ranking-division .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Using $col-black */ }
    #team-ranking .card-header, #team-ranking-division .card-header {
      background-image: #002859;
      color: white !important;
      font-weight: 700;
      font-size: 1.4rem;
      padding: 1.5rem;
      border-bottom: none;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
      /* Using $col-black */ }
    #team-ranking .card .card-header, #team-ranking-division .card .card-header {
      background: #002859; }
  #team-ranking .table, #team-ranking-division .table {
    border-collapse: separate;
    border-spacing: 0; }
    #team-ranking .table thead th, #team-ranking-division .table thead th {
      background-color: #f5f5f5;
      /* Using $fifa-table-hover */
      color: #505b73;
      /* Using $col-text */
      font-weight: 600;
      vertical-align: middle;
      padding: 1.2rem;
      border-bottom: 2px solid #e0e0e0;
      /* Using $fifa-table-border */
      text-align: inherit; }
    #team-ranking .table tbody tr, #team-ranking-division .table tbody tr {
      transition: all 0.3s ease-in-out;
      border-bottom: 1px solid #e0e0e0;
      /* Using $fifa-table-border */ }
      #team-ranking .table tbody tr:hover, #team-ranking-division .table tbody tr:hover {
        background-color: #f5f5f5;
        /* Using $fifa-table-hover for consistency */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        /* Using $col-black */
        transform: translateY(-5px);
        z-index: 1; }
    #team-ranking .table tbody th,
    #team-ranking .table tbody td, #team-ranking-division .table tbody th,
    #team-ranking-division .table tbody td {
      vertical-align: middle;
      padding: 1.1rem; }
    #team-ranking .table tbody th[scope="row"], #team-ranking-division .table tbody th[scope="row"] {
      font-weight: 700;
      color: #515151;
      /* Using $col-gray */ }
    #team-ranking .table tbody tr:nth-child(1) .fw-bold.text-primary, #team-ranking-division .table tbody tr:nth-child(1) .fw-bold.text-primary {
      color: #007bff !important;
      /* Using $fifa-light-blue */
      font-size: 1.1em; }
    #team-ranking .table tbody tr:nth-child(2) .fw-bold.text-success, #team-ranking-division .table tbody tr:nth-child(2) .fw-bold.text-success {
      color: #28a745 !important;
      /* Using $fifa-promotion-color */
      font-size: 1.1em; }
    #team-ranking .table tbody tr:nth-child(3) .fw-bold.text-info, #team-ranking-division .table tbody tr:nth-child(3) .fw-bold.text-info {
      color: #045694 !important;
      /* Using $col-primary */
      font-size: 1.1em; }
  @media (max-width: 768px) {
    #team-ranking .team-ranking-section, #team-ranking-division .team-ranking-section {
      padding: 20px; }
      #team-ranking .team-ranking-section h2, #team-ranking-division .team-ranking-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #045694; }
    #team-ranking .card-header, #team-ranking-division .card-header {
      font-size: 1.1rem;
      padding: 1rem; }
    #team-ranking .table thead th,
    #team-ranking .table tbody th,
    #team-ranking .table tbody td, #team-ranking-division .table thead th,
    #team-ranking-division .table tbody th,
    #team-ranking-division .table tbody td {
      padding: 0.8rem; } }
  @media (max-width: 576px) {
    #team-ranking .table-responsive, #team-ranking-division .table-responsive {
      border-radius: 12px;
      /* Apply border-radius to the responsive div as well */
      overflow: hidden; } }

#tournament, #all-tournaments-page {
  padding: 2rem 0; }
  #tournament .header h2, #all-tournaments-page .header h2 {
    padding-bottom: 25px;
    color: #045694; }
  #tournament .tournament_list, #tournament .tournament_lists, #all-tournaments-page .tournament_list, #all-tournaments-page .tournament_lists {
    margin: 0px -15px; }
    #tournament .tournament_list .tournament, #tournament .tournament_lists .tournament, #all-tournaments-page .tournament_list .tournament, #all-tournaments-page .tournament_lists .tournament {
      padding: 0px 15px; }
      #tournament .tournament_list .tournament p, #tournament .tournament_lists .tournament p, #all-tournaments-page .tournament_list .tournament p, #all-tournaments-page .tournament_lists .tournament p {
        font-size: 20px;
        color: #03122b;
        padding: 15px 0px; }
  #tournament .slick-slide img, #all-tournaments-page .slick-slide img {
    height: 100%;
    width: 100%; }
  #tournament .slick-arrow, #all-tournaments-page .slick-arrow {
    border: 0;
    position: absolute;
    bottom: -40px;
    background: white;
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 16px; }
  #tournament .slick-next, #all-tournaments-page .slick-next {
    right: 10px; }
  #tournament .slick-next, #all-tournaments-page .slick-next {
    right: 10px; }
  #tournament .slick-prev, #all-tournaments-page .slick-prev {
    right: 60px; }

footer .footer-top {
  background: #045694;
  border-bottom: 1px solid white;
  padding: 10px 0px; }
  footer .footer-top .navbar-brand img {
    height: 36px; }
  footer .footer-top .social_media {
    display: flex;
    justify-content: end;
    padding-left: 0px; }
    footer .footer-top .social_media li {
      display: inline-block; }
      footer .footer-top .social_media li a {
        color: white;
        font-size: 22px;
        line-height: 36px;
        padding: 0px 12px;
        display: inline-block; }
  footer .footer-top .apps_part {
    display: flex;
    justify-content: end; }
    footer .footer-top .apps_part p {
      font-size: 16px;
      color: white;
      line-height: 36px; }
    footer .footer-top .apps_part img {
      height: 36px;
      padding-left: 10px; }

footer .footer-center {
  background: #045694;
  border-bottom: 1px solid white;
  text-align: center;
  color: white;
  padding-top: 20px; }
  footer .footer-center .partners .partner_item {
    margin: 0px 40px 20px 40px;
    text-align: center;
    height: 50px; }
    footer .footer-center .partners .partner_item img {
      min-width: 100px;
      height: 100%;
      display: inline-block; }

footer .footer-bottom {
  background: #045694;
  text-transform: capitalize; }
  @media (max-width: 575px) {
    footer .footer-bottom p {
      text-align: center; } }
  footer .footer-bottom a {
    color: white;
    line-height: 40px; }
  footer .footer-bottom .links a {
    color: white;
    text-transform: uppercase;
    padding: 0px 10px; }

/* Styles for the page header section */
.page-header-section {
  padding: 4rem 0;
  background-color: #002859;
  color: white;
  text-align: center;
  border-bottom: 5px solid #0056b3; }
  .page-header-section .page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: inherit; }
    @media (max-width: 991px) {
      .page-header-section .page-header h1 {
        font-size: 32px; } }
    @media (max-width: 767px) {
      .page-header-section .page-header h1 {
        font-size: 30px; } }
  .page-header-section .page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for sub-text */ }
    @media (max-width: 767px) {
      .page-header-section .page-header p {
        font-size: 16px; } }

.page-content-area {
  padding-bottom: 30px; }
  .page-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: block;
    /* Ensure image takes full width and centers if block container is used */
    margin-left: auto;
    margin-right: auto; }
  .page-content-area h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--col-h);
    margin-top: 2.5rem;
    margin-bottom: 1rem; }
  .page-content-area ul li, .page-content-area p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--col-text);
    margin-bottom: 1rem; }
