/* @import url('/lib/styles/styles.css'); */
@import url('/styles/brandkit.css');

/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600&display=swap");

:root {
  /* colors */
  --link-color: #fabc40;
  --link-hover-color: #fabc40;
  --background-color: #000;
  --overlay-background-color: #eee;
  --highlight-background-color: #ccc;
  --text-color: #fff;

  /* fonts */
  --body-font-family: "Roboto Slab", serif;
  --heading-font-family: var(--body-font-family);
  --fixed-font-family: "Roboto Slab", serif;

  /* body sizes */
  --body-font-size-m: 16px;
  --body-font-size-s: 16px;
  --body-font-size-xs: 16px;

  /* heading sizes */
  --heading-font-size-xxl: 24px;
  --heading-font-size-xl: 20px;
  --heading-font-size-l: 20px;
  --heading-font-size-m: 18px;
  --heading-font-size-s: 18px;
  --heading-font-size-xs: 16px;

  /* nav height */
  --nav-height: 64px;
}

@media (min-width: 900px) {
  :root {
    --heading-font-size-xxl: 40px;
    --heading-font-size-xl: 32px;
    --heading-font-size-l: 32px;
    --heading-font-size-m: 20px;
    --heading-font-size-s: 20px;
    --heading-font-size-xs: 18px;
  }
}

html {
  scroll-behavior: smooth;
  padding-top: 0;
}
@media (min-width: 1000px) {
  html {
    padding-top: 35px;
  }
}

body {
  font-size: 14px;
  margin: 0;
  font-family: var(--body-font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
  word-wrap: break-word;
}
@media (min-width: 1000px) {
  body {
    font-size: 16px;
  }
}

body.background-curly-pathogen h1 {
  min-height: 130px;
}

body.background-curly-pathogen h1 + p {
  min-height: 120px;
}
@media (min-width: 1000px) {
  body.background-curly-pathogen h1 + p {
    min-height: 90px;
  }
}
@media (min-width: 1000px) {
  body.background-smooth-pathogen-with-tail main > .section:first-child > div {
    padding-right: 405px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1000px) {
  body.background-smooth-pathogen main > .section:first-child > div {
    padding-right: 447px;
  }
}
@media (min-width: 1000px) {
  body.background-curly-pathogen main > .section:first-child > div {
    padding-right: 400px;
  }
}
@media (min-width: 1000px) {
  body.background-smooth-pathogen-double main > .section:first-child > div {
    padding-right: 400px;
  }
}

* {
  box-sizing: border-box;
}

body.appear {
  display: unset;
}

header {
  height: var(--nav-height);
  margin-bottom: 195px;
}
@media (min-width: 1000px) {
  header {
    height: 85px;
    margin-bottom: 80px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 12px;
  scroll-margin: calc(var(--nav-height) + 1em);
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  color: #fabc40;
  font-style: normal;
}

h1 {
  font-size: var(--heading-font-size-xxl);
  font-weight: 600;
}

h2 {
  font-size: var(--heading-font-size-xl);
}

h3 {
  font-size: var(--heading-font-size-m);
}

h4 {
  font-size: var(--heading-font-size-m);
}

h5 {
  font-size: var(--heading-font-size-s);
}

h6 {
  font-size: var(--heading-font-size-xs);
  font-weight: 400;
}

dl,
ol,
ul {
  margin-top: 40px;
  margin-bottom: 40px;
}

p {
  margin-top: 0;
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  margin: 0 0 20px;
}

ol li,
ul li {
  margin-bottom: 6px;
}

hr {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border: 0;
  border-bottom: 1px solid var(--overlay-background-color);
}

a:any-link {
  color: var(--link-color);
  text-decoration: underline;
  transition: all 0.3s linear;
}

a:hover {
  text-decoration: none;
  color: var(--link-hover-color);
  opacity: 0.8;
}

/* buttons */
a.button.secondary,
button.secondary {
  background-color: #fabc40;
  color: #fabc40 !important;
}

a.button.secondary::after,
button.secondary::after {
  display: none;
}

a.button:any-link,
button:not(.vjs-big-play-button, .vjs-control) {
  position: relative;
  font-family: var(--body-font-family);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  padding: 10px 16px 12px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  line-height: 120%;
  background-color: transparent;
  margin: 16px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 0;
  transition: all 0.2s linear;
  overflow: hidden;
  min-height: 41px;
}
@media (min-width: 1000px) {
  a.button:any-link,
  button:not(.vjs-big-play-button, .vjs-control) {
    padding: 12px 24px;
  }
}

a.button:any-link::after,
button:not(.vjs-big-play-button, .vjs-control)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fabc40;
  border-radius: 30px;
  transition: all 0.2s linear;
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
  cursor: pointer;
  color: #f8df5a;
  opacity: 1;
}

a.button:hover::after,
a.button:focus::after,
button:hover::after,
button:focus::after {
  border: 3px solid #fabc40;
}

button:disabled {
  background-color: var(--overlay-background-color);
  cursor: unset;
}

button:disabled:hover {
  background-color: var(--overlay-background-color);
  cursor: unset;
}

.button-container-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 15px;
}

.button-container-multi .button:any-link {
  margin: 0;
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon svg {
  height: 100%;
  width: 100%;
}

main > .section {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 1;
}

main > .section.references-container {
  padding-bottom: 0;
}

main > .section > div {
  width: 100%;
  max-width: 600px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  main > .section > div {
    max-width: 1172px;
  }
}
@media (min-width: 1000px) {
  main > .section > div {
    padding-left: 110px;
    padding-right: 110px;
  }
}

main > .section.wide > div {
  width: 100%;
  max-width: 600px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  main > .section.wide > div {
    max-width: 1172px;
  }
}
@media (min-width: 1000px) {
  main > .section.padding-right-desktop > div {
    padding-right: 225px;
  }
}

main > .section.no-padding-bottom {
  padding-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 1000px) {
  main > .section:first-child > div {
    padding-right: 485px;
    padding-left: 16px;
  }
}

.container {
  width: 100%;
  max-width: 600px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .container {
    max-width: 1172px;
  }
}

picture img {
  display: block;
}

sup {
  font-size: 0.6em;
}

.no-wrap {
  white-space: nowrap;
}

.heading-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (min-width: 1000px) {
  .heading-subtitle {
    font-size: 13px;
  }
}

strong u {
  color: #fabc40;
  text-decoration: none;
}

strong em u {
  color: #d95776;
  text-decoration: none;
  font-style: normal;
}

em strong u {
  color: #d95776;
  text-decoration: none;
  font-style: normal;
}