body,
html {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  background-color: #eeeeee;
}

body {
  scroll-behavior: smooth;
  /*for explore button href*/
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.main-wrapper {
  width: 100%;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-variant: normal;
  text-align: center;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-variant: normal;
  text-align: center;
  color: #4b6982;
  font-size: 30px;
  line-height: 34px;
}

h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-variant: normal;
  text-align: center;
  font-size: 24px;
  line-height: 26.4px;
}

p {
  font-size: 18px;
}

b,
strong {
  font-weight: 700;
}

i {
  font-weight: 300;
  font-style: italic;
}

:root {
  --bs-dark: $dark-bg;
  --bs-dark-rgb: 71, 71, 71;
}

.pulse {
  border-radius: 2px;
  animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.6);
  }
  50%, 100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
.clickable:hover {
  cursor: pointer;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 2s;
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ff9600;
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  height: 3.5rem;
}

.navbar-nav {
  background-color: #474747;
  padding-left: 1rem;
}

.navbar-toggler {
  margin-right: 1rem;
}

.logo {
  margin-left: -1px;
  height: 100%;
}

.explore {
  margin-top: 20vh;
  display: flex;
  flex-direction: row;
  font-size: 20px;
}
.explore i {
  color: black;
  margin-left: 4px;
  line-height: 19px;
  display: inline-block;
}

.container-fluid {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.main-post {
  width: 100%;
  min-height: 250px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.home-posts > div:nth-child(even) {
  background-color: #eeeeee;
}

.main-figure-col {
  padding: 0;
}

.main-content-col {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 600px) {
  .home-posts > div:nth-child(even) > div:nth-child(2) {
    order: -1;
    text-align: right;
  }

  .home-posts > div:nth-child(odd) > div:nth-child(1).main-figure-col {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .home-posts > div:nth-child(odd) > div:nth-child(1).main-figure-col img {
    min-height: 250px;
    object-fit: contain;
  }
}
/* Tooltip container */
.tooltip {
  position: absolute;
  display: inline-block;
  opacity: unset;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
}

.tooltiptext {
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.main-post-wrapper {
  margin-top: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-column-gap: 1em;
  grid-row-gap: 1em; */
  grid-auto-flow: dense;
  /* grid-gap: 1em; */
}
.main-post-wrapper p {
  color: #4b6982;
}

/* "tight" screens */
@media only screen and (max-width: 600px) {
  .main-post-wrapper {
    grid-template-columns: 1fr;
  }

  .thumbnail-cell {
    margin-bottom: 1em;
  }

  .content-cell > p {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
  }
}
/* "normal" screens */
@media only screen and (min-width: 600px) {
  .main-post-wrapper {
    grid-row-gap: 1em;
  }

  .thumbnail-cell:nth-child(4n+2) {
    grid-column: 1;
  }

  .content-cell:nth-child(4n+1) {
    grid-column: 2;
  }

  .content-cell > p {
    font-size: 22px;
    font-weight: 300;
    font-style: normal;
  }
}
.main-post-wrapper > div {
  background: #eeeeee;
}

.main-post-wrapper > div:nth-child(4n+1),
.main-post-wrapper > div:nth-child(4n+2) {
  background: white;
}

.thumbnail-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
}

.content-cell > p {
  /* padding-left: 1em;
  padding-right: 1em; */
  text-align: left;
}

.thumbnail-wrapper {
  position: relative;
  width: fit-content;
}

.thumbnail-wrapper > img {
  height: auto;
  max-width: 100%;
}

.tjs-wrapper {
  position: relative;
}

.tjs-container {
  z-index: 11;
}

.tjs-overlay {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  visibility: visible;
}

.tjs-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.tjs-loading > .spinner-border {
  color: #4b6982;
  margin-left: 50%;
  margin-top: 33%;
  margin-bottom: 33%;
}

.tjs-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 13;
  background: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  width: 100%;
  height: 4em;
  box-shadow: 0 -4px 2px rgba(0, 0, 0, 0.2);
}

.tjs-info > p {
  width: 100%;
  margin-top: 1em;
  margin-left: 1em;
}

.tjs-overlay-toggle {
  position: absolute;
  bottom: 1em;
  right: 1em;
  z-index: 14;
}

.tjs-overlay-toggle:focus {
  animation: tjs-toggle-clicked 1s 1;
}

@keyframes tjs-toggle-clicked {
  0% {
    box-shadow: 0px, 0px, 0px rgba(0, 0, 0, 0.9);
  }
  100% {
    box-shadow: 0px, -100px, 30px rgba(0, 0, 0, 0);
  }
}
.testimonial-row {
  margin-top: 5rem;
  background-color: #eeeeee;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  background-color: white;
}
.testimonial .testimonial-text {
  margin-bottom: 10px;
  min-height: 7em;
  line-height: 1.5em;
  overflow: hidden;
  position: relative;
  font-style: italic;
}
.testimonial .testimonial-text .quote {
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 48px;
  font-family: "Courier";
  font-style: italic;
  font-weight: bold;
  color: #4b6982;
}
.testimonial .testimonial-author {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial .testimonial-author > div:last-child {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}
.testimonial .testimonial-author > div:last-child > h5 {
  text-align: left;
}
.testimonial .testimonial-author > div > img {
  clip-path: circle(25px at center);
  height: 50px;
  width: 50px;
  object-fit: cover;
}

.blog-card:hover {
  cursor: pointer;
  box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.4) !important;
}

.blog-teaser {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.blog-teaser > img {
  width: 100%;
  position: absolute;
  object-fit: cover;
}

.blog-teaser-header {
  z-index: 1;
}
.blog-teaser-header .header {
  margin-bottom: 3rem;
}
.blog-teaser-header .header > h2 {
  text-align: left;
}
.blog-teaser-header .date {
  position: absolute;
  bottom: 1.5rem;
}

.card-text > p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.continue {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  color: #4b6982;
  text-decoration: none;
  font-size: 18px;
}

.thumbnail-wrap > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-thumbnail {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.blog-thumbnail > img {
  position: fixed;
  max-height: 80vh;
  max-width: 100vw;
  height: auto;
  width: auto;
}

.blog-overlay {
  z-index: 1;
}

.blog-content {
  background-color: #eeeeee;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.blog-content .blog-header {
  margin-bottom: 0.25rem;
}
.blog-content .blog-meta {
  margin-bottom: 1.25rem;
  color: #474747;
}
.blog-content figure.size-large, .blog-content figure.size-full {
  width: 100%;
}
.blog-content figure.size-large > img, .blog-content figure.size-full > img {
  width: 100%;
  height: auto;
}

.duddl {
  z-index: 3;
  position: absolute;
  color: black;
}

.duddl > i {
  display: flex;
  color: white;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  animation: duddl-pulse-animation 3s infinite;
}

.duddl:hover {
  cursor: pointer;
}

@keyframes duddl-pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.6);
  }
  50%, 100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
.datacube {
  z-index: 3;
  position: absolute;
}
.datacube > div {
  background-color: #ff9600;
  border: black solid 1px;
  width: 100%;
  height: 100%;
}

.datacube:hover {
  cursor: pointer;
  border: blue solid 1px;
}

.dctext {
  display: flex !important;
  flex-direction: column !important;
  height: 9rem !important;
  text-align: left !important;
  padding: 0.5rem !important;
  border: none !important;
  width: 220px !important;
  margin-left: -110px !important;
}

/*# sourceMappingURL=style.css.map */
