
@font-face {
  font-family: 'Byrd';
  src: url('./public/fonts/Byrd-Black.woff2') format('woff2'),
      url('./public/fonts/Byrd-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Byrd';
  src: url('./public/fonts/Byrd-Bold.woff2') format('woff2'),
      url('./public/fonts/Byrd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url("./public/fonts/Inter-Regular.woff2?v=3.19") format("woff2"),
       url("./public/fonts/Inter-Regular.woff?v=3.19") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 500;
  font-display: swap;
  src: url("./public/fonts/Inter-Medium.woff2?v=3.19") format("woff2"),
       url("./public/fonts/Inter-Medium.woff?v=3.19") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 600;
  font-display: swap;
  src: url("./public/fonts/Inter-SemiBold.woff2?v=3.19") format("woff2"),
       url("./public/fonts/Inter-SemiBold.woff?v=3.19") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 700;
  font-display: swap;
  src: url("./public/fonts/Inter-Bold.woff2?v=3.19") format("woff2"),
       url("./public/fonts/Inter-Bold.woff?v=3.19") format("woff");
}

:root {
  --font-family: "Inter";
  --title-font-family: var(--font-family);
  --green1: #b2ca06;
  --green2: var(--green1);
  --dark1: rgba(32, 22, 73, 0.9);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/* font: inherit; */
	vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  font-feature-settings: "salt";

  font-size: 100%;

  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: #201649;
  color: #FF9DE2;
}
-moz-::selection {
  background-color: #201649;
  color: #FF9DE2;
}

p a {
  color: #201649;
  border-bottom: 2px solid #EC7BCB;
}
p a:hover {
  color: #EC7BCB;
}
a:link, a:visited, a:active {
  text-decoration: none !important;
}

.c-layout-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
}
.c-layout-header--dark {
  background-color: #201649;
}

.c-layout-header_container {
  width: 100%;
  max-width: 60rem;
  padding: 2rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-main_logo {
  height: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .c-main-logo {
    height: 3rem;
  }
}

/* Header visuals */
.c-layout-header_visuals {
  width: 100%;
  max-width: 60rem;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 4fr 5fr;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: -5rem;
  margin-bottom: -13rem;
  padding: 2rem 0 1rem;
}
.c-layout-header_visuals [class*="hero-visual"] {
  max-width: 100%;
}
.c-layout-header_visuals .hero-visual-1 {
  display: none;
  animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 1200ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.c-layout-header_visuals .hero-visual-1-mobile {
  animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 600ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.c-layout-header_visuals .hero-visual-2 {
  order: 2;
  animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 900ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.c-layout-header_visuals .hero-visual-3 {
  margin-bottom: -8rem;
  animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 1200ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes appearFromBottom {
  from {
    transform: translateY(8rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .c-layout-header_visuals {
    grid-template-columns: 1fr 4fr 2fr 3fr;
    margin-top: -12rem;
    margin-bottom: -3rem;
  }
  .c-layout-header_visuals .hero-visual-1 {
    display: inline;
    margin-bottom: -5rem;
    grid-column-start: 2;
  }
  .c-layout-header_visuals .hero-visual-1-mobile {
    display: none;
  }
  .c-layout-header_visuals .hero-visual-2 {
    order: unset;
  }
  .c-layout-header_visuals .hero-visual-3 {
    margin-bottom: 0;
    animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 600ms;
  }
}

/* Header Hero */
.c-layout-hero {
  position: relative;
  width: 100%;
  max-width: 60rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  /* align-items: center; */
  gap: 1.5rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-hero {
    grid-template-columns: 1fr 1fr;
 }
}
@media only screen and (min-width: 960px) {
  .c-layout-hero {
    grid-template-columns: 36rem 1fr;
 }
}
.c-layout-hero figure {
  text-align: right;
  order: -1;
}
@media only screen and (min-width: 768px) {
  .c-layout-hero figure {
    order: 2;
 }
}
.c-layout-hero figure img {
  margin-left: 20%;
  max-width: calc(80% + 1.25rem);
  margin-right: -1.25rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-hero figure img {
    margin-left: 0;
    max-width: calc(100% + 1.25rem);
 }
}


.c-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(32, 33, 73, 0.3);
  font-size: 0.875rem;
  color: #201649;
  border-radius: 1.5rem;
}
.c-button:hover {
  border-color: rgba(32, 22, 73, 1);
}
.c-button:active {
  background-color: rgba(32, 22, 73, 0.1);
}
.c-button.c-button--primary {
  background-color: #FF9DE2;
  font-weight: 600;
  border-color: transparent;
}
.c-button.c-button--primary:hover {
  background-color: #ec7bcb;
  border-color: transparent;
}
.c-button.c-button--primary:active {
  background-color: rgba(255, 255, 255, 0.1);
}
.c-button.c-button--white {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.c-button.c-button--white:hover {
  border-color: white;
}
.c-button.c-button--white:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-claim-headline {
  max-width: 40rem;
  margin-bottom: 4rem;
  font-family: "Byrd", sans-serif;
  font-size: 1.75rem;
  line-height: 120%;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  color: #201649;
}
@media only screen and (min-width: 768px) {
  .header-claim-headline {
    max-width: 36rem;
    font-size: 2.25rem;
 }
}
@media only screen and (min-width: 960px) {
  .header-claim-headline {
    max-width: 45rem;
    font-size: 2.75rem;
 }
}
.header-title {
  max-width: 40rem;
  margin-bottom: 0.5rem;
  font-family: "Byrd", sans-serif;
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: bold;
  color: #201649;
}
@media only screen and (min-width: 768px) {
  .header-title {
    font-size: 2rem;
 }
}
.header-subtitle {
  max-width: 40rem;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 500;
  color: #EC7BCB;
}
@media only screen and (min-width: 768px) {
  .header-subtitle {
    font-size: 1.5rem;
 }
}
.c-layout-header--dark .header-claim-headline {
  color: #FFFFFF;
}
/* Animating Claim title */
.header-claim-headline .header-claim-headline__text {
  display: block;
  animation: appearFromBottom cubic-bezier(0.35, 0, 0.35, 1) 800ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 200ms;
  opacity: 0;
}
.header-claim-headline .pink { color: #EC7BCB; }
.header-claim-headline .blue { color: #43ADC3; }
.header-claim-headline .orange { color: #DC8541; }
.header-claim-headline .green { color: #CAE85D; }
.header-claim-headline .purple { color: #7C5BFF; }


.c-layout-text {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 480px) {
  .c-layout-text {
    padding-bottom: 5rem;
  }
}

@media only screen and (min-width: 768px) {
   /* For desktop: */
  .c-layout-text {
    padding-bottom: 4rem;
  }
}


.c-dog-logo {
  position: absolute;
  background-image: url(./public/images/dog.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 20px;
  width: 270px;
  height: 80px;
  left: calc(50% - calc(270px/2));
}

.c-layout-content {
  max-width: 60rem;
  padding: 0 15px;
  margin: 0 auto;
}

.c-layout-content_main-description {
  font-size: 1.5rem;
  color: #201649;
  line-height: 125%;
  padding-bottom: 2rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .c-layout-content_main-description {
    max-width: 48rem;
    font-size: 1.75rem;
    font-weight: normal;
  }
}

.c-layout-content_description {
  max-width: 40rem;
  margin: 0 auto 1rem;
  font-size: 1rem;
  color: #4C4566;
  line-height: 150%;
}
@media only screen and (min-width: 768px) {
 .c-layout-content_description {
   font-size: 1.125rem;
 }
}

.c-layout-content_heading {
  max-width: 40rem;
  margin: 2rem auto 1rem;
  font-size: 1.25rem;
  color: #201649;
  line-height: 120%;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
 .c-layout-content_heading {
   font-size: 1.5rem;
 }
}
.c-layout-content_paragraph {
  max-width: 40rem;
  margin: 0 auto 1rem;
  font-size: 1rem;
  color: #4C4566;
  line-height: 150%;
}
@media only screen and (min-width: 768px) {
 .c-layout-content_paragraph {
   font-size: 1.125rem;
 }
}

.c-layout-cta-platform {
  background-color: #CAE85D;
  margin-top: 3rem;
  padding: 3rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-platform {
    margin-top: 4rem;
    padding: 4rem 1.5rem;
  }
}
.c-layout-cta-platform .c-layout-content {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-platform .c-layout-content {
    flex-direction: row;
    gap: 5rem;
    text-align: left;
  }
}
.c-layout-cta-platform .cta-platform__visual {
  max-width: 15rem;
  margin-top: -6rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-platform .cta-platform__visual {
    max-width: 20rem;
    margin-top: -8rem;
  }
}
.c-layout-cta-platform .cta-platform__visual img {
  display: block;
  max-width: 100%;
}



.c-layout-cta-impact {
  padding: 3rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-impact {
    padding: 4rem 1.5rem;
  }
}
.c-layout-cta-impact .c-layout-content {
  background: #FFF9E5;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-impact .c-layout-content {
    flex-direction: row;
    padding-left: 5rem;
    gap: 5rem;
    text-align: left;
  }
}
.c-layout-cta-impact .cta-impact__visual {
  max-width: 15rem;
  margin-top: -4rem;
}
@media only screen and (min-width: 768px) {
  .c-layout-cta-impact .cta-impact__visual {
    max-width: 20rem;
    margin-top: 0;
    order: 2;
  }
}
.c-layout-cta-impact .cta-impact__visual img {
  display: block;
  max-width: 100%;
}



.c-layout-footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 1.25rem;
  background: #FAFAFB;
  color: #BCB9C8;
  font-size: 0.875rem;
  line-height: 150%;
}

.c-layout-footer_logo {
  margin-top: 40px;
}

.c-layout-footer_columns {
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  gap: 1.5rem;
  flex-direction: column;
  font-size: 1.125rem;
  line-height: 150%;
  color: #201649;
}
@media only screen and (min-width: 768px) {
  .c-layout-footer_columns {
    flex-direction: row;
  }
}
.c-layout-footer_columns > * {
  flex: 1;
}
.c-layout-footer a {
  color: #201649;
  box-shadow: 0 2px transparent;
}
.c-layout-footer a:hover {
  box-shadow: 0 2px #EC7BCB;
}
.c-layout-footer a:active {
  color: #EC7BCB;
}

.c-layout-footer_container {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

/* Cookie Notice */
.klaro .cookie-notice {
  width: 100vw;
  background: none !important;
  animation: cookieNoticeAnim cubic-bezier(0.35, 0, 0.35, 1) 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes cookieNoticeAnim {
  0% {
    transform: translateY(8rem);
    opacity: 0;
  }
  50% {
    transform: translateY(8rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
   }
}
.klaro .cookie-notice .cn-body {
  box-sizing: border-box;
  max-width: 60rem;
  margin: 0 auto !important;
  padding: 0.75rem 1rem 1.25rem !important;
  background: #CAE85D !important;
  --light1: #4C4566;
}
.klaro .cookie-notice p::first-line {
  font-family: "Byrd";
  text-transform: uppercase;
  font-weight: 900;
  font-size: 17px;
  color: #201649;
  max-width: 20rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 480px) {
  .klaro .cookie-notice p::first-line {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .klaro .cookie-notice p::first-line {
    font-size: 2rem;
  }
}
.klaro .cookie-notice p {
  margin: 0 !important;
  margin-bottom: 0.25rem !important;
}

.klaro .cookie-notice .cn-buttons {
  width: auto !important;
}
.klaro .cookie-notice .cn-ok {
  justify-content: space-between !important;
  margin: 0 -0.125rem;
}
.klaro .cookie-notice .cn-learn-more {
  flex-grow: 0 !important;
  margin-right: 0 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 3rem !important;
  border: 1px solid rgba(32, 22, 73, 0.3);
  color: #201649 !important;
  font-weight: 600;
}
.klaro .cookie-notice .cn-learn-more:hover {
  border: 1px solid rgba(32, 22, 73, 1);
}
@media only screen and (min-width: 480px) {
  .klaro .cookie-notice .cn-learn-more {
    padding: 0.75rem 2rem !important;
    border-radius: 3rem !important;
  }
}
.klaro .cookie-notice .cm-btn {
  padding: 0.75rem 2rem !important;
  border-radius: 3rem !important;
  width: auto !important;
  background-color: #FF9DE2 !important;
  color: #201649 !important;
  font-weight: 600;
}
.klaro .cookie-notice .cm-btn:hover {
  background-color: #EC7BCB !important;
}
.klaro .cookie-notice .cm-btn:active {
  box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.2);
}
