/*
Theme Name: Beauty
Author: Matt Lewis
Requires at least: 6.5
Tested up to: 6.5.2
Requires PHP: 7.0
Version: 1.1.0
*/

/* Defaults
---------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
m
a,
button,a
input:focus,
input[type="button"],
input[type="submit"],
textarea:focus,
.wp-element-button {
  transition: all 0.2s ease-in-out;
}

a,
a:focus,
a:hover,
a:not(.wp-element-button) {
  text-decoration-thickness: 1px;
}

b,
strong,
th {
  font-weight: var(--wp--custom--font-weight--medium);
}

mark {
  background: linear-gradient(90deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary) 100%);
  background-position: 0 85%;
  background-repeat: repeat-x;
  background-size: 100% 15%;
}

/* -- Forms -- */

input,
select,
textarea {
  background-color: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--light);
  line-height: var(--wp--custom--line-height--body);
  padding: 10px 20px;
  width: 100%;
}

input:focus,
textarea:focus {
  background-color: var(--wp--preset--color--neutral);
  outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: auto;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
  -webkit-appearance: none;
}

::placeholder {
  color: var(--wp--preset--color--contrast);
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.5;
}

/* Blocks
---------------------------------------- */

/* -- Code -- */

*:not(.wp-block-code) > code {
  background-color: var(--wp--preset--color--neutral);
  font-size: var(--wp--preset--font-size--small);
  padding: 5px 8px;
}

/* -- Navigation -- */

.wp-block-navigation__responsive-container.is-menu-open {
  padding: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  border: 1px solid currentColor;
  padding: 2px;
}

.has-background .wp-block-navigation__responsive-container-open:focus,
.has-background .wp-block-navigation__responsive-container-open:hover {
  color: var(--wp--preset--color--base);
}

/* -- Navigation Submenu -- */

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background-color: var(--wp--preset--color--contrast);
  border: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  padding: 10px;
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a {
  padding: 2px 10px;
}

/* Utility
---------------------------------------- */

/* -- Box Shadow -- */

.is-style-shadow-light {
  box-shadow: var(--wp--preset--shadow--light);
}

.is-style-shadow-solid {
  box-shadow: var(--wp--preset--shadow--solid);
}

/* Media Queries
---------------------------------------- */

@media only screen and (max-width: 600px) {
  /* -- Utility -- */

  .is-style-hidden-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 782px) {
  /* -- Columns -- */

  .is-style-columns-reverse {
    flex-direction: column-reverse;
  }
}

/* BEAUTY STYLES
---------------------------------------- */

:root {
  --primary: #ee544d;
  --secondary: #ffcc5c;
  --tertiary: #ffeead;
  --dark-color: #0f0f0f;
  --light-color: #fff;
}

/* Base Styles */
.container {
  margin: 0 auto;
  padding: 0 1rem;
  width: 1280px;
  max-width: 100%;
}

/* Main Header */
.beauty-header {
  background: transparent;
  color: #fff;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.beauty-header.scrolled {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}
.acf-block-preview .beauty-header {
  background: #0f0f0f;
  position: relative;
}
header .beauty-header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2.5rem;
  max-width: 100%;
  width: 100%;
  transition: all 0.3s ease;
}
header .beauty-header.scrolled .container {
  padding: 1rem 2.5rem;
}
header .beauty-header img {
  height: 32px;
  transition: all 0.3s ease;
}
header .beauty-header.scrolled img {
  height: 16px;
}

header .menu-toggle,
header .language-toggle {
  color: white;
  background: transparent;
  border: none;
  padding: 0.85rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
header .menu-toggle::before,
header .language-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--light-color);
  z-index: 1;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s;
}
header .menu-toggle::after,
header .language-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 1;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s;
  left: -100%;
  transition-delay: 0.15s;
}
header .menu-toggle:hover::before,
header .language-toggle:hover::before {
  left: 0;
}
header .menu-toggle:hover::after,
header .language-toggle:hover::after {
  left: 0;
}
header .menu-toggle span,
header .language-toggle span {
  position: relative;
  z-index: 2;
}
header .beauty-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2px);
}
header .beauty-header div {
  width: 100%;
}
header .beauty-header div:last-child {
  display: flex;
  justify-content: flex-end;
}

h2 {
  line-height: 0.85;
  font-weight: 100 !important;
}
h2 strong {
  line-height: 0;
  transform: translateY(-6px) !important;
}
/* Main Navigation */
.beauty-menu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
.beauty-menu.open {
  opacity: 1;
  pointer-events: all;
}
.beauty-menu .container {
  display: grid;
  justify-content: center;
  text-align: center;
}
.beauty-menu ul {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.beauty-menu li {
  list-style: none;
}
.menu-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.beauty-menu a {
  text-decoration: none;
  font-size: 5.5rem;
  font-family: var(--wp--preset--font-family--druk-trial);
  text-transform: uppercase;
  line-height: 0.85;
}
.beauty-menu a img {
  height: 16px !important;
  margin: 0 auto !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
}
.beauty-menu a.active {
  color: var(--primary);
}
.beauty-menu a span {
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  transform: translateY(-5px);
  display: inline-block;
}
.beauty-menu a:hover {
  color: var(--primary);
  transition: all 0.3s ease;
}
.beauty-menu .menu-toggle {
  position: absolute;
  top: 40px;
  left: 40px;
}

.mouse-img img {
  filter: invert(1);
  margin: 0 auto;
  text-align: center;
  opacity: 0.5;
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

h3 {
  font-weight: 100 !important;
}
mark {
  background: none !important;
}

.padded-left {
  padding-left: 4rem;
  padding-right: 12rem;
}

h6 {
  color: var(--primary);
  font-size: 13px !important;
  margin-bottom: 5px;
  font-weight: 200;
}
.wp-block-button .wp-block-button__link {
  border-radius: 0 !important;
}

.video-block {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.video-block video {
  position: absolute;
  left: 0;
  top: 0;
  aspect-radio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.video-block button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  background: transparent;
  padding: 0;
}
.video-block button svg {
  height: 55px;
}

.padding-right-1 {
  padding-right: 1rem;
}

.mce-edit-area html,
.mce-edit-area body,
.mce-edit-area,
#tinymce,
div.mce-edit-area,
.acf-editor-wrap iframe,
.post-type-voice,
.mce-container,
.mce-container *,
.mce-widget,
.mce-widget *,
.mce-reset {
  background: white !important;
}

.voice-block {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.voice-block p {
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.4;
}
.voice-block h3 {
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0;
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  line-height: 1.2;
}

.voice-about {
  width: 980px;
  text-align: center;
  padding-bottom: 3.5rem;
  margin: 0 auto;
}
.voice-about h2 {
  margin-bottom: 0;
  font-size: 4rem;
}
.voices-intro .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  padding-bottom: 0rem;
  gap: 3rem;
}
@media (max-width: 992px) {
  .voices-intro .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.voices-intro img {
  max-width: 100%;
}
.voices-intro h2 {
  margin-bottom: 0;
  margin-top: 0;
}
.voices-intro .bio {
  padding: 0;
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  font-size: 2rem;
  line-height: 1.2;
}
.eyebrow {
  margin-bottom: 0;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px !important;
  display: block;
}

.gform_title {
  display: none;
}
.gform-theme--foundation .gfield .ginput_password.large,
.gform-theme--foundation .gfield input.large,
.gform-theme--foundation .gfield select.large,
.gform-theme--foundation .gfield textarea.medium {
  background: rgba(255, 255, 255, 0) !important;
  border-radius: 0;
  border: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35) !important;
  color: #efefef;
  font-size: 15px;
}
.gform-theme--foundation .gfield textarea.medium {
  height: 45px;
}
.gform-theme--foundation * ::placeholder {
  font-size: 14px;
}
.gform-theme--foundation input[type="submit"] {
  width: 100% !important;
  border-radius: 0 !important;
  background: white !important;
  color: #212121 !important;
  text-transform: uppercase !important;
  letter-spacing: 5px !important;
  padding: 16px !important;
  height: auto !important;
  margin-top: 12px !important;
  transition: all 0.3s ease !important;
}
.gform-theme--foundation input[type="submit"]:hover {
  background: var(--primary) !important;
  color: white !important;
}
.form-buttons {
  width: 700px;
  max-width: 95%;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
  background: white;
  display: flex;
  gap: 1px;
  border: 1px solid white;
}
.form-buttons button {
  width: 100%;
  background: #0f0d0d;
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  font-size: 38px;
  color: white;
  border-radius: 0;
  transition: all 0.3s ease;
  padding: 32px;
  padding-bottom: 42px;
  box-shadow: none;
  cursor: pointer;
  line-height: 1;
  border: none !important;
}
.form-buttons button:hover {
  border-radius: 6rem;
}
.form-buttons button.active {
  border-radius: 6rem;
}
.toggle-title svg {
  transition: all 0.3s ease;
}
.toggle-title.active svg {
  transform: rotate(45deg);
}

@media (max-width: 992px) {
  .reversed-mobile {
    order: 2;
  }
  .hidden-mobile {
    display: none !important;
  }
}

.video-footer {
  width: 100%;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 6rem !important;
  margin-bottom: -45px !important;
}
.video-footer video {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Founders */
.bottom-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 3rem;
  padding-top: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid #333;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  height: 100vh;
  z-index: 99999;
}
.bottom-popup .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 972px;
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .bottom-popup .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.bottom-popup.open {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}
.bottom-popup button {
  color: white;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  right: 44px;
  top: 44px;
}
.bottom-popup h2 {
  font-size: 60px;
  line-height: 1.3;
  color: white;
  margin-bottom: 1rem;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 972px;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 4rem;
}
.founders-grid img {
  max-width: 100%;
}
.founders-grid p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #999;
}
.founder-image {
  position: relative;
  overflow: hidden;
}
.founder-image::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}
.founder-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}
.founder-image:hover img {
  transform: scale(1.1);
}
.founder-image:hover::before {
  opacity: 1;
}
.founder-image button {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.25rem;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  pointer-events: none;
  opacity: 0;
}
.founder-image:hover button {
  bottom: 50%;
  opacity: 1;
  pointer-events: auto;
}

body.stuck {
  overflow: hidden;
}

.beauty-menu .social-icons {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
  justify-content: center;
}
.b-tb {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* .logo-grid div:last-of-type img {
  width: 190px;
} */
.logo-grid img {
  width: auto !important;
}
.hero-title {
  margin-top: 25px !important;
}
@media (max-width: 992px) {
  .hero-title {
    margin-top: 100px !important;
  }
}

.growing-image {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.full-grown {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  display: block;
}
.grow-end img {
  max-width: 100%;
}
.grow-end {
  width: 100% !important;
  max-width: 100% !important;
}
.grow-end img {
  max-width: 100vw !important;
}

/* Test */

.down-container {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-bottom: 4.5rem !important;
}
.down-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.grow-end {
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
}
.fader {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.preload {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
}
.prepreload {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
}

/* Voices List */
.voices-list img {
  filter: grayscale(1);
  max-width: 100%;
}
.voices-list .round-block .container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  justify-content: center;
  align-items: center;
  width: 1000px;
  gap: 3rem;
}
.voices-list .round-block a {
  text-decoration: none !important;
  color: white !important;
}
.voices-list .voices-list {
  max-width: 100%;
}
.voices-list .voices-list img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.voices-list .voices-list a {
  text-decoration: none !important;
  color: white !important;
}
.voices-list .round-container {
  padding: 5rem 0;
}
.voices-list .round-block {
  border-top: 1px solid #333;
  display: block;
}
.voices-list .bio {
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  font-size: 28px;
  line-height: 1.3;
}
.voices-list .round-block-image {
  grid-column: span 5 / span 5;
}
.voices-list .round-block-content {
  grid-column: span 7 / span 7;
}
.voices-list .round-block-content h2 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
}
.voices-list .eyebrow {
  margin-bottom: 4px;
}
.voices-list p {
  margin-top: 0;
  font-size: 14px;
  color: #b8b8b8 !important;
}
.home .voices-list p {
  font-size: 16px;
}
.voices-list .round-block {
  background: white;
}
.voices-list .round-container {
  background: #0f0d0d;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.voices-list .round-block:hover .round-container {
  border-radius: 8rem;
  background: #000;
}
.voices-list a {
  text-decoration: none !important;
}
@media (max-width: 992px) {
  .voices-list .round-block .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .voices-list .round-block-image {
    grid-column: span 1 / span 1;
  }
  .voices-list .round-block-content {
    grid-column: span 1 / span 1;
  }
  .voices-list img {
    width: 300px;
    margin: 0 auto;
  }
  .voices-list .round-block-image {
    text-align: center;
  }
}

.wp-admin .grow-end {
  margin: 0 auto !important;
}
.hidden-desktop {
  display: none;
}
.hidden-mobile {
  display: block;
}
@media (max-width: 992px) {
  .hidden-desktop {
    display: block;
  }
  .hidden-mobile {
    display: none;
  }
  .beauty-menu .container {
    max-width: 100% !important;
    width: 100%;
  }
  .beauty-menu a {
    font-size: 3.5rem;
  }
}

body:not(.wp-admin) .fade-up {
  visibility: hidden;
}

.grow-end {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}
.down-container {
  margin: 0 auto;
  width: 100px;
  min-width: 120px !important;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.down-container img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-width: 100%;
  min-width: 100% !important;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  position: relative !important;
}
.fader {
  width: 0;
}
.down-container {
  visibility: hidden;
}
.home {
  overflow-x: hidden !important;
}
@media (min-width: 1300px) {
  .down-container {
    margin: 0 auto;
    transform: translateY(-57vh);
    min-width: 200px !important;
    width: 200px;
  }
}

.home-hero {
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.internal-hero h2 {
  font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 120px) !important;
  line-height: 0.89 !important;
}
.internal-hero h2 strong {
  font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 132px) !important;
}

.internal-cta h2 {
  font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 100px) !important;
  line-height: 1 !important;
}
.internal-cta h2 strong {
  font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 108px) !important;
}

.text-white {
  color: white !important;
}

@media (max-width: 1200px) {
  .container {
    width: auto;
  }
  .internal-hero h2 {
    font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 90px) !important;
    line-height: 1 !important;
  }
  .internal-hero h2 strong {
    font-size: clamp(61.532px, -24.896px + 3.846rem + 7.78vw, 100px) !important;
  }
  h3 {
    font-size: clamp(26.465px, -6.7392px + 1.654rem + 2.106vw, 35px) !important;
  }
  .beauty-menu a {
    font-size: 3.5rem;
  }
  .home-hero h2 {
    font-size: clamp(68.676px, -29.5712px + 4.292rem + 9.241vw, 120px) !important;
  }
  .down-container {
    transform: translateY(-395px);
  }
  h3 {
    line-height: 1.1;
  }
  .has-max-72-font-size {
    font-size: 55px !important;
  }
}

.founder-content {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}
.founder-content p {
  padding: 0;
  color: white;
}
.founder-content a:hover {
  color: var(--primary);
}
.text-primary {
  color: var(--primary) !important;
}
.popup p {
  font-size: 17px;
}
.popup p strong {
  font-family: var(--wp--preset--font-family--proxima-nova);
  font-weight: 700;
}
/* .question h3 {
  font-family: var(--wp--preset--font-family--proxima-nova);
} */

:root :where(.wp-element-button, .wp-block-button__link),
.wp-block-button__link,
input[type="submit"],
.round-block-content button {
  background: white !important;
  color: #212121 !important;
  position: relative;
  overflow: hidden;
}

:root :where(.wp-element-button, .wp-block-button__link),
.wp-block-button__link,
input[type="submit"],
.round-block-content button {
  background: transparent !important;
}

:root :where(.wp-element-button, .wp-block-button__link)::before,
.wp-block-button__link::before,
input[type="submit"]::before,
.round-block-content button::before {
  content: "";
  width: 100%;
  top: 0;
  right: 0;
  height: 100%;
  background: white !important;
  position: absolute;
  z-index: -2 !important;
  transition: all 0.3s ease;
}

:root :where(.wp-element-button, .wp-block-button__link):hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
.round-block-content button:hover {
  color: white !important;
}

:root :where(.wp-element-button, .wp-block-button__link)::after,
.wp-block-button__link::after,
input[type="submit"]::after,
.round-block-content button::after {
  content: "";
  width: 0%;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
  z-index: -1 !important;
}

:root :where(.wp-element-button, .wp-block-button__link):hover::after,
.wp-block-button__link:hover::after,
input[type="submit"]:hover::after,
.round-block-content button:hover::after {
  width: 100%;
  transition: all 0.3s ease;
}

:root :where(.wp-element-button, .wp-block-button__link):hover::before,
.wp-block-button__link:hover::before,
input[type="submit"]:hover::before,
.round-block-content button:hover::before {
  width: 0%;
}

footer h3 {
  font-size: 30px;
}
footer h3 strong {
  font-size: 32px;
}
.footer-navigations {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  max-width: 80%;
}
.footer-navigations ul {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.footer-navigations ul li {
  list-style: none;
}
.footer-navigations ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.footer-navigations h5 {
  font-size: 17px;
  color: white;
  margin-bottom: 0 !important;
  padding-bottom: 12px;
  margin-top: 0;
  display: block;
  font-family: var(--wp--preset--font-family--proxima-nova);
}
footer h3 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
footer .eyebrow {
  margin-bottom: 8px !important;
}
.hidden {
  display: none;
}
.inquiry {
  text-align: center;
  margin-top: -45px;
  margin-bottom: 65px;
}
.inquiry a {
  color: white;
  font-size: 32px;
  text-align: center;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
  transition: all 0.3s ease;
}
.inquiry a:hover {
  color: var(--primary);
}

@media (max-width: 992px) {
  .home-hero {
    height: auto;
    padding-top: 50px !important;
    padding-bottom: 32px !important;
  }
  .wp-block-image.hidden-desktop {
    margin-bottom: -50px !important;
  }
  .footer-navigations {
    width: 100% !important;
    max-width: 100% !important;
  }
  header .beauty-header .container {
    padding: 1.5rem 1rem;
  }
  header .beauty-header.scrolled .container {
    padding: 1rem 1rem;
  }
  header .beauty-header img {
    height: 12px !important;
  }
  .padded-left {
    padding-left: 2rem;
    padding-right: 5rem;
  }
  .voices-list .round-block-content h2 {
    font-size: 40px !important;
    margin-bottom: 12px;
  }
  .voices-list .round-container {
    padding: 4rem 0;
  }
  .home .voices-list img {
    width: 200px !important;
  }
  .voices-list .bio {
    font-size: 25px !important;
  }
  .footer-block h2 {
    font-size: 34px !important;
  }
  .footer-block h2 strong {
    font-size: 38px !important;
  }
  .footer-navigations {
    display: block !important;
  }
  .footer-navigations h5 {
    margin-top: 32px !important;
  }
  .round-block-content {
    text-align: center !important;
  }
  .bv-image img {
    width: 250px !important;
  }
  .voice-about {
    max-width: 100%;
    width: auto !important;
  }
  .voice-block {
    padding: 2rem !important;
  }
  footer h2 {
    line-height: 1.2 !important;
  }
  .internal-hero .wp-block-spacer {
    max-height: 50px !important;
  }
  .internal-hero h2 {
    font-size: 60px !important;
  }
  .internal-hero h2 strong {
    font-size: 64px !important;
  }
  .logo-grid a::after {
    width: 8px !important;
    height: 8px !important;
    top: 9px !important;
    left: 5px !important;
  }
  .logo-grid img {
    object-fit: contain !important;
  }
  .logo-grid a {
    padding-bottom: 3rem !important;
  }
  .form-buttons button {
    font-size: 26px !important;
    padding: 24px 14px !important;
    padding-bottom: 30px !important;
  }
  .voices-list button {
    color: #000 !important;
  }
  .voices-list button:hover {
    color: white !important;
  }
}

footer .gfield--type-email {
  grid-column: span 12 / span 12 !important;
}

/* Blog Styles */
.single.single-format-standard,
body.post-type-post,
.category,
.blog {
  background: white !important;
}

body.post-type-post h2,
body.post-type-post h3,
body.post-type-post h4,
body.post-type-post h5,
body.post-type-post h6,
body.post-type-post p,
body.post-type-post h1 {
  color: #0f0f0f !important;
}
.single.single-format-standard h2,
.single.single-format-standard h3,
.single.single-format-standard h4,
.single.single-format-standard h5,
.single.single-format-standard h6,
.category h2,
.category h3,
.category h4,
.category h5,
.category h6,
.blog h2,
.blog h3,
.blog h4,
.blog h5,
.blog h6 {
  color: #0f0f0f;
}
body.post-type-post p {
  font-family: var(--wp--preset--font-family--playfair) !important;
  font-size: 20px;
}

.single.single-format-standard header,
.archive header,
.blog header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9;
}
.blog-header {
  padding: 0.5rem 2rem;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0 !important;
}
.blog-header ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}
.blog-header ul li {
  list-style: none;
}
.blog-header ul li a {
  font-family: var(--wp--preset--font-family--druk);
  color: #0f0f0f;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
}
.blog-header ul li a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: -3px;
  left: 0;
}
@media (max-width: 992px) {
  .blog-header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .blog-header ul {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .blog-header ul li a {
    font-size: 20px;
  }
  .blog-header ul {
    gap: 32px;
  }
  .blog-header ::-webkit-scrollbar,
  .blog-header ::-webkit-scrollbar-button,
  .blog-header ul ::-webkit-scrollbar-button,
  .blog-header ul ::-webkit-scrollbar-button,
  .blog-header ul ::-webkit-scrollbar-button {
    display: none;
  }
}
.cats {
  margin-top: 12px;
}
.cats a {
  border: 1px solid white;
  padding: 2px 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: white !important;
  font-family: var(--wp--preset--font-family--proxima-nova);
  display: inline-block;
  margin-bottom: -12px;
  margin-top: -5px;
}
.wp-block-search__inside-wrapper input:focus {
  background: transparent !important;
}
.single main .alignfull.has-background {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
  padding: 3rem 1rem !important;
}
.blog-footer {
  margin-top: -3rem;
}
.cats a:hover {
  background: var(--primary);
  color: white;
}
.single-hero {
  margin-top: 0;
  margin-bottom: 2rem !important;
}
.single-hero h2,
body.post-type-post .single-hero h2 {
  color: white !important;
}
.single-hero figure img {
  min-height: 550px;
}
.single.single-format-standard main {
  padding-top: 0 !important;
}
.single.single-format-standard p strong {
  font-family: var(--wp--preset--font-family--playfair);
  font-weight: 700 !important;
}
.single.single-format-standard .wp-block-group h3,
.single.single-format-standard .wp-block-group:not(.has-background) > h2 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  line-height: 1;
  font-size: 44px;
}
.post-grid h2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.post-grid .cats a {
  background: #000;
}
.wp-block-outermost-social-sharing:not(.is-style-logos-only) .wp-block-outermost-social-sharing-link {
  background-color: #ffffff;
  color: #212121;
}

.wp-admin .fade-up {
  visibility: visible !important;
  opacity: 1 !important;
}
.big-post {
  position: relative;
  overflow: hidden;
  background: #212121;
  margin-bottom: 4rem;
}
.big-post img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.35;
  margin-top: -5%;
  transform: scale(1.3);
}
.big-post .wp-block-group {
  padding: 8rem 0;
}
.big-post h2 {
  color: white;
  line-height: 1;
  margin-top: 0;
  font-size: 64px;
}
.wp-block-read-more {
  background: var(--primary);
  padding: 8px 18px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}
.single.single-format-standard h4 {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.site-editor-php .fade-up {
  opacity: 1 !important;
  visibility: visible !important;
}

.blog .wp-block-post-template li:nth-child(5), 
.blog .wp-block-post-template li:nth-child(14), 
.blog .wp-block-post-template li:nth-child(23) {
  background: #212121;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.blog .wp-block-post-template li:nth-child(5) .cats, 
.blog .wp-block-post-template li:nth-child(14) .cats,
.blog .wp-block-post-template li:nth-child(23) .cats,
.blog .wp-container-core-group-is-layout-9 {
  position: relative;
}
@media (min-width: 1200px) {
  .blog .wp-block-post-template li:nth-child(5), 
  .blog .wp-block-post-template li:nth-child(14), 
  .blog .wp-block-post-template li:nth-child(23) {
    grid-column: span 4 / span 4;
  }
}
.blog .wp-block-post-template li:nth-child(5) figure, 
.blog .wp-block-post-template li:nth-child(14) figure,
.blog .wp-block-post-template li:nth-child(23) figure,
.blog .wp-block-post-template li:nth-child(5) img, 
.blog .wp-block-post-template li:nth-child(14) img,
.blog .wp-block-post-template li:nth-child(23) img {
  aspect-ratio: auto !important;
}

.blog .wp-block-post-template li:nth-child(5) figure, 
.blog .wp-block-post-template li:nth-child(14) figure,
.blog .wp-block-post-template li:nth-child(23) figure {
  aspect-ratio: auto !important;
  max-width: none;
  width: 100%;
  position: absolute;
  height: 100%;
  top: -30px;
  left: 0;
  margin: 0 auto !important;
  z-index: 0;
}
.blog .wp-block-post-template li:nth-child(5) h2, 
.blog .wp-block-post-template li:nth-child(14) h2,
.blog .wp-block-post-template li:nth-child(23) h2 {
  font-size: 70px !important;
  color: white !important;
}
.blog .wp-block-post-template li:nth-child(5) h2 a, 
.blog .wp-block-post-template li:nth-child(14) h2 a,
.blog .wp-block-post-template li:nth-child(23) h2 a {
  color: white !important;
  font-size: 56px;
  margin-bottom: 32px !important;
}
.blog .wp-block-post-template li:nth-child(5) img, 
.blog .wp-block-post-template li:nth-child(14) img,
.blog .wp-block-post-template li:nth-child(23) img {
  opacity: 0.85;
}
.blog .wp-block-post-template li:nth-child(5) .wp-block-group, 
.blog .wp-block-post-template li:nth-child(14) .wp-block-group,
.blog .wp-block-post-template li:nth-child(23) .wp-block-group {
  justify-content: center;
  position: relative;
}
.blog .wp-block-post-template li:nth-child(5) p, 
.blog .wp-block-post-template li:nth-child(14) p,
.blog .wp-block-post-template li:nth-child(23) p {
  color: white !important;
  font-size: 18px;
  margin-top: -14px !important;
}
.blog .wp-block-post-template li:nth-child(5) .post-grid, 
.blog .wp-block-post-template li:nth-child(14) .post-grid,
.blog .wp-block-post-template li:nth-child(23) .post-grid {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
}
.blog .wp-block-post-template li:nth-child(5) img, 
.blog .wp-block-post-template li:nth-child(14) img,
.blog .wp-block-post-template li:nth-child(23) img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 106%;
    opacity: .5;
}
.blog .wp-block-post-template li:nth-child(14) .post-grid .cats a,
.blog .wp-block-post-template li:nth-child(23) .post-grid .cats a {
    background: transparent !important;
}
.search .wp-block-post-template li:nth-child(5) img, 
.search .wp-block-post-template li:nth-child(14) img,
.search .wp-block-post-template li:nth-child(23) img {
  display: block !important;
  transform: none !important;
}


.wp-block-outermost-social-sharing .outermost-social-sharing-link svg {
  height: 0.75em;
  width: 0.75em;
}
.wp-container-outermost-social-sharing-is-layout-1 {
  gap: 16px;
}

.post-slide {
  background: #212121;
  position: relative;
  overflow: hidden;
  margin-top: -65px;
  padding: 6rem 0;
  padding-top: 12rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  height: 550px;
  position: relative;
  overflow: hidden;
}
.post-slide .container {
  width: 800px;
  margin: 0 auto;
}
.post-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: 0 !important;
  top: 0;
  opacity: 0.35;
}
.post-slide a {
  color: white !important;
  text-decoration: none;
  position: relative;
  z-index: 3;
  background: transparent !important;
  border: none;
  overflow: hidden;
  display: inline-block;
  line-height: 1;
  padding: 12px 18px;
  padding-top: 14px;
}
.post-slide a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary);
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: all 0.3s ease;
}
.post-slide a:hover::before {
  left: 0;
}
.post-slide h2 {
  color: white;
  line-height: 1;
  margin-top: -4px;
}
.siema {
  margin-top: 0 !important;
}
.siema img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.35;
}
.siema > div {
  height: 550px;
}
.siema h2 {
  margin-bottom: 16px;
  font-size: 64px;
}
.siema .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.siema .container {
  position: relative;
  z-index: 3;
}
.button {
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 1rem;
}
.button:hover {
  background: white;
  color: var(--primary);
}

.archive .blog-header,
.blog .blog-header {
  position: absolute !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding-top: 0 !important;
  margin-top: -32px !important;
}

.blog-header img {
  padding-top: 1rem;
  max-width: 100%;
  margin-bottom: auto;
  min-width: 100%;
  margin-left: 0;
  transform: scale(1.04);
  margin-top: -9px;
}
.blog-footer img {
  max-width: 100%;
  width: 100%;
  padding: 1rem;
  padding-top: 0;
}
.wp-block-post-excerpt {
  margin-top: 6px !important;
}
.blog,
.archive,
.single {

}
.archive .siema .container,
.blog .siema .container {
  height: auto !important;
  padding-top: 200px !important;
}
.siema {
  margin-bottom: -64px !important;
}
.siema > div {
  height: 750px !important;
}
.post-slide {
  height: 750px !important;
}
.archive header,
.blog header {
  position: absolute !important;
  background: transparent !important;
  width: 100% !important;
  margin-top: 32px !important;
}
.archive .blog-header a,
.blog .blog-header a {
  color: white !important;
}
.archive .blog-header img {
  padding-top: 0 !important;
}
.single h5,
.blog h5,
.archive h5 {
  color: white !important;
}

.quote-slider img {
  height: 40px !important;
}
.quote-slider {
  max-width: 100% !important;
}
.archive header,
.archive .blog-header {
  position: relative !important;
}
.archive .blog-header ul li a {
  color: #212121 !important;
}
.archive header {
  padding-top: 12px !important;
}
.archive header img {
  margin-bottom: 5px !important;
}
h6 {
  margin-bottom: -12px !important;
}
.postid-1407 .single-hero .wp-block-columns {
  background: linear-gradient(182.15deg, #5c42a7 8.2%, #c574a2 117.35%) !important;
}
.postid-1433 .single-hero .wp-block-columns {
  background: linear-gradient(209.64deg, #f23068 8.69%, #ffb0ca 94.54%) !important;
}

.single .has-global-padding > .alignfull p {
  font-family: var(--wp--preset--font-family--proxima-nova);
  text-transform: uppercase;
}
.single main h4 {
  font-family: var(--wp--preset--font-family--proxima-nova);
  font-size: 24px !important;
}
.voices-list .round-block-content h2 strong {
  font-family: var(--wp--preset--font-family--druk) !important;
}

.blog .wp-block-post-template li:nth-child(5) .cats a {
  background: transparent !important;
}
.post-grid h2 {
  font-size: 34px !important;
  margin-bottom: -6px;
  margin-top: -42px !important;
  letter-spacing: 0.5px;
}
.wp-block-post-excerpt__excerpt {
  font-family: var(--wp--preset--font-family--playfair);
}
.blog .wp-block-post-template li:nth-child(5) p {
  color: white !important;
  display: block;
  margin-top: -12px;
  font-size: 14px;
}
.single-hero .cats a {
  padding-top: 3px !important;
}
.single-hero .wp-block-columns h2 {
  font-size: 50px !important;
  margin-top: 7px !important;
}
.wp-block-outermost-social-sharing:not(.is-style-logos-only) .wp-block-outermost-social-sharing-link {
  font-size: 20px;
}

.parallax-image-three .eyebrow {
  margin-bottom: -28px;
}
.single.single-format-standard .wp-block-group h3,
.single.single-format-standard .wp-block-group:not(.has-background) > h2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
mark,
mark.has-primary-color {
  color: white !important;
  position: relative;
}
mark {
  position: relative;
}

mark::after {
  content: "";
  width: var(--pseudo-width, 0%);
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
  transition: width 0.8s ease-in-out;
}
mark::after {
  bottom: 5px !important;
  background-image: url(https://topicsthattransform.com/wp-content/uploads/stroke.svg) !important;
  background: transparent;
  height: 22px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  bottom: 2px !important;
}
h3 .has-secondary-color {
  color: white !important;
}
h3 mark::after {
  bottom: -3px !important;
}
.home h3 mark::after {
  bottom: 2px !important;
}

.wp-block-columns h3 {
  margin-top: 20px !important;
  letter-spacing: 0 !important;
  line-height: 0.85 !important;
  font-size: 90px !important;
}
h6,
.eyerbow {
  font-weight: 600 !important;
}

.wp-block-group .gform_wrapper {
  border-top: 1px solid var(--primary);
  padding-top: 32px;
}
.home p {
  margin-top: 12px !important;
}
.home p strong {
  font-size: 22px !important;
}

.button-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.button-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -100%;
  background: var(--primary);
  transition: left 0.3s ease-in-out;
}
.button-wrapper::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0%;
  z-index: -1;
  background: white;
  transition: left 0.3s ease-in-out;
}

.button-wrapper:hover::before {
  left: 0;
}
#gform_submit_button_2,
#gform_submit_button_1 {
  margin-top: 0 !important;
  background: transparent !important;
}
#gform_submit_button_2:hover,
#gform_submit_button_1:hover {
  background: transparent !important;
}

.button-wrapper {
  width: 100% !important;
}
#gform_submit_button_2,
#gform_submit_button_1 {
  font-size: 12px !important;
}

@media (min-width: 992px) {
  .home main > div {
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .hidden-desktop img {
    margin-bottom: 32px;
  }
  .wp-block-columns h3,
  .quote-slider h2 {
    font-size: 48px !important;
  }
  .video-block {
    aspect-ratio: 16/9 !important;
  }
  .beauty-menu a img {
    display: none;
  }
}

.blog-footer .footer-nav {
  margin: 0;
  padding: 0;
  margin-bottom: 1.75rem;
}
.blog-footer .footer-nav li {
  list-style: none !important;
  display: block;
}
.blog-footer .footer-nav li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: var(--wp--preset--font-family--proxima-nova);
  display: block;
  margin-bottom: 6px;
}

.insta:hover {
  color: var(--primary);
}
.readmore {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  box-shadow: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.readmore::after {
  content: "...";
}
.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.hidden-content.active {
  max-height: none;
}

/* Blog Mobile */
@media (max-width: 992px) {
  .post-slide .container {
    width: auto;
  }
  .archive .blog-header,
  .blog .blog-header {
    max-width: 100%;
  }
  .archive .siema .container,
  .blog .siema .container {
    padding-top: 70px !important;
  }
  .single-hero figure img {
    min-height: 300px !important;
  }
}

.page-template-wp-custom-template-search-posts,
.search {
  background: white;
}
.blog-header {
  box-shadow: none;
  border: none;
}

:root :where(.wp-element-button, .wp-block-button__link) {
  border-radius: 0;
}
:root :where(.wp-element-button, .wp-block-button__link)::before {
  background: #f9f9f9 !important;
}

.single .blog-header {
  text-align: center;
}
.single .blog-header img {
  width: 600px;
  min-width: 0px !important;
  margin: 0 auto;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.single .blog-header.scrolled img {
    width: 380px;
    margin-bottom: -3px;
}
.single .blog-header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .internal-cta {
    background-attachment: inherit !important;
    background-size: cover !important;
  }
  .big-text {
    font-size: 52px !important;
  }
  .bottom-popup {
    overflow: scroll !important;
  }
  .popup p {
    padding-bottom: 100px;
  }
}

.blog-header ul {
  margin-top: -14px;
}
.wp-block-post h2 a {
  margin-top: 18px !important;
}

.single .blog-header img {
  padding: 0.5rem !important;
}
.wp-block-outermost-social-sharing {
  gap: 8px !important;
}
.slide-cat a {
  border: 1px solid;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: -150px;
  margin-bottom: -12px;
  padding: 6px;
  line-height: 1;
  padding-top: 8px;
}
.cat a {
  font-size: 10px;
  text-decoration: none;
  background: #212121;
  padding: 5px;
  text-transform: uppercase;
}
.author-list-content h2 {
  margin-top: 7px !important;
}
.wp-block-search__input,
.wp-block-search__input::placeholder {
  font-size: 100px !important;
  text-align: center;
  border: none;
}
.wp-block-search__button {
  display: none !important;
}

.read-button {
  width: 339px;
  max-width: 100%;
  margin-top: -1.5rem !important;
  margin-bottom: 2rem !important;
}

.single.single-format-standard main {
  padding-bottom: 0 !important;
}

.single.single-format-standard .wp-block-group h3,
.single.single-format-standard .wp-block-group:not(.has-background) > h2 {
  margin-top: 1.85rem !important;
  margin-bottom: -1rem !important;
}

.single .post-grid .wp-block-group {
  margin-top: 0 !important;
}
.single.single-format-standard .wp-block-group:not(.has-background) > h2.wp-block-post-title {
  margin-top: 6px !important;
}
.single .wp-block-post h2 a {
  margin-top: 0 !important;
}
.single .wp-block-post-excerpt__excerpt {
  margin-top: 28px !important;
}

.blog .wp-block-query-pagination-is-layout-flex,
.archive .wp-block-query-pagination-is-layout-flex {
  width: 100% !important;
  max-width: none !important;
  margin-bottom: -5rem !important;
  display: flex !important;
}
.swiper-wrapper .swiper-slide .caption.onImage {
  background: transparent !important;
  justify-content: center !important;
  margin-top: 65px !important;
}
.swiper-pagination {
  display: none !important;
}
.bicbCarousel .swiper-wrapper .swiper-slide .caption.onImage {
  position: relative;
  display: block;
  left: 0;
  top: -20px;
  padding-top: 0;
  margin-top: 15px !important;
}
.bicbCarousel .swiper-wrapper .swiper-slide .caption p {
  text-align: center;
  color: #212121;
  background: #0000;
  padding: 0;
}
.wp-block-bicb-carousel .bicbCarousel {
  overflow-y: visible !important;
}
.wp-block-bicb-carousel .bicbCarousel .swiper-wrapper .swiper-slide .caption.onImage {
  background: red !important;
  height: auto;
  display: block !important;
  position: relative;
}
.bicbCarousel .swiper-button-prev,
#bicbCarousel-1 .bicbCarousel .swiper-button-next {
  color: #212121 !important;
}
.iconic-hero {
  margin-top: -25px !important;
}

.page-template-wp-custom-template-authors-claudia, .page-template-wp-custom-template-authors-eli, .page-id-2158, .page-id-2156 {
  background: white !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.wp-block-outermost-social-sharing {
  margin-top: 12px !important;
}
.single .has-druk-font-family, .has-druk-font-family a, .has-druk-strong strong {
    font-family: inherit;
    color: #212121 !important;
    font-size: inherit;
    font-weight: 700;
}
.has-proxima-strong strong {
  font-family: var(--wp--preset--font-family--proxima-nova) !important;
}
.single main .has-background h2 {
  font-size: 127px;
  line-height: 0.85 !important;
}
.wp-block-image {
  margin-bottom: 45px !important;
}

.single .has-medium-font-size {
  font-size: 19px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.wp-block-column.is-vertically-aligned-top.mt-auto {
  margin-top: auto !important;
}
nav a {
  text-decoration: none !important;
}
.page-numbers {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: auto;
  padding: 4px 15px;
}
.page-numbers:hover {
  background: #ee544d;
  color: white;
}

.blog .wp-block-post-template li:nth-child(5) img {
  position: absolute;
  top: 0;
  left: 0;
  height: 106%;
  object-fit: cover;
}

.page-template-wp-custom-template-blog-empty {
  background: white;
}
.page-template-wp-custom-template-blog-empty h1,
.page-template-wp-custom-template-blog-empty h2,
.page-template-wp-custom-template-blog-empty h3,
.page-template-wp-custom-template-blog-empty h4 {
  color: #212121;
}
.page-template-wp-custom-template-blog-empty p {
  color: #212121;
}
.page-template-wp-custom-template-blog-empty p strong {
  font-size: 24px;
}
.wp-block-post-featured-image img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .load-more {
    padding-bottom: 4rem !important;
  }
}

header a.logo-svg svg {
    width: 100%;
    transform: scale(1.04);
    margin-top: -15px;
    margin-bottom: -16px;
}

.animate-stroke {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

@keyframes clipPathAnimation {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.animate-stroke {
  animation: clipPathAnimation 1s ease-in-out forwards;
  animation-delay: 0.75s;
}

.page-id-2062 main {
  padding-top: 0 !important;
}


input[type="search"] {
    text-transform: uppercase;
}

.page-template-wp-custom-template-blog-empty p strong {
  font-family: var(--wp--preset--font-family--proxima-nova);
  font-weight: 700;
}

.cont-card svg {
  font-size: 22px;
  color: #212121;
  margin-top: 15px;
}

.search-results .voice {
    display: none !important;
}

.page-template-wp-custom-template-authors-claudia .wp-block-post h2 a, .page-template-wp-custom-template-authors-eli .wp-block-post h2 a {
    margin-top: 0 !important;
}

.wp-load-more__button .qllm-load-more {
  font-size: 6rem;
  font-family: var(--wp--preset--font-family--druk) !important;
  letter-spacing: 0;
  display: block !important;
  transition: all .3s ease;
  line-height: 1 !important;
}
.wp-load-more__button::before, .wp-load-more__button::after {
    display: none !important;
}
.qllm-load-more:hover {
    color: #000 !important;
}

.wp-block-post-date {
    margin-top: 1rem !important;
}

.wp-load-more__button {
  display: block;
  padding: 0;
  margin-bottom: 3rem;
}
.wp-load-more__button::after {
    content: '';
    height: 8px;
    width: 0%;
    background: #212121;
    display: block !important;
    bottom: 0;
    top: auto;
    transition: all .3s ease;
}
.wp-load-more__button:hover::after {
    width: 100%;
}
.has-proxima-nova-font-family strong, .has-proxima-nova-font-family {
    font-family: var(--wp--preset--font-family--proxima-nova) !important;
}
.has-proxima-nova-font-family strong {
    font-weight: 600;
}

h4 {
  font-size: 23px;
  letter-spacing: .05rem;
}
.uppercase, .uppercase strong {
    text-transform: uppercase;
    font-size: 18px !important;
}

.blog .blog-header.scrolled .logo-svg svg {
    width: 500px !important;
    margin: 0 auto !important;
    height: 150px;
    margin-bottom: -42px !important;
}
.blog .blog-header.scrolled {
    background: white !important;
    position: fixed !important;
    width: 100% !important;
    text-align: center;
}
.blog .blog-header.scrolled a {
    color: #212121 !important;
}
.blog .darken {
    transition: all .3s ease;
}
.blog .blog-header.scrolled .darken {
    fill: #000 !important;
}
.beauty-menu a span {
    transform: translateY(-5px) scale(1.04);
    display: inline-block;
    margin-left: 7px;
}

.footer-block h2 strong {
    font-family: var(--wp--preset--font-family--mencken-std-head-narrow) !important;
}

.page-id-2158 main h3, .page-id-2158 main h4, .page-id-2156 main h3, .page-id-2156 main h4 {
    margin-bottom: 0 !important;
    margin-top: 32px !important;
}
.page-id-2158 main p, .page-id-2156  main p {
    margin-top: 5px !important;
}

@media(max-width: 992px) {
    .single main .has-background h2 {
        font-size: 60px !important;
    }
}


.blog-footer h3 strong {
    font-family: var(--wp--preset--font-family--mencken-std-head-narrow);
}
.blog-footer h3 {
    font-size: 40px;
}
.blog-footer h3 strong {
    font-size: 42px;
}

.second-button {
    border: 1px solid white;
    padding: 4px 14px;
    border-radius: 100pc;
}
.second-button:hover {
    background: var(--primary);
}
.second-button::after {
    display: none !important;
}

.archive .blog-header,
.page-id-2062 .blog-header,
.page-id-2020 .blog-header,
.page-id-2156 .blog-header,
.page-id-2158 .blog-header {
    text-align: center !important;
}

.archive .blog-header.scrolled,
.page-id-2062 .blog-header.scrolled,
.page-id-2020 .blog-header.scrolled,
.page-id-2156 .blog-header.scrolled,
.page-id-2158 .blog-header.scrolled, .page-id-1680 .blog-header.scrolled, .search-results .blog-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    background: white !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all .3s ease !important;
}

.page-id-1680 .blog-header.scrolled, .search-results .blog-header.scrolled {
    text-align: center;
}

.archive .blog-header.scrolled img,
.page-id-2062 .blog-header.scrolled img,
.page-id-2020 .blog-header.scrolled img,
.page-id-2156 .blog-header.scrolled img,
.page-id-2158 .blog-header.scrolled img, .page-id-1680 .blog-header.scrolled img, .search-results .blog-header.scrolled img {
    max-width: 500px !important;
    width: 500px !important;
    min-width: 0px !important;
    margin-top: 41px;
}
.page-id-2062 .blog-header.scrolled img, .page-id-2020 .blog-header.scrolled img, .page-id-2156 .blog-header.scrolled img, .page-id-2158 .blog-header.scrolled img, .page-id-1680 .blog-header.scrolled img, .search-results .blog-header.scrolled img {
    max-width: 500px !important;
    width: 500px !important;
    min-width: 0px !important;
    margin-top: -14px;
    margin-bottom: 11px;
}

@media(max-width: 992px) {
header a.logo-svg svg {
  width: 100% !important;
  transform: none !important;
  margin-top: -69px;
  margin-bottom: -69px !important;
}
.blog .blog-header.scrolled .logo-svg svg {
    max-width: 100% !important;
    width: 100% !important;
}
}

.blog-footer h3, .blog-footer h3 strong {
  font-family: var(--wp--preset--font-family--proxima-nova) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
}

.search-results .type-page {
    display: none !important;
}

.single .has-druk-font-family, .has-druk-font-family a, .has-druk-strong strong {
  font-family: var(--wp--preset--font-family--druk) !important;
  text-transform: uppercase;
  font-size: 25px !important;
  letter-spacing: .5px !important;
}

.small-p p {
    margin-top: 16px !important;
}

.blog .wp-block-post-template li:nth-child(5) p, .blog .wp-block-post-template li:nth-child(14) p {
  color: white !important;
  font-size: 19px !important;
  margin-top: -30px !important;
}
.single-hero .cats a:hover {
    background: transparent !important;
}

.single p.has-proxima-nova-font-family {
    margin-top: 22px !important;
    margin-bottom: -12px !important;
}
.second-button:hover {
    color: white !important;
}

.blog .wp-block-post-template li:nth-child(5) .wp-block-group, .blog .wp-block-post-template li:nth-child(14) .wp-block-group {
    width: 100% !important;
    max-width: 100% !important;
}

@media(max-width: 992px) {
    .single-hero .wp-block-column:nth-child(1) {
        order: 2 !important;
    }
    h2.read-button {
        width: 186px !important;
    }
    .wp-load-more__button .qllm-load-more {
        font-size: 3rem !important;
        margin-bottom: 2rem !important;
    }
    .siema h2 {
        font-size: 38px !important;
    }
    .post-slide, .siema > div {
        height: 600px !important;
    }
    .archive .siema .container, .blog .siema .container {
        padding-top: 55px !important;
    }
    .single .blog-header.scrolled img {
        width: 100% !important;
    }
    .blog-header img {
        width: 100% !important;
        margin-bottom: -2px !important;
    }
    .archive {
        padding-top: 6px !important;
    }
    .blog-header img {
        transform: none !important;
    }
    header a.logo-svg svg {
        margin-bottom: -77px !important;
    }
    .wp-block-post-featured-image {
        margin-top: 32px !important;
        margin-bottom: -12px !important;
    }
    .siema {
        margin-bottom: -90px !important;
    }
}

.single .blog-header img {
    width: 100% !important;
    transform: scale(1.05);
    margin-top: -9px;
    margin-bottom: -5px;
}
.single .blog-header.scrolled img {
    width: 400px !important;
    max-width: 100% !important;
}

li.hidden-desktop::after, li.hidden-desktop a::after {
    display: none !important;
}

.mobile-blog-nav {
    background: white !important;
    position: fixed !important;
    top: -20px !important;
    left: 0;
    height: 111vh !important;
    width: 100% !important;
    overflow: scroll !important;
    padding-top: 125px !important;
    z-index: 999 !important;
    margin: 0 !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.mobile-blog-nav.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.mobile-blog-nav ul {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    gap: 0px !important;
    margin-top: 0 !important;
}
.mobile-blog-nav li a {
    font-size: 40px !important;
    color: #212121 !important;
}
.blog .blog-header .mobile-blog-nav li a {
    color: #212121 !important;
}
.mobile-blog-nav li:last-child a {
    font-size: 19px !important;
}
button.menu-btn {
    position: absolute;
    top: 58px;
    right: 32px;
    font-size: 30px;
    border: none;
    background: transparent;
}
.blog .blog-header.scrolled a.second-button {
    background: var(--primary) !important;
    color: white !important;
}
.blog .blog-header.scrolled a.second-button:hover {
    color: white !important;
}

@media(max-width: 992px) {
    .footer-block {
        margin-top: 100px !important;
    }
}

.blog .wp-block-post-template li:nth-child(5) img, 
.blog .wp-block-post-template li:nth-child(14) img,
.blog .wp-block-post-template li:nth-child(23) img {
  position: absolute;
  top: 0;
  left: 0;
  height: 110%;
  object-fit: cover;
  width: 100%;
  max-width: none !important;
}

.blog .wp-block-post-template li:nth-child(5) h2, 
.blog .wp-block-post-template li:nth-child(14) h2,
.blog .wp-block-post-template li:nth-child(23) h2 {
  font-size: 70px !important;
  color: white !important;
  max-width: 87%;
  margin: 0 auto;
}

.blog .wp-block-post-template li:nth-child(5) .post-grid, 
.blog .wp-block-post-template li:nth-child(14) .post-grid,
.blog .wp-block-post-template li:nth-child(23) .post-grid {
  padding-top: 11rem;
  padding-bottom: 11rem;
}

@media(max-width: 992px) {
.blog .wp-block-post-template li:nth-child(5) .post-grid, 
.blog .wp-block-post-template li:nth-child(14) .post-grid,
.blog .wp-block-post-template li:nth-child(23) .post-grid {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.blog .wp-block-post-template li:nth-child(5) .wp-block-post-excerpt__excerpt, 
.blog .wp-block-post-template li:nth-child(14) .wp-block-post-excerpt__excerpt,
.blog .wp-block-post-template li:nth-child(23) .wp-block-post-excerpt__excerpt {
  max-width: 88% !important;
  margin: 0 auto !important;
  margin-top: -20px !important;
}

}

.single.single-format-standard .blog-header {
    position: fixed !important;
    width: 100% !important;
}

@media(max-width: 992px) {
    .single.single-format-standard header {
        position: sticky !important;
    }
    .single.single-format-standard header {
        margin-top: 0 !important;
    }
    .single.single-format-standard .wp-block-group h3 {
        font-size: 32px !important;
    }
    .archive .blog-header.scrolled img, .page-id-2062 .blog-header.scrolled img, .page-id-2020 .blog-header.scrolled img, .page-id-2156 .blog-header.scrolled img, .page-id-2158 .blog-header.scrolled img, .page-id-1680 .blog-header.scrolled img, .search-results .blog-header.scrolled img {
        max-width: 100% !important;
    }
    
    
    
.archive .blog-header img, .single .blog-header img {
    padding-top: 0 !important;
    transform: scale(1.03) !important;
    margin-top: -13px;
}
.single .blog-header img {
    transform: scale(1.04) !important;
    margin-top: 0 !important;
} 

.single .blog-header.scrolled img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px !important;
    padding-top: 0 !important;
}

}

.mobile-blog-nav {
    padding-top: 6px !important;
    top: 0 !important;
    height: 100% !important;
    min-height: 100vh;
}
.mobile-blog-nav li a {
    font-size: 30px !important;
}
.mobile-blog-nav img, .single .mobile-blog-nav img {
    width: 100% !important;
    margin-bottom: 20px !important;
    transform: scale(1) !important;
    padding: 7px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.mobile-blog-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-blog-nav a .svg-inline--fa {
    font-size: 23px;
}

@media(max-width: 992px) {
    .single.single-format-standard .wp-block-group .beauty-slider h3 {
        font-size: 17px !important;
    }
    .wp-load-more__button .qllm-load-more {
        margin-bottom: 1rem !important;
    }
    .entry-content p {
        font-size: 18px !important;
    }
.blog .wp-block-post-template li:nth-child(5) h2 a, 
.blog .wp-block-post-template li:nth-child(14) h2 a,
.blog .wp-block-post-template li:nth-child(23) h2 a {
  font-size: 35px !important;
}

.blog .wp-block-post-template li:nth-child(5) p, 
.blog .wp-block-post-template li:nth-child(14) p,
.blog .wp-block-post-template li:nth-child(23) p {
  font-size: 16px !important;
}

}

.gform-theme--foundation .gfield .ginput_password.large, .gform-theme--foundation .gfield input.large, .gform-theme--foundation .gfield select.large, .gform-theme--foundation .gfield textarea.medium {
    background: rgba(255, 255, 255, 0) !important;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.35);
    color: #000000;
    font-size: 15px;
    box-shadow: none !important;
}
#gform_submit_button_2, #gform_submit_button_1 {
    background: #212121 !important;
    color: white !important;
}

  .newsletter input, #input_2_1 {
      border: 1px solid white important;
      color: white !important;
  }
  
.blog .blog-header .mobile-blog-nav li a {
    font-size: 40px !important;
}

.footer-links h4 {
    color: white !important;
    margin-bottom: 15px;
    font-family: var(--wp--preset--font-family--proxima-nova) !important;
    font-size: 16px !important;
}

.second-button:hover, .archive .blog-header ul li a.second-button:hover {
    color: white !important;
}







.cat a {
    font-size: 10px;
    text-decoration: none;
    background: #212121;
    padding: 5px;
    text-transform: uppercase;
    color: white !important;
    margin-top: 27px !important;
    display: inline-block;
}
.topic-link a {
    font-size: 44px !important;
    transition: all .3s ease;
    text-decoration: none !important;
}
.topic-link a:hover {
    color: #ee544d !important;
}
@media(max-width: 992px) {
    .topic-link a {
        font-size: 28px !important;
    }
}

.footer-links h2 {
  color: white !important;
  font-size: 21px !important;
  font-family: var(--wp--preset--font-family--proxima-nova) !important;
}

.newsletter #gform_submit_button_2::before {
    background: white !important;
}
.newsletter #gform_submit_button_2:hover {
    color: #212121 !important;
    background: transparent !important;
    transition: all 0s ease !important;
}

.button-wrapper::before {
    background: white !important;
}

.site-header {
    z-index: 999;
    position: relative;
}
.blog .blog-header .mobile-blog-nav li a, .page-template-default .mobile-blog-nav li.menu-btn a {
    font-size: 33px !important;
}
.page-template-default .mobile-blog-nav li.menu-btn a .svg-inline--fa, .page-template-wp-custom-template-blog-empty .mobile-blog-nav li.menu-btn a .svg-inline--fa {
  position: absolute;
  top: 4px;
  left: -102px;
}

.footer-links {
    align-items: flex-start !important;
}

.page-id-2444 .entry-content .gfield input.large, .gform-theme--foundation .gfield textarea.medium {
    border-bottom: 1px solid rgba(0,0,0,.2) !important;
}
#gform_submit_button_1:hover {
    background: var(--primary) !important;
}


@media(max-width: 992px) {
.page-template-wp-custom-template-blog-empty .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img, .page-template-wp-custom-template-blog-empty img {
  max-width: 200px !important;
  margin: 0 auto;
  margin-bottom: -50px;
  margin-top: -70px;
}
}

@media (max-width: 992px) {
    .blog-header img {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: -2px !important;
        margin-top: -18px !important;
    }
}

.site-footer img {
    margin-bottom: 0 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

header {
    z-index: 999;
}

.image-modal {
display: none;
}

.single.single-format-standard p strong a, 
.single.single-format-standard p a strong {
	font-family: var(--wp--preset--font-family--playfair) !important;
    font-weight: 400 !important;
}


.single.single-format-standard p.has-druk-font-family strong a, 
.single.single-format-standard p.has-druk-font-family a strong {
	font-family: var(--wp--preset--font-family--druk) !important;
}
