::root {
  --text-color: #191919;
  --heading-color: #000000;
  --background-color: #fff;
  --footer-link-color: #999;
}

* {
  box-sizing: border-box;
}

.page-theme--light {
  --text-color: #191919;
  --heading-color: #000000;
  --background-color: #fefffb;
  --detail-color: #4F4F4F;
  --slide-background-color: #fefffb;
}

.page-theme--dark {
  --text-accent-color: #fff;
  --text-color: #F2F2F2;
  --heading-color: #BDBDBD;
  --background-color: #000;
  --caption-color: #010000;
  --detail-color: #828282;
  --slide-background-color: #121117;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  color: var(--heading-color);
}

.footer-banner h2 {
  color: var(--heading-color);
  margin: 0;
  margin-block-end: 34px;
}
.footer-banner p {
  color: var(--text-color);
  margin: 0;
  margin-block-end: 24px;
}
.footer-banner .footer-banner__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  margin-block: 120px 108px;
}
.footer-banner .footer-banner__inner a {
  text-decoration: none;
  color: inherit;
}
.footer-banner .footer-banner__inner p.cta {
  font-weight: 600;
}
.footer-banner .footer-banner__inner .newsletter-signup-form div {
  display: flex;
}
.footer-banner .footer-banner__inner .newsletter-signup-form input {
  width: 367px;
  height: 84px;
  border-radius: 40px;
  background: #EEE;
  border: none;
  outline: none;
  padding-inline: 40px;
  margin-right: 14px;
}
.footer-banner .footer-banner__inner .newsletter-signup-form input::placeholder {
  color: #282828;
  font-family: "Open Sans", "Work Sans", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 42px;
}
.footer-banner .footer-banner__inner .col-1, .footer-banner .footer-banner__inner .col-2 {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 42px;
}
@media (min-width: 900px) {
  .footer-banner .footer-banner__inner .col-1 {
    grid-column: 1/7;
    grid-row: 1/2;
  }
  .footer-banner .footer-banner__inner .col-2 {
    grid-column: 7/13;
    grid-row: 1/2;
  }
}
@media (min-width: 1200px) {
  .footer-banner .footer-banner__inner .col-1 {
    grid-column: 1/6;
    grid-row: 1/2;
  }
  .footer-banner .footer-banner__inner .col-2 {
    grid-column: 8/13;
    grid-row: 1/2;
  }
}

.ms-auto {
  margin-inline-start: auto;
}

.me-auto {
  margin-inline-start: auto;
}

.mx-auto {
  margin-inline: auto;
}

.uppercase {
  text-transform: uppercase;
}

.downcase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.bttn {
  padding: 12px 17.87px 11px 16px;
  color: var(--text-color, inherit);
  border: 1px solid currentColor;
  border-radius: 2rem;
}
.bttn span {
  margin-left: 16px;
}
.bttn.filled {
  color: var(--background-color);
  background-color: var(--text-color);
}

.spacer-80 {
  height: 80px;
}

.mt-24 {
  margin-block-start: 24px;
}

.mt-80 {
  margin-block-start: 80px;
}

.mt-110 {
  margin-block-start: 110px;
}

.mb-20 {
  margin-block-end: 20px;
}

.mb-21 {
  margin-block-end: 21px;
}

.mb-24 {
  margin-block-end: 24px;
}

.mb-40 {
  margin-block-end: 40px;
}

.mb-60 {
  margin-block-end: 60px;
}

.mb-74 {
  margin-block-end: 74px;
}

.mb-80 {
  margin-block-end: 80px;
}

.mb-110 {
  margin-block-end: 110px;
}

.mb-104 {
  margin-block-end: 104;
}

.mb-120 {
  margin-block-end: 120px;
}

.mb-122 {
  margin-block-end: 122px;
}

.animate_children .el {
  opacity: 0;
}

.animated {
  animation-duration: 250ms;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.delay-01 {
  animation-delay: 0.1s;
}

.delay-02 {
  animation-delay: 0.2s;
}

.delay-03 {
  animation-delay: 0.3s;
}

.delay-04 {
  animation-delay: 0.4s;
}

.delay-05 {
  animation-delay: 0.5s;
}

.delay-06 {
  animation-delay: 0.6s;
}

.delay-07 {
  animation-delay: 0.7s;
}

.delay-08 {
  animation-delay: 0.8s;
}

.delay-09 {
  animation-delay: 0.9s;
}

.delay-10 {
  animation-delay: 1s;
}

.duration-05 {
  animation-duration: 300ms;
}

.duration-10 {
  animation-duration: 400ms;
}

.duration-15 {
  animation-duration: 500ms;
}

.duration-20 {
  animation-duration: 600ms;
}

.duration-25 {
  animation-duration: 700ms;
}

.duration-30 {
  animation-duration: 800s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpFull {
  from {
    opacity: 1;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpFull {
  animation-name: fadeInUpFull;
}

@keyframes fadeInUpLarge {
  from {
    opacity: 1;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpLarge {
  animation-name: fadeInUpLarge;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

body {
  font-family: "Work Sans", sans-serif;
}

p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  margin-block-start: 0;
  margin-block-end: 36px;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.26px;
  margin-block-start: 0;
  margin-block-end: 16px;
}

h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.74px;
  margin-block-start: 0;
  margin-block-end: 16px;
}

.bttn {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-transform: lowercase;
  text-decoration: none;
}

ul {
  margin-block-end: 80px;
}
ul li {
  letter-spacing: -1%;
  font-size: 18px;
  line-height: 150%;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

@media screen and (min-width: 680px) {
  .md--flex-row-reverse {
    flex-direction: row-reverse;
  }
}

#site-header {
  background-color: var(--background-color);
  padding-block: 60px 36px;
  z-index: 999;
}
#site-header ul {
  margin: 0;
}
#site-header.site-header--fixed {
  display: none;
  opacity: 0;
  background-color: var(--background-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
  pointer-events: none;
}
#site-header.site-header--fixed nav {
  transform: translate3d(0, -120px, 0);
  width: 100%;
  z-index: 100;
  transition: all 200ms ease-in-out;
}
#site-header.site-header--fixed.active {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 1;
  pointer-events: inherit;
  z-index: 1000;
}
#site-header.site-header--fixed.active nav {
  transform: translate3d(0, 0, 0);
}
#site-header nav ul {
  list-style: none;
  padding-left: 0;
}
#site-header nav ul li {
  margin-inline-start: 58px;
}
#site-header nav ul li:first-child {
  margin-inline: 0 auto;
}
#site-header nav ul li a {
  font-size: 14px;
  padding-block: 7px;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
}
#site-header nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  left: 0;
  bottom: -7px;
  height: 1px;
  background-color: var(--text-color);
  transition: width 200ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
#site-header nav ul li a.is-active::after {
  width: 100%;
}
#site-header nav ul li a:hover::after {
  width: 100%;
}
#site-header #site-logo a {
  display: flex;
  align-items: center;
}
#site-header #site-logo a span {
  margin-right: 8.5px;
  display: flex;
}

footer {
  padding-block: 20px 86px;
  background-color: var(--background-color);
  color: var(--text-color);
}
footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding-inline-start: 0;
}
footer ul li {
  margin-inline: 30px;
}
footer ul li a {
  color: var(--detail-color, inherit);
  text-decoration: none;
}

.work-section {
  --min-height: 832px;
  --max-width: 1140px;
  --gutter: 20px;
  --content-width: 657px;
  --cover-width: 463px;
  background-color: var(--background-color);
}
.work-section h2 {
  color: var(--heading-color);
}
.work-section p, .work-section a {
  color: var(--text-color);
}
.work-section .caption {
  color: var(--caption-color);
}
.work-section .detail {
  color: var(--detail-color);
}
.work-section.featured .work-section__inner {
  min-height: 586px;
}
.work-section:not(.featured) .work-section__inner {
  min-height: var(--min-height);
}
@media (min-width: 1422px) {
  .work-section.upgrad .cover img {
    max-width: 604.2px;
    transform: translateX(calc(604.2px - var(--cover-width)));
  }
}
.work-section .work-section__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}
.work-section .work-section__inner .cover,
.work-section .work-section__inner .content {
  grid-column: 1/13;
  margin-block: 1rem;
}
.work-section .work-section__inner .cover {
  text-align: center;
  grid-row: 2/3;
}
.work-section .work-section__inner .content {
  grid-row: 1/2;
}
.work-section .work-section__inner .content p {
  margin-block: 0;
}
.work-section .work-section__inner .content .content__header {
  margin-block-end: 19px;
}
.work-section .work-section__inner .content .content__body {
  min-height: 320px;
  margin-block-end: 36px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (min-width: 900px) {
  .work-section .work-section__inner {
    grid-template-rows: 1fr;
    text-align: left;
  }
  .work-section .work-section__inner .cover {
    justify-self: end;
    grid-column: 7/13;
    grid-row: 1/2;
  }
  .work-section .work-section__inner .content {
    grid-column: 1/6;
    grid-row: 1/2;
  }
}
@media (min-width: 900px) {
  .work-section .work-section__inner .cover {
    grid-column: 8/13;
  }
  .work-section .work-section__inner .content {
    grid-column: 1/7;
  }
}
@media (min-width: 1200px) {
  .work-section.featured .work-section__inner .content {
    grid-column: 1/8;
  }
}

.blog-section {
  --min-height: 832px;
  --max-width: 1140px;
  --gutter: 20px;
  --content-width: 657px;
  --cover-width: 463px;
  background-color: var(--background-color);
}
.blog-section h2 {
  color: var(--heading-color);
}
.blog-section p,
.blog-section a {
  color: var(--text-color);
}
.blog-section .blog-section__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  place-items: center;
  padding-block: 90px;
}
.blog-section .blog-section__inner .cover,
.blog-section .blog-section__inner .content {
  grid-column: 1/-1;
}
.blog-section .blog-section__inner .cover {
  text-align: center;
}
.blog-section .blog-section__inner .content p {
  margin-block: 0;
}
.blog-section .blog-section__inner .content .content__header {
  margin-block-end: 24px;
}
.blog-section .blog-section__inner .content .content__body {
  margin-block-end: 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (min-width: 900px) {
  .blog-section .blog-section__inner {
    grid-template-rows: 1fr;
  }
  .blog-section .blog-section__inner .cover {
    text-align: left;
    justify-self: end;
    grid-column: 1/6;
    grid-row: 1/2;
  }
  .blog-section .blog-section__inner .content {
    grid-column: 7/13;
    grid-row: 1/2;
  }
}
@media (min-width: 1200px) {
  .blog-section.reverse-columns .blog-section__inner .content {
    grid-column: 1/7;
  }
  .blog-section.reverse-columns .blog-section__inner .cover {
    grid-column: 8/13;
  }
}
.blog-section .bttn {
  font-size: 20px;
  letter-spacing: -0.5px;
  padding: 8px 16px;
}
.blog-section .bttn span {
  width: 12px;
  height: 12px;
  display: inline-block;
}
.blog-section .bttn span svg {
  max-width: 100%;
}

.about-section {
  --text-color: #828282;
  padding-block: 128px 96px;
  background-color: var(--background-color);
  color: var(--text-color);
}
.about-section .container {
  max-width: 794px;
}
.about-section h2 {
  margin-block-end: 32px;
}
.about-section h4 {
  color: var(--text-accent-color);
}
.about-section a {
  color: inherit;
}
.about-section figure {
  padding-block-start: 24px;
  margin-block-end: 64px;
}

.selected-blogs-section {
  padding-block-end: 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}
.selected-blogs-section h2 {
  color: var(--heading-color);
  font-size: 32px;
  letter-spacing: -1.263px;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 16px;
}
.selected-blogs-section p {
  font-size: 14px;
  line-height: 23px;
  margin: 0;
  margin-bottom: 42px;
}
.selected-blogs-section ul {
  margin: 0;
  list-style: none;
}
.selected-blogs-section .blog-slides {
  display: flex;
  background-color: var(--background-color);
  margin-block: 0;
}
@media (max-width: 780px) {
  .selected-blogs-section .blog-slides {
    display: none;
  }
}
.selected-blogs-section .blog-slides .blog-slide__item {
  min-width: 500px;
  width: 890px;
  max-width: 890px;
  border-radius: 12px;
  padding-block: 36px 40px;
  border: 1px solid #252429;
  background-color: #121117;
  box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.2);
  margin-inline: 31px;
}
.selected-blogs-section .blog-slides .blog-slide__item .cover {
  margin-bottom: 20px;
  height: 356px;
}
.selected-blogs-section .blog-slides .blog-slide__item .cover img {
  max-width: 100%;
  margin-inline: auto;
}
.selected-blogs-section .blog-slides .blog-slide__item .container {
  max-width: 550px;
}
.selected-blogs-section .blog-slides .blog-slide__item .bttn {
  font-size: 16px;
  padding: 8px 16px;
  letter-spacing: -0.5px;
}
.selected-blogs-section .blog-slides .blog-slide__item .bttn span {
  margin-inline-start: 8px;
}

.work-page {
  background-color: var(--background-color);
  color: var(--text-color);
}
.work-page .container--sm {
  max-width: 794px;
  margin-inline: auto;
  padding-inline: 20px;
}
.work-page p:not(:last-child) {
  margin-block: 0 24px;
}
.work-page .detail {
  color: var(--detail-color);
  font-family: Space Grotesk;
  font-size: 20px;
  font-weight: 500;
  margin-block-end: 24px;
}
.work-page .work-slider-wrapper .flickity-button {
  background: none;
  border: none;
  outline: none;
  opacity: 0.3;
}
.work-page .work-slider-wrapper .flickity-button:focus {
  outline: none;
  box-shadow: none;
}
.work-page .work-slider-wrapper .flickity-prev-next-button .flickity-button-icon {
  display: none;
}
.work-page .work-slider-wrapper .flickity-prev-next-button.next::before {
  content: url("/assets/images/shared/slider-right-arrow.svg");
  height: 40px;
  width: 40px;
}
.work-page .work-slider-wrapper .flickity-prev-next-button.previous::before {
  content: url("/assets/images/shared/slider-left-arrow.svg");
  height: 40px;
  width: 40px;
}
.work-page .work-slider-wrapper .work-slider {
  list-style: none;
  padding-inline-start: 0;
}
.work-page .work-slider-wrapper .work-slider .item {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-page .work-slider-wrapper .work-slider li {
  list-style: none;
}
.work-page .work-slider-wrapper .work-slider .item__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.work-page .work-slider-wrapper .work-slider .item__inner img {
  max-width: 764px;
}
.work-page .work-slider-wrapper .work-slider .item__inner figcaption {
  justify-self: end;
  max-inline-size: 764px;
  padding-inline: 20px;
}

.selected-works-section {
  background-color: var(--background-color);
  color: var(--text-color);
}
.selected-works-section .container--sm {
  max-width: 794px;
  margin-inline: auto;
  padding-inline: 20px;
}

.work-slides {
  display: flex;
  margin-block: 0;
  padding-inline-start: 0;
}
@media (max-width: 780px) {
  .work-slides {
    display: none;
  }
}
.work-slides .work-slide__item {
  min-height: 670px;
  max-width: 890px;
  min-width: 500px;
  border-radius: 12px;
  padding-block: 36px 40px;
  border: 1px solid #252429;
  background-color: var(--slide-background-color);
  color: var(--text-color);
  box-shadow: 0px 20px 40px -20px rgba(0, 0, 0, 0.2);
  border: 0.797px solid rgba(0, 0, 0, 0.12);
  margin-inline: 31px;
}
.work-slides .work-slide__item h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.work-slides .work-slide__item p {
  font-size: 14px;
}
.work-slides .work-slide__item .cover {
  margin-bottom: 20px;
}
.work-slides .work-slide__item .cover img {
  margin-inline: auto;
  height: 356px;
}
.work-slides .work-slide__item .container {
  max-width: 550px;
}
.work-slides .work-slide__item .bttn {
  font-size: 16px;
  padding: 8px 16px;
  letter-spacing: -0.5px;
}
.work-slides .work-slide__item .bttn span {
  margin-inline-start: 8px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1;
  grid-gap: 20px;
}
@media (min-width: 740px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 232px 232px;
  }
}
.results-grid .grid-item {
  background-color: var(--slide-background-color);
  padding: 36px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  min-height: 232px;
  border: 0.797px solid rgba(0, 0, 0, 0.12);
}
.results-grid .grid-item p {
  letter-spacing: -1.26px;
  font-size: 16px;
  margin-block: 0;
  line-height: normal;
  max-inline-size: 234px;
}

.project-meta-grid > div {
  margin-block-end: 16px;
}
.project-meta-grid h5, .project-meta-grid p {
  font-size: 18px;
  line-height: 144%;
  margin-block: 0;
  color: var(--detail-color);
}
.project-meta-grid h5 {
  font-weight: 700;
}
@media (min-width: 600px) {
  .project-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media (min-width: 960px) {
  .project-meta-grid {
    grid-template-columns: 2fr 4fr 2fr;
  }
}

.paywall {
  position: fixed;
  inset: 0;
  top: 100px;
  background: linear-gradient(to bottom, transparent 0, transparent 50%, #fff 50%, #fff);
  z-index: 900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.paywall footer {
  width: 100%;
  background-color: transparent;
}
.paywall footer #paywall-form {
  max-width: 350px;
  margin-inline: auto;
}
.paywall footer #paywall-form > * {
  margin-block: 1rem;
}
.paywall footer #paywall-form input {
  width: 100%;
  height: 84px;
  border-radius: 40px;
  background: #EEE;
  border: none;
  outline: none;
  padding-inline: 40px;
}
.paywall footer #paywall-form input::placeholder {
  color: #282828;
  font-family: "Open Sans", "Work Sans", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 42px;
}
.paywall footer #paywall-form button {
  width: 100%;
  height: 84px;
  border-radius: 40px;
  background: #333;
  color: #fff;
  border: none;
  outline: none;
  padding-inline: 40px;
  margin-right: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

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