﻿
html,
body {
  overflow-x: hidden;
}
.hidden {
  visibility: hidden;
}
.banner {
  max-width: 1200px;
  min-width: 500px;
  margin-top: -2px;

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.resource-img {
  width: 250px;
  height: 250px;
}
.carousel-container {
  width: 1090px;
  height: auto;
  margin: 0 auto;
}

.leapp-header {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Franklin Gothic", "Arial Narrow", Arial, sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  text-decoration: underline;
  margin-bottom: 20px;
  margin-top: 20px;
}
.leapp-list {
  font-family: "Franklin Gothic Book", "Arial Narrow", Arial, sans-serif;
  margin-left: 2rem;
  line-height: 1, 5rem;
}
.resources-paragraph {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #00264b;
  text-align: center;

  padding-bottom: 20px;
  word-break: keep-all;
  hyphens: none;
}
.box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.carousel-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.resources-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 525px;
  height: 100%;

  background-color: #00264b;
  color: #fff;
}

/* mobile responsive*/
@media only screen and (max-width: 980px) {
  .leapp-list {
    font-family: Franklin gothic Book, "Tacoma", "Verdana", sans-serif;
    margin-left: 1rem;

    text-align: left;

    display: list-style;
  }
  .box {
    width: 100% !important;
    height: auto;
  }
  .box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }

  .carousel-container {
    width: 100%;
    height: auto;
  }
  .hidden {
    display: none;
  }
  .banner {
    min-width: 400px;
  }

  .resource-img {
    width: 100%;
    height: auto;
  }
  .resources-gallery {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .carousel-img {
    width: 100%;
    height: auto;
  }
}

