@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Vollkorn:ital,wght@1,400;1,500;1,600&display=swap");:root {
  --bkg-color: rgb(200, 200, 180);
  --tile-bkg-color: rgb(255, 255, 255);
  --red: rgb(212, 0, 0);
  --indigo: rgb(0, 0, 128);
  --grey: rgb(80, 90, 100);
  --shadow-color: rgba(0, 0, 0, 0.075);
  --white: rgb(255, 255, 255);
  --font-color: rgb(100, 100, 100);
  --title-color: rgb(60, 60, 60);
}

body, div, section, p, h1, h2, h3, h4, header, footer, main, article {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  background-color: var(--bkg-color);
}

.base-tile {
  background-color: var(--tile-bkg-color);
  box-shadow: 2px 2px 2px 0px var(--shadow-color);
  border-radius: 4px;
}

.preview-inbo-block {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: space-between;
  align-items: center;
}

.page-footer {
  width: 100%;
  font-size: 11px;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  height: max-content;
  padding: 16px 0;
}

.footer-copy {
  font-family: Ubuntul;
  font-size: 12px;
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.page-main {
  max-width: 1220px;
  padding: 0 15px;
  margin: 10px auto;
  display: grid;
  grid-template-columns: 580px 1fr;
  column-gap: 10px;
  align-items: flex-start;
}

.news-line-container {
  display: grid;
  grid-auto-flow: row;
  row-gap: 2px;
  width: 100%; 
  height: max-content;
}

.preview-tile {
  display: grid;
  grid-template-columns: 190px 1fr;
  column-gap: 0;
  height: 190px;
}

.preview-image-box {
  height: 190px;
  width: 190px;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: rgb(160, 160, 160);
  border-radius: 4px 0 0 4px;
}

.preview-image {
  height: 190px;
  width: auto;
  background-color: rgb(255, 255, 255);
}

.preview-text-box {
  padding: 10px;
  position: relative;
  height: 190px;
}

.preview-date {
  font-family: 'Ubuntu Condensed';
  font-size: 12px;
  font-weight: 300;
  color: rgb(100, 100, 100);
}

.preview-section {
  font-family: 'Ubuntu Condensed';
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  text-align: left;
  text-transform: uppercase;
}

.preview-title {
  font-family: 'Ubuntu Condensed';
  color: rgb(0,0,0); /* var(--title-color); */
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  line-height: 110%;
  margin: 8px 0;
}

.preview-tile a:link,
.preview-tile a:visited,
.most-title a:link,
.most-title a:visited {
  color: inherit;
  text-decoration: none;
}

.preview-tile a:hover,
.most-title a:hover {
  color: var(--indigo);
}

.preview-text,
.most-lead {
  font-family: Ubuntu;
  color: rgb(60, 60, 60);
  font-weight: 300;
  font-size: 16px;
  text-align: left;
  line-height: 120%;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 106px;
  padding-top: 8px;
}

.preview-next-box {
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 2;
}

.sections-libe-container {
  display: grid;
  grid-auto-flow: row;
  row-gap: 2px;
}

.most-tile {
  height: 540px;
  width: 580px;
  display: grid;
  grid-template-rows: 360px max-content;
  row-gap: 15px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.most-text-container {
  padding: 0 15px 15px 15px;
  max-width: 100%;
}

.most-head,
.most-title {
  font-family: Ubuntu;
  font-weight: 500;
  text-align: left;
  line-height: 100%;
  margin-bottom: 0.6rem;
}

.most-head {
  color: var(--red);
  font-size: 19px;
}

.most-title {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-family: 'Ubuntu Condensed';
}

.most-image-box {
  display: grid;
  height: 360px;
  position: relative;
  overflow: hidden;
  background-color: rgb(60, 60, 60);
}

.most-image-background {
  height: 360px;
  width: 100%;
  background-size: 600px 400px;
  filter: brightness(0.5) blur(5px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.image-most {
  height: 360px;
  width: auto;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.all-button {
  height: 32px;
  width: max-content;
  justify-self: center;
  background-color: var(--grey);
  color: rgb(255, 255, 255);
  font-family: Ubuntu;
  font-weight: 500;
  text-align: center;
  border-radius: 12px;
  padding: 0 16px;
  display: grid;
  align-items: center;
  transition: background-color 0.4s;
}

.all-button:hover {
  background-color: var(--red);
  transition: background-color 0.4s;
}

.button-link {
  justify-self: center;
  text-decoration: none;
  margin-top: 8px;
}

.tell-main {
  max-width: 800px;
  display: grid;
  grid-auto-flow: row;
  row-gap: 2px;
  background-color: transparent;
  margin: 20px auto;
}

.about-page-main {
  margin: 20px auto;
  max-width: 800px;
  background-color: rgb(255, 255, 255);
  padding: 30px;
}

.about-page-main h1 {
  font-family: Ubuntu;
  font-weight: 600;
  font-size: 24px;
  color: var(--title-color);
  margin-bottom: 20px;
}

.about-page-main p {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 16px;
  color: var(--font-color);
  line-height: 150%;
  margin-bottom: 16px;
}

.pages_container {
  display: grid;
  grid-auto-flow: column dense;
  column-gap: 20px;
  /* width: 100%; */
  justify-content: center;
}

.pages_item,
.pages_item:link,
.pages_item:visited,
.pages_item_active {
  text-decoration: none;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 500;
  color: rgb(160, 160, 160);
  transition: color 0.3s;
}

.pages_item:hover {
  color: var(--indigo);
}

.pages_item_active {
  font-weight: 600;
  color: rgb(80, 80, 80);
}
@media (max-width: 1200px) {
  .page-main {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    margin: 10px auto;
  }

  .most-tile {
    height: 600px;
    width: 580px;
    display: grid;
    grid-template-rows: 360px max-content;
    row-gap: 15px;
    position: relative;
  }

  .base-tile {
    box-shadow: none;
  }

  .sections-libe-container {
    row-gap: 2px;
  }

  .news-line-container {
    row-gap: 2px;
  }

  .preview-image-box {
    border-radius: 0;
  }

  .preview-text {
    font-size: 13px;
  }

  .preview-title {
    font-size: 15px;
  }
}


@media (max-width: 1050px) {
  .page-main {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    margin: 10px auto;
    display: grid;
    grid-template-columns:  1fr;
    grid-auto-flow: row;
    row-gap: 2px;
    column-gap: 0px;
  }

  .most-tile {
    background-color: transparent;
  }

  .base-tile {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  .preview-text {
    font-size: 12px;
  }
}

@media (max-width: 840px) {
  .page-footer {
    width: 100%;
    display: grid;
    align-items: center;
    align-content: center;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content;
    column-gap: 0px;
    justify-content: center;
    justify-items: center;
    height: max-content;
    padding: 16px 10px;
  }
  
  .page-main {
    max-width: 100%;
    padding: 0 8px;
    margin: 10px auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    row-gap: 2px;
    column-gap: 0px;
  }
  
  .base-tile {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  .news-line-container {
    display: grid;
    grid-auto-flow: row;
    row-gap: 2px;
    width: 100vw; 
  }
  
  .preview-tile {
    display: grid;
    grid-template-columns: 140px calc(100vw - 16px - 140px);
    column-gap: 0;
    height: 140px;
    width: calc(100vw - 16px);
  }
  
  .preview-image-box {
    height: 140px;
    width: 140px;
  }
  
  .preview-image {
    height: 140px;
    width: auto;
  }
  
  .preview-text-box {
    padding: 8px 10px;
    position: relative;
    height: 140px;
  }
  
  .preview-title {
    font-size: 12px;
    margin: 6px 0;
  }
  
  .preview-text,
  .most-lead {
    font-size: 11px;
    text-align: left;
    line-height: 110%;
    height: max-content;
    padding-top: 0;
  }
  
  .preview-next-box {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 2;
  }
  
  .sections-libe-container {
    display: gird;
    grid-auto-flow: row;
    row-gap: 2px;
    max-width: calc(100vw - 20px);
  }
  
  .most-tile {
    height: auto;
    display: grid;
    grid-template-rows: calc((100vw - 16px) / 1.6) 180px;
    row-gap: 15px;
    position: relative;
    width: calc(100vw - 16px);
  }
  
  .most-text-container {
    padding: 0 15px 15px 15px;
  }
  
  .most-head,
  .most-title {
    font-family: Ubuntu;
    font-weight: 500;
    text-align: left;
    line-height: 100%;
    margin-bottom: 0.6rem;
  }
  
  .most-head {
    color: var(--red);
    font-size: 13px;
  }
  
  .most-title {
    color: var(--title-color);
    font-size: 12px;
    background-color: transparent;
  }
  
  .image-most {
    height: auto;
    width: calc(100vw - 15px);
  }

  .most-image-box {
    height: max-content;
    position: relative;
    overflow: hidden;
  }

  .about-page-main {
    padding: 8px;
    margin: 20px 10px;
  }

  .about-page-main p {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    text-align: justify;
  }

  .about-page-main h1 {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    text-align: left;
    color: var(--title-color);
  }

  .tell-main {
    margin-top: 16px;
    padding-left: 10px
  }

  figure {
    margin: 30px 0;
  }
}.most-container {
  position: relative;
  width: 580px;
  height: 540px;
  overflow: hidden;
  border-radius: 4px;
}

.most-content-box {
  display: grid;
  grid-auto-flow: column;
  column-gap: 0;
  width: max-content;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.4s;
  border-radius: 4px;
}

.gallery-button {
  height: 360px;
  width: 200px;
  opacity: 0.2;
  position: absolute;
  top: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  display: grid;
  align-items: center;
  padding-top: 40px;
  z-index: 100;
}

.gallery-arrow {
  width: 24px;
  height: auto;
}

.gallery-button:hover {
  opacity: 1;
}

.back {
  left: 0;
  justify-items: start;
  padding-left: 10px;
}

.next {
  right: 0;
  justify-content: end;
  padding-right: 10px;
}

.dot-container {
  display: grid;
  grid-auto-flow: column;
  column-gap: 10px;
  position: absolute;
  bottom: 10px;
  z-index: 2;
  justify-items: center;
  justify-content: center;
  width: 100%;
}

.dot-item {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: 1px solid rgb(200, 200, 200);
  background-color: transparent;
  transition: width 0.3s;
}

.dot-active {
  background-color: rgb(200, 200, 200);
  width: 20px;
}

.image-most {
  max-width: 580px;
  height: 360px;
  width: auto;
}

.most-image-box {
  width: 580px;
  display: grid;
  justify-content: center;
}

@media (max-width: 1200px) {
  .most-image-box {
    width: 580px;
    height: 360px;
  }

  .image-most {
    width: 580px;
    height: auto;
  }

  .most-container {
    width: 580px;
    height: 600px;
    margin: 0 auto;
  }

  .gallery-button {
    height: 420px;
    padding-top: 0px;
  }

  .most-content-box {
    width: 580px;
  }

  .most-text-container {
    width: 580px;
  }

  .dot-item {
    border-color: rgb(0, 0 , 0);
  }

  .dot-active {
    background-color: rgb(0, 0, 0);
  }
}

@media (max-width: 840px) {
  .most-container {
    position: relative;
    width: calc(100vw - 16px);
    height: calc((100vw - 16px) / 1.6 + 180px);
    overflow: hidden;
  }

  .most-text-container {
    width: 100%;
  }

  .gallery-button,
  .gallery-button:hover {
    height: calc((100vw - 16px) / 1.6);
    width: calc(100vw / 3);
    opacity: 0.3;
    padding-bottom: 50px;
  }

  .gallery-arrow {
    width: 24px;
    height: auto;
  }

  .back, .next {
    padding-left: 0;
    padding-right: 0;
  }

  .most-image-box {
    width: calc(100vw - 16px);
    height: calc((100vw - 16px) / 1.6);
  }

  .image-most {
    width: auto;
    height: calc((100vw - 16px) / 1.6);
  }
}
.news-main {
  max-width: 800px;
  margin: 2px auto;
  background-color: var(--tile-bkg-color);
  padding: 10px 30px 30px 30px;
  box-shadow: 6p 6px 6px 0 var(--shadow-color);
  border-radius: 4px;
}

.tech-head {
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 500;
  color: rgb(100, 100, 100);
  line-height: 120%;
}

.news-title {
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 600;
  color: var(--indigo);
  text-align: left;
  margin: 15px 0 10px;
}

.news-date {
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 400;
  color: rgb(100, 100, 100);
  text-align: left;
  font-style: italic;
}

.news-image-box {
  width: 100%;
  display: grid;
  justify-content: center;
  padding: 10px;
}

.news-image {
  max-width: 580px;
  /* max-width: 1200px; */
  height: auto;
}

.news-lead {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 500;
  color: rgb(60, 60, 60);
  text-align: justify;
  margin: 10px 0;
}

.news-text p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  color: rgb(80, 80, 80);
  text-align: justify;
  padding: 4px 0;
}

.news-text i {
  font-family: Ubuntu;
  font-style: italic;
}

.news-text blockquote {
  font-family: Vollkorn;
  font-size: 18px;
  font-style: italic;
  line-height: 110%;
  font-weight: 400;
  color: rgb(80, 80, 80);
}
.news-text blockquote p {
  font-family: Vollkorn;
  font-size: 18px;
}

.news-text h2,
.gallery-title {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 500;
  color: rgb(100, 100, 100);
  margin-top: 24px;
  margin-bottom: 8px;
}

.gallery-title {
  margin-bottom: 32px;
}

.news-text figure img {
  width: auto;
  max-width: 670px;
  padding: 8px;
}

.news-text figure {
  display: grid;
  justify-items: center;
}

.news-text figure figcaption {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  color: rgb(120, 120, 120);
  text-align: left;
}

.news-author {
  font-family: Vollkorn;
  font-size: 16px;
  font-weight: 400;
  color: rgb(100, 100, 100);
  text-align: right;
  font-style: italic;
  margin-top: 30px;
}

.gallery-container {
  position: relative;
  width: 680px;
  height: 600px;
  overflow: hidden;
  margin: 0 auto;
}

.gallery-container .gallery-figure img {
  width: 100%;
  max-width: 680px;
  height: auto;
}

.gallery-container .gallery-figure .gallery-figcaption {
  font-family: Ubuntu;
  font-weight: 300;
  font-size: 16px;
  color: rgb(120, 120, 120);
  text-align: left;
  
}

.gallery-content-box {
  display: grid;
  grid-auto-flow: column;
  column-gap: 0;
  width: max-content;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.4s;
}

.gallery-button {
  height: 600px;
  width: 200px;
  opacity: 0;
  position: absolute;
  top: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  display: grid;
  align-items: center;
  padding-bottom: 40px;
}

.gallery-arrow {
  width: 32px;
  height: auto;
}

.gallery-button:hover {
  opacity: 1;
}

.back {
  left: 0;
  justify-items: start;
  padding-left: 30px;
}

.next {
  right: 0;
  justify-content: end;
  padding-right: 30px;
}

.dot-container {
  display: grid;
  grid-auto-flow: column;
  column-gap: 10px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  justify-items: center;
  justify-content: center;
  width: 100%;
}

.dot-item {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: 1px solid rgb(200, 200, 200);
  background-color: transparent;
  transition: width 0.3s;
}

.dot-active {
  background-color: rgb(200, 200, 200);
  width: 20px;
}

@media (max-width: 840px) {
  .news-main {
    background-color: transparent;
    margin: 10 auto;
    padding: 10px 30px 30px 30px;
    box-shadow: none;
  }

  .tech-head {
    margin-bottom: 0;
  }

  .news-title {
    margin: 10px 0 8px;
  }

  .news-lead,
  .news-text p,
  .news-text blockquote,
  .news-text blockqoute p {
    color: rgb(0, 0, 0);
  }
  
  .gallery-container {
    position: relative;
    width: calc(100vw - 60px);
    height: calc((100vw - 60px) / 1.2);
    /* max-height: 300px; */
    overflow: hidden;
  }
  
  .gallery-container .gallery-figure img {
    width: 100%;
    max-width: calc(100vw - 60px);
    height: auto;
  }

  .gallery-figcaption {
    width: calc(100vw - 60px);
  }
}

@media (max-width: 540px) {
  .news-main {
    padding: 20px 0;
    margin: 16px 10px;
  }

  .news-image {
    max-width: calc(100vw - 16px);
  }

  .news-image-box {
    padding: 30px 0;
  }

  .news-text figure img {
    /* width: 100%; */
    max-width: calc(100vw - 40px);
  }

  .gallery-container {
    position: relative;
    width: calc(100vw - 60px);
    height: 300px;
    /* max-height: 300px; */
    overflow: hidden;
  }
  
  .gallery-container .gallery-figure img {
    width: 100%;
    max-width: calc(100vw - 60px);
    height: auto;
  }

  .gallery-button,
  .gallery-button:hover {
    height: 300px;
    width: calc(100vw / 3);
    opacity: 0.3;
    padding-bottom: 50px;
  }

  .gallery-arrow {
    width: 24px;
    height: auto;
  }

  .back, .next {
    padding-left: 0;
    padding-right: 0;
  }
}
.preview-section-tile {
  padding: 16px;
  display: grid;
}

.section-name {
  font-family: 'Vollkorn';
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--indigo);
  text-align: left;
}

.publications-section-name {
  padding-left: 14px;
}

.section-content-container {
  margin: 0;
}

.publications-container {
  padding: 16px 2px; 
}

.bird {
  list-style-image: url('/img/bird.svg');
  list-style-position: outside;
}

.none {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  column-gap: 2px;
  grid-auto-flow: column;
  width: max-content;
  margin: 0 auto;
}

.with-preview {
  /* display: grid;
  grid-template-columns: 11fr;
  column-gap: 10px;
  align-items: center; */
  position: relative;
  width: 188px;
  height: 188px;
  margin: 0;
}

.section-content-container ul li {
  margin: 16px 0;
}

.section-content-container ul li.with-preview {
  margin: 8px 0;
}

.section-link {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 500;
  color: var(--indigo);
  text-decoration: none;
}

.publications-link {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px;
  font-family: 'Ubuntu Condensed';
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.all-button {
  margin: 0 auto;
  text-decoration: none;
}

.button-link:link,
.button-link:visited,
.button-link:hover {
  text-decoration: none;
}

.preview-section-image {
  width: auto;
  height: 188px;
}

.preview-section-image-box {
  width: 188px;
  height: 188px;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-content: center;
}

@media (max-width: 580px) {
  .none {
    column-gap: 0;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .preview-section-image {
    height: calc(100vw - 32px);
  }
  
  .preview-section-image-box {
    width: calc(100vw - 32px);
    height: calc(100vw - 32px);
  }

  .with-preview {
    position: relative;
    width: calc(100vw - 32px);
    height: calc(100vw - 32px);
  }
}

.header-logo-box {
  margin-bottom: -14px;
  grid-area: logo;
}

.header-logo {
  width: 230px;
  height: auto;
}

.header-logo-link {
  text-decoration: none;
}

.header-menu-button {
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.menu-icon {
  font-weight: 900;
  transform: rotate(90deg);
  font-size: 18px;
  color: var(--indigo);
}

.header-menu-button:hover {
  border: 0;
  outline: 0;
}

.page-header {
  width: 100%;
  background-color: rgb(255, 255, 255);
  height: 88px;
  box-shadow: 2px 2px 2px 0px var(--shadow-color);
}

.header-content-container {
  max-width: 800px;
  width: max-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr;
  grid-template-areas: 'logo topNavigation';
  column-gap: 32px;
  align-items: flex-end;
  padding-top: 0;
  position: relative;
}

.header-top-nav {
  display: grid;
  column-gap: 20px;
  justify-content: flex-start;
  grid-area: topNavigation;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
}

.top-menu-item {
  color: var(--indigo);
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 100%;
}

.top-menu-item a:link,
.top-menu-item a:visited {
  text-decoration: none;
  color: var(--indigo);
}

.d-menu {
  background-color: rgb(255, 255, 255);
  max-height: 300px;
  transition: max-height 0.3s;
  overflow: hidden;
  width: max-content;
  position: absolute;
  top: 90px;
  right: 0;
  z-index: 100;
  box-shadow: 0px 1px 15px 0px rgb(100, 100, 100, 0.2);
}

.close {
  max-height: 0;
}

.d-menu-list {
  padding: 20px 30px;
  margin: 0;
}

.d-menu-list li {
  padding-left: 0;
  list-style: none;
  margin-bottom: 10px;
  display: grid;
  column-gap: 8px;
  grid-template-columns: 16px max-content;
  align-items: center;
}

.d-menu-icon {
  height: 16px;
  width: 16px;
}

.d-menu-icon-logo {
  height: 16px;
  width: auto;
}

.d-menu-item-link:link,
.d-menu-item-link:visited {
  text-decoration: none;
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 16px;
  color: rgb(100, 100, 100);
  transition: color 0.4s;
}

.d-menu-item-link:hover {
  color: var(--indigo);
}

.noactive,
.noactive:link,
.noactive:visited,
.noactive:hover {
  color: rgb(160, 160, 160);
  cursor: default;
}

@media (max-width: 1200px) {
  .page-header {
    width: 100%;
  }

  .header-content-container {
    max-width: calc(100vw - 148px);
  }
}

@media (max-width: 924px) {

  .header-content-container {
    max-width: calc(100vw - 30px);
    grid-template-areas: 'logo logo' 'topNavigation';
    grid-template-columns: 1fr;
    justify-content: center;
    column-gap: 0;
    padding: 0px 10px;
  }

  .header-top-nav {
    margin-top: 16px;
  }
  
  .page-header {
    width: 100vw;
    background-color: rgb(255, 255, 255);
    height: 120px;
  }

  .d-menu {
    top: 120px;
  }
}

@media (max-width: 540px) {
  .page-header {
    width: 100vw;
    background-color: rgb(255, 255, 255);
    height: 120px;
  }
  
  .header-content-container {
    max-width: 100vw;
    grid-template-areas: 'logo logo' 'topNavigation menuButton';
    grid-template-columns: 1fr;
    grid-template-rows: 92.44px 14px;
    row-gap: 8px;
    justify-content: space-between;
    column-gap: 0;
    padding: 0px 10px;
  }
  
  .header-top-nav {
    justify-content: space-between;
    justify-self: center;
  }
  
  .top-menu-item {
    font-weight: 500;
    font-size: 12px;
    font-family: 'Ubuntu Condensed';
  }
  
  .header-logo-box {
    margin-bottom: 0;
    justify-self: center;
  }
  
  .header-logo {
    width: 230px;
    height: auto;
  }
}