@keyframes scaleup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.26);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleupless {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.linkbox a i:hover {
  cursor: pointer;
  animation: scaleup 1.2s ease 1 forwards;
}

/* for about.html */
.icons a:hover {
  cursor: pointer;
  animation: scaleupless 1.2s ease 1 forwards;
}

.substackcontainer a .bi-substack:hover {
  animation: scaleupless 1.2s ease 1 forwards;
  /* remove it for now: */
}

.copyanddownload i:hover {
  cursor: pointer;
  animation: scaleupless 1.2s ease 1 forwards;
}

.fa-linkedin:hover {
  color: #0e6899 !important;
}

.icons a .bi-substack:hover {
  fill: #f36822;
}

/* add animations for GitHub and LinkedIn icons later as well */
@keyframes scaleandspin {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.35) rotate(360deg);
  }
  53% {
    transform: scale(1.35) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(720deg);
  }
}
footer #smalllogo:hover {
  cursor: pointer;
  animation: scaleandspin 2.6s ease 1 forwards;
}

@keyframes shiftleft {
  0% {
    transform: translateX(0px);
    transform: scale(1);
  }
  25% {
    transform: translateX(50px) scale(1.3);
    color: lightskyblue;
  }
  /* 
  40% {
    transform: translateX(25px);
    color: lightskyblue;
  } */
  50% {
    transform: translateX(0px);
    color: rgb(77, 158, 208);
  }
  /*   
  60% {
    transform: translateX(-25px);
    color: lightskyblue;
  } */
  /* 
  70% {
    transform: translateX(-50px);
    color: lightskyblue;
  } */
  75% {
    transform: translateX(-50px);
    color: lightskyblue;
    background-color: aquamarine;
  }
  /* 
  80% {
    transform: translateX(-25px);
    color: lightskyblue;
  }

  90% {
    transform: translateX(-10px);
    color: lightskyblue;
  } */
  100% {
    transform: translateX(0px) scale(1);
  }
}
/* I should also add spans around each word so I can animate columns as well.  */
.tableanimationforwards {
  /* custom curve */
  /* get this two seconds value in javascript */
  animation: shiftleft 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updownog {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgb(182, 227, 255);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updownblue {
  animation: updownog 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updownred {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgb(251, 241, 58);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updownred {
  animation: updownred 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updown_ut {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgba(218, 81, 13, 0.8);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updown_ut {
  animation: updown_ut 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}
.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

footer {
  height: 220px;
  width: 100%;
  background-color: rgba(0, 24, 75, 0.4549019608);
  color: rgb(255, 255, 255);
  padding: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20%;
       column-gap: 20%;
  font-family: Helvetica, sans-serif;
  position: relative;
  overflow: visible;
}
footer .footerleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 15px;
}
footer .footerleft .links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
footer .footerright #smalllogo {
  /* animation has been added in animations.css  */
  width: 85px;
  height: 85px;
  border-radius: 10px;
  border: 3px solid #081a75;
}
footer .footerright #statement {
  font-family: "Barlow", sans-serif;
  font-size: 25px;
  margin: 0;
  margin-top: 19px;
  font-weight: 700;
}
footer a {
  color: white;
  font-family: Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  footer a {
    font-size: 19px;
  }
}
footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}

:root {
  --secondarynavy: #153f66;
  --lighterblue: #284dbc;
  --vibrantorange: rgb(244, 102, 70);
}

div.tablediv div.table-scroll {
  /* for aniamtions

  */
  /* style first row bold */
  /* add border radius to the whole table */
  /* change alignment */
  /* alternating bcg for lines */
  /* style Degreeview Logo */
}
div.tablediv div.table-scroll table {
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
div.tablediv div.table-scroll table tr {
  /* transition: font-size calc(var(--order) * 300ms) ease; */
}
div.tablediv div.table-scroll table td,
div.tablediv div.table-scroll table th {
  border: 1px solid #ccc;
  padding: 15px 9px;
  min-height: 40px;
}
div.tablediv div.table-scroll table tr:first-child td {
  font-weight: bold;
  background-color: var(--vibrantorange);
  color: white;
  border: none;
  text-align: left;
  font-size: 20px;
  padding: 18px;
}
div.tablediv div.table-scroll table tr:first-child td:nth-of-type(1) {
  border-top-left-radius: 10px;
  padding-left: 10px;
}
div.tablediv div.table-scroll table tr:first-child td:nth-last-of-type(1) {
  border-top-right-radius: 10px;
  padding-right: 15px;
}
div.tablediv div.table-scroll table tr:last-child td:nth-of-type(1) {
  border-bottom-left-radius: 10px;
}
div.tablediv div.table-scroll table tr:last-child td:nth-of-type(5) {
  border-bottom-right-radius: 10px;
  border: 1px solid #ccc;
  border-collapse: separate;
}
div.tablediv div.table-scroll td:nth-child(1),
div.tablediv div.table-scroll th:nth-child(1) {
  text-align: left;
  padding-right: 15px !important;
  font-weight: bold;
  font-size: 17px;
}
div.tablediv div.table-scroll td:nth-child(2),
div.tablediv div.table-scroll th:nth-child(2) {
  text-align: left;
}
div.tablediv div.table-scroll td:nth-child(3),
div.tablediv div.table-scroll th:nth-child(3) {
  text-align: left;
}
div.tablediv div.table-scroll td:nth-child(4) {
  text-align: center;
}
div.tablediv div.table-scroll td:nth-child(5),
div.tablediv div.table-scroll th:nth-child(5) {
  /* this would remove the schoolname normally */
  /* display: none; */
}
div.tablediv div.table-scroll tr:nth-child(even) {
  background-color: #f2f2f2;
}
div.tablediv div.table-scroll tr:nth-child(odd) {
  background-color: #fafafa;
}
div.tablediv div.table-scroll table tr:last-child {
  background-color: #fff;
}
div.tablediv div.table-scroll table tr:last-child td:first-child {
  font-weight: bold;
  color: #0c48a5;
  font-family: "Barlow";
  font-weight: 600;
  font-size: 30px;
  text-align: left;
}
div.tablediv div.table-scroll table tr:last-child td:last-child {
  color: transparent;
}
div.tablediv div.table-scroll .dummytd {
  background-color: yellow;
}
@media screen and (max-width: 550px) {
  div.tablediv div.table-scroll {
    /* now semester table */
    /* make the logo box smaller */
  }
  div.tablediv div.table-scroll table td {
    width: 95%;
    padding: 15px 4px;
    font-size: 15.5px;
  }
  div.tablediv div.table-scroll table tr:last-child td:first-child {
    font-weight: bold;
    color: #0c48a5;
    font-family: "Barlow";
    font-weight: 600;
    /* make the logo box smaller */
    font-size: 20px !important;
  }
  div.tablediv div.table-scroll table td {
    width: 95%;
    padding: 15px 4px;
    font-size: 15px;
  }
  div.tablediv div.table-scroll table tr:last-child td:first-child {
    font-weight: bold;
    color: #0c48a5;
    font-family: "Barlow";
    font-weight: 600;
    font-size: 20px !important;
  }
}
@media screen and (max-width: 450px) {
  div.tablediv div.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smoother scroll on mobile */
  }
}

/* yeah so I just copy pasted the entire degreepage2 css and slightly modified the heading text instead of redoing  */
/* degreename stuff */
/* Idea for this one:
Basically everything is flex. To make it responsive switch direction from flex row to flex column
*/
:root {
  --secondarynavy: #153f66;
  --lighterblue: #284dbc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
  gap: 10px;
  /* filter: invert(100%); */
  /* filter: grayscale(50%); */
  filter: contrast(110%);
  /* filter: blur(3px); */
  filter: saturate(110%);
}

/* 

This is all nav bar stuff:*/
/* end nav bar stuff */
.sitecontainer#sorted-departments {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
  /* 
  Above mainsite and its children
  */
  /* topnav beginning */
  /* this is for the icon in the breadcrumbs */
  /* 

  still in top nav, but now the homeandabout section

  */
  /* now outside of top nav */
  /* now done with above main site... */
  /* mainsite will be the name, plus some of the files, plus some images. But there can be stuff below it in, Since sitecontainer is flex column  */
  /* 
  Begin left content stuff
  */
  /* this controls this h3 elements in files container */
  /* this changes the styling on the names of the file like "Sample Semester PDF */
  /* add animations to these mf's */
  /* end left content stuff */
  /* 





  */
  /* Right content stuff */
  /* 





  */
  /* add share icon in the future */
  /* all table styling is in tablestyling.css  */
  /* beginning of all the media quieries */
  /* 

  Mobile Screens

  */
  /* even smaller screensizes here */
}
.sitecontainer#sorted-departments #animatebutton {
  border: 1px solid rgb(35, 44, 116);
  color: white;
  background-color: #153f66;
  width: 75px;
  padding: 0px 6px;
  height: 40px;
  border-radius: 25px;
  margin-right: 10px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.5s;
}
.sitecontainer#sorted-departments #animatebutton:hover {
  cursor: pointer;
  background-color: #fdfbfa;
  color: #153f66;
  border: 3px solid rgb(15, 29, 89);
}
.sitecontainer#sorted-departments .abovemainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
}
.sitecontainer#sorted-departments .topnav {
  /* change this color to see it and make changes */
  background-color: #eee;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
}
.sitecontainer#sorted-departments .breadcrumbs #current {
  /* this is the current page the user is on */
  text-decoration: none;
  color: rgb(200, 74, 12);
  font-size: 16px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sitecontainer#sorted-departments .breadcrumbs {
  background-color: #eee;
  width: 70%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sitecontainer#sorted-departments .breadcrumbs ul {
  display: flex;
  flex-direction: row;
  padding-left: 30px;
  -moz-column-gap: 19px;
       column-gap: 19px;
  list-style-type: none;
  color: #081a75;
}
.sitecontainer#sorted-departments .breadcrumbs ul li a {
  text-decoration: none;
  color: #081a75;
  font-size: 16px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sitecontainer#sorted-departments .breadcrumbs ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}
.sitecontainer#sorted-departments .fa-chevron-right {
  vertical-align: middle; /* or baseline, or -2px tweak */
  font-size: 12px; /* adjust size */
  margin: 5px 0 0px 0; /* spacing */
  color: #081a75;
}
.sitecontainer#sorted-departments .homeandabout {
  background-color: var(--secondarynavy);
  width: 25%;
  height: 100px;
  display: flex;
  flex-direction: row;
  /* this jsut centers the ul */
  align-items: center;
  justify-content: center;
}
.sitecontainer#sorted-departments .homeandabout ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}
.sitecontainer#sorted-departments .homeandabout ul li {
  /* make them big so you can hover */
  /* each one takes up 1/3 width */
  flex: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.sitecontainer#sorted-departments .homeandabout li:hover {
  background-color: #284dbc;
}
.sitecontainer#sorted-departments .homeandabout ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  /* nice font when bolded */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* make the whole li box clickable */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sitecontainer#sorted-departments .degreenamebox {
  /* border: 4px solid black; */
  width: 80%;
  height: 150px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#sorted-departments #degreenametitle {
  font-size: 35px;
  color: #284dbc;
}
.sitecontainer#sorted-departments .mainsite {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 1 1 350px;
  border-top: 10px solid var(--secondarynavy);
  border-bottom: 10px solid var(--secondarynavy);
}
.sitecontainer#sorted-departments .leftcontent {
  /* this affects the width */
  flex: 40%;
  background-color: #ffffff;
  padding: 10px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 25px;
}
.sitecontainer#sorted-departments .filescontainer {
  border: 4px dashed rgb(16, 11, 82);
  border-radius: 26px;
  width: 92%;
  padding: 20px 29px;
}
.sitecontainer#sorted-departments .filescontainer h3 {
  color: #284dbc;
}
.sitecontainer#sorted-departments .filescontainer .filesname {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.sitecontainer#sorted-departments .filescontainer .filesname i {
  font-size: 20px;
}
.sitecontainer#sorted-departments .filescontainer ul {
  list-style-type: none; /* Removes bullets */
  /* indent */
  padding-left: 30px;
}
.sitecontainer#sorted-departments .linkbox {
  display: flex;
  flex-direction: row;
  /* make the download text all even */
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.sitecontainer#sorted-departments .linkbox p:first-of-type {
  margin-top: 10px;
  font-weight: bold;
  max-width: 137px;
}
.sitecontainer#sorted-departments .linkbox a i {
  color: rgb(21, 21, 69);
}
.sitecontainer#sorted-departments .rightcontent {
  flex: 60%;
  background-color: rgb(113, 179, 185);
  padding: 0px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.sitecontainer#sorted-departments .displayedpdfnamebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding top 30 plus this height 50  equals 80 which is padding top of right content */
  height: 80px;
  width: 100%;
}
.sitecontainer#sorted-departments .visuals {
  height: calc(100% - 100px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#sorted-departments .displayedpdfnamebox #displayedpdfname {
  color: white;
}
.sitecontainer#sorted-departments .visuals .displayedpdf {
  border-radius: 26px;
}
.sitecontainer#sorted-departments .tablediv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  flex: 1 1 350px;
  border-top: 10px solid var(--secondarynavy);
  border-bottom: 10px solid var(--secondarynavy);
  height: auto;
  padding: 40px 0px 50px 0px;
  padding-right: 80px;
  padding-left: 80px;
}
.sitecontainer#sorted-departments .tablediv .copyanddownload {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 19px;
  -moz-column-gap: 19px;
       column-gap: 19px;
  height: 50px;
  width: 90%;
  margin: -20px 0px -14px 0px;
}
.sitecontainer#sorted-departments .tablediv .copyanddownload i {
  font-size: 28px;
  color: rgb(21, 21, 69);
}
.sitecontainer#sorted-departments .tablediv .copyanddownload i:hover {
  cursor: pointer;
}
.sitecontainer#sorted-departments .tablediv .table-scroll {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 700px) and (max-width: 1272px) {
  .sitecontainer#sorted-departments {
    /* all the following is in left content */
  }
  .sitecontainer#sorted-departments #degreenametitle {
    font-size: clamp(32px, 7.5vw, 35px);
    color: #284dbc;
  }
  .sitecontainer#sorted-departments .leftcontent {
    padding: 25px 10px;
  }
  .sitecontainer#sorted-departments .filescontainer {
    border: 4px dashed rgb(16, 11, 82);
    width: 92%;
    padding: 20px 20px;
  }
  .sitecontainer#sorted-departments .linkbox {
    display: flex;
    flex-direction: column;
    /* make the download text all even */
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
  }
  .sitecontainer#sorted-departments .linkbox p {
    margin: 0;
  }
  .sitecontainer#sorted-departments .linkbox p:first-of-type {
    margin-top: 26px;
    font-weight: bold;
  }
}
@media screen and (max-width: 1135px) {
  .sitecontainer#sorted-departments {
    /* theres already padding here from the originally declared style */
    /* add some right padding */
  }
  .sitecontainer#sorted-departments .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    height: 300px;
  }
  .sitecontainer#sorted-departments .degreenamebox {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    height: 200px;
    width: 100%;
    padding-left: 20px;
  }
  .sitecontainer#sorted-departments .topnav {
    background-color: #eee;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .sitecontainer#sorted-departments .breadcrumbs {
    background-color: #eee;
    flex-basis: auto;
    width: 69%;
    height: 100px;
    /* the breadcrumbs content will possibly wrap */
  }
  .sitecontainer#sorted-departments .breadcrumbs ul {
    padding-left: 30px;
    padding-right: 10px;
  }
  .sitecontainer#sorted-departments .homeandabout {
    width: 30%;
  }
}
@media screen and (max-width: 700px) {
  .sitecontainer#sorted-departments {
    /* 




    this one here is pretty important */
  }
  .sitecontainer#sorted-departments .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 345px;
  }
  .sitecontainer#sorted-departments .degreenamebox {
    height: 190px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#sorted-departments #degreenametitle {
    font-size: 30px;
    color: #284dbc;
  }
  .sitecontainer#sorted-departments .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 155px;
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#sorted-departments .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 75px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
  }
  .sitecontainer#sorted-departments .breadcrumbs {
    background-color: #eee;
    width: 100%;
    flex: none;
    /* margin top needs to be added since home and about is now fixed position */
    height: 80px;
    order: 2;
    /*  */
  }
  .sitecontainer#sorted-departments .breadcrumbs ul {
    padding-left: 30px;
    padding-right: 10px;
  }
  .sitecontainer#sorted-departments .breadcrumbs ul li a {
    color: #081a75;
    font-size: 13.5px;
  }
  .sitecontainer#sorted-departments .breadcrumbs #current {
    /* this is the current page the user is on */
    font-size: 13.5px;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  .sitecontainer#sorted-departments .mainsite {
    flex-direction: column;
  }
  .sitecontainer#sorted-departments .leftcontent {
    padding: 25px 10px;
  }
  .sitecontainer#sorted-departments #pdfcontainer .linkbox,
  .sitecontainer#sorted-departments #csvcontainer .linkbox {
    flex-direction: column;
    row-gap: 3px;
    justify-content: center;
    align-items: flex-start;
  }
  .sitecontainer#sorted-departments #pdfcontainer .linkbox p,
  .sitecontainer#sorted-departments #csvcontainer .linkbox p {
    margin: 6px;
  }
  .sitecontainer#sorted-departments #pdfcontainer .linkbox p:first-of-type,
  .sitecontainer#sorted-departments #csvcontainer .linkbox p:first-of-type {
    margin-top: 15px;
    font-weight: bold;
    max-width: 137px;
  }
}
@media screen and (max-width: 550px) {
  .sitecontainer#sorted-departments .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 265px;
  }
  .sitecontainer#sorted-departments .degreenamebox {
    height: 190px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#sorted-departments #degreenametitle {
    font-size: 30px;
    color: #284dbc;
  }
  .sitecontainer#sorted-departments .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 75px;
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#sorted-departments .homeandabout .breadcrumbs ul li a {
    color: #081a75;
    font-size: 14px;
  }
  .sitecontainer#sorted-departments .breadcrumbs {
    height: 80px;
    font-size: 10px;
  }
}
@media screen and (max-width: 450px) {
  .sitecontainer#sorted-departments .breadcrumbs ul li a {
    color: #081a75;
    font-size: 9px;
  }
  .sitecontainer#sorted-departments .breadcrumbs #current {
    /* this is the current page the user is on */
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 9px;
  }
  .sitecontainer#sorted-departments .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 375px;
  }
  .sitecontainer#sorted-departments .degreenamebox {
    height: 210px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 35px;
  }
  .sitecontainer#sorted-departments .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 165px;
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#sorted-departments .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 75px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
  }
  .sitecontainer#sorted-departments .breadcrumbs {
    background-color: #eee;
    width: 100%;
    flex: none;
    /* margin top needs to be added since home and about is now fixed position */
    height: 90px;
    order: 2;
    /*  */
  }
  .sitecontainer#sorted-departments .breadcrumbs ul {
    padding-left: 30px;
    padding-right: 10px;
  }
}/*# sourceMappingURL=main.css.map */