@charset "UTF-8";
/* CSS Document */ :root {
  /* fonts */
  --font-headline: "Google Sans Flex", sans-serif;
  --font-body: "oso-serif", sans-serif;
  /* sizes */
  --site-max-width: 1440px;
  /* dark */
  --black-color-1: #000;
  --black-color-2: #0c0c0c;
  --black-color-3: #181818;
  --black-color-4: #242424;
  --black-color-5: #303030;
  --black-color-10: #666;
  /* light */
  --white-color-1: #fff;
  --white-color-2: #f9f9f9;
  --white-color-3: #f3f3f3;
  --white-color-4: #ededed;
  --white-color-5: #e7e7e7;
  /* border radius */
  --radius-1: 20px;
  --radius-2: 40px;
  /* client colors */
  --ogilvy-color: #fff;
  --westbourne-color: #016479;
  --geometry-color: #21cdbf;
  --mcsaatchi-color: #000;
  --rapp-color: #fff;
  --wpnc-color: #533282;
  --windmill-color: #d3011c;
  --svr-color: #944a40;
  /* client bg colors */
  --ogilvy-bgcolor: #eb3f43;
  --westbourne-bgcolor: #e1b666;
  --geometry-bgcolor: #0449c2;
  --mcsaatchi-bgcolor: #fef317;
  --rapp-bgcolor: #ff7000;
  --wpnc-bgcolor: #14e4d6;
  --windmill-bgcolor: #ffc1c9;
  --svr-bgcolor: #faf5eb;
  /* /////// accent-color /////// */
  --accent-color: #fbd340;
  /* /////// monthly-color ////// */
}
html {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  /*line-height: 20px;*/
  line-height: 1.2;
  font-weight: 300;
  font-style: normal;
  color: var(--black-color-2);
  background-color: var(--white-color-2);
  transition: background .5s ease-out;
}
a {
  text-decoration: none;
}
h1, .h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-headline);
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  font-variation-settings:
    "slnt"0, "wdth"100, "GRAD"0, "ROND"0;
}
h1, .h1 {
  font-size: 4rem;
}
h2, .h2 {
  font-size: 3rem;
}
h3, .h3, #nav-main li {
  font-size: 2rem;
}
h4, .h4 {
  font-size: 1.6rem;
}
h5, .h5 {
  font-size: 1.4rem;
}
h6, .h6, .card-title, .footer-title {
  font-size: 1.2rem;
}
p {
  padding-bottom: 1rem;
}
p.h2, p.h3, p.h4, p.h5, p.h6 {
  padding-bottom: 0.5rem;
}
.section-info p.h5 {
	padding-bottom: 1.5rem;
}
.section-info h1, .section-info p, .section-text.h3 {
  padding-right: 20%;
}
.terms-content {
  padding: 0 40px;
  margin-right: 20%;
}
.terms-content h2.effective-date {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.terms-content h3, .terms-content h4, .terms-content h5, .terms-content h6 {
  font-size: 1.4rem;
  text-transform: none;
  margin-bottom: 0.2rem;
}
.terms-content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.terms-content ul li {
  margin-bottom: 0.5rem;
}
strong {
  font-weight: 600;
}
.terms-content a {
  color: var(--black-color-2);
  font-weight: 600;
  background: linear-gradient(currentColor 0 0) bottom center/ var(--underline-width, 0%) 2px no-repeat;
  display: inline-block;
  padding-bottom: 0.2em;
  transition: background-size .4s ease-out;
}
.terms-content a:hover {
  --underline-width: 100%;
}
/* //////// GENERAL //////// */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fill img {
  object-fit: fill;
}
.crop-16-9 {
  aspect-ratio: 16 / 9;
}
.crop-2-3 {
  aspect-ratio: 2 / 3;
}
.crop-3-2 {
  aspect-ratio: 3 / 2;
}
.crop-9-16 {
  aspect-ratio: 9 / 16;
}
.crop-1-1 {
  aspect-ratio: 1 / 1;
}
.full-height {
  min-height: 100vh;
}
.img-card {
  aspect-ratio: 3 / 4;
  /*aspect-ratio: 2 / 3;*/
  overflow: hidden;
  border-radius: var(--radius-1);
  transition: all .4s ease-out;
}
.first-section-height {
  min-height: calc(80vh - 80px);
}
.content-centering {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scroll-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.shadow {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.container-curved-block {
  background-color: var(--white-color-1);
  padding: 4rem;
}
video {
  width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-1);
}
#show-reel .video-wrapper, #show-reel-full-popup .video-wrapper {
  aspect-ratio: 16 / 9;
}
/* //////// POPUP - MASK //////// */
.page-mask {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background-color: var(--black-color-1);
}
.video-wrapper {
  position: relative;
}
.page-mask .video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: var(--site-max-width);
}
.video-overlay-press {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.page-mask-close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.close-line-1, .close-line-2 {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--white-color-1);
}
.close-line-1 {
  transform: rotate(45deg);
}
.close-line-2 {
  transform: rotate(-45deg);
}
.section-info {
  padding-bottom: 2rem;
  /*padding-left: 10px;*/
}
.section-type {
  padding-bottom: 2rem;
}
.section-text {
  padding-bottom: 1.5rem;
}
.section-type.title-centered {
  text-align: center;
}
.card-arrow {
  width: 24px;
  margin-right: 10px;
  aspect-ratio: 1 / 1;
  background-image: url("../assets/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .4s ease-out;
}
.swiper-wrapper .card-arrow, .grid-wrapper .card-arrow, .row-card .card-arrow {
  background-image: url("../assets/icon-arrow-black.svg");
}
.story-card:hover .card-arrow /*, .row-card:hover .card-arrow*/ {
  margin-right: 0px;
}
.row-card .card-arrow {
  margin-right: 0px;
  width: 32px;
  height: 32px;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  line-height: 20px;
  height: 40px;
  font-family: var(--font-headline);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  background-color: var(--black-color-2);
  color: var(--white-color-2);
  font-weight: 400;
  transition: all .4s ease-out;
}
.button:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.web-external-link {
  position: relative;
}
.web-external-link span {
  display: none;
  padding: 10px 20px;
  border-radius: 20px;
  opacity: 0;
  position: absolute;
  top: -30px;
  left: 30px;
  background-color: var(--black-color-2);
  color: var(--white-color-2);
}
.web-external-link:hover span {
  opacity: 1;
  display: block;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.8s ease forwards;
}
footer .button {
  background-color: var(--white-color-2);
  color: var(--black-color-2);
}
/* //////// HEADER //////// */
header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
}
.loading-header header {
  height: 80px;
  transition: height .5s ease-out;
}
.loading-header-complete header {
  height: 80px;
}
.loading-header-complete .logo-wrapper {
  position: fixed;
  top: 40px;
}
.logo-wrapper {
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /*max-width: var(--site-max-width);*/
  height: 80px;
  display: flex;
  justify-content: center;
  align-content: space-between;
  align-items: flex-start;
}
.logo {
  color: var(--black-color-1);
  font-size: 60px;
  line-height: 60px;
  padding-top: 11px;
  transition: color .4s ease-out;
}
#logo-text-left, #logo-text-right {
  height: 80px;
  transition: all .4s ease-out;
  position: absolute;
  top: 0;
  width: 100px;
}
#logo-text-left {
  text-align: right;
  left: -105px;
}
#logo-text-right {
  text-align: left;
  right: -105px;
  letter-spacing: -0.25rem;
}
#nav-toogle-link {
  position: absolute;
  z-index: 100;
  cursor: pointer;
  top: 0;
  right: 0;
  left: 0;
  bottom: -10px;
  padding-top: 15px;
}
#menu-text {
  opacity: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-headline);
  transition: all .4s ease-out;
}
.loading-header-complete #menu-text {
  opacity: 1;
}
.inner-padding {
  width: 100%;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

#logo-dash {
  position: relative;
  width: 80px;
  height: 40px;
  background-color: var(--white-color-2);
  transition: all .5s ease-in-out;
  max-width: calc(var(--site-max-width) - 210px);
}
#logo-dash.ra-version {
  max-width: calc(var(--site-max-width) - 124px);
}
.loading-logo #logo-dash, .loading-logo-complete #logo-dash {
  width: calc(100% - 210px);
}
.loading-logo #logo-dash.ra-version, .loading-logo-complete #logo-dash.ra-version {
  width: calc(100% - 124px);
}
.scrolled-down #logo-dash, .scrolled-down #logo-dash.ra-version {
  width: 100%;
  max-width: 100%;
}
.scrolled-down .inner-padding {
  max-width: var(--site-max-width);
}
#logo-menu {
  position: absolute;
  z-index: 90;
  top: 35px;
  left: 0px;
  right: 0px;
  height: 10px;
  background-color: var(--black-color-1);
  transition: all 0.2s ease-out;
}
#logo-dash:hover #logo-menu {
  top: 33px;
  height: 14px;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#nav {
  display: none;
  background-color: var(--black-color-1);
  padding: 2rem 2rem 1rem 2rem;
  /*bespoke-radius*/
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.nav-col {
  width: 50%;
}
.nav-group {
  display: flex;
  flex-direction: row;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
#nav-main {
  text-align: left;
  font-family: var(--font-headline);
  text-transform: uppercase;
  /*padding-top: 2rem;*/
}
#nav-main li {
  width: auto;
  padding-bottom: 1rem;
}
#nav-main li a {
  position: relative;
  color: var(--white-color-2);
  font-weight: 600;
  background: linear-gradient(currentColor 0 0) bottom center/ var(--underline-width, 0%) 3px no-repeat;
  display: inline-block;
  padding-bottom: 0.2em;
  transition: background-size .4s ease-out;
}
#nav-main li a:hover, #footer-nav li a:hover {
  --underline-width: 100%;
}
#nav-main li.is-active a {
  color: var(--accent-color);
  /*pointer-events: none;*/
}
#nav-main li a span {
  position: absolute;
  top: 0px;
  right: -55px;
  font-size: 10px;
  line-height: 18px;
  height: 20px;
  border-radius: 10px;
  padding: 0 10px;
  border: solid 1px;
  border-color: var(--accent-color);
  color: var(--accent-color);
  font-weight: 400;
}
.story-card {
  position: relative;
  /*padding: 10px;*/
  padding: 0px;
  border-radius: var(--radius-1);
  transition: all .4s ease-out;
}
#nav-highlights .story-card {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-direction: row;
  margin-bottom: 20px;
  background-color: var(--black-color-3);
  color: var(--white-color-2);
}
#nav-highlights .story-card .card-text {
  width: calc(100% - 160px);
}
#nav-highlights .story-card .img-card {
  height: 120px;
  aspect-ratio: 3 / 2;
	border-radius: var(--radius-1) 0 0 var(--radius-1);
}
#nav-highlights .story-card .card-date {
  display: none;
}
/* Delivery */
.deliver-list {
  margin-top: 4rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-2);
  background-color: var(--white-color-1);
}
.row-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  transition: all .4s ease-out;
  padding: 2rem;
}
.row-card:nth-last-child(1) {
  border-bottom: none;
}
.row-card:hover {
  padding: 2rem 1rem 2rem 3rem;
}
.row-card-text-group {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.row-card-text-group .title {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  width: 30%;
  transition: color .2s ease-out;
  color: var(--black-color-10);
}
.row-card:hover .title {
  color: var(--black-color-1);
}
.row-card-text-group .discription {
  width: 70%;
}
/* //////// FOOTER //////// */
footer .inner-padding {
  max-width: var(--site-max-width);
  margin: 0 auto;
  background-color: var(--black-color-3);
  color: var(--white-color-2);
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  padding: 2rem 2rem 1rem 2rem;
}
#footer-nav {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
#footer-nav li a {
  font-family: var(--font-headline);
  font-weight: 200;
}
#footer-newsletter.section-info {
  padding-bottom: 1rem;
}
#footer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.footer-title {
  padding-bottom: 1rem;
}
footer .section-info {
  padding-bottom: 5px;
}
#footer-nav li a {
  color: var(--black-color-10);
  font-weight: 400;
  background: linear-gradient(currentColor 0 0) bottom center/ var(--underline-width, 0%) 1px no-repeat;
  display: inline-block;
  padding-bottom: 0.2em;
  transition: background-size .4s ease-out;
}
.copywrite {
  border-top: solid 1px var(--black-color-10);
  padding-top: .5rem;
  color: var(--black-color-10);
}
.copywrite .text {
  font-family: var(--font-headline);
  font-size: 14px;
}
/* //////// STORY //////// */
.swiper-wrapper .story-card, .grid-wrapper .story-card {
  display: flex;
  align-items: flex-start;
  row-gap: 20px;
  flex-direction: column;
  background-color: var(--white-color-1);
  color: var(--black-color-2);
}
.story-card:hover {
  background-color: var(--black-color-4);
  transform: scale(1.03);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.swiper-wrapper .story-card:hover, .grid-wrapper .story-card:hover {
  background-color: var(--white-color-4);
}
.swiper-wrapper .card-type, .swiper-wrapper .card-title {
  /*padding: 0 10px;*/
}
.inner-card .card-type-group, .inner-card .card-title, .inner-card .card-date {
  padding: 0 20px;
}
.inner-card .card-date {
  margin-top: auto;
  margin-bottom: 20px;
}
.inner-card .img-card {
  margin-bottom: 10px;
}
.inner-card .card-title {
  margin-bottom: 20px;
}
#stories .swiper-slide {
  height: auto !important;
  display: flex !important;
}
#stories .swiper-wrapper {
  align-items: stretch;
}
.swiper-wrapper .story-card .img-card {
  width: 100%;
}
.story-card .img-card {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-1) var(--radius-1) 0 0;
}
.story-card .inner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.card-type-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.card-type, .section-type {
  font-family: var(--font-headline);
  letter-spacing: 2px;
  font-weight: 400;
  padding-top: 2px;
  text-transform: uppercase;
}
.section-type span {
  padding: 0 10px;
  border: solid 1px;
  /*
	color: var(--accent-color);
	border-bottom-color: var(--accent-color);
	*/
  border-radius: 10px;
}
.flex-gallery.open-state .date-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-radius: var(--radius-1);
  /* default alt and bg-color inline csss */
  color: var(--white-color-1);
}
.logos-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
.logos-gallery img {
  background-color: var(--white-color-1);
  border-radius: var(--radius-1);
}
/* //////// INTRO (homepage) //////// */
#intro.scroll-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.intro-text {
  padding-right: 20%;
}
.intro-text span {
  color: var(--accent-color);
}
/* //////// STORY DETAILS //////// */
.content-images {
  margin-bottom: 2rem;
}
.content-images.grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.content-images img {
  width: 100%;
  height: 100%;
  /* or contain, scale-down */
  object-fit: cover;
}
.content-images div {
  overflow: hidden;
  border-radius: var(--radius-1);
}
.content-images .landscape-16-9 {
  width: 100%;
}
/* //////// HOME //////// */
.swiper-parent {
  overflow-x: hidden;
  width: 100% !important;
}
.swiper-parent .swiper {
  overflow: visible !important;
  padding-top: 1rem;
  padding-bottom: 4rem;
}
.swiper-parent .swiper.off-page {
  overflow: hidden !important;
}
.swiper-parent .swiper.swiper-img-loop {
  overflow: hidden !important;
  padding: 0;
}
.swiper-slide {
  background-color: var(--white-color-1);
  border-radius: var(--radius-1);
}
.testimonial-cards-wrapper {
  column-count: 3; /* Number of columns */
  column-gap: 20px; /* Space between columns */
}
.testimonial-card {
  padding: 20px 30px 30px 30px;
  border-radius: var(--radius-2);
  display: inline-block; /* Essential to prevent layout bugs */
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid; /* Prevents items from splitting between columns */
}
/* Client colors */
/* Cards colors */
.testimonial-ogilvy {
  background-color: var(--ogilvy-bgcolor);
  color: var(--ogilvy-color);
}
.testimonial-westbourne {
  background-color: var(--westbourne-bgcolor);
  color: var(--westbourne-color);
}
.testimonial-geometry {
  background-color: var(--geometry-bgcolor);
  color: var(--geometry-color);
}
.testimonial-mcsaatchi {
  background-color: var(--mcsaatchi-bgcolor);
  color: var(--mcsaatchi-color);
}
.testimonial-rapp {
  background-color: var(--rapp-bgcolor);
  color: var(--rapp-color);
}
.testimonial-wpnc {
  background-color: var(--wpnc-bgcolor);
  color: var(--wpnc-color);
}
.testimonial-windmill {
  background-color: var(--windmill-bgcolor);
  color: var(--windmill-color);
}
.testimonial-svr {
  background-color: var(--svr-bgcolor);
  color: var(--svr-color);
}
/* Dash colors */
.testimonial-ogilvy .quote-divider {
  background-color: var(--ogilvy-color);
}
.testimonial-westbourne .quote-divider {
  background-color: var(--westbourne-color);
}
.testimonial-geometry .quote-divider {
  background-color: var(--geometry-color);
}
.testimonial-mcsaatchi .quote-divider {
  background-color: var(--mcsaatchi-color);
}
.testimonial-rapp .quote-divider {
  background-color: var(--rapp-color);
}
.testimonial-wpnc .quote-divider {
  background-color: var(--wpnc-color);
}
.testimonial-windmill .quote-divider {
  background-color: var(--windmill-color);
}
.testimonial-svr .quote-divider {
  background-color: var(--svr-color);
}
/* Quote marks */
.testimonial-ogilvy svg path {
  fill: var(--ogilvy-color);
}
.testimonial-westbourne svg path {
  fill: var(--westbourne-color);
}
.testimonial-geometry svg path {
  fill: var(--geometry-color);
}
.testimonial-mcsaatchi svg path {
  fill: var(--mcsaatchi-color);
}
.testimonial-rapp svg path {
  fill: var(--rapp-color);
}
.testimonial-wpnc svg path {
  fill: var(--wpnc-color);
}
.testimonial-windmill svg path {
  fill: var(--windmill-color);
}
.testimonial-svr svg path {
  fill: var(--svr-color);
}
/* Client colors ends */
.quote {
  line-height: 1.4em;
}
.quote-mark {
  width: 64px;
  height: 64px;
  margin-left: -8px;
  overflow: hidden;
  transition: opacity 1s ease-out;
}
.quote-name {
  font-family: var(--font-headline);
  text-transform: uppercase;
  font-weight: 600;
}
.quote-divider {
  height: 2px;
  width: 100px;
  transition: all .4s ease-out;
  margin-bottom: 1rem;
  border-radius: 1px;
}
/* //////// CASE STUDIES //////// */
#case-studies {
  /*background-color: var(--white-color-1);*/
}
.has-divider-top {
  position: relative;
  padding-top: 4rem;
}
.has-divider-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black-color-1);
  border-radius: 1px;
}
.case-studies-card, .story-card {
  position: relative;
  transition: all .4s ease-out;
}
.swiper-wrapper .case-studies-card, .grid-wrapper .case-studies-card {
  /*aspect-ratio: 3 / 4;*/
}
.swiper-wrapper .case-studies-card, .swiper-wrapper .story-card {
  width: 225px;
  margin-right: 20px;
}
.swiper-wrapper .case-studies-card:last-child, .swiper-wrapper .story-card:last-child {
  margin-right: 0;
}
.case-studies-card .img-card {
  display: block;
  transition: all .4s ease-out;
}
.gallery-wrapper {
  background-color: var(--white-color-1);
  border-radius: var(--radius-2);
  padding: 20px 20px 10px 20px;
  margin-bottom: 4rem;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
#testimonials .gallery-wrapper {
  background-color: transparent;
  border-radius: none;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}
.flex-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-gallery div {
  width: 100%;
  opacity: 0;
  display: none;
}
.flex-gallery.default-1 div:nth-child(-n+1), .flex-gallery.default-2 div:nth-child(-n+2), .flex-gallery.default-3 div:nth-child(-n+3), .flex-gallery.default-1.open-all div, .flex-gallery.default-2.open-all div, .flex-gallery.default-3.open-all div, .flex-gallery.open-state div {
  opacity: 1;
  display: block;
  animation: fadeIn 0.8s ease forwards;
}
.flex-gallery.open-state {
  margin-bottom: 2rem;
}
.flex-gallery .group-2 {
  flex: 0 0 calc((100% - (1 * 20px)) / 2);
}
.flex-gallery .group-3 {
  flex: 0 0 calc((100% - (2 * 20px)) / 3);
}
.expand-button {
  position: relative;
  margin-top: 10px;
  display: inline-flex;
  height: 40px;
  line-height: 40px;
  color: var(--black-color-10);
  font-family: var(--font-headline);
  font-weight: 600;
  text-transform: uppercase;
  transition: all .4s ease-out;
  cursor: pointer;
}
#testimonials .expand-button {
  display: none; /*default for desktop*/
}
.expand-btn-text {
  padding: 0 10px;
  transition: all .4s ease-out;
}
.expand-button:hover .expand-btn-text {
  padding: 0 0 0 20px;
}
.expand-icon {
  width: 40px;
  height: 40px;
  position: relative;
}
.expand-icon .arrow-head {
  position: absolute;
  background-image: url("../assets/icon-expand-arrow-head-black.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  transition: all .4s ease-out;
}
.expand-icon .arrow-head.top {
  top: 10px;
  right: 10px;
}
.expand-icon .arrow-head.bottom {
  transform: rotate(180deg);
  bottom: 10px;
  left: 10px;
}
.expand-icon .icon-square {
  position: absolute;
  background-color: var(--black-color-10);
  transition: all .4s ease-out;
  width: 6px;
  height: 6px;
  top: 17px;
  left: 17px;
  border-radius: 3px;
}
/* Hover */
.expand-button:hover .expand-icon .icon-square {
  background-color: var(--black-color-1);
  width: 10px;
  height: 10px;
  top: 15px;
  left: 15px;
}
.expand-button:hover {
  color: var(--black-color-1);
}
.expand-button:hover .expand-icon .arrow-head.top {
  top: 8px;
  right: 8px;
}
.expand-button:hover .expand-icon .arrow-head.bottom {
  bottom: 8px;
  left: 8px;
}
#cs-vertical-gallery {
  display: none;
}
.flex-gallery img, .cs-carousel-img img {
  border-radius: var(--radius-1);
}
.case-studies-card:hover .img-card {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
/* ends scale style */
.case-studies-card .img-card img {
  /*border-radius: var(--radius-1);*/
  display: block;
}
.case-studies-name {
  position: absolute;
  font-family: var(--font-headline);
  opacity: 0.5;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  right: 0;
  /*bottom: -2.5rem;*/
  padding-top: 1rem;
  left: 0;
  transition: opacity .6s ease-out;
}
.case-studies-card:hover .case-studies-name {
  opacity: 1;
}
.card-link {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-align: left;
  text-indent: -999px;
}
.case-studies-card .card-link {
  bottom: -2.5rem;
}
#case-studies-wrapper {
  margin-bottom: 3rem;
}
.grid-wrapper {
  display: grid;
  /*grid-template-columns: auto auto auto auto;*/
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 6rem;
}
#story-wrapper {
  margin-bottom: 2rem;
}
#story-wrapper.grid-wrapper {
  grid-row-gap: 4rem;
}
/* Desktop image carousel */
.cs-carousel-img, .cs-carousel-img img {
  height: 100%;
  width: auto;
  max-width: none;
  min-height: 450px;
  /*max-height: 600px;*/
  max-height: 540px;
}
.cs-carousel-img video {
  width: auto !important;
  height: 100% !important;
}
/* ends Desktop image carousel */
.swiper-slide.case-studies-more {
  background-color: transparent;
}
.mini-img-card {
  position: absolute;
  overflow: hidden;
  width: 90px;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem;
  transition: all .5s ease-out;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.mini-cards {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  perspective: 1000px;
}
.mini-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-card-1 {
  top: 20%;
  left: 12%;
  z-index: 100;
  transform: rotate(5deg);
}
.mini-card-2 {
  top: 39%;
  left: 24%;
  z-index: 101;
  transform: rotate(-5deg);
}
.mini-card-3 {
  top: 34%;
  left: 35%;
  z-index: 102;
  transform: rotate(4deg);
}
.mini-card-4 {
  top: 27%;
  left: 42%;
  z-index: 103;
  transform: rotate(-6deg);
}
.swiper-img-loop {
  opacity: 0;
}
.custom-swiper-counter {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-headline);
}
.hover-active .mini-img-card {
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(0deg);
}
.hover-active .swiper-img-loop {
  transition-delay: 0.4s;
  opacity: 1;
}
.info-wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 5%;
  margin-bottom: 3rem;
}
.info-col-left {
  width: 20%;
  /*padding-left: 10px;*/
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-col-right {
  width: 75%;
  /*padding-left: 10px;*/
  padding-right: 5%;
}
.info-group {
  font-family: var(--font-headline);
}
.info-title {
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 5px;
}
.text-indent {
  padding-left: 10px;
}
.text-full-width {
  padding-right: 20%;
  padding-bottom: 3rem;
}
/* //////// TEAM CONTACT //////// */
#team-contact-wrapper.grid-wrapper {
  /*grid-template-columns: auto auto auto;*/
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 5%;
}
.team-contact-card .img-card {
  margin-bottom: 2rem;
}
.team-contact-name {}
.team-contact-role {
  margin-bottom: 1rem;
}
.contact-links li {
  padding-bottom: 0.3rem;
}
.contact-links li.linkedin {
  padding-top: 0.3rem;
}
.linkedin a {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -999px;
  background-color: var(--black-color-2);
  background-image: url("../assets/icon-linkedin-white.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: all .4s ease-out;
  border-radius: 20px;
}
.linkedin a:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.contact-links li.text-link a {
  color: var(--black-color-2);
  font-weight: 400;
  background: linear-gradient(currentColor 0 0) bottom center/ var(--underline-width, 0%) 2px no-repeat;
  display: inline-block;
  padding-bottom: 0.2rem;
  transition: background-size .4s ease-out;
}
.contact-links li.text-link a:hover {
  --underline-width: 100%;
}
/* filtering */
.filtering-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  margin: 2rem 0;
}
.filter-hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  padding: 0;
  background-color: var(--black-color-1);
  display: none;
  cursor: pointer;
}
.filter-hamburger span {
  position: absolute;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 30px;
  height: 2px;
  right: 15px;
  left: 15px;
  background-color: var(--white-color-1);
}
.filter-hamburger .line-1 {
  top: 19px;
}
.filter-hamburger .line-2 {
  top: 29px;
}
.filter-hamburger .line-3 {
  top: 39px;
}
.filter-hamburger.w--open .line-1 {
  transform: translate3d(0px, 10px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.filter-hamburger.w--open .line-2 {
  opacity: 0;
}
.filter-hamburger.w--open .line-3 {
  transform: translate3d(0px, -10px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.filtering {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
  /*height: 60px;*/
  padding: 10px;
  background-color: var(--white-color-1);
  box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin-bottom: 2rem;
  transition: all .5s ease-out;
}
.filtering.w--open {
  height: auto;
}
.filtering button {
  padding: 0 2rem;
  height: 40px;
  border-radius: 20px;
  background-color: transparent;
  border: none;
  line-height: 40px;
  color: var(--black-color-1);
  cursor: pointer;
}
.filtering button.active {
  background-color: var(--black-color-1);
  color: var(--white-color-1);
  cursor: auto;
  transform: scale(1);
  box-shadow: none;
}
.f-cat, .grid-wrapper .story-card.f-cat {
  opacity: 0;
  display: none;
}
#case-studies .f-cat, #stories .f-cat, .f-cat.active, .grid-wrapper .story-card.f-cat.active {
  opacity: 1;
  display: block;
  animation: fadeIn 0.8s ease forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}