/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
  font-size: 16px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 0.938rem;
  --font-size-h4: 1.125rem;
  --font-size-h5: 1rem;
  --font-size-base: 0.875rem;
  --color-body-text: #000000;
  --color-primary: #e1a541;
  --color-secondary: #3e3e3e;
  --color-alternate: #f9f9f9;
  --color-gray: #252525;
  --color-gray-100: #6e6e6e;
  --color-light-gray: #b6b6b6;
  --color-white: #fff;
  --color-near-white: #f9fbfd;
  --color-black: #000;
  --color-near-black: #1d1d1d;
  --color-blue: #0c284b;
  --color-golden: #997539;
  --color-orange: #f48d00;
  --color-purple: #a39aad;
  --color-warning: #f10f0f;
  --color-border: #e8e8e8;
  --font-family-body: 'Plus Jakarta Sans', sans-serif;
  --font-family-icon: 'Font Awesome 6 Pro';
  --font-family-heading: 'Plus Jakarta Sans', sans-serif;
  --gutter-size: 20px;
  --width-normal: 1100px;
  --width-narrow: 1082px;
  --width-wide: 1654px;
  --height-header: 76px;
  --swiper-theme-color: var(--color-primary);
  --swiper-navigation-color: var(--color-alternate);
  --swiper-pagination-bullet-inactive-color: var(--color-body-text);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bottom: -50px;
}

@media screen and (min-width: 768px) {
  :root {
    --font-size-base: 1.125rem;
  }
}

@media screen and (min-width: 1025px) {
  :root {
    --height-header: 120px;
    --font-size-h1: 3.125rem;
    --font-size-h3: 1.25rem;
  }
}

@media screen and (min-width: 1441px) {
  :root {
    --width-normal: 1350px;
    --width-wide: 1635px;
    --height-header: 120px;
  }
}

#container {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: block !important;
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  line-height: 1.83;
  color: var(--color-body-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
  outline: auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.show-for-pdf,
.mega-menu .sub-menu,
.gfield--type-captcha,
.grecaptcha-badge {
  display: none !important;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 20px;
  font-family: var(--font-family-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}

h2,
.h2 {
  font-size: var(--font-size-h2);
  font-weight: 800;
}

h3,
.h3 {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.281rem;
  text-transform: uppercase;
  font-size: var(--font-size-h3);
}

h4,
.h4 {
  font-size: var(--font-size-h4);
}

h5,
h6,
.h5,
.h6 {
  font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
  font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
  display: block;
  font-size: 50%;
  color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
  h3,
  .h3 {
    letter-spacing: 0.338rem;
  }
}

p {
  margin: 0 0 30px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: 700;
}

/* CORE > Links and Buttons */
a {
  color: #8a5700;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
  text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
  margin: 0;
  padding: 19px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-body);
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-black);
  border: none;
  border-radius: 0;
  letter-spacing: 0.094rem;
  background-color: var(--color-primary);
  cursor: pointer;
}

button:active,
.button:active,
.wp-element-button:active {
  transform: translateY(1px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
  color: var(--color-white);
  background-color: var(--color-black);
}

button.alt-01,
.button.alt-01 {
  color: var(--color-white);
  background-color: var(--color-black);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
  color: var(--color-black);
  background-color: var(--color-primary);
}

button.alt-02,
.button.alt-02 {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
  color: var(--color-white);
  background-color: var(--color-black);
}

button.outline,
.button.outline {
  padding: 19px 30px 15px;
  color: var(--color-black);
  border: 2px solid var(--color-primary);
  background: none;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
  color: var(--color-black);
  background: var(--color-primary);
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
  color: var(--color-white);
  border-color: var(--color-white);
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
  color: var(--color-primary);
  background: var(--color-near-white);
}

button.no-button,
.button.no-button {
  padding: 0 0 6px;
  position: relative;
  color: var(--color-primary);
  background: none;
  letter-spacing: 0;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
  text-decoration: none;
  color: var(--color-near-black);
}

button.no-button:after,
.button.no-button:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-black);
  transition: all 0.3s;
  content: '';
}

button.no-button:hover:after,
button.no-button:focus:after,
.button.no-button:hover:after,
.button.no-button:focus:after {
  width: 100%;
}

.contact-full-content .tel-link {
  color: var(--color-primary);
}

.contact-full-content .tel-link:hover,
.contact-full-content .tel-link:focus {
  color: var(--color-white);
}

/* CORE > Page Structure */
main {
  padding: 60px 0;
  position: relative;
  display: block;
  flex: 1;
  width: 100%;
  min-height: 450px;
  overflow: clip;
}

.no-banner main {
  padding-top: 180px;
}

.content.full-width {
  float: none;
}

.content img {
  max-width: 100%;
  height: auto;
}

.content section:not(:last-of-type) {
  margin-bottom: 60px;
}

.columns,
.column {
  padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
  margin-right: auto;
  margin-left: auto;
  max-width: calc(var(--width-normal) + var(--gutter-size) * 2);
}

.row-narrow {
  max-width: calc(var(--width-narrow) + var(--gutter-size) * 2);
}

.row-840 {
  max-width: 840px;
}

.row::after {
  clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
  display: none;
}

@media screen and (min-width: 768px) {
  main {
    padding: 80px 0;
  }

  .main-inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
  }

  .content {
    width: 69.88%;
    margin-bottom: 0;
    padding-right: var(--gutter-size);
  }

  .content.full-width {
    width: 100%;
    padding-right: var(--gutter-size);
  }

  .sidebar {
    width: 30.22%;
    padding-left: 0;
  }
}

@media screen and (min-width: 1025px) {
  .content {
    padding-right: calc(3 * var(--gutter-size));
  }
}

@media screen and (min-width: 1441px) {
  .row-wide {
    max-width: calc(var(--width-wide) + var(--gutter-size) * 2);
  }
}

/* CORE > Priority Utility Classes */
.no-float {
  float: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-min-height {
  min-height: 0;
}

img.alignright {
  margin: 0 0 30px 30px;
  float: right;
}

img.alignleft {
  margin: 0 30px 30px 0;
  float: left;
}

img.responsive-img,
.responsive-img img {
  max-width: 100%;
  height: auto;
}

.position-static,
.static {
  position: static !important;
}

.position-relative,
.relative {
  position: relative !important;
}

.position-absolute,
.absolute {
  position: absolute;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.title-line {
  position: relative;
  z-index: 1;
  display: inline;
  background-image: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 100%);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 calc(100% + 2px);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.title-line.animate {
  background-size: 0% 5px;
}

.title-line.animated {
  animation: reveal-underline 1s 1.5s ease-out forwards;
}

.visually-hidden {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.no-background {
  background: none !important;
}

.animate-in-view,
.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1 !important;
}

.uppercase {
  text-transform: uppercase;
}

.small-text {
  font-size: 0.9rem;
}

.larger-text {
  font-size: 1.2rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.bold,
.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .show-for-large {
    display: none !important;
  }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
  top: 0;
  z-index: 9;
  width: 100%;
  position: fixed;
  transition: all 0.25s;
  height: var(--height-header);
  color: var(--color-body-text);
  background-color: var(--color-white);
}

.home .header {
  color: var(--color-white);
  background-color: transparent;
}

.header-search {
  opacity: 0;
}

body.scrolled .header {
  background-color: var(--color-white);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

body.scrolled .header .header-logo img + img {
  opacity: 1;
}

.header > .row {
  height: 100%;
  max-width: calc(1380px + var(--gutter-size) * 2);
}

.header-desktop {
  display: none;
}

.header-logo {
  width: 176px;
  display: block;
  align-self: center;
  position: relative;
}

.header-logo img {
  width: 100%;
  display: block;
  transition: all 0.25s;
}

.header-logo img + img {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}

.header-mobile-inner {
  display: flex;
  height: 100%;
  padding-left: var(--gutter-size);
  padding-right: var(--gutter-size);
}

.header-mobile-buttons {
  display: flex;
  margin-left: 4%;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.header-mobile-consultation {
  font-size: 0.75rem;
  display: inline-block;
  text-transform: uppercase;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
  display: flex;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex: 1;
  max-width: 37px;
  width: 37px;
  height: 37px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background-color: transparent;
}

.header-mobile-buttons a {
  margin-right: 10px;
  color: var(--color-white);
  background-color: var(--color-primary) !important;
}

.header-right {
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-self: flex-end;
}

.header-right-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.header-right-top span {
  font-weight: 600;
}

.header-phone {
  margin-left: 15px;
}

.header-phone,
.header-phone a {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
  display: inline-block;
  letter-spacing: -0.088rem;
}

.header-phone:focus,
.header-phone:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header-phone i {
  font-size: 70%;
  transform: rotate(45deg) translateY(-4px);
}

.header-right-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.mega-menu {
  display: none;
}

@media screen and (min-width: 768px) {
  .header-mobile-inner {
    justify-content: space-between;
  }

  .header-mobile-buttons {
    flex: inherit;
  }

  .header-mobile-buttons a {
    margin-left: 10px;
    width: auto;
    height: auto;
    border: 0;
    max-width: 100%;
    color: var(--color-primary) !important;
    background-color: transparent !important;
  }

  .header-mobile-buttons a i {
    font-size: 0.625rem;
    vertical-align: middle;
  }

  .header-mobile-buttons a span {
    letter-spacing: normal;
    font-size: 0.875rem;
    color: var(--color-primary);
  }

  body.scrolled .header .header-mobile-consultation {
    color: var(--color-black);
  }
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: block;
  }

  .header-logo {
    width: 280px;
  }

  .header-right {
    display: flex;
    flex: 1;
  }

  .header-inner {
    padding-left: var(--gutter-size);
    padding-right: var(--gutter-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    transition: all 0.25s;
  }

  .header-phone,
  .header-phone a {
    font-size: 1.5rem;
  }

  body.scrolled .header .main-navigation-menu > li > a {
    color: var(--color-black);
  }

  body.scrolled .header .header-right-top {
    color: var(--color-black);
  }
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
  margin: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.main-navigation-menu li {
  display: flex;
  position: relative;
  padding: 0;
  align-items: center;
}

.main-navigation-menu > li {
  padding: 0;
}

.main-navigation-menu > li:last-of-type {
  margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
  margin-right: 0;
}

.main-navigation-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 240px;
  margin: 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideDown 200ms both;
  animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
  color: var(--color-primary);
  text-decoration: none;
}

.main-navigation-menu > li > a {
  position: relative;
  display: block;
  height: 100%;
  font-size: 0.75rem;
  color: inherit;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  padding: 5px 0;
}

@media screen and (min-width: 1025px) {
  .main-navigation-menu > li:after {
    margin: 0 8px;
    width: 1px;
    height: 17px;
    background: var(--color-purple);
    content: '';
  }

  .main-navigation-menu > li:last-of-type:after {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .main-navigation-menu > li:after {
    margin: 0 15px;
  }

  .main-navigation-menu > li > a {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1400px) {
  .main-navigation-menu > li > a {
    font-size: 1rem;
  }
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li,
.mega-menu li {
  background: var(--color-primary);
  transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
  position: relative;
  cursor: pointer;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  padding: 12px;
  line-height: 1;
  text-decoration: none;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
  background: var(--color-black);
}

.mega-menu li::before,
#desktop-navigation .sub-menu li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  left: 10px;
  top: 6px;
  color: var(--color-secondary);
  pointer-events: none;
  transition: color 200ms ease-out;
  display: none;
}

.mega-menu li.active::before,
#desktop-navigation .sub-menu li.active::before {
  color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  right: 10px;
  color: var(--color-secondary);
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a::after {
  color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
  display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideRight 200ms both;
  animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
  display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/
.banner {
  position: relative;
  height: 300px;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-size: cover;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner,
.banner-xl {
  margin-top: var(--height-header);
}

.banner img {
  position: relative;
  width: 100%;
}

.banner > .row {
  height: 100%;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  float: none;
  height: 100%;
  flex-direction: column;
}

.banner-title {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 3.438rem;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: var(--font-family-heading);
}

.banner-title span {
  color: var(--color-primary);
}

.banner-description {
  margin-top: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.banner-description strong {
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .banner {
    height: 500px;
  }

  .banner-title {
    font-size: 3.438rem;
  }

  .banner-description {
    font-size: 1.25rem;
  }
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
  background: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px !important;
}

/*******************************************************************************************
IMAGE REVEALS - Image animations on active
*******************************************************************************************/

.active-in-view {
  opacity: 0;
}

.image-active-fade img {
  opacity: 0;
  -webkit-transition: opacity 900ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -moz-transition: opacity 900ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -ms-transition: opacity 900ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -o-transition: opacity 900ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  transition: opacity 900ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
}

.image-active-fade.active img {
  opacity: 1;
}

.image-active-zoom {
  overflow: hidden;
  max-width: 400px;
}

.image-active-zoom img {
  opacity: 0;
  transform: scale(1.2);
  -webkit-transition: transform 2000ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -moz-transition: transform 2000ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -ms-transition: transform 2000ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  -o-transition: transform 2000ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
  transition: transform 2000ms cubic-bezier(0.72, 0.24, 0.19, 0.82);
}

.image-active-zoom.active img {
  transform: scale(1);
  opacity: 1;
}

.image-active-blur {
  -webkit-transition: all 1400ms ease-out;
  -moz-transition: all 1400ms ease-out;
  -ms-transition: all 1400ms ease-out;
  -o-transition: all 1400ms ease-out;
  transition: all 1400ms ease-out;
}

.image-active-blur.active {
  filter: blur(15px);
}

.image-active-swipe-left,
.image-active-swipe-right {
  will-change: clip-path, transform;
}

.image-active-swipe-left.active {
  -webkit-animation: image-reveal-left 1800ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
  animation: image-reveal-left 1800ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}

.image-active-swipe-right.active {
  -webkit-animation: image-reveal-right 1800ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
  animation: image-reveal-right 1800ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}

@-webkit-keyframes image-reveal-left {
  0% {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes image-reveal-left {
  0% {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes image-reveal-right {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes image-reveal-right {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes reveal-underline {
  0% {
    background-size: 0% 5px;
  }
  100% {
    background-size: 100% 5px;
  }
}

@keyframes reveal-underline {
  0% {
    background-size: 0% 5px;
  }
  100% {
    background-size: 100% 5px;
  }
}
