@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,700");
footer .footer-columns, .contact-box, .contributor, .community, .features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

html {
  background: #3c494f;
}

html, body {
  margin: 0;
  padding: 0;
  min-width: 360px;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-color);
  border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background-light) !important;
  transition: all 0.5s;
}

a {
  transition: color 0.2s;
  color: var(--brand-color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-color-secondary);
}

.chip-modal-link:hover {
  text-decoration: none;
}

h1 strong, h2 strong {
  font-weight: 700;
}

h1 {
  font-weight: 300;
  font-size: 2.3em;
  margin: 0;
  color: var(--color-secondary-dark);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

span.special-text {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: var(--background-primary-2);
  color: white;
  padding: 0 0.5rem;
  border-radius: 3px;
  animation: reveal 1s forwards;
  font-weight: 500;
  opacity: 0;
}

.div-skew {
  display: inline-block;
}

h2 {
  font-weight: 300;
  font-size: 2.2em;
  margin: 0 0 30px 0;
  color: var(--color-secondary-medium);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h2.sub-text {
  color: var(--color-secondary-light);
}

h3 {
  font-size: 2rem;
  margin: 20px 0 10px 0;
  color: var(--color-secondary-dark);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h4, h5, h6 {
  color: var(--color-secondary-dark);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

p, address {
  font-size: 1.38em;
  color: var(--color-secondary-dark);
  margin-bottom: 20px;
  line-height: 1.4em;
  font-weight: 400;
}

ol {
  color: var(--color-grey-light);
  font-size: 1.1rem;
}

p.grey-bg-text {
  color: var(--color-secondary-dark);
}

ul {
  color: var(--color-grey-light);
}

li.heading {
  background: var(--background-primary);
  padding: 0.2rem 1rem;
  text-align: center;
}

.bg-grey-300 {
  background: var(--background-light-cards);
  box-shadow: var(--box-shadow-primary);
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #2d9da9;
  }
  to {
    text-shadow: 0 0 30px #34b3c1, 0 0 10px #4dbbc7;
  }
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: skewX(20deg);
  }
  to {
    opacity: 1;
    transform: skewX(0deg);
  }
}
details {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-details-background);
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.1rem 1rem -0.5rem rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  overflow: hidden;
  font-size: 1rem;
  padding: 0rem 1.5rem 0rem 1.5rem;
}
details > h6 {
  color: var(--color-primary-blonde);
}
details > p {
  color: var(--color-secondary-dark);
}

summary {
  padding: 0.25rem 0rem;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  display: block;
  background-color: var(--color-summary-background);
  color: var(--color-secondary-medium);
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: normal;
}

summary:before {
  content: "";
  border-width: 0.4rem;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-secondary-dark);
  position: absolute;
  left: 1rem;
  right: 0;
  top: 0;
  bottom: 0;
  height: 0.02rem;
  margin: auto;
  transform: rotate(0);
  transform-origin: 0.2rem 50%;
  transition: 0.25s transform ease;
}

/* THE MAGIC 🧙‍♀️ */
details[open] > summary:before {
  transform: rotate(90deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details > ul {
  line-height: 0.75rem;
  padding: 1rem auto;
  margin-bottom: 0;
}

details > ol {
  line-height: 0.75rem;
  padding: 1rem auto;
  margin-bottom: 0;
}

.bottom-cta {
  background: linear-gradient(to bottom, #3c494f 0%, rgb(57, 79.9, 83.5) 100%);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0;
  vertical-align: top;
}
.bottom-cta h2 {
  margin-top: 50px;
  margin-bottom: 50px;
}

#button-scroll-to-up {
  display: inline-block;
  background-color: #3c494f;
  width: 55.5px;
  height: 55.5px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: -60px;
  right: 30px;
  z-index: 100;
  cursor: pointer;
  transition: bottom 0.2s;
}

#button-scroll-to-up::after {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 0.7em;
  position: relative;
  top: 1.4em;
  transform: rotate(-45deg);
  vertical-align: center;
  width: 0.7em;
  color: #fff;
}

#button-scroll-to-up.show {
  bottom: 20px;
}

.testimonial {
  background: #f5f5f5;
  margin: 0;
  padding: 100px 0;
}
.testimonial .testimonial-block {
  max-width: 750px;
  width: 98%;
  margin: 0 auto;
}
@media (min-width: 620px) {
  .testimonial .testimonial-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .testimonial .testimonial-block blockquote {
    -webkit-flex: 1;
    flex: 1;
  }
}

.content-image {
  height: 15rem;
}

.created-by-section {
  max-width: 1140px;
  margin: auto;
  padding: 0 0 20px 0;
}
.created-by-section .created-by {
  color: var(--color-grey-light);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.8rem;
}
.created-by-section .company-image {
  max-width: 250px;
  margin: auto;
  padding: 20px 0px 20px 0px;
  transition: 0.5s ease-in-out all;
}
.created-by-section .company-image:hover {
  filter: none;
}
.created-by-section img {
  padding-bottom: 10px;
}

.created-and-used-by-sections {
  margin-top: 2rem;
}

.used-by-section {
  padding: 5px 0;
  margin-bottom: 8vh;
}
.used-by-section .used-by-container {
  max-width: 1140px;
  margin: auto;
}
.used-by-section .used-by {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-grey-light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.used-by-section .companies-image {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
}
.used-by-section .company-image {
  filter: grayscale(75%);
  transition: 0.5s ease-in-out all;
  width: clamp(18%, 25%, 22vh);
  padding: 0px 30px 0px 30px;
  display: flex;
  justify-content: center;
}
.used-by-section .company-image:hover {
  filter: none;
}
@media (max-width: 800px) {
  .used-by-section .company-image {
    padding: 0 10px;
    width: clamp(40%, 30%, 22vh);
  }
}
.used-by-section img {
  padding-bottom: 30px;
  width: 80%;
  filter: var(--logo-filter);
}

.adopter-section {
  max-width: 1140px;
  margin: auto;
  padding: 0 0 20px 0;
  text-align: center;
}
.adopter-section .adopter-title {
  font-size: 1.5em;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.adopter-section .adopter-description {
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 0.9em;
}
.adopter-section .adopter-button {
  font-size: medium;
  margin-bottom: 50px;
}

.hero {
  color: #ffffff;
  text-align: center;
  padding-top: 75px;
}
.hero p {
  color: #fff;
}

.bg-white {
  padding: 2rem 0;
}

.cncf-section {
  text-align: center;
}
.cncf-section .project-caption {
  display: inline;
  align-items: inherit;
  justify-content: center;
  margin: auto;
  font-size: 1.1rem;
  color: var(--color-secondary-dark);
}
.cncf-section .project-caption img {
  width: 110px;
  height: 25px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: -4.5px;
}
.cncf-section h4 {
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}
.cncf-section .cncf-img {
  max-width: 700px;
  margin-bottom: 1rem;
}

.reversehero {
  color: #ffffff;
  text-align: center;
  background: var(--background-grey);
  padding: 0px;
}
.reversehero > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4rem 5vw;
  gap: 3rem;
}
.reversehero .mailinglist {
  padding: 4rem 0 6.625rem 0 !important;
}
.reversehero .mail-heading {
  font-family: "Open Sans";
  margin: 0rem auto 0.2rem auto;
  font-size: 2em !important;
}
.reversehero .mail-subheading {
  margin: 0rem auto 2rem auto;
  font-size: 1.2rem;
}
.reversehero p {
  color: var(--color-grey-light);
}
.reversehero .mail-row p a {
  margin: auto;
  display: block;
  width: auto;
  overflow-wrap: anywhere;
}
.reversehero .button-alt {
  width: 232px;
}
.reversehero .button-dev {
  padding: 18px !important;
}
.reversehero .button-user {
  padding: 18px !important;
}
.reversehero .button-maintain {
  padding: 18px !important;
}
.reversehero .button-comm {
  padding: 18px !important;
}
.reversehero .button-alt a {
  border-radius: 3px;
  color: var(--color-secondary-light);
  border: 1px solid var(--color-secondary-light);
  padding: 16px 50px;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  z-index: 3;
  text-decoration: none;
  transition: all 0.5s;
  background: transparent;
  position: relative;
  z-index: 1;
}
.reversehero .button-alt a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  z-index: -1;
}
.reversehero .button-alt a:hover::after {
  opacity: 1;
}
.reversehero .mail-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-top: 10px;
}
.reversehero .mail-row {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  justify-content: space-evenly;
}
@media (max-width: 574px) {
  .reversehero > div {
    flex-direction: column;
  }
  .reversehero .mailinglist {
    height: auto;
  }
  .reversehero .button-alt {
    width: 100%;
  }
  .reversehero .mail-row {
    flex-direction: column;
    gap: 0px;
  }
  .reversehero .mail-container {
    gap: 0px;
  }
}
@media (min-width: 1121px) and (max-width: 1194px) {
  .reversehero .mail-container {
    gap: 1rem;
    padding-top: 0px;
  }
  .reversehero .mail-row {
    gap: 1rem;
  }
}
@media (max-width: 1120px) {
  .reversehero .mail-container {
    padding-top: 0px;
  }
}
@media (min-width: 575px) and (max-width: 840px) {
  .reversehero > div {
    flex-direction: column;
  }
  .reversehero .mail-container {
    gap: 1rem !important;
    padding-top: 0px;
  }
  .reversehero .mail-row {
    gap: 1rem;
  }
}

.homepage-join {
  display: flex;
  flex-direction: column;
}
.homepage-join > div {
  padding: 4vh 3vw;
}
.homepage-join > div:first-of-type {
  padding: 3rem 1rem 3.5rem !important;
  border-radius: 10px;
  box-shadow: var(--box-shadow-primary);
}
.homepage-join > div:first-of-type p {
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 1px;
  font-weight: 600;
}
@media (max-width: 574px) {
  .homepage-join > div:first-of-type {
    padding: 1rem 1rem 1.5rem !important;
  }
}

.google-slides {
  position: relative;
  padding-bottom: 59%;
  overflow: hidden;
  align-items: center;
  text-align: center;
}

.google-slides iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}

.overview-section {
  padding-top: 10px;
  color: #fff;
  align-items: center;
  background-color: #222;
}

.getting-started {
  color: #ffffff;
  text-align: center;
  background: var(--background-grey);
  padding-top: 50px;
}

.adapters {
  color: #fff;
  display: flex;
  background: var(--background-grey);
  box-shadow: var(--box-shadow-primary);
  border-radius: 7px;
  overflow: hidden;
  background-color: #3c494f;
}
.adapters ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 33.33%;
  color: #fff;
}
.adapters ul:nth-child(even) {
  box-sizing: border-box;
  border-width: 0 1.5px 0 1.5px;
  border-style: solid;
  border-image: linear-gradient(to bottom, #477e96, #00b39f) 1;
  position: relative;
  z-index: 2;
}
.adapters ul li {
  padding: 0.8rem 0.5rem;
}
.adapters ul li a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-secondary-light);
  gap: 3px;
  text-decoration: none;
}
.adapters ul li a:hover::after {
  width: 100%;
}
.adapters ul li a::after {
  content: "";
  width: 0px;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: var(--background-primary);
  transition: width 0.3s;
}
.adapters img.adapter-logo {
  width: 2rem;
}

.recording-link {
  background: none;
  border: 1px;
  padding: 0;
  cursor: pointer;
}
.recording-link img {
  width: 100%;
}

@media (min-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .flex .text,
  .flex .image {
    -webkit-flex: 1;
    flex: 1;
    padding: 0 20px;
  }
  .content section:nth-child(even) .flex {
    flex-direction: row-reverse;
  }
}
@media (max-width: 420px) {
  .created-by-section .company-image {
    width: auto;
    padding: 0px;
  }
  .used-by-section .companies-image .used-by-section .companies-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
  .used-by-section .companies-image .used-by-section .companies-image img {
    padding-bottom: 30px;
    width: 100%;
  }
  .used-by-section .companies-image .used-by-section .companies-image #ericsson-logo {
    padding-left: 20px;
  }
  .serviceLandscapeContainer {
    padding: 4rem 0;
  }
  .programs-section {
    padding: 0rem 4rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin: auto;
  }
}
@media screen and (max-width: 420px) and (max-width: 840px) {
  .reversehero > div {
    flex-direction: column;
  }
}
@media (max-width: 420px) and (max-width: 1150px) {
  .programs-section {
    padding: 0 0rem;
  }
}
@media (max-width: 454px) {
  .multi-cluster-img {
    width: 100%;
    height: auto;
  }
}
.container,
.text-container {
  margin: 0 auto;
  position: relative;
}
.container > div.section-bar,
.text-container > div.section-bar {
  background-color: var(--color-primary-dark);
  margin-top: -0.5rem;
  margin-bottom: 6rem;
  padding: 1rem;
}
.container > div.section-bar > h1,
.text-container > div.section-bar > h1 {
  font-size: 1.55rem;
  text-transform: uppercase;
}
.container > h1, .container h2, .container h3.subheading,
.text-container > h1,
.text-container h2,
.text-container h3.subheading {
  text-align: center;
}
.container > h3.subheading,
.text-container > h3.subheading {
  font-size: 1.65rem !important;
  font-weight: normal;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--color-primary-super-dark);
}
.container > h1.community-sub-header, .container h2.community-sub-header,
.text-container > h1.community-sub-header,
.text-container h2.community-sub-header {
  text-align: left;
}
@media (max-width: 768px) {
  .container > h1.community-sub-header, .container h2.community-sub-header,
  .text-container > h1.community-sub-header,
  .text-container h2.community-sub-header {
    text-align: center;
  }
}

.text-container {
  max-width: 750px;
  padding: 0 1.5rem;
}

.container {
  max-width: 1140px;
}
.container.max-container {
  max-width: 100%;
  padding: 0;
}

.post-info {
  color: var(--color-secondary-dark);
}

.anchor {
  position: relative;
}

.anchor a {
  position: absolute;
  left: 0px;
  top: -110px;
}

header {
  background-color: var(--color-primary-light);
  color: #3c494f;
  padding: 1.2vw 0px !important;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  margin-bottom: 5px;
}
header.header-shadow {
  box-shadow: #00b39f 1px -27px 57px;
  transition: background-color 0.2s ease;
  text-shadow: none;
}
header a {
  color: #fff;
  text-decoration: none;
  z-index: 1;
  position: relative;
}
header a:hover {
  text-decoration: none;
}
header .project-name {
  font-size: 1.7em;
  line-height: 0;
  display: flex;
  padding: 0;
}
header .project-name a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
header .project-name img {
  display: block;
  width: auto;
}
header .project-name img:nth-child(1) {
  height: 2.3rem;
}
header .project-name img:nth-child(2) {
  height: 1.5rem;
}
@media (max-width: 568px) {
  header .project-name {
    position: absolute;
    z-index: 2;
  }
  header .project-name img:nth-child(1) {
    height: 2rem;
  }
  header .project-name img:nth-child(2) {
    height: 1.2rem;
  }
}

.full {
  width: unset !important;
}

.content {
  padding: 1px 0 0 0;
  position: relative;
}

.screenshot {
  display: block;
  box-shadow: var(--box-shadow-primary) !important;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  background: #868e96 url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2212%22%20viewBox%3D%220%200%2044%2012%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2238%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3C%2Fsvg%3E") 4px 4px no-repeat;
  padding: 20px 0 0 0;
  position: relative;
  width: 100%;
}

section {
  padding: 50px 25px;
}

.subtext {
  margin-top: 10px;
  text-align: center;
}

.cta {
  margin: 60px 0;
}

.page h2 {
  margin: 2.5rem 0;
  text-transform: normal;
}

blockquote {
  padding: 18px 25px;
  margin: 0;
  quotes: "“" "”" "‘" "’";
  font-style: italic;
}
blockquote .author {
  display: block;
  font-weight: bold;
  margin: 10px 0 0 0;
  font-size: 0.85em;
  font-style: normal;
}
blockquote p {
  display: inline;
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

.square-image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin: 25px auto 0 auto;
  position: relative;
  border-radius: 200px;
}
.square-image img {
  position: absolute;
  left: -1000%;
  right: -1000%;
  top: -1000%;
  bottom: -1000%;
  margin: auto;
  width: 100px;
  height: 100px;
}

.page {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.page h2 {
  margin-bottom: 0;
}

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

.editor-link {
  display: none;
  margin-top: 0;
}
.editor-link .btn {
  border: 0;
  border-radius: 2px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  font-size: 2rem;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  background-color: #f7e064;
  color: #333;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.editor-link .btn:hover {
  background-color: #f4d525;
  color: #333;
}

table {
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid var(--color-secondary-dark);
  padding: 8px;
  color: var(--color-secondary-dark);
}

.code {
  color: white;
  text-align: left;
}
.code a {
  color: white;
}

.highlight-code {
  position: relative;
  border-radius: 5px;
  background: black;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 15px;
}

.toggle .innerDiv {
  width: 100%;
  display: table;
  table-layout: fixed;
  height: 80px; /* any arbitrary height but best at the minimum initial height you would want. */
  transition-timing-function: linear;
  transition: cubic-bezier(0, 1, 0, 1);
}
.toggle .innerDiv a {
  color: #f1f3f5;
}
.toggle .innerDiv a:hover {
  text-decoration: underline !important;
}
.toggle .innerDiv h3, .toggle .innerDiv p {
  color: var(--color-secondary-dark);
}
.toggle .innerDiv p a {
  color: var(--color-secondary-dark);
  font-weight: 600;
}

.hideDiv {
  max-height: 0px;
  pointer-events: none;
  transition: all 0.4s;
  border-radius: 7px;
  box-shadow: var(--box-shadow-primary);
  overflow: hidden;
  box-sizing: border-box;
  background: var(--background-light);
}

.showDiv {
  pointer-events: all;
  padding: 15px;
  box-sizing: border-box;
  max-height: max-content !important;
}

.docker {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none;
}

.k8s-instructions {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none;
}

#bounce {
  height: 60px;
  width: 60px;
}

#bounce:hover {
  transition: transform 350ms;
  -ms-transform: scale(1.3) translateZ(0); /* IE 9 */
  -webkit-transform: scale(1.3) translateZ(0); /* Safari 3-8 */
  transform: scale(1.3) translateZ(0);
}

#bounceDocker {
  width: 70px;
  margin-top: 10px;
}

#bounceDocker:hover {
  transition: transform 350ms;
  -ms-transform: scale(1.3) translateZ(0); /* IE 9 */
  -webkit-transform: scale(1.3) translateZ(0); /* Safari 3-8 */
  transform: scale(1.3) translateZ(0);
}

hr {
  opacity: 0.4;
  width: auto;
}

#breakWords {
  word-break: break-all;
}

.code-box {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  overflow: auto;
  min-height: 50px;
  line-height: 25px;
  width: 90%;
  font-size: 15px;
  white-space: pre-line;
  color: #fff !important;
}

.code-box::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 3px;
  overflow: hidden;
  padding: 2px 0;
  background-color: #868e96;
}

.code-box::-webkit-scrollbar-thumb {
  background-color: #f1f3f5;
  border-radius: 3px;
}

.getting-started-heading {
  font-weight: bold;
  font-size: 75px;
  text-align: left;
  margin-bottom: 0px;
}

.overview-heading {
  font-weight: bold;
  width: 100%;
  text-align: right;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 75px;
}

.step-number {
  font-size: 60px;
  opacity: 0.7;
  font-weight: bold;
}

.step-heading {
  margin: 0;
  font-weight: bold;
}

@media screen and (max-width: 1900px) {
  #box {
    width: 40%;
    overflow: hidden;
    margin-left: -60px;
  }
}
@media screen and (max-width: 1440px) {
  #box {
    width: 40%;
    overflow: hidden;
    margin-left: -60px;
  }
}
@media screen and (max-width: 1000px) {
  #box {
    width: 100%;
    font-size: small;
  }
}
.platformIcon {
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (max-width: 650px) {
  .getting-started-heading {
    font-size: 55px;
  }
  .overview-heading {
    font-size: 55px;
  }
  .step-number {
    font-size: 50px;
  }
  .step-heading {
    font-size: 30px;
  }
  .platformIcon {
    justify-content: center;
    margin-left: 0;
  }
}
*::before,
*::after {
  box-sizing: inherit;
}

[data-tooltip] {
  cursor: pointer;
}
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  background-color: #505050;
  border-radius: 10px;
  max-width: 400px;
  font-size: 1.6rem;
  padding: 0.5em;
  opacity: 0;
  top: 180px;
  transition: opacity 0.3s;
}
[data-tooltip]:hover::before {
  opacity: 1;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #1a2421;
  text-align: center;
  padding: 7px;
  font-size: 1em;
  border-radius: 10px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  top: 5rem;
  left: 50%;
  margin-left: -45px;
}

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

@media screen and (max-width: 850px) {
  .tooltip {
    padding: 10px !important;
  }
}
@media screen and (max-width: 360px) {
  section {
    padding: 50px 9px;
    overflow-x: hidden;
  }
}
.features {
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  padding: 50px 0 30px 0;
  background-color: var(--background-grey-secondary);
}
.features .feature {
  list-style: none;
  padding: 0;
  margin: 0 10px 50px 10px;
  text-align: center;
  background-color: var(--color-primary-light-tbase);
  border-radius: 1.25rem;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 4px 2.5rem 0.5rem;
  width: 100%;
}
.features .feature_li {
  margin: 0 25px;
  margin-left: 35px;
  text-align: left;
  list-style: none;
}
.features .feature_li:before {
  content: "✔";
  color: var(--brand-color-secondary);
  font-size: 1.5rem;
  margin-right: 10px;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  background-color: var(--color-primary-medium);
  border: 5px solid var(--color-primary-medium);
  border-radius: 0.25em;
}
.features .feature .highlighted {
  text-align: center;
  height: 5rem;
  font-weight: 600;
  color: rgba(39, 39, 39, 0.8274509804);
  font-size: 1.2em;
  padding: 30px 15px;
  color: var(--color-secondary-light);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  box-shadow: inset 0 2px 12.5px rgba(0, 0, 0, 0.01);
  text-transform: capitalize;
}
.features .feature .features-cta {
  padding: 0;
}
.features .feature .features-cta a {
  display: block;
  box-sizing: border-box;
  padding: 2rem 0;
  border-radius: 0 0 2px 2px;
  border: 0;
  color: var(--color-primary-light-tbase);
}
.features .feature .features-cta .start {
  text-align: center;
  margin: auto;
  position: relative;
  background-color: var(--brand-color-primary);
  border-radius: 0 0 1.25rem 1.25rem;
}
.features .feature .features-cta .start:hover {
  background-color: var(--brand-color-secondary);
}
.features .feature .features-cta .start:hover a:hover {
  color: var(--color-secondary-light);
  text-decoration: none;
}
@media (min-width: 768px) {
  .features .feature {
    -webkit-flex: 1;
    flex: 1;
    min-width: 220px;
  }
}
.features .feature li {
  border-radius: 1rem;
  padding: 10px 0;
}

.container-slider {
  position: relative;
  width: 100%;
  height: 45vh;
  margin-right: 20px;
  margin-top: 3rem;
  -webkit-flex: 1;
  flex: 1;
}
.container-slider .img {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.container-slider .background-img {
  background-image: url("../assets/images/gitops-snapshot.png");
}
.container-slider .foreground-img {
  background-image: url("../assets/images/gitops-yaml-content.png");
  width: 50%;
}
@media (min-width: 576px) {
  .container-slider .foreground-img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .container-slider .foreground-img {
    width: 50%;
  }
}
.container-slider:hover .overlay, .container-slider:hover .gradient-box-before, .container-slider:hover .gradient-box-after {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.gradient-box-before {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  background-color: #00d3a9;
  color: rgb(255, 255, 255);
  font-size: 15px;
  border-radius: 4px;
}

.gradient-box-after {
  position: absolute;
  top: 50%;
  right: 25%;
  padding: 10px;
  background-color: #00d3a9;
  color: rgb(255, 255, 255);
  border-radius: 4px;
  font-size: 15px;
}

.slider {
  position: absolute;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0.1) !important;
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 3px;
  height: 30vh;
  background: white;
  cursor: pointer;
}
@media (min-width: 300px) {
  .slider::-webkit-slider-thumb {
    height: 45vh;
  }
}
@media (max-width: 992px) {
  .slider::-webkit-slider-thumb {
    height: 45vh;
  }
}

.slider-button {
  pointer-events: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  left: calc(50% - 18px);
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-button:after {
  content: "";
  padding: 3px;
  display: inline-block;
  border: solid #5D5D5D;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.slider-button:before {
  content: "";
  padding: 3px;
  display: inline-block;
  border: solid #5D5D5D;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
}

.contributor {
  padding: 20px;
  list-style: none;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  text-align: center;
  justify-content: center;
  gap: 1.25rem;
}
.contributor li {
  background: rgb(60, 73, 79);
  border-radius: 1rem;
  box-sizing: border-box;
  width: 13.75rem;
  height: 12.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contributor li:hover {
  background: rgb(0, 179, 159);
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}
.contributor li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00b39f, #00d4aa);
}
.contributor .square-image {
  position: relative;
  margin: 0px auto 0 auto;
}
.contributor .square-image img {
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.contributor .square-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.contributor .solo-image {
  margin-bottom: 20px;
}
.contributor .solo-image img {
  border-radius: 50%;
  width: 9.375rem;
  height: 9.375rem;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contributor .solo-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.contributor .name {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
  letter-spacing: -0.02em;
}
.contributor .names {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.community {
  -webkit-flex-flow: row;
  -moz-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: center;
  background: transparent;
}
.community .community-block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.community .community-block ul li {
  text-align: left;
  color: inherit;
}
.community .project-block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 24px;
  margin: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.community .project-block ul li {
  text-align: left;
  color: inherit;
  font-size: 1.2em;
  color: #5a6c7d;
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.5em;
}

.flex-item {
  padding: 5px;
  width: 100%;
  margin-top: 10px;
}

@media all and (max-width: 700px) {
  .community {
    flex-direction: column;
  }
}
/* This activates the circular border around community member images - Default*/
.b-active {
  border: 3px solid #00b39f !important;
  box-shadow: 0 0 0 2px rgba(0, 179, 159, 0.2) !important;
}

.b-inactive {
  border: 3px solid #828c8c !important;
  opacity: 0.7;
}

.title-and-filter-btns {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: end;
  position: relative;
}

.join-community-btn {
  padding-bottom: 10px;
  padding-top: 10px;
  width: 300px;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-color {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.active-filter-color {
  display: inline-block;
  background-color: #00b39f;
}

.inactive-filter-color {
  display: inline-block;
  background-color: #828c8c;
  margin-left: 10px;
}

.active-btn,
.inactive-btn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.active-btn:hover,
.inactive-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.active-btn {
  margin: 0;
}

.filter-btn-group {
  display: flex;
  flex-direction: column;
}

.filter-btns {
  width: 130px;
  position: relative;
  display: inline-block;
}

.all {
  width: inherit;
  background-color: #3c494f;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-drop-down {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  text-align: center;
  width: inherit;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.filter-drop-down a {
  color: black;
  padding: 10px 8px;
  text-decoration: none;
  display: block;
}
.filter-drop-down a:nth-child(2), .filter-drop-down a:nth-child(3) {
  padding: 10px 8px;
}

.filter-drop-down .active-btn,
.filter-drop-down .inactive-btn {
  padding: 10px 0;
}

.filter-drop-down .active-btn:hover,
.filter-drop-down .inactive-btn:hover,
.filter-drop-down a:hover {
  background-color: #e2e2e2;
}

.filter-btns:hover .filter-drop-down {
  display: block;
}

.filter-btns:hover .all {
  background-color: #3c494f;
}

.filter-icon {
  width: 25px;
  vertical-align: middle;
}

.meshmate-icon {
  width: 25px;
  padding-right: 5px;
  vertical-align: middle;
}

@media (min-width: 450px) {
  .all {
    padding: 10px;
  }
}
@media (max-width: 420px) {
  .contributor {
    padding: 12px;
    gap: 12px;
  }
  .title-and-filter-btns {
    width: 100%;
  }
  .all {
    font-size: 16px;
    padding: 10px 0px;
  }
  .filter-icon {
    width: 15px;
  }
  .filter-btns {
    width: 115px;
  }
  .meshmate-icon {
    width: 18px;
    padding-right: 0;
  }
  a {
    font-size: 15px;
  }
  .contributor .square-image img {
    width: 100px;
    height: 100px;
  }
  .contributor .names {
    font-size: 1.1rem;
  }
}
.contributor-section {
  padding: 4rem 2rem;
  min-height: 100vh;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f7fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.social-link:hover {
  background: #edf2f7;
  transform: translateY(-2px);
}

.social-link img {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.github:hover {
  border-color: #333;
  color: #333;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #2d3748;
}

.profile-type {
  color: var(--color-secondary-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.individual-profile {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-content {
  flex-grow: 1;
}

.profile-basic-info {
  margin-bottom: 2rem;
}

.profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profile-position {
  font-size: 1.2rem;
  color: #00d4aa;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 0 !important;
  border-bottom: 2px solid #00d4aa;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.profile-location {
  color: #718096;
  font-size: 0.95rem;
}

.profile-bio {
  margin-bottom: 2rem;
}

.profile-bio p {
  line-height: 1.7;
  font-size: 1rem;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  color: white;
  padding: 0.4rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: inset 1px 1px rgba(0, 212, 170, 0.3);
}

.badge-icon {
  width: 2rem;
  height: 2rem;
}

.profile-social {
  display: flex;
  gap: 1rem;
}

.profile-social .social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.profile-social .social-link:hover {
  background: #edf2f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-social .social-link img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.profile-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
}

.profile-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contributor-section {
    padding: 2rem 1rem;
  }
  .individual-profile {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .profile-image img {
    width: 150px;
    height: 150px;
  }
  .profile-name {
    font-size: 2rem;
  }
  .profile-header {
    gap: 1rem;
    text-align: center;
  }
  .profile-social {
    justify-content: center;
  }
  .profile-badges {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .profile-image img {
    width: 120px;
    height: 120px;
  }
  .profile-name {
    font-size: 1.75rem;
  }
}
table.adapters {
  box-shadow: 1px 1px 2px grey;
  border: 1px;
}
table.adapters td {
  width: auto;
  vertical-align: middle;
  border: 1px dashed #cccccc;
  border-right-width: 0px;
  border-left-width: 0px;
}
table.adapters td:hover {
  background: #eeeeee;
}
table.adapters td.no-adapters {
  width: auto;
  text-align: center;
  color: #aaa;
  font-style: italic;
  border: 0px;
}
table.adapters td.alpha-adapters {
  width: auto;
  background-color: lightgray;
  text-align: center;
  border: 0px;
}
table.adapters td.beta-adapters {
  width: auto;
  background-color: #00d3a9;
  text-align: center;
  color: #fff;
  border: 0px;
}
table.adapters td.stable-adapters {
  width: auto;
  background-color: #3c494f;
  text-align: center;
  color: #fff;
  border: 0px;
}
table.adapters tr:hover {
  background-color: #f5f5f5;
}
table.adapters img.adapter-logo {
  vertical-align: middle;
  margin-right: 5px;
  height: 30px;
  width: 30px;
}

.map {
  width: 100%;
  margin: 100px 0;
  height: 400px;
}

.contact-box {
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  max-width: 750px;
  margin: 0 auto;
}
.contact-box form {
  width: 100%;
}
.contact-box p {
  margin: 0;
}
@media (min-width: 768px) {
  .contact-box .contact-form,
  .contact-box .contact-details {
    -webkit-flex: 1;
    flex: 1;
  }
}
.contact-box .contact-form,
.contact-box .contact-details {
  margin: 0 30px;
}
.contact-box .contact-details {
  font-size: 0.9em;
}

.blog-posts {
  list-style: none;
  padding: 0;
}
.blog-posts li {
  margin: 8rem 0;
}
.blog-posts li:first-of-type {
  margin-top: 2rem;
}

.featured-image {
  max-width: 750px;
  width: 100%;
  display: flex;
  text-align: center;
  margin: auto;
  max-height: 25rem;
  object-fit: contain;
}

.blog-post .author {
  padding: 30px 0 0 0;
  border: 1px solid #eee;
  margin: 30px 0;
  font-size: 0.8em;
}
.blog-post .author .square-image {
  width: 125px;
  height: 125px;
  margin-top: 0;
}
.blog-post .author .blurb {
  text-align: center;
}
.blog-post h3 {
  margin: 1rem 0;
  font-size: 1.75rem;
}
.blog-post h3 a {
  color: var(--color-secondary-medium);
  text-decoration: none;
  font-weight: normal;
  font-size: 1.3em;
}
.blog-post h2 {
  text-align: left;
  text-transform: none;
}
.blog-post h2 a {
  color: var(--color-secondary-medium);
}
.blog-post h4 {
  font-size: 1.45rem;
}
.blog-post .blog-navigation {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  width: auto;
  overflow: hidden;
}
.blog-post .blog-navigation a {
  display: block;
  float: left;
  margin: 1em 0;
}
.blog-post .blog-navigation .next {
  color: var(--color-secondary-medium);
  text-align: right;
}
.blog-post .post-details {
  border-bottom: 1px solid var(--brand-color-secondary);
  font-size: 1.25rem;
  justify-content: space-between;
  width: 100%;
  display: flex;
  padding-bottom: 0.5rem;
}
.blog-post .post-details .blog-filters {
  display: flex;
  justify-self: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-post .post-details .blog-filters .blog-filter {
  display: flex;
  justify-self: flex-start;
}
.blog-post .post-details .blog-filters .blog-filter a {
  top: -5px;
}
.blog-post .post-details a {
  text-decoration: none;
}
.blog-post .post-details .post-date {
  display: flex;
  align-self: flex-end;
}
.blog-post .post-details .post-author {
  display: flex;
  align-self: flex-start;
}
.blog-post .post-content .button {
  margin: 30px 0 0 0;
}
.blog-post .post-content li {
  margin: 0.9rem 0;
  overflow: hidden;
}

.callout {
  border: 1px dashed var(--color-primary-extra-dark);
  padding: 1rem;
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}
.pagination .page_number {
  color: var(--color-primary-qtext);
  margin: 0rem 2rem;
}

.blog-filter {
  text-align: center;
}
.blog-filter a {
  background: transparent;
  border: 1px solid var(--brand-color-secondary);
  padding: 2px 8px;
  font-size: 0.8rem;
  border-radius: 3px;
  color: var(--color-secondary-dark);
  transition: 0.2s ease-in-out;
}
.blog-filter a:hover {
  text-decoration: none;
  background: #00d3a9;
  color: white !important;
}

.blog-filter.cross a {
  padding-right: 8px;
}
.blog-filter.cross a:after {
  content: "x";
  font-size: 1rem;
  margin-left: 0.5rem;
}

.code-block {
  padding: 2px;
  background-color: var(--color-primary-qtext);
  color: var(--color-primary-testimonial-wrapper);
  border-radius: 3px;
}

@media screen and (max-width: 750px) {
  .post-details {
    flex-direction: column-reverse;
    gap: 0.3rem;
  }
  .blog-post .post-details .post-date {
    display: flex;
    align-self: flex-start;
  }
  .blog-post .post-details .post-author {
    display: flex;
    align-self: flex-start;
  }
}
.form-container {
  background: var(--background-grey-secondary);
  border-radius: 0.625rem;
  box-shadow: var(--box-shadow-primary);
}
.form-container p {
  color: var(--color-primary-light) !important;
}

.button a, input[type=submit] {
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  border: none;
  border-radius: 7px;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  border: none;
  background-color: var(--brand-color-primary) !important;
}
.button a:hover, input[type=submit]:hover {
  background-color: var(--brand-color-secondary) !important;
}

.subscribe-button {
  box-sizing: border-box;
  position: relative;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  border: none;
  border-radius: 7px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 2rem 0 0 0;
  appearance: none;
  cursor: pointer;
  background: transparent !important;
  box-shadow: 0 0 40px 40px var(--brand-color-secondary) inset, 0 0 0 0 var(--brand-color-secondary);
  transition: all 200ms ease-in-out;
}
.subscribe-button:hover {
  transform: scale(1.02);
  color: #fff;
  outline: 0;
  box-shadow: 0 0 10px 0 var(--brand-color-primary) inset, 0 0 5px 1px var(--brand-color-primary);
  background-color: var(--brand-color-primary) !important;
}

.button a:hover, input[type=submit]:hover {
  cursor: pointer;
  opacity: 1;
  background-color: #00B39F;
}

.button-para {
  width: fit-content;
}
.button-para--center {
  display: contents;
}

.button-para .link {
  display: flex;
  border: none;
  flex-direction: column;
  align-items: start;
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  padding: 0.5rem;
  background: #00B39F;
  transition: all 0.4s;
}
.button-para .link:hover {
  text-decoration: none;
  background: #00d3a9;
  color: white !important;
}

.button-para .link:hover {
  background: #00d3a9;
  cursor: pointer;
}

.button.alt a {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 50px;
}

.button.alt a:hover {
  background: #fff;
  color: #3c494f;
}

textarea, input, button, select {
  font-family: "Open Sans";
  font-size: inherit;
}

input[type=submit] {
  margin: 2rem 0 0 0;
}

input, textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  height: 150px;
}

label {
  margin: 20px 0 5px 0;
}

label:hover {
  cursor: pointer;
}

input, textarea {
  padding: 10px;
  font-size: 1em;
}

input, textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid #DDDDDD;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
  box-shadow: 0 0 5px rgb(81, 203, 238);
  border: 1px solid rgb(81, 203, 238);
}

@media (min-width: 768px) and (max-width: 870px) {
  .button.alt a {
    padding: 16px 25px;
  }
}
@media (max-width: 767px) {
  .subscribe-button {
    width: 100% !important;
    margin: 3rem auto 0 !important;
  }
}

.subscribe-inputbox {
  padding-left: 0px !important;
}

nav {
  font-size: 0.8rem;
  width: fit-content;
  padding-left: 0rem;
  margin-left: 0.25rem;
  margin-left: auto;
}
@media (min-width: 620px) {
  nav {
    padding-right: 1rem;
    padding-left: 1rem;
    width: 40%;
  }
}
@media only screen and (max-width: 620px) {
  nav {
    width: 99%;
  }
}

.nav-container {
  display: flex;
  flex-direction: row;
  padding: 0 2vw;
  justify-content: space-between;
  align-items: center;
}

.stellarnav.desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.stellarnav.mobile {
  text-align: end !important;
}

.nav-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
}

.nav-item:not(.has-sub) > a:not(.highlight).nav-text {
  position: relative;
}
.nav-item:not(.has-sub) > a:not(.highlight).nav-text:hover::after {
  width: 100%;
}
.nav-item:not(.has-sub) > a:not(.highlight).nav-text::after {
  content: "";
  width: 0px;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: var(--background-primary);
  transition: width 0.3s;
}

.nav-text {
  font-size: 0.9rem !important;
}
@media (min-width: 840px) {
  .nav-text {
    padding: 0.5rem !important;
    margin: 0px 3px;
    color: var(--color-secondary-medium) !important;
  }
}
.nav-text {
  cursor: pointer;
}

.nav-mode-icon {
  border: none;
  background: transparent;
  margin-top: 0;
}
.nav-mode-icon > img {
  margin-left: 0.5rem;
  width: 2rem;
  height: 2rem;
  filter: var(--image-color);
  transition: filter 0.3s;
}

a.nav-text:hover {
  color: var(--color-secondary-dark) !important;
}

.nav-img {
  width: 2rem;
  height: 1.5rem;
  filter: var(--image-filter-light);
  padding-left: 0.5rem;
}

.menu-toggle {
  color: var(--color-secondary-medium) !important;
}
.menu-toggle .bars span {
  background-color: var(--color-secondary-dark) !important;
}

.stellarnav.mobile .menu-toggle {
  display: inline-flex;
  cursor: pointer;
}

.stellarnav.desktop li.has-sub a {
  padding-right: 1rem;
}
.stellarnav.desktop li.has-sub a::after {
  transform: translateY(-1.5px);
}
.stellarnav.desktop li.has-sub a.sublink-active::after {
  border-top: 6px solid;
}
.stellarnav ul {
  width: fit-content;
}
.stellarnav ul ul {
  border-radius: 5px;
  background-color: var(--color-secondary-light);
  background-color: #dee2e6;
  background-image: var(--background-grey);
  overflow: hidden;
  width: fit-content;
  box-shadow: var(--box-shadow-primary);
}

.stellarnav li.has-sub > a:after {
  border-top: 6px solid var(--color-secondary-medium);
  display: inline-block;
}

.sub-nav-li {
  position: relative;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.sub-nav-li::after {
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  position: absolute;
  height: 100%;
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  transition: all 0.4s;
  z-index: -1;
  border-radius: inherit;
}
.sub-nav-li:hover * {
  color: #fff !important;
  border-color: white;
}
.sub-nav-li:hover::after {
  width: 100%;
}
.sub-nav-li--active::after {
  width: 100% !important;
}
.sub-nav-li--active a {
  color: #fff !important;
  border-color: white;
}
.sub-nav-li--active img {
  filter: brightness(0) invert(1);
}
.sub-nav-li:hover img {
  filter: brightness(0) invert(1);
}

.nav-item a {
  white-space: nowrap;
}

.subnav-item {
  white-space: nowrap;
  width: 100%;
  background-size: cover;
  display: flex !important;
  justify-content: space-between;
  gap: 5px !important;
}

.nav-sublink-logo {
  max-width: 10px;
  vertical-align: top;
  filter: var(--logo-filter);
}

.active {
  color: var(--brand-color-secondary) !important;
  font-weight: bolder;
}

.highlight.nav-text {
  border: 1px solid var(--color-grey-light);
}
.highlight.nav-text:hover {
  color: white !important;
}

.highlight {
  color: #fff;
  border-radius: 7px;
  padding: 0.5rem 1rem;
  transition: all 0.4s;
  background: #00B39F;
}
.highlight:active {
  transform: scale(0.95);
}
.highlight:hover {
  text-decoration: none;
  background-color: #00d3a9;
  color: white !important;
}

.stellarnav.mobile .nav-list {
  position: absolute;
  width: 100%;
  left: 0;
  translate: 0 -5px;
  background: transparent;
  background-color: var(--color-primary-light);
}
.stellarnav.mobile li a {
  border: none;
}
.stellarnav.mobile ul {
  background: var(--background-grey);
}
.stellarnav.mobile > ul > li > a {
  padding: 15px !important;
}
.stellarnav.mobile li a {
  color: var(--color-secondary-dark);
}
.stellarnav.mobile .subnav-item {
  display: flex;
  gap: 5px;
}

@media screen and (max-width: 1140px) {
  .project-name {
    padding-top: 10px;
  }
}
.footer-links {
  width: 100%;
  margin: 10px 20px;
  padding: 0;
}
@media (min-width: 450px) {
  .footer-links {
    -webkit-flex: 0 0 fit-content;
    flex: 0 0 fit-content;
  }
}
.footer-links li {
  list-style: none;
  margin: 10px auto;
}
@media (min-width: 450px) {
  .footer-links li {
    max-width: 200px;
  }
}
.footer-links li a:hover {
  text-decoration: none;
}
.footer-links li a svg {
  fill: #999;
  margin-right: 10px;
  transition: fill 0.2s ease;
  vertical-align: middle;
  position: relative;
  top: -2px;
  width: 22px;
  height: 22px;
}
.footer-links li a:hover svg {
  fill: #fff;
}
.footer-links li a.twitter-icon:hover svg {
  fill: var(--color-white);
}
.footer-links li a.google-plus-icon:hover svg {
  fill: #db4437;
}
.footer-links li a.dockerhub-icon:hover svg {
  fill: #029cec;
}
.footer-links li a.youtube-icon:hover svg {
  fill: #cd201f;
}
.footer-links li a.linkedin-icon:hover svg {
  fill: #0077b5;
}
.footer-links li a.bluesky-icon:hover svg {
  fill: #1185fe;
}
.footer-links li a.slack-icon:hover svg .first {
  fill: #e91e63;
}
.footer-links li a.slack-icon:hover svg .second {
  fill: #e91e63;
}
.footer-links li a.slack-icon:hover svg .third {
  fill: #00bcd4;
}
.footer-links li a.slack-icon:hover svg .fourth {
  fill: #00bcd4;
}
.footer-links li a.slack-icon:hover svg .fifth {
  fill: #4caf50;
}
.footer-links li a.slack-icon:hover svg .sixth {
  fill: #4caf50;
}
.footer-links li a.slack-icon:hover svg .seventh {
  fill: #ff9800;
}
.footer-links li a.slack-icon:hover svg .eigth {
  fill: #ff9800;
}
.footer-links li a.github-icon:hover svg {
  fill: #fff;
}
.footer-links li a.rss-icon:hover svg {
  fill: #f26522;
}

.feed {
  width: 100%;
  margin: 10px 20px;
  padding: 0;
}
@media (min-width: 450px) {
  .feed {
    -webkit-flex: 0 0 fit-content;
    flex: 0 0 fit-content;
  }
}
@media (min-width: 820px) and (max-width: 1154px) {
  .feed {
    margin-top: 25px;
    text-align: justify;
  }
}
.feed ul {
  list-style: none;
  margin: 10px auto;
}
@media (min-width: 450px) {
  .feed ul {
    max-width: 400px;
  }
}

footer {
  padding: 50px 0 50px 0;
  font-size: 0.9rem;
  position: relative;
  background: linear-gradient(to right top, #3d3d3d, #343434, #2b2b2b, #222222, #1a1a1a, #181818, #161616, #141414, #181818, #1c1c1c, #212121, #252525);
  color: #fff;
}
footer .copyright {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: #3c494f 1px solid;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
@media (max-width: 1000px) {
  footer .copyright {
    flex-direction: column;
    text-align: center;
  }
  footer .copyright .text {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
footer .twitter-timeline {
  border-radius: 50%;
  justify-content: center;
}
footer,
footer a {
  color: #999;
}
footer h2 {
  font-size: 1.2em;
  margin: 30px 0;
  margin: 15px auto;
  color: #ccc;
  font-weight: bold;
  text-align: start !important;
}
footer .footer-columns {
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-evenly;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer .legal-line {
  width: 100%;
  padding: 30px 0;
  margin: 0;
  background-color: #222527;
}
footer .legal-line a {
  font-weight: 600;
}

.calendar-meetings {
  max-width: 1140px;
  margin: auto;
  text-align: center;
  color: var(--color-secondary-light);
}
.calendar-meetings h1 {
  margin-top: 2rem;
  margin-bottom: 0rem;
}
.calendar-meetings p {
  margin: 0;
}
.calendar-meetings .fc-button {
  transition: all 0.4s;
  border: none;
  background-color: var(--brand-color-secondary) !important;
}
.calendar-meetings .fc-button:hover {
  background-color: var(--brand-color-primary) !important;
}
.calendar-meetings .fc-right > .fc-addToCalendar-button {
  background-color: var(--action-color-dark) !important;
}
.calendar-meetings .fc-right > .fc-addToCalendar-button:hover {
  background-color: var(--action-color-dark-hover) !important;
}
@media (max-width: 574px) {
  .calendar-meetings .fc-prev-button, .calendar-meetings .fc-next-button, .calendar-meetings .fc-today-button {
    margin: 5px;
  }
}

.callout {
  width: auto;
  height: 100%;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: none;
}
.callout .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  width: 31px;
  height: 31px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: none;
  border-radius: 0 4px 0 3px;
  content: url("../assets/images/logos/meshery-logo.png");
}
.callout .card {
  display: block;
  position: relative;
  max-width: 262px;
  height: 150px;
  background: var(--background-light-cards);
  border-radius: 4px;
  padding: 25px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: var(--box-shadow-primary);
}
.callout .card h3 {
  color: var(--color-secondary-dark);
  font-size: 19px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  transition: color 0.4s;
}
.callout .card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-grey-light);
  transition: color 0.4s;
}
.callout .card p.small {
  font-size: 14px;
}
.callout .card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -27px;
  right: -27px;
  background: var(--background-primary);
  height: 32px;
  width: 32px;
  border-radius: 12px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.4s ease-out;
}
.callout .card:hover h3, .callout .card:hover p {
  color: white;
}
.callout .card:hover:before {
  transform: scale(20);
}
.callout .card:hover .go-corner {
  content: url("../assets/images/logos/meshery-logo-white.png");
}

.catalog-heading {
  text-align: center;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  word-spacing: 5px;
  font-size: 2.5rem;
}

.catalog-subheading {
  text-align: center;
  color: var(--color-secondary-dark);
  font-weight: 500;
  margin: 1rem auto;
  font-size: 2rem;
}

.catalog-subtext {
  text-align: center;
  color: var(--color-secondary-dark);
  font-size: 18px;
  font-weight: 400;
}

.tabcontent h3 {
  color: var(--color-secondary-dark);
}

/* CARD-STYLES */
.card {
  position: relative;
  width: 220px;
  height: 250px;
  border-radius: 15px;
  border: 0;
  transition: 0.4s ease-out;
  margin-bottom: 20px;
  display: block;
  margin-bottom: 20px;
  perspective: 1000px;
  transition: all 0.9s;
}
.card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.card:hover .card-inner {
  transform: translateY(-2%);
}
.card .front,
.card .back {
  box-shadow: 2px 2px 6px 0px #00d3a9;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  border-radius: 15px;
  backface-visibility: hidden;
}
.card .front {
  background: var(--background-light-cards);
}
.card .back {
  color: white;
  transform: rotateY(180deg);
  background: var(--background-primary);
}

.card:hover {
  cursor: pointer;
}

.pattern-image-overlay {
  opacity: 0.2;
  width: 60%;
  object-fit: contain;
  position: absolute;
  margin-left: 5%;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-overlay {
  position: relative;
  width: 220px;
  height: 250px;
  border-radius: 15px;
  border: 0;
  background: rgba(0, 0, 0, 0.7) !important;
  box-shadow: 2px 2px 6px 0px #00d3a9;
  margin-bottom: 20px;
}

.overlay-text {
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 19px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  white-space: wrap;
}

.pattern-id-overlay {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  padding-top: 10px;
  margin-right: 14px;
  opacity: 0.7;
}

.catalog {
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: flex;
}
.catalog .row {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 75%;
  gap: 1rem;
  column-gap: 2rem;
  justify-content: center;
  height: fit-content;
  padding-top: 1rem;
}
.catalog #sort, .catalog #search {
  background-color: transparent;
  color: var(--color-primary-qtext);
}
.catalog #sort:focus {
  background-color: var(--color-primary-light);
}
@media (max-width: 770px) {
  .catalog {
    flex-direction: column;
  }
}

body.dark-mode #sort {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
}

p {
  font-family: "Qanelas Soft", "Open Sans", "sans-serif";
  -webkit-font-smoothing: antialiased;
  font-size: 1.1rem;
}

.inner-span {
  font-size: 16px;
  position: relative;
  color: black;
}

.column {
  display: none;
}

.column:has(.card) {
  display: block;
}

.smp-overlay {
  width: 16px;
  bottom: 0;
  right: 0;
  opacity: 0.7;
  vertical-align: middle;
  padding-right: 1px;
}

.smp {
  width: 16px;
  bottom: 0;
  right: 0;
  vertical-align: middle;
  padding-right: 1px;
}

.import {
  background-color: #00b39f;
  color: white;
  border-radius: 4px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.import-disabled {
  background-color: #aaa;
  color: white;
  border-radius: 4px;
  border: none;
  padding: 10px;
}

.import-secondary {
  background-color: inherit;
  border: 1px solid #00b39f;
  color: var(--color-primary-qtext);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
}

.btn-tooltip-grp {
  display: flex;
  flex-direction: row;
  position: relative;
}

/* Clear floats after the columns */
.disabled-label {
  color: #aaa;
}

.dropdown-icon {
  width: 20px;
  vertical-align: middle;
  padding: 2px;
}

/* CARD-STYLES */
.pattern-type {
  cursor: inherit;
  display: flex-start;
  align-items: center;
  user-select: none;
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
  color: var(--color-primary-light-tbase);
}

.chip {
  display: inline-flex;
  flex-direction: row-reverse;
  border: none;
  cursor: default;
  height: 1.5rem;
  outline: none;
  padding-left: 2px;
  padding-right: 3px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  align-items: center;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 16px;
  vertical-align: middle;
  text-decoration: none;
  justify-content: center;
  float: left;
}

.chip.COLLABORATION {
  background-color: var(--integrations-bg);
  box-shadow: 0px 1px 2px var(--integrations-bg);
}
.chip.COLLABORATION .pattern-type {
  box-shadow: none;
  background-color: none;
  color: var(--color-secondary-medium);
}

.chip.LIFECYCLE {
  background-color: var(--brand-color-tertiary);
  box-shadow: 0px 1px 2px var(--brand-color-tertiary);
}
.chip.LIFECYCLE .pattern-type {
  box-shadow: none;
  background-color: none;
  color: var(--color-secondary-medium);
}

.chip.GITOPS {
  background-color: var(--action-color-dark);
  box-shadow: 0px 1px 2px var(--action-color-dark);
  color: var(--color-primary-dark);
}

.chip.CONFIGURATION {
  background-color: var(--color-grey-light);
  box-shadow: 0px 1px 2px var(--action-color-light);
  color: var(--color-primary-dark);
}

.category-label {
  display: inline;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  white-space: nowrap;
  border-radius: 1rem;
  background-color: #b6d7a8;
  padding: 0.5rem;
  margin: auto;
}

.chip-modal {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 2.5rem;
  font-size: 1.6rem;
  background-color: #00d3a9;
  align-self: flex-end;
  float: right;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
}

.pattern-name {
  color: var(--color-secondary-light);
  font-weight: 1400;
  font-style: bold;
  width: 80%;
  margin: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  padding: 15px 0 15px 0;
}

.pattern-id {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  margin: auto;
  color: var(--color-secondary-light);
}

.pattern-image-container {
  display: flex;
  justify-content: center;
}

.pattern-image, .model-image {
  aspect-ratio: 1;
  width: 60%;
  margin-top: 24px;
  object-fit: contain;
  position: absolute;
}

.patterns-coming-soon {
  max-width: 70%;
  position: relative;
  float: right;
  z-index: 2;
  margin-top: -2.5rem;
  margin-right: -2rem;
  transform: translateY(0%) translateX(0%) rotate(10deg);
  -webkit-transform: translateY(0%) translateX(0%) rotate(10deg);
  -moz-transform: translateY(0%) translateX(0%) rotate(10deg);
  -ms-transform: translateY(0%) translateX(0%) rotate(10deg);
  -o-transform: translateY(0%) translateX(0%) rotate(10deg);
}

.extensions-coming-soon {
  width: 50%;
  height: 50%;
  position: relative;
  float: right;
  z-index: 2;
  margin-top: -0.5rem;
  margin-right: -7rem;
  transform: translateY(0%) translateX(0%) rotate(-10deg);
  -webkit-transform: translateY(0%) translateX(0%) rotate(-10deg);
  -moz-transform: translateY(0%) translateX(0%) rotate(-10deg);
  -ms-transform: translateY(0%) translateX(0%) rotate(-10deg);
  -o-transform: translateY(0%) translateX(0%) rotate(-10deg);
}

.hidden {
  visibility: hidden;
}

.external-link {
  display: inline-block;
  width: 1rem;
}
.external-link img {
  margin-bottom: 3px;
}
.external-link img:hover {
  opacity: 0.7;
}

.internal-link {
  height: 1.25rem;
  margin-left: 0.5rem;
  margin-bottom: 4px;
  vertical-align: middle;
  filter: var(--image-filter-light);
}
.internal-link:hover {
  opacity: 0.7;
}

/* CHECKBOX-STYLES */
.filter-wrap {
  flex: 0 0 25%;
  width: 23%;
  padding: 4px;
  border-radius: 15px;
  height: fit-content; /* height needs to be increased with regarding to the total no. of patterns */
}
.filter-wrap .load-more {
  display: none;
}

label {
  display: block;
  padding-left: 15px;
  text-indent: -15px;
}

input {
  width: 20px;
  height: 20px;
  padding: 3px;
  margin: 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
  display: inline;
}

input[type=checkbox] {
  margin: 0;
}

/* MODAL-STYLES */
.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.modal-section {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.modal-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 20%;
  padding: 2rem;
  min-height: fit-content;
  background: var(--color-primary-light-dark);
}
.modal-image img {
  max-width: 80%;
}

.image-class {
  max-width: 80%;
  margin: 36px 0;
  cursor: pointer;
}

::-webkit-scrollbar {
  display: "none";
}

.modal-content {
  display: flex;
  flex-direction: row;
}
.modal-content code {
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  background-color: #1a2421;
  line-height: 1rem;
  color: #eee;
  display: block;
  text-align: left;
}
.modal-content code a {
  color: white;
}
.modal-content p {
  color: var(--color-secondary-dark);
}

.modal-h2 {
  color: var(--color-secondary-dark);
  font-size: 1.5rem;
  margin-top: 2rem;
  text-align: inherit;
  font-weight: 600;
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0.5rem;
}

.modal-h3 {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0rem;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.modal-info {
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 28px;
  gap: 1rem;
}

.modal-window > div {
  position: absolute;
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  overflow-y: hidden;
  height: auto;
  width: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary-light));
}
.modal-window > div .modal-info {
  overflow-y: auto;
}

.modal-window > div::-webkit-scrollbar {
  display: none;
}

.modal-info::-webkit-scrollbar {
  display: none;
}

.catalog-info {
  text-align: center;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
  display: none;
}

.modal-small-header {
  font-size: 15px;
  display: block;
}

.service-mesh-image {
  height: 50px;
  width: 50px;
}

.modal-close {
  display: flex;
  justify-content: space-between;
  color: var(--brand-color-secondary);
  line-height: 1rem;
  font-size: 1rem;
  display: flex;
  text-align: center;
  text-decoration: none;
}
.modal-close img {
  width: 1rem;
  vertical-align: middle;
}

.modal-pattern-name {
  color: var(--color-secondary-dark);
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  padding-top: 7px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.modal-chip {
  display: inline-flex;
  flex-direction: row-reverse;
  float: right;
  background-color: var(--brand-color-primary);
  border: none;
  cursor: default;
  height: 1rem;
  outline: none;
  padding: 0.1rem 0.5rem;
  font-size: 10px;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  align-items: center;
  border-radius: 0 0 0 5px;
  vertical-align: middle;
  text-decoration: none;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
}

.modal-card {
  overflow: hidden;
  position: relative;
  background: var(--background-light-cards);
  width: 150px;
  height: 180px;
  padding: 20px;
  border-radius: 15px;
  border: 0;
  transition: 0.4s ease-out;
  box-shadow: 2px 2px 6px 0px #00d3a9;
}

.modal-smp {
  width: 20px;
  bottom: 0;
  right: 0;
  vertical-align: middle;
  padding-right: 2px;
}

.modal-pattern-image {
  width: 60%;
  object-fit: contain;
  position: absolute;
  margin-top: 16px;
}

.modal-pattern-id {
  color: var(--color-secondary-dark);
  position: absolute;
  bottom: 0;
  font-size: 8px;
  right: 0;
  margin: 0px 64px 4px 0px;
}

.modal-container {
  padding: 20px 40px 40px;
  max-width: 600px;
}

.modal-text {
  display: inline;
}

.image-container {
  flex-basis: 70%;
}

.vertical-line {
  border-left: 1px solid var(--color-secondary-light);
}

.redirect {
  width: 0rem;
  color: var(--brand-color-secondary);
}

.close {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  margin-right: 18px;
  top: 18px;
  float: right;
  transition: all 200ms;
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-secondary-dark);
  background: transparent;
  border: 0px;
  padding: 0px;
  cursor: pointer;
}

.close:hover {
  color: #00d3a9 !important;
  opacity: 0.8 !important;
  text-decoration: none;
}

open-modal-btn {
  display: block;
  margin: 0 auto;
}

.btn-grp {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  font-size: 1rem;
}

.tooltip-modal:hover {
  text-decoration: none;
}

.catalog-details li span {
  font-size: 0.25rem;
}

.catalog-item-detail {
  color: var(--color-secondary-dark);
}

.pattern-filter-image {
  display: flex;
  width: 50%;
  object-fit: contain;
  margin: auto;
}

.wasm {
  width: 15px;
  bottom: 0;
  right: 0;
  vertical-align: middle;
  padding-right: 2px;
  padding-bottom: 3px;
}

label {
  white-space: nowrap;
  color: var(--color-secondary-dark);
  text-overflow: ellipsis;
  overflow: hidden;
}

.related-patterns {
  font-size: 1rem;
}

.modal-smp {
  width: 20px;
  bottom: 0;
  right: 0;
  vertical-align: middle;
  padding-right: 2px;
}

.modal-container {
  padding: 20px 40px 40px;
  max-width: 600px;
}

.modal-text {
  display: inline;
}

.image-container {
  flex-basis: 70%;
}

.related-patterns-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-pattern-image-overlay {
  opacity: 0.5;
  width: 55%;
  object-fit: contain;
  position: absolute;
  margin-left: 5%;
  border-radius: 15px;
}

.modal-card-overlay {
  position: relative;
  width: 150px;
  height: 180px;
  padding: 20px;
  border-radius: 15px;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: #00d3a9;
  margin-bottom: 20px;
}

.modal-smp-overlay {
  width: 20px;
  bottom: 0;
  right: 0;
  opacity: 0.7;
  vertical-align: middle;
  padding-right: 2px;
}

.modal-pattern-id-overlay {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  margin: auto;
  color: white;
  opacity: 0.7;
}

.modal-overlay-text {
  position: absolute;
  top: 40%;
  left: 50%;
  color: white;
  font-size: 15px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}

.mobile_column_sm {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
}
.mobile_column_sm:nth-child(1) {
  margin-top: 3rem;
}

.catalog-load-more {
  display: none;
}

.dropbtn {
  display: none;
}

.contentdata {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Limit to 3 lines, adjust as needed */
  -webkit-line-clamp: 5;
}

.pre-white-space {
  white-space: pre-wrap;
}

.read-more {
  cursor: pointer;
  color: var(--brand-color-primary);
}

.visible-content {
  display: inline; /* Initially show the visible content */
}

.hidden-content {
  display: none; /* Initially hide the hidden content */
  max-height: none; /* Remove the max-height limit to allow it to expand */
  opacity: 1; /* Set opacity to fully visible */
  overflow: visible; /* Allow the content to be fully visible */
  transition: max-height 0.5s, opacity 0.5s;
}

.hide-by-default {
  display: none;
}

@media screen and (max-width: 700px) {
  .modal-window {
    width: 100%;
    height: 100%;
    align-items: center;
  }
  .btn-tooltip-grp {
    justify-content: center;
  }
}
@media screen and (max-width: 1150px) {
  .modal-window > div {
    height: 80%;
    overflow-y: initial;
    flex-direction: column;
    left: 50%;
    padding: 0 28px;
    text-align: center;
  }
  .modal-window > div .modal-info {
    padding-top: 0;
    overflow-y: initial;
  }
  .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .modal-content code {
    margin: auto auto;
  }
  .modal-smp {
    width: 20px;
    bottom: 0;
    right: 0;
    vertical-align: middle;
    padding-right: 2px;
  }
  .modal-container {
    padding: 20px 40px 40px;
    max-width: 600px;
  }
  .modal-text {
    display: inline;
  }
  .image-container {
    flex-basis: 70%;
  }
  .modal-pattern-image-overlay {
    opacity: 0.5;
    width: 55%;
    object-fit: contain;
    position: absolute;
    margin-left: 5%;
    border-radius: 15px;
  }
  .modal-card-overlay {
    position: relative;
    width: 150px;
    height: 180px;
    padding: 20px;
    border-radius: 15px;
    border: 0;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 2px 2px 6px 0px #00d3a9;
    margin-bottom: 20px;
  }
  .modal-smp-overlay {
    width: 20px;
    bottom: 0;
    right: 0;
    opacity: 0.7;
    vertical-align: middle;
    padding-right: 2px;
    padding-bottom: 3px;
  }
  .modal-pattern-id-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-top: 10px;
    margin-right: 14px;
    color: white;
    opacity: 0.7;
  }
  .modal-overlay-text {
    position: absolute;
    top: 40%;
    left: 50%;
    color: white;
    font-size: 15px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
    white-space: nowrap;
  }
  .close {
    display: flex;
    justify-content: space-between;
    transition: all 200ms;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    background: transparent;
    border: 0px;
    padding: 0px;
    cursor: pointer;
  }
  .catalog-info {
    text-align: center;
  }
  .btn-grp {
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    justify-content: center;
  }
  .tooltip-modal {
    position: relative;
  }
  .tooltip-modal .tooltiptext-modal {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    transition: all 0.5s;
  }
  .related-patterns-img {
    display: none;
  }
  .hide-by-default {
    display: flex;
  }
  .modal-info {
    width: 100%;
  }
  .modal-image {
    padding-bottom: 0;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    width: 80%;
    background-color: transparent;
  }
  .modal-image img {
    max-width: 30%;
  }
  .modal-info {
    text-align: left;
  }
  .modal-h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.viewall {
  display: flex;
  padding: 5px;
  margin: 5px;
}

.viewallbtn {
  cursor: pointer;
  border: none;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  padding: 0.5rem;
  background: #00b39f;
}

.viewallbtn:hover {
  color: #fff;
}

@media screen and (max-width: 650px) {
  .modal-window {
    width: 100%;
    height: 100%;
  }
  .modal-window > div {
    overflow-y: initial;
  }
  .modal-window > div .modal-info {
    padding-top: 0;
    overflow-y: initial;
  }
}
@media screen and (min-width: 770px) {
  .viewallbtn {
    position: relative;
  }
}
@media screen and (max-width: 770px) {
  .catalog-load-more {
    display: unset;
  }
  .dropbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .viewall {
    justify-content: center;
  }
  .catalog .row {
    display: flex;
    column-gap: 1.75rem;
    row-gap: 0.5rem;
    align-items: center;
    margin-left: 0.5rem;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .catalog .column-lg:has(.card) {
    display: block;
  }
  .catalog .mobile_column_sm {
    display: unset;
  }
  .filter-wrap {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.15rem;
  }
  .filter-wrap .dropdown {
    align-self: center;
    margin-bottom: 7rem;
  }
  .filter-wrap .category-div {
    padding-left: 15px;
  }
  .filter-wrap .compatibility-div {
    margin-bottom: 3rem;
    margin-top: -1rem;
  }
  .filter-wrap .category-div,
  .filter-wrap .compatibility-div,
  .filter-wrap .tech-div {
    display: grid;
    column-gap: 2rem;
  }
  .filter-wrap .category-div label,
  .filter-wrap .compatibility-div label,
  .filter-wrap .tech-div label {
    margin: 0;
  }
  .filter-wrap .category-div .open-service-mesh,
  .filter-wrap .compatibility-div .open-service-mesh,
  .filter-wrap .tech-div .open-service-mesh {
    grid-row: 4/5;
    grid-column: 1/3;
  }
  .filter-wrap .category-para,
  .filter-wrap .category-div,
  .filter-wrap .compatibility-div,
  .filter-wrap .tech-div,
  .filter-wrap .compatibility-para,
  .filter-wrap .tech-para {
    display: none;
  }
  .filter-wrap .load-more {
    display: block;
    align-self: center;
  }
}
@media screen and (max-width: 770px) and (min-width: 450px) {
  .category-div,
  .compatibility-div,
  .tech-div {
    row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 450px) {
  .category-div,
  .compatibility-div,
  .tech-div {
    row-gap: 1rem;
  }
}
@media screen and (max-width: 644px) {
  .modal-image {
    gap: 0;
  }
  .modal-image img {
    max-width: 40%;
  }
  .modal-h1,
  .related-patterns {
    display: none;
  }
  .btn-grp {
    align-items: center;
  }
}
/* modal background */
.modal-video {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200; /* Sit on top */
  width: 100%; /* Full width */
  height: 100%;
  overflow: auto;
  overflow-x: hidden; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  transition: all 0.3s;
  /* modal content */
  /* close button */
}
.modal-video .modal-content-video {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background-color: #3c494f;
  color: white;
  width: 80%;
  margin-top: 10%;
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  border-radius: 1%;
}
.modal-video .modal-content-video h3 {
  font-size: 2rem !important;
  color: var(--color-white);
}
.modal-video .close-video {
  color: #aaaaaa;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
.modal-video .close-video:hover, .modal-video .close-video:focus {
  text-decoration: none;
  cursor: pointer;
  color: #00d3a9;
}

.features-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.features-container img {
  width: 100%;
}

@media screen and (max-width: 1051px) {
  .features-container {
    flex-wrap: wrap;
  }
}
.feature-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}

.title {
  width: 100%;
  padding: 0.5rem;
  border-radius: 20px;
  text-align: center;
  margin: 1rem auto auto auto;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  font-family: "Qanelas Soft", "Open Sans", "sans-serif";
}

.title.pattern {
  background: #00b39f;
}

.title.wasm {
  background: #654ff0;
}

.title.ebpf {
  background: #ebc017;
}

.title.OPA {
  background: #7d9199;
}

.description {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  bottom: 0px;
  margin-left: 1.5rem;
  margin-top: 2rem;
  padding: 1rem;
  opacity: 0;
  transition: 0.2s ease-in-out opacity;
  color: var(--color-secondary-dark);
}

.description.pattern {
  border-left-color: #00b39f;
}

.description.wasm {
  border-left-color: #654ff0;
}

.description.ebpf {
  border-left-color: #ebc017;
}

.description.opa {
  border-left-color: #7d9199;
}

.circlecont {
  width: 110px;
  height: 110px;
  position: relative;
  margin: 1rem auto 35px auto;
}

.circle {
  padding-left: 0.5rem;
  width: 50px;
  height: 50px;
  position: absolute;
  /* Mask: */
  border-radius: 110px;
  opacity: 1;
}

.circle img {
  max-width: 100%;
  /* Ensures the image doesn't exceed the container */
  max-height: 100%;
  object-fit: contain;
  /* Keeps the aspect ratio */
}

.hover-circles .circle {
  opacity: 1;
  position: absolute;
  top: 0;
  background-blend-mode: multiply;
}

.hover-circles:hover .circle {
  opacity: 0.2;
  position: absolute;
  top: 0;
  background-blend-mode: multiply;
}

#pattern > div.hover-circles > div:nth-child(n) {
  filter: drop-shadow(2px 2px 3px #1a1a1a);
}

.circlecont .hover-circles .circle {
  transform: translate(0px, 0px);
  animation-fill-mode: forwards;
}

.feature-container:hover .description {
  opacity: 1;
}

.box:hover .hover-circles .circle:first-child {
  animation: 1.8s circle-1 ease-in-out infinite;
}
.box:hover .hover-circles .circle:nth-child(2) {
  animation: 2.5s circle-2 ease-in-out infinite;
}
.box:hover .hover-circles .circle:nth-child(3) {
  animation: 2.7s circle-3 ease-in-out infinite;
}
.box:hover .hover-circles .circle:nth-child(4) {
  animation: 2.4s circle-4 ease-in-out infinite;
}
.box:hover .hover-circles .circle:nth-child(5) {
  animation: 3.2s circle-5 ease-in-out infinite;
}

@keyframes circle-1 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(15px, 15px);
  }
}
@keyframes circle-2 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(10px, -15px);
  }
}
@keyframes circle-3 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-5px, -25px);
  }
}
@keyframes circle-4 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-15px, 20px);
  }
}
@keyframes circle-5 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(15px, 20px);
  }
}
@media screen and (max-width: 600px) {
  .features-container,
  .feature-container {
    width: 100%;
    flex-direction: column;
  }
  .title {
    width: 80%;
  }
  .box .circle {
    padding: 0;
  }
  .description {
    margin-left: 0;
    text-align: center;
    opacity: 1;
    padding: 0rem 0rem 2rem 0rem;
    border: 0;
  }
  .patterns-coming-soon {
    max-width: 30%;
    margin-right: 1rem;
  }
}
.single-page {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
.single-page h4 {
  font-weight: bold;
  background-color: var(--color-primary-light);
  padding: 0.45rem;
  width: 100%;
}
.single-page li > p {
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0rem;
}
.single-page li > div {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.single-page code {
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  background-color: var(--color-secondary-dark);
  line-height: 1rem;
  color: var(--color-primary-light);
  display: block;
}

.blog-navigation-container {
  display: flex;
  text-decoration: none;
  list-style: none;
  justify-content: space-between;
}

.modal-image-single {
  width: 15rem;
}
.modal-image-single img.pattern-snapshot {
  max-width: 200px;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-primary-light);
}
.modal-image-single img.pattern-snapshot:hover {
  border: 1px solid var(--brand-color-primary);
}

.pre-white-space {
  white-space: pre-wrap;
}

@media screen and (max-width: 1150px) {
  .modal-image-single img {
    width: 70%;
  }
  .single-page .btn-grp {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}
.blog-navigation {
  padding-top: 3rem;
}

.pre-white-space {
  white-space: pre-wrap;
}

@media screen and (max-width: 640px) {
  .modal-image-single {
    width: 100%;
  }
  .single-page {
    flex-direction: column;
  }
  .single-page .btn-grp {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}
:root {
  --brand-color-primary:#00D3A9;
  --brand-color-secondary:#00B39F;
  --brand-color-secondary-50: rgba(0, 179, 159, .5);
  --brand-color-tertiary: #477E96;
  --color-white:#fff;
  --color-primary-light:#fff;
  --color-primary-light-dark:#d9e0e2;
  --color-primary-medium-dark: #FFFFFF;
  --color-primary-medium:#f8f9fa;
  --color-primary-dark:#f1f3f5;
  --color-primary-extra-dark:#b2b6bd;
  --color-primary-super-dark: #818c9a;
  --color-secondary-light:#495057;
  --color-secondary-medium:#343a40;
  --color-secondary-dark:#212529;
  --color-grey-light:#868e96;
  --color-primary-light-tbase:#ecf0f3;
  --color-primary-qmeta: #777777;
  --color-primary-qtext: rgb(0,0,0);
  --color-primary-testimonial-wrapper: rgb(250,250,250);
  --box-shadow-primary:3px 3px 10px rgba( 134, 142, 150, .8);
  --integrations-box-shadow:4px 4px 14px #cbced1,
  -12px -12px 20px #fff;
  --integrations-bg:#ecf0f3;
  --integrations-3d-bg:#f3f4f6;
  --box-shadow-primary-quotes: 2px 2px 25px #cecece;
  --image-color: brightness(15%);
  --image-filter-light: invert(27%) sepia(34%) saturate(217%) hue-rotate(154deg) brightness(92%) contrast(95%);
  --image-filter-dark:brightness(40) invert(1);
  --logo-filter:brightness(100%) invert(0);
  --background-primary:linear-gradient(250deg, #477e96 0%, #00b39f 35%, rgb(60, 73, 79) 100%);
  --background-primary-2:linear-gradient(100deg, #477e96 0%, #00b39f 35%, #5a6f79 100%);
  --background-light: linear-gradient(to right top, #fff, #fff);
  --background-light-cards: linear-gradient(to left bottom, #f1f3f5, #f4f5f7, #f7f7f9, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #f7f7f9, #f4f5f7, #f1f3f5);
  --background-grey: linear-gradient(to right bottom, #dee2e6, #d2d7dc, #c5cbd1, #b9c0c7, #adb5bd);
  --background-grey-secondary:linear-gradient(to right top, #868e96, #767e86, #676e76, #585f66, #495057);
  --background-image-light: none;
  --scrollbar-color: #3c494f;
  --background-nav-fixed: #e7eff333;
  --color-nav-fixed: black;
  --action-color-dark: #EBC017;
  --action-color-dark-hover: #C09E0F;
  --action-color-light: #FFF3C5;
  --color-summary-background:#bac1c8;
  --color-summary-background-hover:#8f949a;
  --color-details-background:#d3d8dd;
  --color-components-background: #f9f9f9;
}

.dark-mode {
  --color-primary-light:#212529;
  --color-primary-light-dark: #202020;
  --color-primary-medium-dark: #464D53;
  --color-primary-medium:#343a40;
  --color-primary-dark:#495057;
  --color-primary-extra-dark:#6c747e;
  --color-primary-super-dark: #818c9a;
  --color-secondary-light:#fff;
  --color-secondary-medium:#f1f3f5;
  --color-secondary-dark:#f1f3f5;
  --color-grey-light:#ced4da;
  --color-primary-light-tbase:#212121;
  --color-primary-qmeta: #EEEEEE;
  --color-primary-qtext: rgb(255,255,255);
  --color-primary-testimonial-wrapper: rgb(0,0,0);
  --box-shadow-primary:4px 4px 8px rgba(0, 0, 0, 1);
  --box-shadow-primary-quotes: 2px 2px 25px rgba(0, 0, 0, 0.1);
  --background-light:linear-gradient(to right top, #3d3d3d, #343434, #2b2b2b, #222222, #1a1a1a, #181818, #161616, #141414, #181818, #1c1c1c, #212121, #252525);
  --background-grey:linear-gradient(to right top, #868e96, #767e86, #676e76, #585f66, #495057);
  --background-grey-secondary:linear-gradient(to right bottom, #dee2e6, #d2d7dc, #c5cbd1, #b9c0c7, #adb5bd);
  --background-light-cards:linear-gradient(to right top, #3d3d3d, #343434, #2b2b2b, #222222, #1a1a1a, #181818, #161616, #141414, #181818, #1c1c1c, #212121, #252525);
  --background-image-light: radial-gradient( circle 100px at 50% 50%, rgba(167,173,180,0.78) 0%, rgba(103,110,118,0.79) 80%, rgba(103,110,118,1) 100% );
  --scrollbar-color: #00d3a9;
  --image-color: brightness(0) invert(1);
  --image-filter-light:brightness(40) invert(1);
  --image-filter-dark:invert(27%) sepia(34%) saturate(217%) hue-rotate(154deg) brightness(92%) contrast(95%);
  --logo-filter:invert(.9) grayscale(1.6) brightness(1.5);
  --integrations-bg:#676e76;
  --integrations-3d-bg:#222222;
  --integrations-box-shadow:4px 4px 14px #41454a,
  -4px -4px 10px #78808a;
  --background-nav-fixed: #15272f80;
  --color-nav-fixed: white;
  --action-color-dark: #EBC017;
  --action-color-dark-hover: #C09E0F;
  --action-color-light: #FFF3C5;
  --color-summary-background:#333;
  --color-summary-background-hover:#666666;
  --color-details-background:#282828;
  --color-components-background: #202020;
}

.box-shadow-primary {
  box-shadow: var(--box-shadow-primary);
}

.button {
  border-radius: 7px;
  padding: 0.5rem;
  transition: all 0.4s;
  color: #fff;
  box-shadow: var(--box-shadow-primary);
  border: 2px solid var(--color-grey-light);
}
.button:active {
  transform: scale(0.95);
}
.button:hover {
  text-decoration: none;
  background: #00B39F !important;
  transform: translateY(-2px);
}

.card-div {
  background: transparent !important;
  padding-top: 0rem !important;
}
.card-div .card {
  width: 130px;
  height: 130px;
  background: var(--background-primary);
}
.card-div .card h1 {
  font-size: 1.5em;
  color: var(--color-white);
}

.cohort_title {
  color: var(--color-secondary-dark) !important;
  text-align: center;
  margin: 2rem 0rem;
}

.program-heading {
  background: transparent !important;
  padding-bottom: 2rem !important;
  padding-top: 2rem !important;
  margin-top: 0 !important;
  color: var(--color-secondary-medium) !important;
}

.program-heading h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: center;
}

.program-heading h2.sub_headings {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}

@media (max-width: 480px) {
  .program-heading h1 {
    font-size: 2rem;
  }
  .program-heading h2.sub_headings {
    font-size: 1.35rem;
  }
}
.programlist-subscribe {
  background: transparent !important;
}

.programlist-subscribe .form-container {
  margin: 3rem auto !important;
  padding: 2rem 0rem;
  box-shadow: var(--box-shadow-primary);
}

.program .project-details {
  max-width: 100%;
}

#content h2,
#content h3 {
  scroll-margin-top: 125px;
}

.auto-toc {
  border: 1px solid #ccc;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-content: center;
}

.auto-toc h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.auto-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auto-toc li {
  margin-bottom: 0.5rem;
}

.auto-toc a {
  text-decoration: none;
  color: #00D3A9;
}

.auto-toc a:hover {
  text-decoration: underline;
}

.auto-toc ul ul {
  margin-left: 1rem;
}

.auto-toc li {
  border-bottom: 1px dotted #eee;
  padding-bottom: 0.25rem;
}

.auto-toc li:last-child {
  border-bottom: none;
}

.auto-toc a {
  transition: color 0.3s ease;
}

.auto-toc a:hover {
  color: #00b39f;
}

/* .auto-toc li:before {
  content: counter(toc-items) ". ";
  counter-increment: toc-items;
  color: #888;
  margin-right: 0.5rem;
} */
.auto-toc {
  counter-reset: toc-items;
}

.auto-toc a {
  display: block;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
  padding: 0.25rem 0;
}

#integrations {
  background: var(--integrations-bg);
  position: relative;
}
#integrations .integrations-heading {
  flex: 0 0 100%;
  display: flex-inline;
  flex-direction: column;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}
#integrations .integrations-heading h1 {
  line-height: 3.75rem;
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
#integrations .integrations-heading h2 {
  font-weight: 300;
  font-size: 2.2em;
  color: var(--color-secondary-medium);
  z-index: 2;
  position: relative;
}
#integrations .integrations-heading .parallel-right {
  position: absolute;
  display: inline;
  top: -8rem;
  right: 0;
  background-color: var(--integrations-bg);
  height: 18rem;
  width: 25%;
  z-index: 2;
  overflow: hidden;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
#integrations .integrations-heading .parallel-left {
  position: absolute;
  display: inline;
  top: -8rem;
  left: 0;
  background-color: var(--integrations-bg);
  height: 18rem;
  width: 25%;
  z-index: 2;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
}
@media (max-width: 1192px) {
  #integrations .integrations-heading .parallel-left, #integrations .integrations-heading .parallel-right {
    top: -6rem;
  }
}
@media (max-width: 786px) {
  #integrations .integrations-heading .parallel-left, #integrations .integrations-heading .parallel-right {
    top: -4.5rem;
  }
}
@media (max-width: 600px) {
  #integrations .integrations-heading .parallel-left, #integrations .integrations-heading .parallel-right {
    top: 0;
  }
}
#integrations .integrations-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 3rem;
}
#integrations .integrations-container .integrations-card {
  box-sizing: border-box;
  width: 5rem;
  height: 5rem;
  padding: 1rem;
  position: relative;
}
#integrations .integrations-container .integrations-card-inner {
  position: absolute;
  box-sizing: border-box;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  perspective: 600px;
  transition: 0.5s;
}
#integrations .integrations-container .integrations-card-inner:hover .card-front {
  transform: rotateX(-180deg);
}
#integrations .integrations-container .integrations-card-inner:hover .card-back {
  transform: rotateX(0deg);
}
#integrations .integrations-container .integrations-card-inner .card-back,
#integrations .integrations-container .integrations-card-inner .card-front {
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  padding: 1rem;
  box-sizing: border-box;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  background-color: var(--integrations-bg);
  background-image: var(--background-image-light);
  box-shadow: var(--integrations-box-shadow);
  border-radius: 20px;
  transition: 0.5s;
  color: var(--color-secondary-medium);
}
#integrations .integrations-container .integrations-card-inner .card-front {
  transform: rotateX(0deg);
}
#integrations .integrations-container .integrations-card-inner .card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#integrations .integrations-container .integrations-card-inner .card-back {
  transform: rotateX(180deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
#integrations .integrations-container .integrations-card-inner .card-back p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  padding: 0.3rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary-medium);
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  text-align: center;
}
#integrations .button-container {
  text-align: center;
}
#integrations .integrations-3d-link {
  flex: 0 0 100%;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.testimonials-wrapper {
  max-width: 100%;
  background: var(--color-primary-testimonial-wrapper);
}

.testimonials-wrapper .slider {
  overflow: hidden;
  padding: 0.5rem 0 0.5rem;
  max-width: 100%;
}

.testimonials-wrapper h2 {
  text-align: center;
  padding-top: 2rem;
  margin: 0 0 20px 0;
}

.type-one-quote-base blockquote:before,
.type-two-quote-base blockquote:before,
.type-three-quote-base blockquote:before {
  content: none;
}

.type-one-quote-base blockquote,
.type-two-quote-base blockquote,
.type-three-quote-base blockquote {
  padding: 0;
  margin: 0;
  font-style: normal;
  quotes: none;
}

.testimonials-wrapper .slider .bq-section {
  padding: 20px;
  margin-bottom: 40px;
}

.testimonials-wrapper .slider .type-one-wrapper {
  margin: 0px 1rem;
}

.type-one-wrapper.type-one-wrapper-boxed {
  max-width: 576px;
  margin: 0 auto;
}

/* ========== Type One ========== */
.type-one-quote {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 250px;
  box-shadow: var(--box-shadow-primary-quotes);
  border-radius: 10px;
}

.type-one-quote .type-one-quote-pattern {
  flex-basis: 80px;
  background: linear-gradient(180deg, rgb(71, 126, 150) 0%, rgb(0, 179, 159) 35%, rgb(60, 73, 79) 100%);
  border-radius: 10px 0 0 10px;
  font-size: 1.125rem;
  line-height: 28px;
  color: rgb(0, 0, 0);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
  font-weight: 400 !important;
}

.type-one-quote .type-one-quote-base {
  flex-basis: calc(100% - 80px);
  background-color: var(--color-primary-light-tbase);
  padding: 40px 30px 50px 80px;
  font-size: 11pt;
  line-height: 1.62em;
  border-radius: 0 10px 10px 0;
  margin: 0;
}

.type-one-quote .type-one-quote-qmark {
  position: absolute;
  top: 45px;
  left: 100px;
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 42pt;
  color: #999999;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 28px;
}

.type-one-quote .type-one-quote-userpic {
  position: absolute;
  top: 80px;
  left: 25px;
  width: 90px;
  height: 90px;
}
.type-one-quote .type-one-quote-userpic img {
  border-radius: 50%;
  max-width: 100%;
}

.type-one-quote .type-one-quote-text {
  color: var(--color-primary-qtext);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
}

.type-one-quote .type-one-quote-meta {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 2px dotted var(--color-primary-qmeta);
}

.type-one-quote .type-one-quote-meta .type-one-author,
.type-one-quote .type-one-quote-meta .type-one-source {
  color: var(--color-primary-qmeta);
}

.type-one-quote .type-one-quote-meta .type-one-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.type-one-quote .type-one-quote-meta .type-one-author cite {
  font-style: normal;
}

.type-one-quote .type-one-quote-meta .type-one-source {
  font-size: 9pt;
}

@media screen and (max-width: 768px) {
  .type-one-quote .type-one-quote-pattern {
    flex-basis: 20px;
  }
  .type-one-quote .type-one-quote-base {
    flex-basis: calc(100% - 20px);
    padding: 100px 30px 50px 30px;
  }
  .type-one-quote .type-one-quote-userpic {
    width: 50px;
    height: 50px;
    left: 40px;
    top: 20px;
  }
  .type-one-quote .type-one-quote-qmark {
    left: 100px;
    top: 45px;
  }
}
/* ========== Type Two ========== */
.type-two-quote {
  position: relative;
  box-shadow: var(--box-shadow-primary-quotes);
  border-radius: 10px;
}

.type-two-quote .type-two-quote-pattern {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 80px;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(250deg, rgb(71, 126, 150) 0%, rgb(0, 179, 159) 35%, rgb(60, 73, 79) 100%);
  border-radius: 10px 10px 0 0;
}

.type-two-quote .type-two-quote-pattern .type-two-quote-qmark {
  flex-basis: 100px;
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 60pt;
  color: #ffffff;
  text-align: center;
  height: 80px;
  line-height: 90pt;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.type-two-quote .type-two-quote-userpic {
  position: absolute;
  top: 45px;
  left: calc(50% - 35px);
  width: 90px;
  height: 90px;
}
.type-two-quote .type-two-quote-userpic img {
  border-radius: 50%;
  max-width: 100%;
}

.type-two-quote .type-two-quote-base {
  flex-basis: calc(100% - 80px);
  background-color: var(--color-primary-light-tbase);
  padding: 60px 30px 50px 100px;
  font-size: 11pt;
  line-height: 1.62em;
  border-radius: 0 0 10px 10px;
}

.type-two-quote .type-two-quote-text {
  color: var(--color-primary-qtext);
  font-family: "Qanelas Soft", "Open Sans", sans-serif;
}

.type-two-quote .type-two-quote-meta {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 2px dotted var(--color-primary-qmeta);
  text-align: center;
}

.type-two-quote .type-two-quote-meta .type-two-quote-author,
.type-two-quote .type-two-quote-meta .type-two-quote-source {
  color: var(--color-primary-qmeta);
}

.type-two-quote .type-two-quote-meta .type-two-quote-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.type-two-quote .type-two-quote-meta .type-two-quote-author cite {
  font-style: normal;
}

.type-two-quote .type-two-quote-meta .type-two-quote-source {
  font-size: 9pt;
}

@media screen and (max-width: 768px) {
  .type-two-quote .type-two-quote-base {
    padding-left: 30px;
  }
}
/* ========== Type Three ========== */
.type-three-quote {
  position: relative;
  min-height: 250px;
  border-radius: 10px;
  box-shadow: var(--box-shadow-primary-quotes);
}

.type-three-quote .type-three-quote-base {
  background: linear-gradient(250deg, rgb(71, 126, 150) 0%, rgb(0, 179, 159) 35%, rgb(60, 73, 79) 100%);
  color: #ffffff;
  font-weight: bold;
  padding: 60px;
  border-radius: 10px;
}

.type-three-quote .type-three-quote-meta {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dotted #ffffff;
}

.type-three-quote .type-three-quote-meta .type-three-quote-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.type-three-quote .type-three-quote-meta .type-three-quote-author cite {
  font-style: normal;
}

.type-three-quote .type-three-quote-meta .type-three-quote-source {
  font-size: 10pt;
}

.type-three-quote .type-three-quote-qmark {
  position: absolute;
  top: 125px;
  right: 5px;
  font-size: 280pt;
  color: #ffffff;
  opacity: 0.18;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 28px;
}

.type-three-quote .type-three-quote-userpic {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}
.type-three-quote .type-three-quote-userpic img {
  border-radius: 50%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .type-three-quote .type-three-quote-base {
    padding-left: 40px;
    padding-right: 40px;
  }
  .type-three-quote .type-three-quote-meta {
    flex-direction: column;
    text-align: center;
  }
  .type-three-quote .type-three-quote-meta .type-three-quote-userpic {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.video-box {
  width: 100%;
  margin: auto;
  position: relative;
}

.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#00D3A9 0%, #00B39F 100%);
  box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
  position: absolute;
  top: 19px;
  right: -21px;
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #00B39F;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #00B39F;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #00B39F;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #00B39F;
}

#meshkit-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-left,
.hero-right {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
}

.hero-left {
  margin-left: -16%;
}

.hero-right {
  width: 100%;
  margin-left: 20%;
}

.hero-left-mobile,
.hero-right-mobile {
  display: none;
}

.brand-kit {
  width: 60%;
  z-index: 5; /* Make sure this layer is above the background images */
  padding: 5%;
}

.brand-kit h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.download-button {
  background-color: #ebc017;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  padding-bottom: 15px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: 450ms all;
  transition: 450ms all;
  text-decoration: none;
  text-transform: capitalize;
}

.download-button:hover,
.download-button:focus {
  background-color: #ebc017;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.download-button:active {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
  transform: scale(0.98);
  background-color: #ebc017;
}

.content-body {
  padding: 50px 0px;
}

.content-body-section {
  display: flex;
  flex-direction: column;
}

.content-body-section h1,
.content-body-section h2 {
  text-align: left;
}

.content-body-section h2 {
  margin-top: 0rem !important;
  font-size: 1.5rem;
}

.content-body-section p {
  margin-bottom: 1rem;
}

.content-body-section img {
  width: 85%;
  align-self: center;
}

.content-body-section .download-button-wrapper {
  align-self: end;
  margin-top: 2rem;
}

.nav-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  margin-left: 2rem;
  border-radius: 5px; /* Rounded corners as per the image */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 1rem; /* Padding inside the navbar */
  padding-top: 0;
  min-height: max-content;
  min-width: max-content;
  background: var(--background-nav-fixed);
  color: var(--color-nav-fixed);
  font-size: 15px;
  height: 100%;
}

.nav-fixed p {
  font-size: 1rem;
  margin-bottom: 0px !important;
}

.header-link {
  display: block;
  color: var(--color-nav-fixed);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem; /* Space between links */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s; /* Smooth transition for hover effect */
  font-size: 1.1rem;
}

.header-link:hover,
.header-link:focus {
  color: #00b39f; /* Color when link is hovered or focused */
  text-decoration: none; /* Ensure underline doesn't re-appear on hover */
}

.logo-container {
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0;
}

.logo-container-img1 {
  flex: 1;
  height: 70%;
  border-right: 2px solid #3d4f57;
  padding: 30px;
}

.logo-container-img2 {
  flex: 2;
  width: 70%;
  padding: 20px;
}

.mobile-image {
  display: none;
}

.color-palette {
  width: 100%;
  display: flex;
  color: white;
  gap: 1rem; /* space between color boxes */
  margin-top: 2rem; /* space above the color palette */
  flex-wrap: wrap; /* Allow color boxes to wrap */
  justify-content: center; /* Distribute items evenly */
  align-items: center;
}

.color-box {
  width: 165px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
}

.color-name {
  margin-top: 0.5rem;
  font-weight: bold;
}

.color-code {
  font-size: 0.8rem;
}

@media (max-width: 1020px) {
  .nav-fixed {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  #meshkit-hero {
    height: 400px;
  }
  .hero-left,
  .hero-right {
    display: none;
  }
  .hero-left-mobile,
  .hero-right-mobile {
    position: absolute;
    top: 0;
    margin-top: 0;
  }
  .hero-left-mobile {
    position: absolute;
    display: flex;
    margin-left: -170rem;
  }
  .hero-right-mobile {
    display: flex;
    width: 100%;
    margin-left: -11rem;
  }
  .brand-kit {
    width: 100%;
    text-align: center; /* Center align the text for mobile */
    padding: 5%;
  }
  .brand-kit h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .download-button-wrapper {
    width: 100%;
    margin-left: 0;
  }
  .download-button {
    width: 100%;
    margin-left: 0;
  }
  .content-body-section img {
    display: none;
  }
  .content-body-section .mobile-image {
    display: block;
    width: 100%;
  }
  .logo-container {
    flex-direction: column;
    align-items: center;
  }
  .logo-container img {
    display: block;
  }
  .logo-container-img2 {
    width: 100%;
    border-top: 2px solid #3d4f57;
    border-left: none;
    padding: 20px 0;
  }
  .logo-container-img1 {
    border-right: none;
    width: 50% !important;
    height: 70%;
    padding: 2rem 0px;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 1em;
  }
  .brand-kit h1 {
    font-size: 2em;
  }
}
.sitewide-banner {
  overflow-y: hidden;
  position: relative;
  animation: animatetop 0.8s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: var(--color-secondary-dark);
  flex-wrap: wrap;
  padding: 0.8rem 1.1rem;
  background-color: var(--brand-color-secondary);
  font-size: 1.05rem;
  align-items: center;
}
.sitewide-banner p {
  padding: 0rem;
  margin: 0rem;
}
.sitewide-banner a {
  display: flex;
  color: white;
  margin-right: 2rem;
  margin-left: 2rem;
  padding: 0.9rem;
  border-radius: 1rem;
  border: 1px white solid;
}
.sitewide-banner a:hover {
  background-color: white;
  color: var(--brand-color-secondary);
}
@media (max-width: 960px) {
  .sitewide-banner {
    font-size: 0.9rem;
    text-align: center;
    text-wrap: wrap;
    padding: 0.5rem 0.75rem;
  }
  .sitewide-banner a {
    margin-top: 0.75rem;
    padding: 0.5rem;
  }
  .sitewide-banner p {
    margin: 0.5rem;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.sitewide-banner.hidden {
  max-height: 0;
}

@font-face {
  font-family: "Qanelas Soft Black";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftBlack.otf") format("opentype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Black Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftBlackItalic.otf") format("opentype");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Heavy";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftHeavy.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Heavy Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftHeavyItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft ExtraBold";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftExtraBold.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft ExtraBold Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftExtraBoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Bold";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftBold.otf") format("opentype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Bold Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftBoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftSemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft SemiBold Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftSemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Medium";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftMedium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Medium Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftMediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Regular Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftRegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Light";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftLight.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Light Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftLightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft UltraLight";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftUltraLight.otf") format("opentype");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft UltraLight Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftUltraLightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Thin";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftThin.otf") format("opentype");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Qanelas Soft Thin Italic";
  src: url("../assets/fonts/qanelas-soft/QanelasSoftThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
.handbook {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0 3rem 0;
}
.handbook .card {
  position: relative;
  width: 300px;
  height: 175px;
  background: var(--background-light-cards);
  border-radius: 10px;
  padding: 16px 14px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand-color-primary) 20%, transparent), 0 4px 10px color-mix(in srgb, var(--brand-color-secondary) 10%, transparent), 0 0 6px var(--brand-color-secondary-50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.handbook .card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 4px;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--brand-color-secondary);
  transition: color 0.3s ease;
}
.handbook .card p {
  font-size: 17px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.handbook .card .read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-color-primary);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  align-self: flex-end;
}
.handbook .card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--brand-color-primary), 0 6px 16px color-mix(in srgb, var(--brand-color-secondary) 20%, transparent), 0 0 14px var(--brand-color-secondary-50);
}
.handbook .card:hover .read-more {
  opacity: 1;
  transform: translateX(0);
}

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