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

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Avenir Next LT Pro", sans-serif;
  scroll-behavior: smooth;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100vh;
}

nav {
  position: fixed;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index: 9999;
  top: 0;
}

.logo img {
  width: 60px;
  margin-left: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .logo img {
    display: none;
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1100px) {
  .badges {
    gap: 0.4rem;
  }
}

.badges .img1 {
  width: 100px;
}
@media screen and (max-width: 1500px) {
  .badges .img1 {
    width: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .badges .img1 {
    display: none;
  }
}

.badges .img2 {
  width: 170px;
}
@media screen and (max-width: 1500px) {
  .badges .img2 {
    width: 130px;
  }
}
@media screen and (max-width: 1000px) {
  .badges .img2 {
    display: none;
  }
}

.badges .img3 {
  width: 150px;
}
@media screen and (max-width: 1500px) {
  .badges .img3 {
    width: 110px;
  }
}
@media screen and (max-width: 1000px) {
  .badges .img3 {
    display: none;
  }
}

.scrolled {
  border-bottom: 1px solid #ddd; /* add a bottom border */
  box-shadow: 100px 5px 33px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); /* add a box-shadow */
}

.nav-links {
  display: flex;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #333;
    padding: 10px 0;
  }
}

.nav-links li {
  cursor: pointer;
  padding: 1rem 2rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-links a {
    color: #fff;
    font-weight: bold;
  }
}

.nav-links .currentpage::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: width 0.3s ease-in-out;
  width: calc(100% - 20px);
  background-color: #8b8b8b;
}
@media screen and (max-width: 768px) {
  .nav-links .currentpage::before {
    height: 5px;
    bottom: -5px;
    background-color: #f5f5f5;
  }
}

@media screen and (min-width: 768px) {
  .nav-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease-in-out;
  }
}

.nav-links li:hover > a::before {
  width: calc(100% - 20px);
}

@media screen and (max-width: 768px) {
  .nav-links li:hover {
    background-color: #8b8b8b;
  }
}

.nav-links.open {
  display: flex;
}

#hamburger-menu {
  width: 40px;
  height: 25px;
  position: fixed;
  display: none;
}
@media screen and (max-width: 768px) {
  #hamburger-menu {
    top: 10px;
    left: 10px;
    display: block;
    position: fixed;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
}

#hamburger-menu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 50%;
  background: #5d7c85;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#hamburger-menu span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#hamburger-menu span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#hamburger-menu span:nth-child(1),
#hamburger-menu span:nth-child(2) {
  top: 0px;
}

#hamburger-menu span:nth-child(3),
#hamburger-menu span:nth-child(4) {
  top: 9px;
}

#hamburger-menu span:nth-child(5),
#hamburger-menu span:nth-child(6) {
  top: 18px;
}

#hamburger-menu.open span:nth-child(1),
#hamburger-menu.open span:nth-child(6) {
  transform: rotate(45deg);
}

#hamburger-menu.open span:nth-child(2),
#hamburger-menu.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#hamburger-menu.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#hamburger-menu.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#hamburger-menu.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#hamburger-menu.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#hamburger-menu.open span:nth-child(5) {
  left: 5px;
  top: 19px;
}

#hamburger-menu.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 19px;
}

.section_timeline p {
  text-align: center;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.section_title {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section_title span {
  color: #d66268;
}

.timeline {
  min-width: 300px;
  max-width: 800px;
  width: 100%;
  margin: auto;
}
@media all and (max-width: 800px) {
  .timeline {
    width: 80%;
  }
}

.timelinehead,
.timelinebot {
  text-align: center;
  font-size: 1rem;
  -o-border-image: linear-gradient(to left, #000 0%, #ba474d 40%, #ba474d 100%);
     border-image: linear-gradient(to left, #000 0%, #ba474d 40%, #ba474d 100%);
  border-image-slice: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: 3rem;
  padding-bottom: 1rem;
  font-weight: 1000;
}
@media all and (max-width: 800px) {
  .timelinehead,
  .timelinebot {
    width: 80%;
  }
}

.timelinehead {
  border-bottom: 5px solid;
}

.timelinebot {
  border-top: 5px solid;
}

.timeline .box {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1em;
  line-height: 1.75em;
  border-top: 5px solid;
  -o-border-image: linear-gradient(to left, #000 0%, #ba474d 100%);
     border-image: linear-gradient(to left, #000 0%, #ba474d 100%);
  border-image-slice: 1;
  padding: 40px;
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  counter-increment: section;
  position: relative;
  color: #000;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.timeline .box:before {
  content: counter(section);
  position: absolute;
  border-radius: 50%;
  padding: 3px;
  height: 1.25em;
  width: 1.25em;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 1000;
  color: #fff;
}
.timeline .box a {
  display: flex;
  text-decoration: none;
  align-items: center;
  color: inherit;
  gap: 1rem;
  padding: 1rem;
  transition: transform 0.1s ease;
}
.timeline .box a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.box_arrow {
  display: flex;
  align-items: center;
}

.arrow_left img,
.arrow_right img {
  width: 50px;
  position: relative;
  top: -50%;
}

.arrow_left img {
  animation: mymove_left 2s infinite;
}

.arrow_right img {
  animation: mymove_right 2s infinite;
}

@keyframes mymove_right {
  0% {
    left: -35px;
  }
  60% {
    left: -35px;
  }
  80% {
    left: -25px;
  }
  100% {
    left: -35px;
  }
}
@keyframes mymove_left {
  0% {
    left: 35px;
  }
  60% {
    left: 35px;
  }
  80% {
    left: 25px;
  }
  100% {
    left: 35px;
  }
}
.boxIMG img {
  width: 100px;
}
@media all and (max-width: 767px) {
  .boxIMG img {
    width: 50px;
  }
}

.timeline .box:nth-child(even) {
  border-right: 5px solid;
  padding-left: 0;
}
.timeline .box:nth-child(even):before {
  background-color: #000;
  left: 100%;
  margin-left: -17px;
}

.timeline .box:nth-child(odd) {
  border-left: 5px solid;
  padding-right: 0;
}
.timeline .box:nth-child(odd):before {
  background-color: #ba474d;
  right: 100%;
  margin-right: -16px;
}

.timeline .box:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.timeline .box:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.example_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.example_container p {
  font-weight: 300;
}

.example_container h1 {
  text-align: center;
  font-size: 4vw;
}

.example_description {
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  line-height: 150%;
  margin-left: 15rem;
  margin-right: 15rem;
  margin-bottom: 2rem;
}

.example_container .table_container {
  margin-top: 0;
}

.table_container h2 {
  color: #fff;
}

.example_table {
  margin-bottom: 0rem;
}

/* ================================== TABLE =============================================== */
/* .table_container {
  margin: 2rem 5rem;
} */
.table-title {
  padding-top: 35px;
  width: 100%;
}

.table-title h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
  margin-top: 4rem;
}

.table-title p {
  margin-bottom: 0;
  margin-top: 1rem;
  color: #fff;
  font-size: 20px;
  font-weight: 200;
}

.table-title ul {
  /* /* list-style: none; */
  grid-template-columns: repeat(2, 20%);
  list-style-position: inside;
  list-style-type: none;
  color: #fff;
  margin-top: 1rem;
  padding-top: 0;
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 1.5rem;
  display: grid;
}

/*** Table Styles **/
.table-fill {
  border-radius: 3px;
  table-layout: fixed;
  min-width: 100%;
  /* height: 320px; */
  min-height: 150px;
  margin: auto;
  border-collapse: collapse;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
  margin-bottom: 5px;
}

th {
  color: rgb(255, 255, 255);
  border-bottom: 6px solid #ffffff;
  border-right: 1px solid #343a45;
  font-size: 18px;
  font-weight: 400;
  padding: 20px;
  text-align: left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align: left;
  overflow: hidden;
}

tr {
  border-top: 2px solid #c1c3d1;
  border-bottom: 2px solid #c1c3d1;
  color: #666b85;
  font-size: 16px;
  font-weight: normal;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

td {
  background: #ffffff;
  padding: 5px 10px;
  text-align: left;
  vertical-align: middle;
  font-weight: 300;
  font-size: 10px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #c1c3d1;
}

th.text-left {
  background: #968ba2;
  text-align: center;
}

th.text-left-excel {
  color: #fff;
  background: #107c41;
  text-align: center;
}

.cell-excel {
  background-color: #fff;
  color: rgb(81, 81, 81);
  text-align: center;
  font-size: 1rem;
}

th:first-child {
  border-top-left-radius: 3px;
}

th:last-child {
  border-top-right-radius: 3px;
  border-right: none;
}

tr:hover td {
  background: #4e5066;
  color: #ffffff;
  border-top: 1px solid #22262e;
}

tr:first-child {
  border-top: none;
}

tr:last-child {
  border-bottom: none;
}

tr:nth-child(odd) td {
  background: #ebebeb;
}

tr:nth-child(odd):hover td {
  background: #4e5066;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

td:last-child {
  border-right: 0px;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: center;
}

td.text-left {
  text-align: center;
}

td.text-center {
  text-align: center;
}

td.text-right {
  text-align: center;
}

.footer {
  background-color: #242335;
  border-top: 2px solid #fff;
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  color: #fff;
  font-size: 0.8em;
}
.footer button {
  width: 180px;
  font-size: 0.8rem;
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  background: linear-gradient(to left, #fff 50%, #7e7ed3 50%) right;
  background-size: 200%;
  transition: 0.3s ease-out;
}
.footer button a {
  padding: 12px 0;
}
.footer button:hover {
  background-position: left;
}

.footer_left {
  padding-left: 3rem;
}

.footer_logo {
  font-weight: 400;
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer address {
  color: #000;
  line-height: 200%;
  color: #fff;
  font-style: normal;
}

.footer_mid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.img_univ {
  width: 200px;
}

.p10 {
  border-radius: 2px;
  background: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: none;
}

.p10 a {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.kcl {
  border-radius: 2px;
  display: none;
}

.barc {
  border-radius: 2px;
  display: none;
}/*# sourceMappingURL=tutorial.css.map */