body, h1 {
  font-family: "Raleway", Arial, sans-serif;
}

h1 {
  letter-spacing: 6px;
  font-size: 3rem;
}

body {
    font-size: 1.5rem;
}

.w3-row-padding img {
  margin-bottom: 12px;
}

.image-container:hover .overlay-text {
  opacity: 1;
}

/* Remove default bullets */
ul, .myUL {
  list-style-type: none;
}

/* Remove margins and padding from the parent ul */

.myUL {
    margin: 0;
    padding: 0;
}


/* CARET GENERAL */
/* Style the caret/arrow */
.caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  transform: rotate(90deg);
}


/* CARET 1 */
.caret1 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret1::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile1.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret1-down::before {
  transform: rotate(90deg);
}

/* CARET 2 */
.caret2 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret2::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile2.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret2-down::before {
  transform: rotate(90deg);
}

/* CARET 3 */
.caret3 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret3::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile3.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret3-down::before {
  transform: rotate(90deg);
}

/* CARET 4 */
.caret4 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret4::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile4.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret4-down::before {
  transform: rotate(90deg);
}

/* CARET 5 */
.caret5 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret5::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile5.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret5-down::before {
  transform: rotate(90deg);
}

/* CARET 6 */
.caret6 {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 3rem;
}

.caret6::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5em;
  background-image: url('./assets/capstone/assets/tile6.png'); /* Replace with your actual path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.caret6-down::before {
  transform: rotate(90deg);
}


/* Hide the nested list */
.nested {
  display: none;
  margin: 0;
  padding: 0;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
  display: block;
}

.item {
    padding: 1rem;
}

/* CARET GENERAL */
/* Style the caret/arrow */
.bullet{
    list-style-type: square;
}

