@charset "UTF-8";
/* Assets
   ========================================================================== */
/* Fonts
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Functions
   ========================================================================== */
/*@function rem($pxval) {
    @if not unitless($pxval) {
        $pxval: strip-units($pxval);
    }

    @return math.div($pxval, $base-font-size) * 1rem;
}*/
/* Mixins
   ========================================================================== */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body, html {
  font-family: "Inter", sans-serif;
  height: 100%;
  width: 100%;
  color: #181818;
}

a {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.48, 0.07, 0.37, 0.99);
  text-decoration: none;
}

.post-element {
  color: #000000;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  row-gap: 0.625rem;
  column-gap: 1.5625rem;
  flex-wrap: wrap;
  padding-left: 0.9375rem;
}
.post-element__link {
  color: #000000;
  white-space: nowrap;
}

/* Helpers
   ========================================================================== */
.grid {
  display: grid;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

.default-shadow {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4) !important;
}

@media (min-width: 992px) {
  .column-1 {
    column-count: 1;
  }
}

@media (min-width: 992px) {
  .column-2 {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .column-3 {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .column-4 {
    column-count: 4;
  }
}

@media (min-width: 992px) {
  .column-5 {
    column-count: 5;
  }
}

@media (min-width: 992px) {
  .column-6 {
    column-count: 6;
  }
}

@media (min-width: 992px) {
  .column-7 {
    column-count: 7;
  }
}

@media (min-width: 992px) {
  .column-8 {
    column-count: 8;
  }
}

@media (min-width: 992px) {
  .column-9 {
    column-count: 9;
  }
}

@media (min-width: 992px) {
  .column-10 {
    column-count: 10;
  }
}

@media (min-width: 992px) {
  .column-11 {
    column-count: 11;
  }
}

@media (min-width: 992px) {
  .column-12 {
    column-count: 12;
  }
}

.cl-gray-50 {
  color: #F8F8F8;
}

.cl-gray-100 {
  color: #EEEEEE;
}

.cl-gray-200 {
  color: #D8D8D8;
}

.cl-gray-300 {
  color: #B5B5B5;
}

.cl-gray-400 {
  color: #8F8F8F;
}

.cl-gray-500 {
  color: #6B6B6B;
}

.cl-gray-600 {
  color: #474747;
}

.cl-gray-700 {
  color: #333333;
}

.cl-gray-800 {
  color: #1E1E1E;
}

.cl-gray-900 {
  color: #0D0D0D;
}

.cl-dark {
  color: #000000 !important;
}

.cl-bright {
  color: #ffffff !important;
}

.cl-primary {
  color: #181818 !important;
}

.cl-secondary {
  color: #a6035d !important;
}

.cl-secondary-70 {
  color: #bf3475 !important;
}

.cl-secondary-50 {
  color: #d96c9f !important;
}

.cl-secondary-25 {
  color: #f2a2b8 !important;
}

.cl-third {
  color: #dd9966 !important;
}

.cl-fourth {
  color: #f2af88 !important;
}

.cl-last {
  color: #fbeced !important;
}

.cl-danger {
  color: #F8466F !important;
}

.cl-success {
  color: #00D66B !important;
}

.cl-warning {
  color: #ffa500 !important;
}

.cl-info {
  color: #FFCE00 !important;
}

.cl-link {
  color: #A7A7A7 !important;
}

.cl-invalid {
  color: #dc3545 !important;
}

.bg-gray-50 {
  background-color: #F8F8F8;
}

.bg-gray-100 {
  background-color: #EEEEEE;
}

.bg-gray-200 {
  background-color: #D8D8D8;
}

.bg-gray-300 {
  background-color: #B5B5B5;
}

.bg-gray-400 {
  background-color: #8F8F8F;
}

.bg-gray-500 {
  background-color: #6B6B6B;
}

.bg-gray-600 {
  background-color: #474747;
}

.bg-gray-700 {
  background-color: #333333;
}

.bg-gray-800 {
  background-color: #1E1E1E;
}

.bg-gray-900 {
  background-color: #0D0D0D;
}

.bg-dark {
  background: #000000 !important;
}

.bg-bright {
  background: #ffffff !important;
}

.bg-primary {
  background: #181818 !important;
}

.bg-secondary {
  background: #a6035d !important;
}

.bg-secondary-70 {
  background: #bf3475 !important;
}

.bg-secondary-50 {
  background: #d96c9f !important;
}

.bg-secondary-25 {
  background: #f2a2b8 !important;
}

.bg-third {
  background: #dd9966 !important;
}

.bg-fourth {
  background: #f2af88 !important;
}

.bg-last {
  background: #fbeced !important;
}

.bg-danger {
  background: #F8466F !important;
}

.bg-success {
  background: #00D66B !important;
}

.bg-warning {
  background: #ffa500 !important;
}

.bg-info {
  background: #FFCE00 !important;
}

.bg-link {
  background: #A7A7A7 !important;
}

.bg-invalid {
  background: #dc3545 !important;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.h-90 {
  height: 90% !important;
}

.w-90 {
  width: 90% !important;
}

.h-80 {
  height: 80% !important;
}

.w-80 {
  width: 80% !important;
}

.h-70 {
  height: 70% !important;
}

.w-70 {
  width: 70% !important;
}

.h-60 {
  height: 60% !important;
}

.w-60 {
  width: 60% !important;
}

.h-50 {
  height: 50% !important;
}

.w-50 {
  width: 50% !important;
}

.h-40 {
  height: 40% !important;
}

.w-40 {
  width: 40% !important;
}

.h-30 {
  height: 30% !important;
}

.w-30 {
  width: 30% !important;
}

.h-20 {
  height: 20% !important;
}

.w-20 {
  width: 20% !important;
}

.h-10 {
  height: 10% !important;
}

.w-10 {
  width: 10% !important;
}

.w--100 {
  width: 100px !important;
}

.w--90 {
  width: 90px !important;
}

.w--80 {
  width: 80px !important;
}

.w--70 {
  width: 70px !important;
}

.w--60 {
  width: 60px !important;
}

.w--50 {
  width: 50px !important;
}

.w--40 {
  width: 40px !important;
}

.w--30 {
  width: 30px !important;
}

.w--20 {
  width: 20px !important;
}

.w--10 {
  width: 10px !important;
}

.zindex-1000 {
  z-index: 1000 !important;
}

.zindex-900 {
  z-index: 900 !important;
}

.zindex-800 {
  z-index: 800 !important;
}

.zindex-700 {
  z-index: 700 !important;
}

.zindex-600 {
  z-index: 600 !important;
}

.zindex-500 {
  z-index: 500 !important;
}

.zindex-400 {
  z-index: 400 !important;
}

.zindex-300 {
  z-index: 300 !important;
}

.zindex-200 {
  z-index: 200 !important;
}

.zindex-100 {
  z-index: 100 !important;
}

.link-underline {
  text-decoration: underline !important;
}

.list-none {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.h-min-auto {
  min-height: auto !important;
}

.h-max-auto {
  max-height: auto !important;
}

.w-md-auto {
  width: 100%;
}
@media (min-width: 992px) {
  .w-md-auto {
    width: auto;
  }
}

/* Typography
   ========================================================================== */
*[class*=display-] {
  font-family: "Montserrat", sans-serif;
}

*[class*=headline-] {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #181818;
}

.overline {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (min-width: 576px) {
  .overline {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .overline {
    font-size: 1.25rem;
  }
}

@media (min-width: 576px) {
  .headline-1 {
    font-size: 9vw;
  }
}
@media (min-width: 768px) {
  .headline-1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 576px) {
  .headline-2 {
    font-size: 7.5vw;
  }
}
@media (min-width: 768px) {
  .headline-2 {
    font-size: 3.125rem;
  }
}

@media (min-width: 576px) {
  .headline-3 {
    font-size: 6vw;
  }
}
@media (min-width: 768px) {
  .headline-3 {
    font-size: 2.5rem;
  }
}

@media (min-width: 576px) {
  .headline-4 {
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  .headline-4 {
    font-size: 1.875rem;
  }
}

@media (min-width: 576px) {
  .headline-5 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .headline-5 {
    font-size: 1.25rem;
  }
}

.headline-header, .headline-header--secondary-50, .headline-header--section {
  width: 100%;
  height: 9.375rem;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headline-header--section *[class*=headline-] {
  color: #a6035d;
}
.headline-header--secondary-50 {
  background-color: #d96c9f;
}
.headline-header--secondary-50 *[class*=headline-] {
  color: #ffffff;
}

p,
.p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  p,
.p {
    font-size: 1.125rem;
  }
}

.blockquote {
  display: inline-block;
  font-size: 1.125rem;
  text-align: center;
  position: relative;
}
.blockquote__top {
  width: 30px;
  display: block;
  position: absolute;
  left: -35px;
  top: -15px;
}
.blockquote__btm {
  width: 30px;
  display: block;
  position: absolute;
  right: -35px;
  bottom: -15px;
}

.text-normal {
  text-transform: initial !important;
}

.fs-10 {
  font-size: 0.625rem !important;
}

.fs-11 {
  font-size: 0.6875rem !important;
}

.fs-12 {
  font-size: 0.75rem !important;
}

.fs-13 {
  font-size: 0.8125rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-15 {
  font-size: 0.9375rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-17 {
  font-size: 1.0625rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-19 {
  font-size: 1.1875rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-21 {
  font-size: 1.3125rem !important;
}

.fs-22 {
  font-size: 1.375rem !important;
}

.fs-23 {
  font-size: 1.4375rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.fs-26 {
  font-size: 1.625rem !important;
}

.fs-27 {
  font-size: 1.6875rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-29 {
  font-size: 1.8125rem !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-31 {
  font-size: 1.9375rem !important;
}

.fs-32 {
  font-size: 2rem !important;
}

.fs-33 {
  font-size: 2.0625rem !important;
}

.fs-34 {
  font-size: 2.125rem !important;
}

.fs-35 {
  font-size: 2.1875rem !important;
}

.fs-36 {
  font-size: 2.25rem !important;
}

.fs-37 {
  font-size: 2.3125rem !important;
}

.fs-38 {
  font-size: 2.375rem !important;
}

.fs-39 {
  font-size: 2.4375rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

.fs-41 {
  font-size: 2.5625rem !important;
}

.fs-42 {
  font-size: 2.625rem !important;
}

.fs-43 {
  font-size: 2.6875rem !important;
}

.fs-44 {
  font-size: 2.75rem !important;
}

.fs-45 {
  font-size: 2.8125rem !important;
}

.fs-46 {
  font-size: 2.875rem !important;
}

.fs-47 {
  font-size: 2.9375rem !important;
}

.fs-48 {
  font-size: 3rem !important;
}

.fs-49 {
  font-size: 3.0625rem !important;
}

.fs-50 {
  font-size: 3.125rem !important;
}

.fs-51 {
  font-size: 3.1875rem !important;
}

.fs-52 {
  font-size: 3.25rem !important;
}

.fs-53 {
  font-size: 3.3125rem !important;
}

.fs-54 {
  font-size: 3.375rem !important;
}

.fs-55 {
  font-size: 3.4375rem !important;
}

.fs-56 {
  font-size: 3.5rem !important;
}

.fs-57 {
  font-size: 3.5625rem !important;
}

.fs-58 {
  font-size: 3.625rem !important;
}

.fs-59 {
  font-size: 3.6875rem !important;
}

.fs-60 {
  font-size: 3.75rem !important;
}

.fs-61 {
  font-size: 3.8125rem !important;
}

.fs-62 {
  font-size: 3.875rem !important;
}

.fs-63 {
  font-size: 3.9375rem !important;
}

.fs-64 {
  font-size: 4rem !important;
}

.fs-65 {
  font-size: 4.0625rem !important;
}

.fs-66 {
  font-size: 4.125rem !important;
}

.fs-67 {
  font-size: 4.1875rem !important;
}

.fs-68 {
  font-size: 4.25rem !important;
}

.fs-69 {
  font-size: 4.3125rem !important;
}

.fs-70 {
  font-size: 4.375rem !important;
}

.fs-71 {
  font-size: 4.4375rem !important;
}

.fs-72 {
  font-size: 4.5rem !important;
}

.fs-73 {
  font-size: 4.5625rem !important;
}

.fs-74 {
  font-size: 4.625rem !important;
}

.fs-75 {
  font-size: 4.6875rem !important;
}

.fs-76 {
  font-size: 4.75rem !important;
}

.fs-77 {
  font-size: 4.8125rem !important;
}

.fs-78 {
  font-size: 4.875rem !important;
}

.fs-79 {
  font-size: 4.9375rem !important;
}

.fs-80 {
  font-size: 5rem !important;
}

.fs-81 {
  font-size: 5.0625rem !important;
}

.fs-82 {
  font-size: 5.125rem !important;
}

.fs-83 {
  font-size: 5.1875rem !important;
}

.fs-84 {
  font-size: 5.25rem !important;
}

.fs-85 {
  font-size: 5.3125rem !important;
}

.fs-86 {
  font-size: 5.375rem !important;
}

.fs-87 {
  font-size: 5.4375rem !important;
}

.fs-88 {
  font-size: 5.5rem !important;
}

.fs-89 {
  font-size: 5.5625rem !important;
}

.fs-90 {
  font-size: 5.625rem !important;
}

.fs-91 {
  font-size: 5.6875rem !important;
}

.fs-92 {
  font-size: 5.75rem !important;
}

.fs-93 {
  font-size: 5.8125rem !important;
}

.fs-94 {
  font-size: 5.875rem !important;
}

.fs-95 {
  font-size: 5.9375rem !important;
}

.fs-96 {
  font-size: 6rem !important;
}

.fs-97 {
  font-size: 6.0625rem !important;
}

.fs-98 {
  font-size: 6.125rem !important;
}

.fs-99 {
  font-size: 6.1875rem !important;
}

.fs-100 {
  font-size: 6.25rem !important;
}

.p-font {
  font-family: "Montserrat", sans-serif;
}

.s-font {
  font-family: "Inter", sans-serif;
}

.fw-thin {
  font-weight: 100;
}

.fw-x-light {
  font-weight: 200;
}

.fw-light {
  font-weight: 300;
}

.fw-medium {
  font-weight: 500;
}

.fw-regular {
  font-weight: 400;
}

.fw-s-bold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-x-bold {
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 10px;
  height: 70px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  display: flex;
  align-items: center;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../content/img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Layout
   ========================================================================== */
/* Header
   ========================================================================== */
.header {
  width: 100%;
  background: #fbeced;
}

.navbar {
  padding-top: 0.3125rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 1200px) {
  .navbar__container {
    min-width: 1220px;
  }
}
.navbar .navbar-brand {
  flex-direction: row;
}
.navbar .nav-link {
  text-transform: uppercase;
  color: #a6035d;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #a6035d;
  opacity: 0.8;
}
.navbar .nav-search {
  width: 2.625rem;
  height: 2.625rem;
  border: 1px solid #a6035d;
}
.navbar .nav-search i {
  color: #a6035d;
}
.navbar .nav-search .nav-link {
  display: flex;
  place-content: center;
}

.navbar-toggler {
  z-index: 9999;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.btn-close-offcanvas {
  font-size: 1.875rem;
  color: #ffffff !important;
  text-align: center;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.offcanvas {
  background: rgba(166, 3, 93, 0.9);
  width: 15.625rem !important;
}
.offcanvas .nav-link {
  color: #ffffff !important;
  text-transform: uppercase !important;
  text-align: center;
}
.offcanvas .dropdown-menu {
  position: static !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.offcanvas-header {
  height: 6rem;
}

.offcanvas-backdrop.show {
  background: rgba(251, 236, 237, 0.9);
}

/* Footer
   ========================================================================== */
.footer {
  background: #fbeced;
  color: #181818;
  padding-top: 0.9375rem;
  padding-bottom: 1.25rem;
  font-family: "Inter", sans-serif;
}
.footer__caption {
  font-size: 0.875rem;
  font-weight: 700;
  color: #a61f5e;
}
.footer__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__item {
  padding-bottom: 0.3125rem;
}
.footer__link {
  color: #222222;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__search {
  color: #a61f5e;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__search {
    align-items: flex-end;
  }
}
.footer__search-form {
  border: 1px solid #a6035d;
  background: #ffffff;
  display: flex;
  max-width: 12.5rem;
  padding: 0;
}
.footer__search-btn {
  color: #a61f5e;
  height: auto !important;
}
.footer__search-btn:active {
  border-radius: 0;
}
.footer__search-input {
  border: none;
  width: 100%;
}
.footer__search-input:focus-visible {
  outline: none;
}
.footer__copyright {
  gap: 0.625rem;
  padding-top: 0.9375rem;
}
@media (min-width: 768px) {
  .footer__copyright {
    gap: 0;
  }
}
.footer__copyright hr {
  border-top: 1px solid #a6035d;
}
.footer__copyright-text {
  font-size: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright-text {
    text-align: inherit;
  }
}

/* Containers
   ========================================================================== */
/* Sections
   ========================================================================== */
.welcome__content {
  display: flex;
  align-items: center;
  height: 100%;
  background: url("../img/bg-logo.png") center 60% no-repeat;
  background-size: 25rem;
  margin-bottom: 9.375rem;
}
@media (min-width: 992px) {
  .welcome__content {
    margin-bottom: 0;
  }
}
.welcome__caption {
  gap: 0.625rem;
}
.welcome__title {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #a6035d;
}
@media (min-width: 376px) {
  .welcome__title {
    font-size: 10vw;
  }
}
@media (min-width: 576px) {
  .welcome__title {
    font-size: 9vw;
  }
}
@media (min-width: 768px) {
  .welcome__title {
    font-size: 3.125rem;
  }
}
.welcome__subtitle {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1rem;
}
@media (min-width: 376px) {
  .welcome__subtitle {
    font-size: 4.5vw;
  }
}
@media (min-width: 576px) {
  .welcome__subtitle {
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  .welcome__subtitle {
    font-size: 1.6875rem;
  }
}
.welcome__img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
  object-position: 43%;
}
@media (min-width: 768px) {
  .welcome__img {
    height: 50rem;
  }
}
.welcome__figure {
  position: relative;
}
.welcome__statistics {
  width: 90%;
  height: auto;
  min-height: 7.1875rem;
  background: #ffffff;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0.9375rem;
  display: grid;
  grid-template-rows: auto;
  min-height: 5.5rem;
  grid-gap: 0.625rem;
}
@media (min-width: 768px) {
  .welcome__statistics {
    width: 27.5rem;
    grid-template-columns: calc(50% - 0.3125rem) calc(50% - 0.3125rem);
  }
}
.welcome__statistics-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.welcome__statistics-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #a6035d;
  font-size: 1.875rem;
}
.welcome__statistics-label {
  color: #181818;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.featured__figure {
  width: 100%;
  height: 28.125rem;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  margin-bottom: 5.625rem;
}
@media (min-width: 992px) {
  .featured__figure {
    margin-bottom: 0;
  }
}
.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured__caption {
  max-width: 16.5rem;
  height: 6.375rem;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  padding: 0.625rem;
  color: #ffffff;
  background: #bf3475;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.featured__title {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.featured__subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
}

.resources {
  background: #f2af88;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
.resources__figure {
  height: 11.0625rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resources__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.resources__item {
  padding-bottom: 0.9375rem;
}
.resources__link {
  color: #222222;
  font-size: 0.875rem;
  display: flex;
  gap: 0.625rem;
}

.about__col--start {
  position: relative;
  color: #ffffff;
  padding: 5.0625rem 2.375rem 0 2.375rem;
  background: #d96c9f;
}
.about__col--start .headline-4 {
  color: #ffffff;
}
@media (min-width: 768px) {
  .about__col--start {
    padding: 5.0625rem 9.625rem 0 2.375rem;
  }
}
.about__col--end {
  padding: 7.5rem 2.9375rem 0 2.9375rem;
}
@media (min-width: 768px) {
  .about__col--end {
    padding: 7.5rem 2.9375rem 0 16rem;
  }
}
@media (min-width: 992px) {
  .about__col--end {
    padding: 5.125rem 2.9375rem 0 16rem;
  }
}
.about__figure {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4) !important;
  min-height: 29.75rem;
  width: auto !important;
  top: 3.75rem;
}
.about__figure img {
  min-height: 29.75rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 576px) {
  .about__figure img {
    width: 23.3125rem;
  }
}
@media (min-width: 576px) {
  .about__figure {
    width: 23.3125rem;
  }
}
@media (min-width: 768px) {
  .about__figure {
    right: -215px;
  }
}
@media (min-width: 992px) {
  .about__figure {
    position: absolute !important;
    right: -236px;
    top: 1.875rem;
  }
}
.about__caption {
  position: relative;
}
.about__caption::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #dd9966;
  position: absolute;
  top: -1px;
  left: -18px;
  z-index: -1;
}

.staggered {
  position: relative;
}
.staggered:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc((100% - 1140px) / 2 + 976px);
  height: 80%;
  background: rgba(251, 236, 237, 0.31);
}
.staggered--fourth:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc((100% - 1140px) / 2 + 976px);
  height: 80%;
  background: #f2af88;
}

.parallax {
  background-image: linear-gradient(0deg, rgba(251, 236, 237, 0.9), rgba(251, 236, 237, 0.9)), url("../img/budino-al-kiwi-ricetta-dieta-3-contemporaneo-food.jpg");
  background-attachment: fixed;
  background-position: center;
}

.news__item {
  display: flex;
  width: 14.0625rem;
  flex-wrap: wrap;
}
.news__img {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  width: 14.0625rem;
  height: 14.0625rem;
  object-fit: cover;
}
.news__caption {
  font-size: 0.875rem;
  color: #181818;
  padding-top: 1.25rem;
  padding-bottom: 0.9375rem;
}

.midsection {
  position: relative;
}
.midsection * {
  color: #ffffff;
}
.midsection__body {
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 3.125rem;
}
.midsection--main__body {
  background: #f2a2b8;
}
.midsection--mid__body {
  background: #f2a2b8;
}
.midsection--last {
  background: #ffffff;
}
.midsection--last:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: #fbeced;
}
.midsection--mid {
  background: #fbeced;
}
.midsection--mid:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  height: 28.125rem;
  background: #d96c9f;
}

/* Carousels
   ========================================================================== */
.carousel__btn-arrow-down {
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-radius: 100px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.carousel__btn-arrow-icn {
  width: 2.125rem;
  height: 2.125rem;
}

.carousel-main {
  height: 36.625rem;
}
.carousel-main .carousel-caption {
  top: 0;
  bottom: 0;
}
.carousel-main .carousel-caption--main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .carousel-main .carousel-caption--main {
    width: 43.75rem;
    justify-self: flex-end;
    margin-left: auto;
    gap: 1.875rem;
  }
}
@media (min-width: 992px) {
  .carousel-main .carousel-caption--top {
    padding-top: 7.5rem;
  }
}
.carousel-main .carousel-caption__title {
  font-family: "Montserrat", sans-serif;
  font-size: 10vw;
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .carousel-main .carousel-caption__title {
    font-size: 3.75rem;
  }
}
.carousel-main .carousel-caption__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 6vw;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .carousel-main .carousel-caption__subtitle {
    font-size: 1.875rem;
  }
}
.carousel-main .carousel-item {
  position: relative;
}
.carousel-main .carousel-img {
  width: 100%;
  height: 36.625rem;
  object-fit: cover;
  object-position: left;
}
@media (min-width: 576px) {
  .carousel-main .carousel-img {
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .carousel-main .carousel-img {
    object-position: center;
  }
}
.carousel-main--pages {
  background: #fbeced;
  height: auto;
}
.carousel-main--pages .carousel-caption {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .carousel-main--pages .carousel-caption {
    justify-content: center;
  }
}
.carousel-main--pages .carousel-caption__title {
  color: #000000;
}
@media (min-width: 768px) {
  .carousel-main--pages .carousel-caption__title {
    font-size: 3.75rem;
  }
}
.carousel-main--pages .carousel-caption__subtitle {
  color: #000000;
  font-size: 1.125rem;
}
.carousel-main--pages .carousel__btn-arrow-down {
  border: 2px solid #000000;
}
.carousel-main--pages .carousel-img--sx {
  height: 28.125rem;
  margin-top: 6.25rem;
}
@media (min-width: 576px) {
  .carousel-main--pages .carousel-img--sx {
    height: auto;
  }
}
.carousel-main--pages .carousel-img--dx {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
@media (min-width: 768px) {
  .carousel-main--pages .carousel-img--dx {
    display: block;
  }
}

.carousel-indicators {
  margin-bottom: 0;
}

.slick-arrow {
  background: transparent;
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-highlight {
  padding: 0;
}
.slideshow-highlight--container {
  position: relative;
  align-items: center;
  overflow: hidden;
  padding-top: 1.5625rem;
}
.slideshow-highlight--container .slideshow__prev {
  left: 1.875rem !important;
  width: 2.5rem;
  height: 2.5rem;
  background: #4d4d4d;
  color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100%;
}
.slideshow-highlight--container .slideshow__prev img {
  width: 1.0625rem;
}
@media (max-width: 575px) {
  .slideshow-highlight--container .slideshow__prev {
    left: 0 !important;
  }
}
.slideshow-highlight--container .slideshow__next {
  right: 1.875rem !important;
  width: 2.5rem;
  height: 2.5rem;
  background: #4d4d4d;
  color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100%;
}
.slideshow-highlight--container .slideshow__next img {
  width: 1.0625rem;
}
@media (max-width: 575px) {
  .slideshow-highlight--container .slideshow__next {
    right: 0 !important;
  }
}
.slideshow-highlight .slick-list {
  overflow: initial;
}
.slideshow-highlight .slick-slide {
  transition: all 0.3s ease;
  height: auto;
  text-align: center;
  margin-right: 0;
  margin-left: 0;
}
.slideshow-highlight .slick-slide img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}
@media (min-width: 376px) {
  .slideshow-highlight .slick-slide {
    margin-right: 0.625rem;
    margin-left: 0.625rem;
  }
}
@media (min-width: 768px) {
  .slideshow-highlight .slick-slide {
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }
}
@media (min-width: 992px) {
  .slideshow-highlight .slick-slide {
    margin-right: 1.5625rem;
    margin-left: 1.5625rem;
  }
}
@media (min-width: 1200px) {
  .slideshow-highlight .slick-slide {
    margin-right: 1.875rem;
    margin-left: 1.875rem;
  }
}

/* Components
   ========================================================================== */
/* Logo
   ========================================================================== */
.logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .logo {
    flex-direction: row;
  }
}
.logo__img {
  width: 4.8125rem;
  height: 4.8125rem;
}
.logo__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222222;
}

/* Loader
   ========================================================================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 3px solid transparent;
  border-top-color: #730d32;
  z-index: 1001;
  -moz-animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-color: #a42150;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-animation: spin 3s linear infinite;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #730d32;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: all 0.3s ease-out 1s;
  -o-transition: all 0.3s ease-out 1s;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transition-delay: 1s;
  transition: all 0.3s ease-out 1s;
}

.loaded #loader-wrapper .loader-section.section-left {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.loaded #loader-wrapper .loader-section.section-right {
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.loaded #loader-wrapper .loader-section.section-left,
.loaded #loader-wrapper .loader-section.section-right {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.3s;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loaded #loader {
  opacity: 0;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loading #loader-wrapper {
  visibility: visible;
  top: 0;
}

.loading #loader-wrapper .loader-section.section-left {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.loading #loader-wrapper .loader-section.section-right {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.loading #loader-wrapper .loader-section.section-left,
.loading #loader-wrapper .loader-section.section-right {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.3s;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loading #loader {
  opacity: 1;
  -moz-transition: all 0.3s ease-out 0.8s;
  -o-transition: all 0.3s ease-out 0.8s;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transition-delay: 0.8s;
  transition: all 0.3s ease-out 0.8s;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.48, 0.07, 0.37, 0.99);
  position: relative;
  border-radius: 0;
  font-size: 1rem;
  text-align: left;
  text-transform: uppercase;
  line-height: 1;
  height: 3rem;
  z-index: 1;
}

.btn-tag {
  font-size: 0.875rem;
  height: auto;
}

.btn-border {
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
  color: #ffffff;
  gap: 0.625rem;
  border: 2px solid #ffffff;
}
.btn-border:hover {
  border: 2px solid #ffffff;
}

.btn-border-b {
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
  color: #000000;
  gap: 0.625rem;
  border: 2px solid #000000;
}
.btn-border-b:hover {
  border: 2px solid #000000;
}

.btn-default {
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  color: #404040;
  text-transform: uppercase;
  gap: 0.625rem;
}
.btn-default:hover {
  border: 1px solid #ff2897;
  color: #404040;
}
.btn-default::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #f2a2b8;
  position: absolute;
  top: 0.5rem;
  left: 0.875rem;
  z-index: -1;
}

.btn-default-b {
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  font-size: 1rem;
  color: #404040;
  gap: 0.625rem;
}
.btn-default-b:hover {
  border: 1px solid #ff2897;
  color: #404040;
}
.btn-default-b::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #dd9966;
  position: absolute;
  top: 0.5rem;
  left: 0.875rem;
  z-index: -1;
}

.btn-default-c {
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  color: #ffffff;
  gap: 0.625rem;
}
.btn-default-c:hover {
  border: 1px solid #404040;
  color: #ffffff;
}
.btn-default-c::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #a6035d;
  position: absolute;
  top: 0.5rem;
  left: 0.875rem;
  z-index: -1;
}

/* Accordion
   ========================================================================== */
.accordion {
  margin-bottom: 0.625rem;
}

.accordion-button {
  background: #bf3475;
  color: #ffffff;
}
.accordion-button:after {
  filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed) {
  background: #bf3475;
  color: #ffffff;
}
.accordion-button:focus {
  border-color: #ddd;
  outline: none;
  box-shadow: none;
}

/* Pagination
   ========================================================================== */
.pagination > li > a {
  background-color: #ffffff;
  color: #bf3475;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover,
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #D8D8D8;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 0;
}

/* Forms
   ========================================================================== */
.form-control,
.form-select {
  border-radius: 0;
  background: #fbeced !important;
  border-color: #fbeced;
  color: #000000 !important;
  position: relative;
}
.form-control.placeholder,
.form-select.placeholder {
  font-size: 0.9375rem;
  color: #181818;
}
.form-control:-moz-placeholder,
.form-select:-moz-placeholder {
  font-size: 0.9375rem;
  color: #181818;
}
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  font-size: 0.9375rem;
  color: #181818;
}
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  font-size: 0.9375rem;
  color: #181818;
}
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
  font-size: 0.9375rem;
  color: #181818;
}
.form-control:focus,
.form-select:focus {
  background-color: transparent;
  border-color: #EEEEEE;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.045);
  filter: brightness(85%);
}

.form-select {
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

label {
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
}

.form-check {
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-check .form-check-input {
  margin-left: 0;
}

.form-check-label {
  font-size: 0.9375rem;
  color: #000000;
  font-weight: 500;
  padding-left: 0.625rem;
}

.form-radio-input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: #F4F4F4;
  border: 1px solid #C7C7C7;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 6.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.form-radio-input:checked {
  background: #FF9900 url("../img/icn-checked.svg") no-repeat center center;
  background-size: 1.4375rem;
  border: 1px solid #C7C7C7;
}
.form-radio-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(173, 214, 213, 0.25);
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: #F4F4F4;
  border: 1px solid #C7C7C7;
  width: 1.4375rem;
  height: 1.4375rem;
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-input:checked {
  background: #969C39 url("../img/icn-checked.svg") no-repeat center center;
  background-size: 1.4375rem;
  border: 1px solid #C7C7C7;
}
.form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(173, 214, 213, 0.25);
}

/* Figure
   ========================================================================== */
.figure {
  width: 100%;
  position: relative;
}
.figure--behind {
  position: relative;
}
.figure--behind .figure__img {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .figure--behind {
    padding-right: 5rem;
  }
}
.figure--behind__block, .figure--behind__block--third, .figure--behind__block--pink {
  display: none;
  width: 27.9375rem;
  height: 29.9375rem;
  position: absolute;
  right: 0;
  bottom: -70px;
}
.figure--behind__block--pink {
  background: #bf3475;
}
.figure--behind__block--third {
  background: #dd9966;
}
@media (min-width: 576px) {
  .figure--behind__block, .figure--behind__block--third, .figure--behind__block--pink {
    display: block;
  }
}
.figure__img {
  width: 100%;
}
.figure__img--block {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
}
@media (min-width: 576px) {
  .figure__img--block {
    height: 15.375rem;
  }
}
@media (min-width: 768px) {
  .figure__img--block {
    height: 21rem;
  }
}
@media (min-width: 992px) {
  .figure__img--block {
    height: 13.5rem;
  }
}
@media (min-width: 1200px) {
  .figure__img--block {
    height: 16.25rem;
  }
}
@media (min-width: 1360px) {
  .figure__img--block {
    height: 18.75rem;
  }
}
.figure__img--item {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
}
@media (min-width: 992px) {
  .figure__img--item {
    height: 13.5rem;
  }
}
@media (min-width: 1360px) {
  .figure__img--item {
    height: 16.3125rem;
  }
}
@media (min-width: 1400px) {
  .figure__img--item {
    height: 19.125rem;
  }
}
.figure__label {
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.48, 0.07, 0.37, 0.99);
  padding: 1.25rem;
}
@media (min-width: 576px) {
  .figure__label {
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  .figure__label {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .figure__label {
    font-size: 2.25rem;
  }
}
.figure__label:hover {
  background: rgba(166, 3, 93, 0.5) !important;
}
@media (min-width: 992px) {
  .figure__label--sm {
    font-size: 1.25rem;
  }
}
.figure__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d96c9f;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  width: 90%;
  min-height: 5.4375rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
  padding: 0.9375rem;
}
@media (min-width: 768px) {
  .figure__caption {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .figure__caption {
    width: 80%;
  }
}
.figure__title {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.figure__btn {
  display: flex;
  padding: 0.9375rem;
  padding-left: 2.1875rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  color: #ffffff;
  text-transform: uppercase;
  gap: 0.625rem;
  position: relative;
  text-align: left;
}
.figure__btn-caption {
  z-index: 1;
}
.figure__btn::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #dd9966;
  position: absolute;
  top: 0.75rem;
  left: 0.9375rem;
}

/* Social
   ========================================================================== */
.social {
  gap: 0.625rem;
  display: flex;
  justify-content: center;
}
.social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6.25rem;
  background: #a6035d;
  color: #ffffff;
}
.social__figure {
  width: 100%;
  position: relative;
  display: block;
  height: 16.375rem;
}
@media (min-width: 768px) {
  .social__figure {
    height: 22rem;
  }
}
@media (min-width: 992px) {
  .social__figure {
    height: 9.375rem;
  }
}
.social__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social__btn {
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
  color: #ffffff;
}

/* Recipe
   ========================================================================== */
.recipe__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.recipe__img {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 100%;
}
.recipe__caption {
  font-size: 0.875rem;
  font-weight: 700;
  color: #181818;
  padding-top: 1.25rem;
  padding-bottom: 0.9375rem;
}

/* Styles
   ========================================================================== */

/*# sourceMappingURL=style.css.map */
