/*!
 * Theme Name: Helicases Conference
 * Theme URI: https://helicasesconference.com/
 * Description: Custom theme built with underscores
 * Version: 1.0
 * Author: Chad Phillips
 * Author URI: https://chadphillips.dev
 * Tags: underscores, HTML5, CSS3
 * 
 */

@import url(https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/* 400, 700 */
/**
 * Colors
 */
/**
 * layout
 */
/**
 * modules/mixins
 * ---
 */
.button {
  display: inline-block;
  border-radius: 44px;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease-out;
}
.button:hover {
  opacity: 0.9;
}
.button--white-text {
  color: #fff;
}
.button--orange-arrow {
  background-color: #F05C31;
  background-image: url("images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 24px) center;
  background-size: auto 12px;
  padding-right: 42px;
}
.button--orange-arrow:hover {
  opacity: 1;
  background-color: #33d4ad;
}
.button--transparent {
  background-color: color-mix(in oklab, #fff 10%, transparent);
  border: 1px solid color-mix(in oklab, #fff 30%, transparent);
}
.button--transparent:hover {
  background-color: color-mix(in oklab, #fff 20%, transparent);
  border-color: color-mix(in oklab, #fff 50%, transparent);
}
.button--white {
  background-color: #fff;
}
.button--wide {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 20px;
  color: #07203b;
  border-radius: 16px;
  background-image: url("images/arrow-navy.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 24px) center;
  background-size: auto 12px;
  padding-right: 42px;
}

.burger-container {
  position: fixed;
  width: 40px;
  height: 42px;
  top: 0px;
  right: 5%;
  display: none;
  z-index: 20000002;
  cursor: pointer;
}
@media (min-width: 768px) {
  .burger-container {
    top: 60px;
    right: 5%;
  }
}
@media (max-width: 1110px) {
  .burger-container {
    display: block;
  }
}

.hamburger,
.hamburger:after,
.hamburger:before {
  position: absolute;
  display: block;
  height: 3px;
  width: 36px;
  background-color: #000;
  border-radius: 0px;
  right: 0;
}
@media (min-width: 768px) {
  .hamburger,
.hamburger:after,
.hamburger:before {
    background-color: #000;
  }
}

.light .hamburger,
.light .hamburger:after,
.light .hamburger:before {
  background-color: #000;
}

.hamburger {
  top: 20px;
  transform-origin: center;
  transition: all 0.3s;
}

.hamburger:after,
.hamburger:before {
  content: "";
  transition: transform all 0.3s;
}

.hamburger:before {
  top: -9px;
}

.hamburger:after {
  top: 9px;
}

.toggled .hamburger:after,
.toggled .hamburger:before {
  top: 0;
  transition: all 0.3s;
}

.toggled .hamburger {
  background-color: transparent;
  transition: all 0.3s;
}

.toggled .hamburger:before {
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .toggled .hamburger:before {
    background-color: #000;
  }
}

.toggled .hamburger:after {
  transform: rotate(-45deg);
  width: 100%;
}
@media (max-width: 767px) {
  .toggled .hamburger:after {
    background-color: #000;
  }
}

.home__hero {
  color: #fff;
  position: relative;
  background: url("images/montreal.jpg") no-repeat center center;
  background-size: cover;
}
.home__hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, oklch(24% 0.06 253/0.92) 0%, oklch(24% 0.06 253/0.75) 40%, oklch(46% 0.14 315/0.55) 100%);
  z-index: 0;
}
.home__hero .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0 56px 0;
}
@media (min-width: 768px) {
  .home__hero .inner {
    padding: 128px 0 112px 0;
  }
}
@media (min-width: 1023px) {
  .home__hero .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.home__hero h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.05;
  font-family: "Fraunces", serif;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .home__hero h1 {
    font-size: 4.5rem;
  }
}
.home__hero__left {
  flex: 1 1 60%;
  max-width: 655px;
}
.home__hero__left p {
  color: color-mix(in oklab, #fff 85%, transparent);
  font-size: 18px;
  max-width: 36rem;
  line-height: 1.6;
}
.home__hero__right {
  flex: 1 1 36%;
  max-width: 504px;
}
.home__hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.home__hero__right {
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background-color: oklab(1 0 0.0000000596/0.1);
  border: 1px solid oklab(1 0 0.0000000596/0.15);
  border-radius: 1.5rem;
  padding: 32px;
}
.home__hero__small-heading {
  color: #33d4ad;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.home__hero__big-date {
  font-size: 2.25rem;
  line-height: 1.25;
  font-family: "Fraunces", serif;
  margin: 0.25em 0;
}
.home__hero__location {
  background-image: url(images/location.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 18px;
  padding-left: 36px;
  margin-bottom: 16px;
}
.home__hero__location--city {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.home__hero__location--province {
  color: color-mix(in oklab, #fff 70%, transparent);
  font-size: 14px;
}
.home__hero__participants {
  background-image: url(images/participants.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 18px;
  padding-left: 36px;
  margin-bottom: 16px;
}
.home__hero__participants--number {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.home__hero__participants--description {
  color: color-mix(in oklab, #fff 70%, transparent);
  font-size: 14px;
}
.home__hero__speakers {
  background-image: url(images/speakers.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 18px;
  padding-left: 36px;
  margin-bottom: 28px;
}
.home__hero__speakers--number {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.home__hero__speakers--description {
  color: color-mix(in oklab, #fff 70%, transparent);
  font-size: 14px;
}
.home__highlights {
  background-color: #fff;
}
.home__highlights .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 64px 0;
}
@media (min-width: 768px) {
  .home__highlights .inner {
    gap: 32px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.home__highlight {
  flex: 1 1 48%;
  max-width: 48%;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .home__highlight {
    flex: 1 1 25%;
    max-width: 25%;
    margin-bottom: 0;
  }
}
.home__highlight__icon img {
  height: 22px;
  width: auto;
}
.home__highlight__item {
  color: #4a5766;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
}
.home__highlight__short-description {
  font-weight: 400;
  color: #07203b;
  font-size: 1.25rem;
  font-family: "Fraunces", serif;
  margin-top: 4px;
}
.home__intro {
  padding: 64px 0;
  border-top: 1px solid #e2ded3;
  background-color: #fbfaf6;
}
@media (min-width: 768px) {
  .home__intro {
    padding: 128px 0;
  }
}
.home__intro .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1023px) {
  .home__intro .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.home__intro__subtitle {
  color: #F05C31;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.home__intro h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .home__intro h2 {
    font-size: 3rem;
  }
}
.home__intro p {
  color: #4a5766;
  font-size: 1.125rem;
  line-height: 1.625;
}
.home__intro a {
  text-decoration: none;
  color: #079A9D;
  font-weight: 600;
}
.home__intro a:hover {
  text-decoration: underline;
}
@media (min-width: 1023px) {
  .home__intro__left {
    flex: 1 1 45%;
    max-width: 45%;
  }
}
@media (min-width: 1023px) {
  .home__intro__right {
    flex: 1 1 47%;
    max-width: 47%;
  }
}
.home__keynote-speaker {
  padding: 64px 0;
  border-top: 1px solid #e2ded3;
  background: linear-gradient(rgb(7, 32, 59) 0%, oklab(0.240965 -0.0176985 -0.057529/0.85) 50%, rgb(7, 32, 59) 100%);
  color: #fff;
}
@media (min-width: 768px) {
  .home__keynote-speaker {
    padding: 128px 0;
  }
}
.home__keynote-speaker .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1023px) {
  .home__keynote-speaker .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1023px) {
  .home__keynote-speaker__initials {
    flex: 1 1 20%;
    max-width: 20%;
  }
}
.home__keynote-speaker__initials__inner {
  background: linear-gradient(90deg, oklch(0.67 0.21 35) 0%, oklch(0.72 0.16 55) 35%, oklch(0.8 0.15 78) 70%, oklch(0.78 0.14 172) 100%);
  border-radius: 50%;
  width: 224px;
  max-width: 100%;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 72px;
  aspect-ratio: 1/1;
}
.home__keynote-speaker__small-heading {
  color: #33d4ad;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.home__keynote-speaker__info {
  flex: 1 1 77%;
  max-width: 77%;
}
.home__keynote-speaker__name {
  font-size: 2.75rem;
  line-height: 1.25;
  font-family: "Fraunces", serif;
}
@media (min-width: 768px) {
  .home__keynote-speaker__name {
    font-size: 3.75rem;
  }
}
.home__keynote-speaker__university {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 8px;
  color: color-mix(in oklab, #fff 80%, transparent);
  margin-top: 12px;
}
.home__keynote-speaker__description {
  color: color-mix(in oklab, #fff 80%, transparent);
  margin-top: 24px;
  max-width: 672px;
}
.home__speakers {
  padding: 64px 0;
  background-color: #fbfaf6;
  display: none;
}
@media (min-width: 768px) {
  .home__speakers {
    padding: 128px 0;
  }
}
.home__speakers__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1023px) {
  .home__speakers__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.home__speakers__top__left {
  flex: 1 1 45%;
  max-width: 45%;
}
.home__speakers__top__right {
  flex: 1 1 45%;
  max-width: 45%;
  max-width: 445px;
}
.home__speakers__small-heading {
  color: #F05C31;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.home__speakers__heading {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 12px 0;
}
@media (min-width: 768px) {
  .home__speakers__heading {
    font-size: 3rem;
  }
}
.home__speakers__description {
  color: #4a5766;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-top: 30px;
}
.home__speakers__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-radius: calc(0.75rem + 8px);
  margin-top: 56px;
  background-color: #e2ded3;
  box-shadow: 0 1px 2px oklch(24% 0.06 253/0.06), 0 8px 24px -8px oklch(24% 0.06 253/0.12);
  overflow: hidden;
}
.home__speaker {
  padding: 24px;
  background-color: #fff;
}
.home__speaker__number {
  font-size: 12px;
}
.home__speaker__name {
  margin-top: 8px;
  font-size: 1.25rem;
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.home__speaker__university {
  margin-top: 4px;
  font-size: 14px;
  color: #4a5766;
}
.home__organizers {
  background-color: #f4eee0;
  padding: 64px 0;
}
@media (min-width: 768px) {
  .home__organizers {
    padding: 128px 0;
  }
}
.home__organizers__small-heading {
  color: #F05C31;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.home__organizers__heading {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 12px 0;
  font-weight: 500;
}
@media (min-width: 768px) {
  .home__organizers__heading {
    font-size: 3rem;
  }
}
.home__organizers__list {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .home__organizers__list {
    flex-direction: row;
  }
}
.home__organizer {
  box-shadow: 0 2px 4px oklch(24% 0.06 253/0.08), 0 24px 48px -12px oklch(24% 0.06 253/0.25);
  padding: 2rem;
  background-color: #fff;
  border-radius: 20px;
}
.home__organizer__email {
  display: none;
}
.home__organizer__name {
  font-size: 24px;
  font-family: "Fraunces", serif;
  padding-top: 16px;
  position: relative;
}
.home__organizer__name:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background-color: #079A9D;
}
.home__organizer:nth-child(2) .home__organizer__name:before {
  background-color: #F05C31;
}
.home__organizer:nth-child(3) .home__organizer__name:before {
  background-color: #894997;
}
.home__organizer__affiliation {
  font-size: 14px;
  color: #4a5766;
  margin-top: 14px;
}

.main-navigation {
  display: flex;
  align-items: center;
}
.main-navigation ul {
  list-style: none;
  display: flex;
}
.main-navigation ul li {
  margin-left: 20px;
}
.main-navigation ul li a {
  text-decoration: none;
  color: #07203b;
  transition: all 0.25s ease-out;
}
.main-navigation ul li a:hover {
  color: #F05C31;
}
@media (max-width: 1110px) {
  .main-navigation ul {
    display: none;
  }
}
.main-navigation.toggled ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  width: 100%;
  background-color: #fbfaf6;
  padding: 0;
}
.main-navigation.toggled ul li {
  margin-left: 0;
  padding: 16px 0;
  text-align: center;
}
.main-navigation.toggled ul li a {
  font-size: 18px;
}

.site {
  font-family: "Inter", sans-serif;
}
.site-content {
  margin-top: 154px;
}
.site-main {
  min-height: calc(100vh - 207px);
}
.site-main__content {
  padding-top: 40px;
}
.site .sponsor__container {
  padding: 30px 0;
  max-width: 1000px;
  text-align: center;
}
.site .sponsor__container a img {
  transition: all 0.25s ease-out;
}
.site .sponsor__container a:hover img {
  transform: scale(1.05);
}
@media (max-width: 1022px) {
  .site .sponsor__container img {
    max-width: 100% !important;
  }
}
.site .inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.site .rounded-label {
  border-radius: 30px;
  padding: 6px 16px 6px 26px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  position: relative;
  border: 1px solid oklab(1 0 0.0000000596/0.25);
}
.site .rounded-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #33d4ad;
}
.site .backdrop-blur {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: oklab(1 0 0.0000000596/0.1);
  border-bottom-color: oklab(1 0 0.0000000596/0.25);
}
.site .text-gradient-brand {
  background: linear-gradient(90deg, oklch(0.67 0.21 35) 0%, oklch(0.72 0.16 55) 35%, oklch(0.8 0.15 78) 70%, oklch(0.78 0.14 172) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

* {
  box-sizing: border-box;
}

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

.site-footer {
  width: 100%;
  color: #fff;
  background-color: #07203b;
}
.site-footer__copyright {
  padding-bottom: 16px;
  font-size: 14px;
}

.site-header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.site-header .site-branding {
  padding: 30px 0 0 0;
  height: 146px;
  display: flex;
  align-items: flex-end;
}
.site-header .site-branding img {
  width: 600px;
  max-width: 100%;
}
.site-header .inner {
  display: flex;
}
.site-header__colorful-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #894997, #543f99, #079A9D, #33d4ad, #F8A919, #F05C31, #fb5429);
}

/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignnone {
  clear: none;
  display: inline-block;
}

.alignleft {
  display: block;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: block;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after {
  clear: both;
}
