/* GLOSSARY CSS */

section.header h1.page-heading {
  color: #114141 !important;
  font-family: "Filson Pro" !important;
  font-size: 40px !important;
  font-style: normal;
  font-weight: 800 !important;
  line-height: 50px !important;
  letter-spacing: 0.4px !important;
  margin: 0;
  padding: 80px 15px 40px;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

section.header .dark-bg {
  background: #114141;
  padding: 64px 10px;
}

section.header p.page-subheading {
  color: #fff;
  text-align: center;
  font-family: "Filson Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 auto;
  max-width: 938px;
  text-box: trim-both cap alphabetic;
}

section.glossary {
  background: #d2f6ee;
}

section.glossary .content-container {
  max-width: 938px;
  margin: 0 auto;
  padding: 64px 0;
}

.glossary-index {
  margin: 0 0 28px;
}

ul.glossary-index__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

li.glossary-index__item {
  color: #114141;
  text-align: center;
  font-family: "Filson Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 33px;
  text-box: trim-both text;
}

li.glossary-index__item--available a {
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  color: #114141;
}

.glossary-section {
	margin: 0 0 40px;
	border-bottom: 1px solid #00AE9B;
}

.content-container div:last-child {
	border: none;
	margin: 0;
}

.content-container div:last-child p:last-child {
	/*margin: 0;*/
    margin-bottom: 0;
}        

/*.glossary-section:nth-of-type(2) .glossary__term:first-of-type {
  margin: 0 0 16px;
}

.glossary-section:last-of-type .glossary__description:last-of-type {
  margin: 0 24px 0;
}*/
p.glossary__term {
  color: #114141;
  font-family: "Filson Pro";
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin: 0 0 8px;
  /*text-box: trim-both cap alphabetic;*/
}

p.glossary__description {
  color: #333;
  font-family: "Filson Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 24px 34px;
  /*text-box: trim-both cap alphabetic;*/
}
.glossary-section:after{
    content: "";
    display: table;
    clear: both;
}
/* Mobile */
@media screen and (max-width: 991px) {
  section.header h1.page-heading {
    font-size: 30px !important;
    line-height: 34px !important;
    letter-spacing: 0.3px !important;
    padding: 40px 15px;
  }

  .glossary-index-mobile {
    position: relative;
  }

  button.glossary-index-mobile__toggle {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    color: #333;
    font-family: "Filson Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    padding: 12px 8px 30px;
    display: flex;
  }

  img.glossary-index-mobile__icon {
    margin-left: auto;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .glossary-index-mobile__popup {
    background: #fff;
    border: 1px solid #ccc;
    padding: 16px 40px 16px 8px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
    width: 360px;
    height: 274px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(40px);
  }

  ul.glossary-index-mobile__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    row-gap: 30px;
  }

  li.glossary-index-mobile__item--available > a {
    font-size: 22px;
    font-weight: 700;
    font-family: "Filson Pro";
    color: #114141;
    text-decoration: none;
  }

  li.glossary-index-mobile__item {
    color: #114141;
    font-family: "Filson Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  section.glossary .content-container {
    padding: 64px 15px;
    max-width: 100%;
  }

  p.glossary__term {
    margin: 28px 0 16px;
  }

  p.glossary__description {
    margin: 0 24px 32px;
  }
    .glossary-section{
     margin: 0;
    }
  .glossary-index-mobile__popup {
    display: none;
  }

  .glossary-index-mobile__popup.active {
    display: block;
  }
  .glossary-index-mobile__icon.open {
    transform: rotate(0);
  }
}
/* Mobile END */
