@font-face {
    font-family: 'Roboto';
    src: local('Roboto-Regular'), local('Roboto-Regular.ttf'), url('fonts/Roboto-Regular.ttf') format('truetype'); /* Adjust the path to your font file */
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: local('Roboto-Bold'), local('Roboto-Bold.ttf'), url('fonts/Roboto-Bold.ttf') format('truetype'); /* Adjust the path to your font file */
    font-weight: 700;
    font-style: normal;
  }

        .row-small {
            height: 10px;
        }
        .row-medium {
            height: 75px;
        }
        .row-large {
            height: 30px;
        }

a {
      color: black;
      /* Default link color */
      text-decoration: none;
      /* Remove default underline */
      font-size: medium;
      font-size: large;
    }

    /* Hover effect */
    a:hover {
      color: gainsboro;
      /* Change color on hover */
    }

    .card-more {
      width: 200px;
      background-color: #f0f0f0;
      border: 1px solid #ccc;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      /* Use flexbox for centering */
      justify-content: center;
      /* Horizontally center the child */
      align-items: center;
      /* Vertically center the child */
      margin-top: 10px;
    }

    /* Styles for the card header */
    .card-header-more {
      background-color: #f0f0f0;
      padding: 5px;
      text-align: center;
    }
    .card-header-more a {
      color: gray;
      font-size: 12pt;
    }


    .card {
      width: 300px;
      background-color: #f0f0f0;
      border: 1px solid #ccc;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      /* Use flexbox for centering */
      justify-content: center;
      /* Horizontally center the child */
      align-items: center;
      /* Vertically center the child */
      margin-top: 10px;
    }

    /* Styles for the card header */
    .card-header {
      background-color: #f0f0f0;
      padding: 10px;
      text-align: center;
    }
    .card-header a {
      color: gray;
    }

    /* Styles for the card body */
    .card-body {
      padding: 10px;
      text-align: center;
    }

    /* Styles for the card footer */
    .card-footer {
      background-color: #f0f0f0;
      padding: 10px;
      text-align: center;
    }

    /* Reset some default styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Basic styling for the body */
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f2f2f2;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Navigation styling */
    nav {
      background-color: #333;
      padding: 10px;
    }

    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      text-align: center;
      display: flex;
      justify-content: center;
    }

    nav ul li {
      margin-right: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: #fff;
    }

    /* Hamburger menu icon */
    .hamburger {
      display: none;
      cursor: pointer;
      color: #fff;
    }

    /* Section styling */
    section {
      background-color: #fff;
      margin: 20px 0;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    section h2 {
      margin-bottom: 10px;
    }

    /* Image styling */
    .section-img {
      width: 10%;
      border-radius: 5px;
    }

    /* Image positioning for alternating sides */
    .left-img {
      border-radius: 10px; /* Adjust the border radius to control the amount of rounding */
       margin-right: 20px;
       max-width: 150px;
      width: auto;
      text-align: left;
    }

    .img-section {
      margin-right: 20px;
      height: 100%;
      width: 300px;
      text-align: left;
    }

    .right-img {
      border-radius: 10px; /* Adjust the border radius to control the amount of rounding */
       margin-left: 20px;
       max-width: 150px;
       height: auto;
      width: auto;
      text-align: right;
    }

    /* Flexbox alignment */
    .clearfix {
      display: flex;
      align-items: center;
    }

    #grid {
      display: grid;
      width: 100%;
      grid-template-columns: 220px 1fr;
    }

    #grid-3 {
      display: grid;
      width: 100%;
      grid-template-columns: 10% 80% 10%;
      margin: auto;
    }

    .sponsor {
      text-align: center;
      width: 70%;
    }

    /* #areaA {
  background-color: lime;
}

#areaB {
  background-color: yellow;
} */

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th,
    td {
      padding: 8px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #f2f2f2;
    }

    .left-img-block {
      margin-right: 20px;
      width: 200px;
      height: 150px;
      /* height: 100%;
      width: 25px; */
      text-align: left;
    }

    .left-img-block-2 {
      margin-right: 40px;
      width: auto;
      height: 300px;
      /* height: 100%;
      width: 25px; */
      text-align: left;
    }

    .right-img-block {
      margin-left: 20px;
      width: 200px;
      height: 150px;
      /* height: 100%;
      width: 25px; */
      text-align: right;
    }

    .grid-container {
      display: grid;
      gap: 1rem;
      /* Adjust spacing between grid items */
    }

    /* Default layout for all screens (optional, can be omitted) */
    .grid-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }


    .container {
      display: flex;
      justify-content: center;
      /* horizontally center */
      align-items: center;
      /* vertically center */
      width: 100%;
      /* or specify a fixed width */
      height: 300px;
      /* or specify a fixed height */
      border: 0px solid black;
      /* optional border for visualization */
    }

    .container img {
      max-width: 100%;
      /* ensure image does not exceed container width */
      max-height: 100%;
      /* ensure image does not exceed container height */
    }

    #goToTopBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 99;
      background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      opacity: 0.5;
    }

    #goToTopBtn.show {
      display: block;
    }

    #mobile {
      display: none;
    }

     /* Button styles */
  button {
    background-color: #f0f0f0f0; /* Green */
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  /* Button hover effect */
  button:hover {
    background-color: gainsboro; /* Darker green */
  }
    /* Media query for mobile devices */
    @media screen and (max-width: 866px) {
      .img-section {
        margin-right: 20px;
        height: 100%;
        width: 250px;
        text-align: left;
      }


      nav ul {
        display: none;
      }

      .hamburger {
        display: block;
      }

      nav.open ul {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      nav ul li {
        margin-bottom: 10px;
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      th,
      td {
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #ddd;
      }

      th {
        background-color: #f2f2f2;
      }

      /* Image positioning for alternating sides */
      .left-img {
        margin-right: 20px;
        height: 100%;
        width: 25px;
        text-align: left;
      }

      .right-img {
        margin-left: 20px;
        height: 100%;
        width: 25px;
        text-align: right;
      }

      .left-img-block-2 {
        margin-right: 20px;
        height: 500px;
        width: 200px;
        text-align: left;
      }

    }

    @media screen and (max-width: 600px) {
      table {
        border: 0;
      }

      table caption {
        font-size: 1.3em;
      }

      table thead {
        display: none;
      }

      table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: 12px;
      }

      table td {
        display: block;
        text-align: right;
        font-size: 13px;
      }

      table td:last-child {
        border-bottom: 0;
      }

      table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
      }

      #grid {
        display: grid;
        width: 100%;
        grid-template-columns: 0px 1fr;
      }

      .sponsor {
        text-align: center;
        width: 100px;
        margin: auto;
      }

      .left-img {
        margin-right: 0px;
        height: 0%;
        width: 0px;
        text-align: left;
      }

      .right-img {
        margin-left: 0px;
        height: 0%;
        width: 0px;
        text-align: right;
      }

      .left-img-block {
        margin-right: 0px;
        height: 0%;
        width: 0px;
        text-align: left;
      }

      .left-img-block-2 {
        margin-right: 0px;
        height: 0%;
        width: 0px;
        text-align: left;
      }

      .right-img-block {
        margin-left: 0px;
        height: 0%;
        width: 0px;
        text-align: right;
      }

      .img-section {
        margin-right: 20px;
        height: 100%;
        width: 0px;
        text-align: left;
      }

      #mobile {
        display: block;
        text-align: center;
        width: 100%;
        margin: auto;
      }
    }
