/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class],
button,
header,
footer,
section,
main,
aside,
div {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd,
button,
header,
footer,
section,
main,
aside,
div {
  margin: 0;
}

/* Set core body defaults */
html, body {
  display: block;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

/*
  min-height: 100vh;
  min-height: 100%;
  min-height: 100dvh;
*/


body {
  scroll-behavior: smooth;
  position: relative;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
a,
input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  outline: none;
  border-radius: 0;
}
/* end resets */

body {
  font-family: 'Inter Tight', 'Albert Sans', sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;

  display: flex;
  flex-direction: column;
  position: relative;
}

body, h1 {
  font-size:  46px;
  line-height: 56px;
  font-weight: 400;
}

footer {
  margin-top: auto;
}

.top-nav {
  position: absolute;
  display: flex;
  z-index: 1;
}

.top-nav svg {
  display: block;
  width: 20px;
  height: 24px;
}

.top-home {
  padding:  38px 40px;
}

button {
  border: none;
  text-align: center;

  display:  flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  
  margin: 0;
  padding: 0;
  background-color: transparent;
  border:  none;
  cursor: pointer;
}

.button-arrow-container {
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.button-arrow {
  padding: 30px;
  cursor: pointer;
  user-select: none;
}

.button-arrow > svg {
  display: block;
  width: 28px;
  height: 20px;
}

.white-fill svg {
  fill: #fff;
}

.white-bg {
  background-color: #fff;
}

.white-text, .wt {
  color: #fff;
}

.grey-text {
  color: #929292;
}

.black-bg {
  background-color: #000;
}

.grey-bg {
  background-color: #EBF0F2;
}

.pink-text {
  color: #FF3FAA;
}

.small-text {
  font-size: 14px;
  line-height: 20px;
}

/* Desktop (base, lg) */
:root {
  --sn-gutter-width: 20px;
  --sn-grid-layout-cols: 12;

  --sn-container-target-max-width: 792px;
  --sn-container-target-padding: 100px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-200 {
  margin-bottom: 200px;
}

.sn-section-250-250 {
  padding-top: 250px;
  padding-bottom: 250px;
}

.sn-section-250-200 {
  padding-top: 250px;
  padding-bottom: 200px;
}

.sn-section-250-150 {
  padding-top: 250px;
  padding-bottom: 150px;
}

.sn-section-250-0 {
  padding-top: 250px;
  padding-bottom: 0;
}

.sn-section-200-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.sn-section-200-150 {
  padding-top: 200px;
  padding-bottom: 150px;
}

.sn-section-200-0 {
  padding-top: 200px;
  padding-bottom: 0;
}

.sn-section-150-200 {
  padding-top: 150px;
  padding-bottom: 200px;
}

.sn-section-150-0 {
  padding-top: 150px;
  padding-bottom: 0;
}

.sn-section-90-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.sn-section-after-button-arrow-container {
  margin-top: -80px;
}

.subtitle {
  font-size: 14px;
  line-height: 20px;
}

.block {
  display: block;
}

.block-lg-only {
  display: block;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-clip {
  overflow: hidden;
  overflow: clip;
}

.overflow-x-clip {
  overflow-x: hidden;
  overflow-x: clip;
}

.z1 {
  z-index: 1;
}

.sn-container {
  display: flex;
  width: 100%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
  max-width: calc(var(--sn-container-target-max-width) + (var(--sn-container-target-padding) * 2));

  padding-right: calc(var(--sn-container-target-padding) - (var(--sn-gutter-width) * .5));
  padding-left: calc(var(--sn-container-target-padding) - (var(--sn-gutter-width) * .5));
}

.sn-container>[class*='sn-col'] {
  padding-right: calc(var(--sn-gutter-width) * .5);
  padding-left: calc(var(--sn-gutter-width) * .5);
}

.sn-container>[class*='sn-col-'] {
  flex: 0 0 auto;
}

.sn-col {
  flex: 1 0 0%;
}

/* dynamic */
.sn-col-1 {
  width: calc( 1 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-2 {
  width: calc( 2 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-3 {
  width: calc( 3 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-4 {
  width: calc( 4 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-5 {
  width: calc( 5 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-6 {
  width: calc( 6 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-7 {
  width: calc( 7 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-8 {
  width: calc( 8 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-9 {
  width: calc( 9 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-10 {
  width: calc( 10 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-11 {
  width: calc( 11 / var(--sn-grid-layout-cols) * 100%);
}
.sn-col-12 {
  width: calc( 12 / var(--sn-grid-layout-cols) * 100%);
}

.sn-home-hero-section {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    to right,
    #00E05F 50%,
    #FF3FAA 0 100%
  );
}

.sn-home-dahlia-andres-drawings {
  width: 900px;
  height: 600px;
  position: relative;
  z-index: 1;
}

.sn-hero-color-overlay-right1 {
  background-color: #FF7400;
  opacity: 57%;

  background-color: #38C1D4;
  opacity: 60%;

  background-color: #A113A8;
  opacity: 50%;



  position: absolute;
  border-radius: 50%;

  width: 10%;
  padding-top: 10%;

  top: 100%;
  left: calc(50% - 5%);

  transform-origin: center center;
  transform: scale(1);
  transition: transform 1.75s ease-out,opacity .75s ease-out,background-color .75s ease-out;
}

.sn-hero-color-overlay-right1.step1 {
  transform: scale(17);
}

.sn-hero-color-overlay-right1.step2 {
  background-color: #38C1D4;
  opacity: 60%;


    background-color: #FF7400;
  opacity: 57%;

}

.work-list a {
  display: block;
  text-decoration: none;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 12px;
  transition: color .4s ease-out;
}

.work-list a:hover {
  color: #FF3FAA;
}

.swiper {
  width: 100%;
  height: 370px;
}

.card-supertitle {
  font-size: 15px;
  line-height: 20px;

  height: 80px;
  padding: 30px 30px 0 30px;
}

.card-subtitle {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  padding: 0 30px 30px 30px;
  position: absolute;
  bottom: 0;
}

.swiper-slide {
  position: relative;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 10px;
  width: 290px;
  height: 100%;
  border-radius: 10px;
}

.immuta-swiper, .searrp-swiper {
  height: 300px;
}

.immuta-swiper .swiper-slide, .searrp-swiper .swiper-slide {
  width: 400px;
}

.searrp-swiper .swiper-slide, .hopelab-swiper .swiper-slide {
  border-radius: 0;
}

.card-img-bottom-0 img, .cimgb0 img {
  top: auto !important;
  bottom: 0 !important;
}

.swiper-slide img {
  position: absolute;
  top:  80px;
  display: block;
  width: 100%;
  height: auto;
}

.swiper-button-next.button-arrow, .swiper-button-prev.button-arrow {
  width: auto;
  height: auto;
  margin-top: 0;
  display: block;
}

.swiper-button-next.button-arrow:after, .swiper-button-prev.button-arrow:after {
  display: none;
}

/* xl */
/*@media (min-width: 1180px) {
  body {
    background-color: red;
  }
}
*/

/* Tablet md */
@media (max-width: 991px) {
  :root {
    --sn-container-target-padding: 70px;
  }

/*  body {
    background-color: pink;
  }*/

  body, h1 {
    font-size: 40px;
    line-height: 50px;
  }

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

  .mb-200 {
    margin-bottom: 150px;
  }

  .sn-section-250-250 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .sn-section-250-200 {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .sn-section-250-150 {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .sn-section-250-0 {
    padding-top: 200px;
    padding-bottom: 0;
  }

  .sn-section-200-150 {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .sn-section-150-200 {
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .sn-section-150-0 {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .sn-col-md-1 {
    width: calc( 1 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-2 {
    width: calc( 2 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-3 {
    width: calc( 3 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-4 {
    width: calc( 4 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-5 {
    width: calc( 5 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-6 {
    width: calc( 6 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-7 {
    width: calc( 7 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-8 {
    width: calc( 8 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-9 {
    width: calc( 9 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-10 {
    width: calc( 10 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-11 {
    width: calc( 11 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-md-12 {
    width: calc( 12 / var(--sn-grid-layout-cols) * 100%);
  }

  .sn-home-dahlia-andres-drawings {
    width: 751px;
    height: 500px;
  }

  .work-list a {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 12px;
  }
}
/* END Tablet md */

/* Mobile Landscape sm */
@media (max-width: 767px) {
  :root {
    --sn-container-target-padding: 50px;
  }

/*  body {
    background-color: lightblue;
  }*/

  body, h1 {
    font-size:  28px;
    line-height: 38px;
  }

  .top-nav svg {
    display: block;
    width: 14px;
    height: 18px;
  }

  .top-home {
    padding:  26px 25px;
  }

  .button-arrow {
    padding: 20px;
  }

  .mb-10 {
    margin-bottom: 5px;
  }

  .mb-90 {
    margin-bottom: 40px;
  }

  .mb-100 {
    margin-bottom: 50px;
  }

  .mb-150 {
    margin-bottom: 100px;
  }

  .mb-200 {
    margin-bottom: 100px;
  }

  .sn-section-250-250 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .sn-section-250-200 {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .sn-section-250-150 {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .sn-section-250-0 {
    padding-top: 150px;
    padding-bottom: 0;
  }

  .sn-section-200-200 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .sn-section-200-150 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sn-section-200-0 {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .sn-section-150-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sn-section-150-0 {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .sn-section-90-90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sn-section-after-button-arrow-container {
    margin-top: -60px;
  }

  .sn-col-sm-1 {
    width: calc( 1 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-2 {
    width: calc( 2 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-3 {
    width: calc( 3 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-4 {
    width: calc( 4 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-5 {
    width: calc( 5 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-6 {
    width: calc( 6 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-7 {
    width: calc( 7 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-8 {
    width: calc( 8 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-9 {
    width: calc( 9 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-10 {
    width: calc( 10 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-11 {
    width: calc( 11 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-sm-12 {
    width: calc( 12 / var(--sn-grid-layout-cols) * 100%);
  }

  .sn-home-dahlia-andres-drawings {
    width: 451px;
    height: 300px;
  }

  .work-list a {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 8px;
  }
}
/* END Mobile Landscape sm */

/* Mobile Portrait xs */
@media (max-width: 478px) {
  :root {
    --sn-container-target-padding: 30px;
  }

/*  body {
    background-color: lightgreen;
  }*/

  body, h1 {
    font-size:  22px;
    line-height: 30px;
  }

  .top-nav svg {
    display: block;
    width: 12px;
    height: 15px;
  }

  .top-home {
    padding:  20px 20px;
  }

  .button-arrow > svg {
    width: 23px;
    height: 16px;
  }

  .mb-90 {
    margin-bottom: 30px;
  }

  .mb-100 {
    margin-bottom: 40px;
  }

  .mb-150 {
    margin-bottom: 60px;
  }

  .mb-60 {
    margin-bottom: 100px;
  }

  .sn-section-250-250 {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .sn-section-250-200 {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .sn-section-250-150 {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .sn-section-250-0 {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .sn-section-200-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sn-section-200-150 {
    padding-top:  60px;
    padding-bottom:  60px;
  }

  .sn-section-200-0 {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .sn-section-150-200 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sn-section-150-0 {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .sn-section-90-90 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sn-section-after-button-arrow-container {
    margin-top: -56px;
  }

  .sn-col-xs-1 {
    width: calc( 1 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-2 {
    width: calc( 2 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-3 {
    width: calc( 3 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-4 {
    width: calc( 4 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-5 {
    width: calc( 5 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-6 {
    width: calc( 6 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-7 {
    width: calc( 7 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-8 {
    width: calc( 8 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-9 {
    width: calc( 9 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-10 {
    width: calc( 10 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-11 {
    width: calc( 11 / var(--sn-grid-layout-cols) * 100%);
  }
  .sn-col-xs-12 {
    width: calc( 12 / var(--sn-grid-layout-cols) * 100%);
  }

  .sn-home-dahlia-andres-drawings {
    width: 301px;
    height: 200px;
  }

  .work-list a {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 6px;
  }

  .swiper {
    height: 246px;
  }

  .swiper-slide {
    width: 200px;
  }

  .immuta-swiper, .searrp-swiper {
    height: 225px;
  }

  .immuta-swiper .swiper-slide, .searrp-swiper .swiper-slide {
    width: 300px;
  }

  .card-supertitle {
    display: none;
  }

  .swiper-slide img {
    position: absolute;
    top: 33px;
  }

  .card-subtitle {
    padding: 0 20px 10px 20px;
    font-size: 15px;
    line-height: 28px;
  }
}
/* END Mobile Portrait xs */




