/* Global CSS variables */
:root {
  --spacing-company: 3rem;
  --font-weight: 400;
  --border-radius: 0;
}

/* Typography */
h2,
h3,
hgroup> :last-child {
  font-weight: 200;
}

small {
  color: var(--muted-color);
}

/* Header */
.hero {
  background-color: #394046;
  background-image: url("img/sascha-eremin-DNQ-M93tHmA-unsplash-3000x1000.jpg");
  background-position: center;
  background-size: cover;
}

.numberCircle {
    width: 200px;
    line-height: 120px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    border: 2px solid #fff;
}

.thick { 
    display: block;
    height: 3px;
    border: 1px;
    color:#f6f6e0;
    background-color:#f6f6e0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    width: 75%;
    border-radius: 5px;
}

  .horizontal-line {
    width: 100%;
    height: 5px;
    background-color: #bfbaa9; /* You can change the color if needed */
    margin: 10px 0; /* Adjust margin as needed */
  }



header {
  padding: var(--spacing-company) 0;
}

header hgroup> :last-child {
  color: var(--h3-color);
}

header hgroup {
  margin-bottom: var(--spacing-company);
}

/* Nav */
summary[role="link"].contrast:is([aria-current], :hover, :active, :focus) {
  background-color: transparent;
  color: var(--contrast-hover);
}

/* Main */
@media (min-width: 992px) {
  main.grid {
    grid-column-gap: var(--spacing-company);
    grid-template-columns: auto 25%;
  }
}

form.grid {
  grid-row-gap: 0;
}

.bgrid {  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  grid-template-rows: auto auto;
  gap: 20px 20px;
  grid-auto-flow: row;
  grid-template-areas:
    ". . ."
    ". . .";
}

.thin {
  border-top: 1px solid grey;
}

    .thin1 {
      border-bottom: 20px solid #888;
    }

  .smicon {
  height: 5%;
  width: 5%;
} 

.fakebutton {
    background: transparent;
    border: none;
}

.main-content {
  padding: 20px;
  height: 90px;
  overflow: hidden;
  overflow-y: scroll;
  position: relative;
  z-index: 0;
      -webkit-mask-image: linear-gradient(to bottom,black 10%,transparent 80%);
  mask-image: linear-gradient(to bottom,black 10%,transparent 80%);
}
  

/* Aside nav */
aside img {
  margin-bottom: 0.25rem;
}

aside p {
  margin-bottom: var(--spacing-company);
  line-height: 1.25;
}