body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Slide-in animation for image */
@keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Image container for animated image with effects */
  .imageContainer img {
    animation: slideIn 1.5s ease-out;
    width: 100%;
    border-radius: 10px; /* Rounded corners for a softer look */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
  }
  
  /* On hover, slightly enlarge the image */
  .imageContainer img:hover {
    transform: scale(1.05);
  }
  
  /* Gradient overlay to enhance the image appearance */
  .imageOverlay {
    position: relative;
  }
  
  .imageOverlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)); /* Gradient from top to bottom */
    border-radius: 10px;
    z-index: 1;
  }
  
  /* Adding filter to enhance the contrast */
  .imageContainer img {
    filter: brightness(0.9) contrast(1.2);
  }
  .logoImage {
    max-width: 200px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 20px; /* Space below the logo */
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centering the logo */
  }
  
  /* Image Container Styles (optional) */
  .imageContainer {
    position: relative;
  }
  
  /* Responsive Image Styles */
  .responsiveImage {
    width: 100%;
    height: auto;
  }
  
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Font utilities are kept here, but @font-face has been moved to index.html for better performance and to bypass Webpack resolution issues. */



/* .LeagueSpartan_Black{
font-family: 'LeagueSpartan_Black';
} */
 


.LeagueSpartan-Black{
  font-family: 'LeagueSpartan-Black' !important;
}
.LeagueSpartan-Light{
  font-family: 'LeagueSpartan-Light' !important;
}
.LeagueSpartan-Regular{
  font-family: 'LeagueSpartan-Regular' !important;
}
.LeagueSpartan-Bold{
  font-family: 'LeagueSpartan-Bold' !important;
}
.LeagueSpartan-ExtraLight{
  font-family: 'LeagueSpartan-ExtraLight' !important;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "LeagueSpartan-Regular";
}

header {
  height: 58px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07),
              0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #212529;
}

.nav-area {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  font-family:"LeagueSpartan-Regular"
}

.logo {
  text-decoration: none;
  font-size: 25px;
  color: inherit;
  margin-right: 20px;
}

.menus {
  display: flex;
  list-style: none;
  font-family:"LeagueSpartan-Regular"
}

.menu-items {
  position: relative;
  font-family:"LeagueSpartan-Regular";
}

.menu-items a {
  display: block;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  font-family:"LeagueSpartan-Regular"
}

.menu-items button {
  color: inherit;
  /* font-size: inherit; */
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: '100px';
  font-size: 18px;
  font-family:"LeagueSpartan-Regular"
}

.menu-items a,
.menu-items button {
  text-align: left;
  padding: 0.7rem 1rem;
  font-family:"LeagueSpartan-Regular"
}

.menu-items a:hover,
.menu-items button:hover {
  /* background-color: #f2f2f2; */
}

.arrow::after {
  content: "";
  display: inline-block;
  margin-left: 0.28em;
  vertical-align: 0.09em;
  border-top: 0.42em solid;
  border-right: 0.32em solid transparent;
  border-left: 0.32em solid transparent;
}

.dropdown {
  position: absolute;
  right: 0;
  left: 0;
  box-shadow: 0 10px 15px -3px rgba(46, 41, 51, 0.08),
              0 4px 6px -2px rgba(71, 63, 79, 0.16);
  font-size: 0.875rem;
  z-index: 9999;
  min-width: 12rem;
  padding: 0.5rem 0;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 0.5rem;
  display: none;
}

.dropdown.show {
  display: block;
}

.dropdown.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: -7px;
}



/*# sourceMappingURL=main.f262efd3.css.map*/