* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;

  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;

  --color-brand-yellow: #FFF100;
  --color-gray-dark: #414042;
  --color-gray-light: #C2C4C6;
  --color-gray-lightish: #00000033;
  --color-gray-medimum: #6B7378;
  --color-orange: #FFA800;
  --color-purple: #7647B1;

  --color-light: #efefef;
  --color-text: var(--color-gray-medimum);
  --color-text-grey: var(--color-gray-medimum);
  --color-background: var(--color-white);

  --mid-res: 60rem;
  --large-res: 68rem;
  --large-res-width: 66rem;
  --x-large-res: 80rem;
  --x-large-res-width: 76rem;

  --font-family-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-heading: 'Ubuntu', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-size: 18px;
  width: 100%;
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  width: 100%;
  height: auto;
}
body {
  margin: 0;
  box-sizing: border-box;
}

.container {
  /*width: 100%;*/
  padding: var(--padding);
  /*padding-right: var(--padding);*/
  /*padding-left: var(--padding);*/
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.block {
  /*padding: var(--padding);*/
  flex: 0 0 auto;
  width: 100%;
}



@media (min-width: 880px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 1200px){
  .container {
    max-width: 1140px;
  }
}


li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-right: -1rem;
  margin-left: -1rem; */
  /*margin-bottom: 6rem;*/
}
header.h1 {
  margin-bottom: 1.5rem;
}

.logo {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}


header.header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  letter-spacing: 3px;
}


.navlink a {
  text-decoration: none;
}

/*@media screen and (max-width: 678px) {*/
  .burger {
    font-size: 1.2em;
    display: block;
  }
  .nav {
    margin: 0;
    background: white;
    position: absolute;
    right: -100%;
    top: 70px;
    width: 50%;
    /*height: calc(100% - 70px);*/
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
    transition: all 400ms;
    display: none;
  }
  .navlink {
    text-align: center;
    list-style: none;
    margin: 0.5rem;
  }

  .nav-active {
    right: 0;
    display: block;
    z-index: 100;
  }
/*}*/

@media screen and (max-width: 678px) {
  .nav label.has-sub {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .nav {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
  }
  ul.nav li a, ul.nav li label {
    font-size: 20px;
  }
  
}

@media screen and (min-width: 1200px) {

  .nav {
    display: flex;
    justify-content: space-around;
    /*width: 30%;*/
    background: white;

    position: relative;
    right: 0;
    top: 0;
    width: auto;
    height: initial;
    flex-direction: row;
    gap: 32px;
  }

  .navlink {
    list-style: none;

  }

  .navlink a {
    text-decoration: none;
    /*font-size: 1.2em;*/
  }

  .burger {
    font-size: 1.2em;
    display: none;
  }
}

/*.menu {*/
/*  display: flex;*/
/*}*/
/*.menu a {*/
/*  padding: 1rem;*/
/*  display: block;*/
/*}*/
/*.menu a:last-child {*/
/*  padding-right: 0;*/
/*}*/

/*.menu a[aria-current] {*/
/*  text-decoration: underline;*/
/*}*/

.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
/*.grid > .column {*/
/*  margin-bottom: var(--gutter);*/
/*}*/

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  color: var(--color-gray-dark);
  font-family: var(--font-family-heading);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-rendering: geometricprecision;
}

.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: none;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}


.heading {
  background-image: url("/assets/img/banner-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.text h1,
.h1,
.intro {
  font-size: 1.45rem;
  /*margin-bottom: 3rem;*/
  line-height: 1.15em;
}

.text h2,
.h2 {
  font-size: 1.25rem;
  /*font-weight: 600;*/
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 500;
  /*font-weight: 600;*/
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}
.space-between {
  display: flex;
  justify-content: space-between;
}

/*.intro {*/
/*  max-width: 40rem;*/
/*}*/
/*.intro *:not(:last-child) {*/
/*  margin-bottom: 1em;*/
/*}*/

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

/*.box {*/
/*  background: var(--color-light);*/
/*  padding: 1.5rem;*/
/*  border: 4px solid var(--color-white);*/
/*  outline: 2px solid var(--color-light);*/
/*}*/

.video,
.img {
  position: relative;
  display: block;
  /*--w: 1;*/
  /*--h: 1;*/
  /*padding-bottom: calc(100% / var(--w) * var(--h));*/
  /*background: var(--color-black);*/
}
/*.img img,*/
/*.video iframe {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  border: 0;*/
/*}*/
/*.img[data-contain] img {*/
/*  object-fit: contain;*/
/*}*/
/*.img-caption,*/
/*.video-caption {*/
/*  padding-top: .75rem;*/
/*  line-height: 1.5em;*/
/*}*/
.main-logo {
  width: 61px;
  height: 72px;
}

.banner {
  /*width: 100%;*/
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 31.76%;
}
.banner .h1, .banner h1 {
  bottom: 34px;
  position: relative;
  left: 3%; /*3rem;*/
  color: white;
  font-size: 34px; /*3.4rem;*/
  font-weight: 500;
  line-height: 42px;
}

.h2,
.services h2{
  font-size: 28px; /*2rem;*/

}

/*.services .column:before {*/
/*  content: url("/assets/icons/icon-example.png");*/
/*}*/

.services .column {
  /*border-left: 2px solid #FFA800;*/
  padding: 1rem 0 1rem 0rem;
}
.services .grid:first-child .column {
  border: none;
  padding: 0;
}

.box-card {
  background-color: white;
  box-shadow: 0px 0px 11px 5px rgba(107, 115, 120, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.box-35, .box-25, .box-20 {
  padding: 1rem;
  text-align: center;
color: #7647B1;

}
/*
.box-35 p, .box-20 p {
  border: 1px solid;
  border-radius: 8px;
  padding: 10px;

}*/
.box-25 p {
  font-size: 26px;
  font-weight: 600;
  color: #414042;
}
.box-icon {
  width: 67px;
  height: 67px;
  margin: 40px 0 20px;
}

@media screen and (min-width: 68rem) {
  .box-card {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }


  .box-35 {
    width: 34%;
  }
  .box-25{
    width: 25%;
    background-color: #FFF100;
  }
  .box-20 {
    width: 20%;
  }



}




footer {
  background-color: var(--color-gray-medimum);
  color: white;
}
footer i {
  font-size: 1.4em;
}
.footer {
  background-color: var(--color-gray-medimum);
  padding: 1rem 0 0;
  line-height: 1.5em;
}

.footer .icon {
  margin-right: 1rem;

}
.copy {
  background-color: var(--color-gray-dark);
}
/*.footer:before {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 1.5rem;*/
/*  height: 2px;*/
/*  background: var(--color-black);*/
/*  margin-bottom: 1.5rem;*/
/*}*/

.footer h2 {
  color: white;
  font-weight: 500;
  margin-bottom: .75rem;
}
/*.footer ul,*/
/*.footer p {*/
/*  color: var(--color-text-grey);*/
/*}*/
/*.footer p {*/
/*  max-width: 15rem;*/
/*}*/
/*.footer a:hover {*/
/*  color: var(--color-text);*/
/*}*/

.justify-end {
  display: flex;
  justify-content: flex-end;
}

img.sm-logo {
  width: 50px;
  height: 50px;
}

/*.map {*/
/*  --w: 2;*/
/*  --h: 1;*/
/*  padding-bottom: calc(100% / var(--w) * var(--h));*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  background: var(--color-black);*/
/*}*/
/*.map iframe {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  border: 0;*/
/*}*/

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 880px) {
  /*body {*/
  /*  --padding: 3rem;*/
  /*}*/

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: block;
  padding-top: 6rem;
  text-align: center;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}

.footer-total-card {
  border: 1px solid;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.footer-total-card .body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.v-center {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

@media screen and (min-width: 880px) {
  .services .text ul, .services .text ol {
    column-count: 2;
    max-width: 50%;
    margin-left: 0;

  }

  h1.note-title {font-size: 3.375rem;}


  .text h1,
  .h1,
  .intro {
    font-size: 2rem;
    /*margin-bottom: 3rem;*/
    line-height: 1.25em;
  }

  .text h2,
  .h2 {
    font-size: 1.25rem;
    /*font-weight: 600;*/
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
  .text h3,
  .h3 {
    font-weight: 500;
    padding: 1rem 1rem 0.25rem 0;
    font-size: 1.2em;
    font-weight: bold;
    /*font-weight: 600;*/
  }

  .banner .h1, .banner h1 {
    bottom: 54px;
    position: relative;
    left: 3%; /*3rem;*/
    color: white;
    font-size: 54px; /*3.4rem;*/
    font-weight: 500;
    line-height: 62px;
  }

  .h2,
  .services h2{
    font-size: 34px; /*2rem;*/

  }


}

.card {
  box-shadow: 0px 0px 11px 5px rgba(107, 115, 120, 0.1);
  border-radius: 16px;
  overflow: hidden;

  text-align: center;
}
.card.left {
  text-align: initial;

}
.card.left h3{
  padding: 1rem 1rem 0.25rem;
  font-size: 1.2em;
  font-weight: bold;
}
.card.left p {
  padding: 0.5rem 1rem;
}
.card.left strong {
  font-size: 0.9em;
  color: black;
  padding-bottom: 0.5rem;
}
.card .img-caption {
  padding: 1rem;
}
.project-power {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;

  padding-bottom: 1rem;
}

.btn-yellow {
  padding: 16px 48px;
  border-radius: 8px;
  background-color: #FFF100;
}
.vertical-gap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-weight: 700;
  /*color: black;*/
}

.project-details {
  margin: 1rem 0;
  /*font-size: 1.2em;*/
}
.project-details .group, .project-cards .group {
  display: inline-flex;
  align-items: center;
}

.slide {
  /*clear:both;*/
  width:auto;
  position: absolute;
  background: white;
  height:0;
  overflow: hidden;
  text-align: center;
  transition: height .4s ease;
  z-index: 1;
}

.slide li {
  padding: 0px;
}

#touch {
  position: absolute;
  opacity: 0;
  height: 0;
}

#touch:checked + .slide {
  height: auto;
  box-shadow: 0px 0px 11px 5px rgba(107, 115, 120, 0.1);
    margin-top: 10px;
    padding: 10px 20px;
}


/* New Styles */

.block.single-note-featured-img img {
  border-radius: 16px;
}

.container.single-note article.grid {
  margin: 96px 0;
}

.container.single-note nav.toc h2{
  margin-bottom: 24px;
  color: #414042
}

.container.single-note nav.toc ul li a{
  color: #6B7378;
  font-size: 16px;
}

.container.single-note nav.toc {
  margin-bottom: 48px;
}

.container.single-note .column.right p{
  margin-bottom: 3rem;
 
}

.container.single-note .column.right h1,
.container.single-note .column.right h2, 
.container.single-note .column.right h3{
  margin-bottom: 1rem;
  color: #414042
}
.container.single-note .column.right h2{
  font-size: 1.5rem;
}
.container.single-note p{
  color: #414042
}

.container.single-note .column.right img{
  border-radius: 16px;
}

.box-card .icon-card {
  display: flex;
  gap: 24px;
  align-items: center;
}

.box-icon {
  margin: 0;
}
.box-card .icon-card p{
  text-align: left;
  color: #6B7378;
  font-size: 1.125rem;
 
}
.box-card .icon-card span.animated {
  display: block;
  font-size: 1.5rem;
    font-weight: 600;
    color: #7647B1;
 
}

.box-25.bg-yellow p {
  text-align: left;
  color:  #414042;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.688rem; /* 150% */
  margin-bottom: 24px;
}


.services .grid.margin-l:first-of-type{
  margin-bottom: 0
}

.services {
  margin-top: 96px;
  margin-bottom: 48px;
}


.services .grid.margin-l .text p:first-of-type{
  border-bottom: 1px solid #FFA800;
  padding-bottom: 24px;
}

.notes {
  background: #F7F7F7;
  padding: 96px 0;
}

.box-card-wrap {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.box-card.box-card-left {
  width: 75%;
  padding-right: 20px;
  position: relative;
  padding-top: 30px;
}

.box-card.box-card-right {
  width: 25%;
  background: #fff100;
    display: block;
    padding-left: 10px;

}

.left-card-text {
  position: absolute;
  top: 20px;
  left: 46px;
}

.projects{
  margin-bottom: 90px;
}


.grid.project-cards .card.left h3,
.grid.project-cards .card.left p{
    padding: 0;
    margin: 0;
}

.grid.project-cards .project-detail {
    padding: 24px;
}

.grid.project-cards .card.left p.project-read-more {
  margin-top: 24px;
}

.grid.project-cards .project-detail h3 {
  margin-bottom: 12px !important;
}


.grid.project-cards {
  margin-top: 3rem;
}

.grid.notes-cards {
  margin: 3rem 0;
}

.grid.notes-cards .note-small-details *{
  margin: 0;
  padding: 0;
}

.grid.notes-cards .card {

  background-color: white;
}
.grid.notes-cards .note-small-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


p.small-notes-bottom {
  display: flex;
  justify-content: space-between;
  color: #414042;
  align-items: center;
}
p.small-notes-bottom .arrow-right{
  font-size: 32px;
}

ul.nav a,
ul.nav label{
    color: #6B7378;
    font-weight: 600;
    font-size: 16px;
}

img.arrow-down {
  width: 12px;
}

label.has-sub {
  display: flex;
  gap: 8px;
}


.container.news-page header.h1 {
  font-size: 3.375rem;
  margin-bottom: 3rem;
}

.container.news-page {
  margin-top: 6rem;
}

.column.cover-post img {
  border-radius: 16px;
}

.post-details {
  position: absolute;
  z-index: 99;
  padding: 32px;
  bottom: 0;
}

.column.cover-post {
  position: relative;
  margin-bottom: 4rem;
}

.post-details *{
  color: white;
}

.post-details h2{
  font-size: 2.125rem;
}

/* .cover-post-inner::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0, .3);
  width: 100%;
  height: 99%;
  left: 0;
} */

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 7px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  z-index: 1;
  border-radius: 15px;
}

.cover-post-inner {
  position: relative;
}

.bg-yellow .icon-card {
  align-items: flex-start;
}

@media all and (max-width: 640px){
  .box-card-wrap {
    flex-direction: column;
  }

  .box-card.box-card-left{
    width: 100%;
    padding-right: 0;
  }
  .box-card.box-card-right{
    width: 100%;
  }

  .post-details h2 {
    font-size: 1.2rem;
  }
}