/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
    animation-duration: .5s;
    animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
    animation-duration: .8s;
    animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce),
print {
    .animate__animated {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }

    80% {
        transform: translateZ(0) scaleY(.95);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.animate__flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    animation-name: rubberBand
}

@keyframes shakeX {

    0%,
    to {
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.animate__shakeX {
    animation-name: shakeX
}

@keyframes shakeY {

    0%,
    to {
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, -10px, 0)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, 10px, 0)
    }
}

.animate__shakeY {
    animation-name: shakeY
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.animate__headShake {
    animation-name: headShake;
    animation-timing-function: ease-in-out
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.animate__swing {
    animation-name: swing;
    transform-origin: top center
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__wobble {
    animation-name: wobble
}

@keyframes jello {

    0%,
    11.1%,
    to {
        transform: translateZ(0)
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.animate__heartBeat {
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration)*1.3);
    animation-name: heartBeat;
    animation-timing-function: ease-in-out
}

@keyframes backInDown {
    0% {
        opacity: .7;
        transform: translateY(-1200px) scale(.7)
    }

    80% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__backInDown {
    animation-name: backInDown
}

@keyframes backInLeft {
    0% {
        opacity: .7;
        transform: translateX(-2000px) scale(.7)
    }

    80% {
        opacity: .7;
        transform: translateX(0) scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__backInLeft {
    animation-name: backInLeft
}

@keyframes backInRight {
    0% {
        opacity: .7;
        transform: translateX(2000px) scale(.7)
    }

    80% {
        opacity: .7;
        transform: translateX(0) scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__backInRight {
    animation-name: backInRight
}

@keyframes backInUp {
    0% {
        opacity: .7;
        transform: translateY(1200px) scale(.7)
    }

    80% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__backInUp {
    animation-name: backInUp
}

@keyframes backOutDown {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    20% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        transform: translateY(700px) scale(.7)
    }
}

.animate__backOutDown {
    animation-name: backOutDown
}

@keyframes backOutLeft {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    20% {
        opacity: .7;
        transform: translateX(0) scale(.7)
    }

    to {
        opacity: .7;
        transform: translateX(-2000px) scale(.7)
    }
}

.animate__backOutLeft {
    animation-name: backOutLeft
}

@keyframes backOutRight {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    20% {
        opacity: .7;
        transform: translateX(0) scale(.7)
    }

    to {
        opacity: .7;
        transform: translateX(2000px) scale(.7)
    }
}

.animate__backOutRight {
    animation-name: backOutRight
}

@keyframes backOutUp {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    20% {
        opacity: .7;
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        transform: translateY(-700px) scale(.7)
    }
}

.animate__backOutUp {
    animation-name: backOutUp
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration)*.75);
    animation-name: bounceIn
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }

    75% {
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }

    90% {
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1)
    }

    75% {
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }

    90% {
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }

    75% {
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }

    90% {
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    75% {
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }

    90% {
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.animate__bounceOut {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration)*.75);
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3)
    }
}

.animate__bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3)
    }
}

.animate__bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    animation-name: fadeInTopRight
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.animate__fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.animate__fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.animate__fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.animate__fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0)
    }
}

.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0)
    }
}

.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0)
    }
}

.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0)
    }
}

.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft
}

@keyframes flip {
    0% {
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg)
    }

    to {
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)
    }
}

.animate__animated.animate__flip {
    animation-name: flip;
    backface-visibility: visible
}

@keyframes flipInX {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important
}

@keyframes flipInY {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInY {
    animation-name: flipInY;
    backface-visibility: visible !important
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.animate__flipOutX {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration)*.75);
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

.animate__flipOutY {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration)*.75);
    animation-name: flipOutY;
    backface-visibility: visible !important
}

@keyframes lightSpeedInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg)
    }

    60% {
        opacity: 1;
        transform: skewX(20deg)
    }

    80% {
        transform: skewX(-5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out
}

@keyframes lightSpeedInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) skewX(30deg)
    }

    60% {
        opacity: 1;
        transform: skewX(-20deg)
    }

    80% {
        transform: skewX(5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(30deg)
    }
}

.animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) skewX(-30deg)
    }
}

.animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-200deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center
}

@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        transform: rotate(-45deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom
}

@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom
}

@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom
}

@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        transform: rotate(-90deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(200deg)
    }
}

.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(45deg)
    }
}

.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(-45deg)
    }
}

.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(-45deg)
    }
}

.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(90deg)
    }
}

.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        animation-timing-function: ease-in-out;
        transform: rotate(80deg)
    }

    40%,
    80% {
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 700px, 0)
    }
}

.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration)*2);
    animation-name: hinge;
    transform-origin: top left
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.animate__rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

.animate__zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

.animate__zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

.animate__zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

.animate__zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0)
    }
}

.animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0)
    }
}

.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0)
    }
}

.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center
}

@keyframes zoomOutUp {
    40% {
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0)
    }
}

.animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

.animate__slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

.animate__slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

.animate__slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

.animate__slideOutUp {
    animation-name: slideOutUp
}
/*
Theme Name: Xerman theme
Author: Columbird
Author URI: https://columbird.se
Description: 
Version: 1.0
*/
/* General */
/* Colors */
/** Breakpoints  */
/** General  */
/** Grid */
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Italic.woff2") format("woff2"), url("font/Montserrat-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Black.woff2") format("woff2"), url("font/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ThinItalic.woff2") format("woff2"), url("font/Montserrat-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("font/Montserrat-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-BlackItalic.woff2") format("woff2"), url("font/Montserrat-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraLight.woff2") format("woff2"), url("font/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Regular.woff2") format("woff2"), url("font/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Bold.woff2") format("woff2"), url("font/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-SemiBold.woff2") format("woff2"), url("font/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Thin.woff2") format("woff2"), url("font/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-LightItalic.woff2") format("woff2"), url("font/Montserrat-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-BoldItalic.woff2") format("woff2"), url("font/Montserrat-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("font/Montserrat-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Medium.woff2") format("woff2"), url("font/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-MediumItalic.woff2") format("woff2"), url("font/Montserrat-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Light.woff2") format("woff2"), url("font/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Open sans */
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-ExtraBoldItalic.woff2") format("woff2"), url("font/OpenSans-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-SemiBoldItalic.woff2") format("woff2"), url("font/OpenSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-BoldItalic.woff2") format("woff2"), url("font/OpenSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-Italic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-BoldItalic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-SemiBoldItalic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Italic.woff2") format("woff2"), url("font/OpenSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-ExtraBoldItalic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-LightItalic.woff2") format("woff2"), url("font/OpenSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-MediumItalic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-MediumItalic.woff2") format("woff2"), url("font/OpenSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-Italic.woff2") format("woff2"), url("font/OpenSansCondensed-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-BoldItalic.woff2") format("woff2"), url("font/OpenSansCondensed-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-ExtraBoldItalic.woff2") format("woff2"), url("font/OpenSansCondensed-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-ExtraBold.woff2") format("woff2"), url("font/OpenSans-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-LightItalic.woff2") format("woff2"), url("font/OpenSansCondensed-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Regular.woff2") format("woff2"), url("font/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-SemiBoldItalic.woff2") format("woff2"), url("font/OpenSansCondensed-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-LightItalic.woff2") format("woff2"), url("font/OpenSansSemiCondensed-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Bold.woff2") format("woff2"), url("font/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Medium.woff2") format("woff2"), url("font/OpenSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-SemiBold.woff2") format("woff2"), url("font/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-MediumItalic.woff2") format("woff2"), url("font/OpenSansCondensed-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Light.woff2") format("woff2"), url("font/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-Medium.woff2") format("woff2"), url("font/OpenSansSemiCondensed-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-SemiBold.woff2") format("woff2"), url("font/OpenSansSemiCondensed-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-Regular.woff2") format("woff2"), url("font/OpenSansSemiCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-Light.woff2") format("woff2"), url("font/OpenSansSemiCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-ExtraBold.woff2") format("woff2"), url("font/OpenSansSemiCondensed-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("font/OpenSansSemiCondensed-Bold.woff2") format("woff2"), url("font/OpenSansSemiCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-Regular.woff2") format("woff2"), url("font/OpenSansCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-Light.woff2") format("woff2"), url("font/OpenSansCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-ExtraBold.woff2") format("woff2"), url("font/OpenSansCondensed-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-SemiBold.woff2") format("woff2"), url("font/OpenSansCondensed-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-Medium.woff2") format("woff2"), url("font/OpenSansCondensed-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("font/OpenSansCondensed-Bold.woff2") format("woff2"), url("font/OpenSansCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
}

body,
p,
li {
  color: #313131;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat", sans-serif;
  color: #313131;
}

h1,
.h1 {
  color: #131A1D;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.h1 {
  padding-left: 0;
}
@media only screen and (min-width: 1024px) {
  .h1 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.home h1 {
  max-width: 800px;
  margin: 0 auto 0.625rem;
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 3.125rem;
  font-weight: 700;
  text-transform: none;
}
@media only screen and (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h1.h2 {
  text-align: left;
}

h3,
.h3 {
  font-size: 1.375rem;
  line-height: 3.125rem;
  font-weight: 600;
}
@media only screen and (min-width: 1024px) {
  h3,
  .h3 {
    font-size: 1.875rem;
  }
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.75rem;
  margin-bottom: 0.625rem;
}

ol,
ul {
  padding: 0 0 0 1.0625rem;
}

p {
  color: #313131;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}
p a {
  color: #313131;
  background-image: linear-gradient(#92998B, #92998B);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  font-weight: bold;
}
p a:hover {
  color: #6A6B6C;
}
p a:focus-visible {
  outline: 0.125rem solid #ffffff;
}

.content li {
  line-height: 1.375rem;
  font-size: 0.9375rem;
}

li {
  margin: 0 0 1.25rem;
}
li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  position: relative;
  color: #000000;
  line-height: 1.25rem;
  font-size: 0.9375rem;
  text-decoration: none;
  background-image: linear-gradient(#92998B, #92998B);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0;
  padding-bottom: 2px;
}
li a:hover {
  background-size: 100% 2px;
}

strong,
b {
  font-weight: bold;
  letter-spacing: 0.02em;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

/* General */
*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body > main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
}

#version_number {
  background-color: black;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 222222;
  padding: 0px 10px;
  font-size: 10px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.space-none {
  margin: 0 !important;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

/* The default outline styling, for greatest accessibility. */
/* You can skip this to just use the browser's defaults. */
:focus {
  outline: #000000 auto 0.1875rem;
}

/* When mouse is detected, ALL focused elements have outline removed. */
body[data-curr-input=mouse] :focus {
  outline: none;
}

button {
  background: transparent;
  padding: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
}

@keyframes shake {
  0% {
    margin-left: 0rem;
  }
  25% {
    margin-left: 0.5rem;
  }
  75% {
    margin-left: -0.5rem;
  }
  100% {
    margin-left: 0rem;
  }
}
.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}
.row--full {
  max-width: none;
}
.row--reverse {
  flex-direction: row-reverse;
}
.row--collapse {
  padding: 0;
}
.row .row {
  margin-left: -20px;
  margin-right: -20px;
}

.row--small {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .row--small {
    max-width: 756px;
  }
}

.row--medium {
  max-width: 1025px;
}

.column,
.columns {
  box-sizing: border-box;
  flex: 1 1 0px;
  min-height: 0;
  min-width: 0;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.shrink {
  width: auto;
  flex: 0 1 auto;
}

.justify-left {
  justify-content: flex-start;
}

.justify-right {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.align-top {
  align-items: flex-start;
}

.align-middle {
  align-items: center;
}

.align-bottom {
  align-items: flex-end;
  align-content: flex-end;
}

.display-flex {
  display: flex;
}

@media only screen and (min-width: 0px) {
  .small-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .small-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .small-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .small-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .small-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .small-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .small-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .small-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .small-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .small-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .small-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .small-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .small-offset-1 {
    margin-left: 8.3333333333%;
  }
  .small-offset-2 {
    margin-left: 16.6666666667%;
  }
  .small-offset-3 {
    margin-left: 25%;
  }
  .small-offset-4 {
    margin-left: 33.3333333333%;
  }
  .small-offset-5 {
    margin-left: 41.6666666667%;
  }
  .small-offset-6 {
    margin-left: 50%;
  }
  .small-offset-7 {
    margin-left: 58.3333333333%;
  }
  .small-offset-8 {
    margin-left: 66.6666666667%;
  }
  .small-offset-9 {
    margin-left: 75%;
  }
  .small-offset-10 {
    margin-left: 83.3333333333%;
  }
  .small-offset-11 {
    margin-left: 91.6666666667%;
  }
  .small-offset-12 {
    margin-left: 100%;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--small-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .small-justify-left {
    justify-content: flex-start;
  }
  .small-justify-right {
    justify-content: flex-end;
  }
  .small-justify-center {
    justify-content: center;
  }
  .small-justify-around {
    justify-content: space-around;
  }
  .small-justify-between {
    justify-content: space-between;
  }
  .small-align-top {
    align-items: flex-start;
  }
  .small-align-middle {
    align-items: center;
  }
  .small-align-bottom {
    align-items: flex-end;
  }
  .hide-on-small {
    display: none;
  }
  .show-on-small {
    display: block;
  }
  .small-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media only screen and (min-width: 769px) {
  .medium-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .medium-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .medium-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .medium-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .medium-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .medium-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .medium-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .medium-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .medium-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .medium-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-offset-12 {
    margin-left: 100%;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--medium-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .medium-justify-left {
    justify-content: flex-start;
  }
  .medium-justify-right {
    justify-content: flex-end;
  }
  .medium-justify-center {
    justify-content: center;
  }
  .medium-justify-around {
    justify-content: space-around;
  }
  .medium-justify-between {
    justify-content: space-between;
  }
  .medium-align-top {
    align-items: flex-start;
  }
  .medium-align-middle {
    align-items: center;
  }
  .medium-align-bottom {
    align-items: flex-end;
  }
  .hide-on-medium {
    display: none;
  }
  .show-on-medium {
    display: block;
  }
  .medium-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media only screen and (min-width: 1024px) {
  .large-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .large-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .large-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .large-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .large-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .large-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .large-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .large-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .large-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .large-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-offset-12 {
    margin-left: 100%;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--large-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .large-justify-left {
    justify-content: flex-start;
  }
  .large-justify-right {
    justify-content: flex-end;
  }
  .large-justify-center {
    justify-content: center;
  }
  .large-justify-around {
    justify-content: space-around;
  }
  .large-justify-between {
    justify-content: space-between;
  }
  .large-align-top {
    align-items: flex-start;
  }
  .large-align-middle {
    align-items: center;
  }
  .large-align-bottom {
    align-items: flex-end;
  }
  .hide-on-large {
    display: none;
  }
  .show-on-large {
    display: block;
  }
  .large-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media only screen and (min-width: 1216px) {
  .xlarge-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .xlarge-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .xlarge-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .xlarge-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .xlarge-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .xlarge-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .xlarge-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .xlarge-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .xlarge-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .xlarge-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .xlarge-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .xlarge-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-offset-12 {
    margin-left: 100%;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .xlarge-justify-left {
    justify-content: flex-start;
  }
  .xlarge-justify-right {
    justify-content: flex-end;
  }
  .xlarge-justify-center {
    justify-content: center;
  }
  .xlarge-justify-around {
    justify-content: space-around;
  }
  .xlarge-justify-between {
    justify-content: space-between;
  }
  .xlarge-align-top {
    align-items: flex-start;
  }
  .xlarge-align-middle {
    align-items: center;
  }
  .xlarge-align-bottom {
    align-items: flex-end;
  }
  .hide-on-xlarge {
    display: none;
  }
  .show-on-xlarge {
    display: block;
  }
  .xlarge-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media only screen and (min-width: 1408px) {
  .xxlarge-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .xxlarge-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .xxlarge-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .xxlarge-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .xxlarge-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .xxlarge-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .xxlarge-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .xxlarge-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .xxlarge-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .xxlarge-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .xxlarge-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .xxlarge-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-offset-12 {
    margin-left: 100%;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row--xxlarge-uncollapse {
    padding-left: 10px;
    padding-right: 10px;
  }
  .xxlarge-justify-left {
    justify-content: flex-start;
  }
  .xxlarge-justify-right {
    justify-content: flex-end;
  }
  .xxlarge-justify-center {
    justify-content: center;
  }
  .xxlarge-justify-around {
    justify-content: space-around;
  }
  .xxlarge-justify-between {
    justify-content: space-between;
  }
  .xxlarge-align-top {
    align-items: flex-start;
  }
  .xxlarge-align-middle {
    align-items: center;
  }
  .xxlarge-align-bottom {
    align-items: flex-end;
  }
  .hide-on-xxlarge {
    display: none;
  }
  .show-on-xxlarge {
    display: block;
  }
  .xxlarge-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

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

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Components */
.skip-to-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  background-color: #92998B;
  color: #000000;
  z-index: 9999;
  text-align: center;
  font-size: 1.375rem;
  opacity: 0;
  transition: opacity 0.1s ease-in;
}
.skip-to-content:focus {
  transform: translateY(0);
  outline: none;
  opacity: 1;
}
.skip-to-content:focus-visible {
  outline: 2px solid #000000;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  background-color: #F2F2F2;
  flex: none;
  display: flex;
  padding: 0;
  height: 5rem;
}
@media only screen and (min-width: 1024px) {
  .header {
    padding: 1.25rem 0;
    height: unset;
  }
}

.header__items {
  display: flex;
  width: 100%;
  height: 100%;
  margin: auto;
  height: 5rem;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .header__items {
    height: unset;
    align-items: center;
  }
}

.header__logo {
  display: flex;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  width: 10.0625rem;
  height: 1.8125rem;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    width: 13rem;
    height: 2.375rem;
    margin-right: 0;
  }
}
.header__logo:focus-visible {
  outline: 0.125rem solid #000000;
}
.header__logo:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/header-logo.png);
}

.customer-is-logged-in .header {
  top: 50px;
}
.customer-is-logged-in #main {
  margin-top: 130px !important;
}
@media only screen and (min-width: 1024px) {
  .customer-is-logged-in #main {
    margin-top: 170px !important;
  }
}

.offcanvas[open]:not(:focus-within) {
  transition: background-color 0.01s;
}

.customer-is-logged-in .offcanvas__holder {
  top: 130px;
}

.offcanvas__holder {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
  position: fixed;
  height: calc(100% - 80px);
  width: 80vw;
  background-color: #F2F2F2;
  top: 80px;
  right: -100%;
  transition: all 0.3s ease;
  opacity: 0.5;
  z-index: -1;
  flex-direction: column;
  align-items: flex-start;
  align-content: space-between;
  justify-content: flex-start;
}
.offcanvas__holder:focus {
  outline: none;
  box-shadow: none;
}
@media only screen and (min-width: 769px) {
  .offcanvas__holder {
    right: -50%;
    width: 24.75rem;
  }
}
.offcanvas__holder:before {
  content: "";
  left: 100vw;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: -1;
}
.offcanvas__holder .active-parent > a,
.offcanvas__holder .active > a {
  color: #92998B;
}
.offcanvas__holder .active-parent > a:before,
.offcanvas__holder .active > a:before {
  content: "";
  position: absolute;
  height: 1.25rem;
  border-left: 0.3125rem solid #92998B;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.offcanvas__holder li {
  color: #000000;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.offcanvas__holder li.open {
  z-index: 200;
}
.offcanvas__holder li a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .offcanvas__holder li a {
    font-size: 1.0625rem;
  }
}
.offcanvas__holder li a:hover::before, .offcanvas__holder li a:hover::after {
  background-color: transparent;
  width: 0;
  transition: all 0.3s ease;
}
.offcanvas__holder li a::before, .offcanvas__holder li a::after {
  background-color: transparent;
}
.offcanvas__holder li a:focus-visible {
  outline: 0;
}
.offcanvas__holder li a:focus-visible::before {
  content: " ";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -3px;
  height: 0.1875rem;
  background-color: #92998B;
  border-radius: 0.25rem;
  display: block;
}
.offcanvas__holder li.active > a {
  color: #92998B;
}
.offcanvas__holder > li > a:after {
  content: " ";
  background-color: #ffffff;
  width: 0;
  height: 0.1875rem;
  left: 50%;
  position: absolute;
  bottom: -8px;
  transition: all 0.3s ease;
}
.offcanvas__holder > li > a:hover:after {
  width: 1.5rem;
  left: calc(50% - 12px);
  transition: all 0.3s ease;
}
.offcanvas__holder > .submenu-has-children {
  padding-right: 4.6875rem;
}
.offcanvas__holder > .submenu-has-children > .submenu-arrow {
  margin-right: -30px;
}
@media (max-width: 576px) {
  .offcanvas__holder > .submenu-has-children {
    padding-right: 2.6875rem;
  }
}
.offcanvas__holder > .active-parent > a:after,
.offcanvas__holder > .active > a:after {
  width: 1.5rem;
  left: calc(50% - 12px);
}

.offcanvas {
  width: 100%;
  height: 100%;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999999;
  padding: 2.5rem 1.25rem 0.625rem 1.25rem;
}
@media only screen and (min-width: 769px) {
  .offcanvas {
    padding: 2.5rem 1.25rem 0.625rem 1.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  .offcanvas {
    padding: 2.5rem 3.125rem 0.625rem 3.125rem;
  }
}
.offcanvas li {
  min-height: 30px;
}
.offcanvas a:focus-visible {
  outline: 0.125rem solid #000000 !important;
}
.offcanvas a:before {
  content: none !important;
}
.offcanvas a:after {
  content: none !important;
}

.offcanvas__social {
  display: none;
  margin: 0 0 1.25rem;
  align-self: center;
  flex-direction: row;
  padding: 1.25rem 0 2.5rem;
  width: 100%;
  padding: 2.5rem 1.25rem 0.625rem 1.25rem;
}
@media only screen and (min-width: 769px) {
  .offcanvas__social {
    padding: 2.5rem 1.25rem 0.625rem 1.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  .offcanvas__social {
    padding: 2.5rem 3.125rem 0.625rem 3.125rem;
  }
}
.offcanvas__social hr {
  border: none;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.75);
}

.offcanvas__social-links {
  display: flex;
  padding: 0;
  margin-top: 1.25rem;
}
.offcanvas__social-links li {
  padding: 0;
  width: unset !important;
}
.offcanvas__social-links li:hover {
  all: unset !important;
  height: 1.5625rem;
  color: #6A6B6C;
}

.socialmedia__icon__offcanvas {
  margin: 0 1.25rem 0 0;
  display: flex;
  height: 1.4375rem;
  width: 1.4375rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.socialmedia__icon__offcanvas:focus-visible {
  outline: 0.125rem solid #000000;
}
.socialmedia__icon__offcanvas:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

.fb__offcanvas {
  width: 0.9375rem;
}
.fb__offcanvas:before {
  background-image: url(img/facebook_black_icon.png) !important;
}
.fb__offcanvas:hover:before {
  background-image: url(img/facebook_offcanvas_hover_icon.png) !important;
}

.li__offcanvas:before {
  background-image: url(img/linkedin_black_icon.png);
}
.li__offcanvas:hover:before {
  background-image: url(img/linkedin_offcanvas_hover_icon.png);
}

.in__offcanvas:before {
  background-image: url(img/instagram_black_icon.png);
}
.in__offcanvas:hover:before {
  background-image: url(img/instagram_offcanvas_hover_icon.png);
}

.offcanvas-menu-open .offcanvas__holder {
  right: 0;
  opacity: 1;
}
.offcanvas-menu-open .offcanvas__holder .offcanvas {
  display: block;
}
.offcanvas-menu-open .offcanvas__holder .offcanvas__social {
  display: block;
}
@media (min-width: 1200px) {
  .offcanvas-menu-open .offcanvas__holder {
    right: calc(50vw - 628px);
  }
}
@media (max-width: 960px) {
  .offcanvas-menu-open .offcanvas__holder {
    right: 0;
  }
}
@media (max-width: 768px) {
  .offcanvas-menu-open .offcanvas__holder {
    right: 0;
    width: 80vw;
  }
}
.offcanvas-menu-open .offcanvas__holder::before {
  left: -100vw;
  right: 24.75rem;
  opacity: 0.75;
  display: block;
}
@media (max-width: 768px) {
  .offcanvas-menu-open .offcanvas__holder::before {
    right: 80vw;
  }
}
.offcanvas-menu-open .offcanvas__holder::after {
  position: absolute;
  right: -100vw;
  left: 100%;
  top: 0;
  height: 100%;
  background-color: #E6E6E6;
  content: "";
}

.submenu-arrow {
  width: 1.875rem;
  height: 1.875rem;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  background-image: url(img/offcanvas_arrow_down.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  transition: all 0.5s ease;
}
.submenu-arrow-open {
  transform: rotate(180deg);
  background-image: url(img/offcanvas_arrow.png);
}

.submenu-first {
  display: none;
  position: relative;
  padding: 0;
  margin: 0.625rem 0 0.9375rem;
  width: 100%;
  min-width: 13.75rem;
  z-index: 1000;
}
.submenu-first > li {
  padding-left: 0.625rem;
  margin: 0;
  min-height: 1.875rem;
}
.submenu-first > li:last-child {
  margin-bottom: 0;
}
.submenu-first > li a {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.1;
  position: relative;
  text-decoration: none;
  color: #000000;
  text-decoration: none;
  background-image: linear-gradient(#92998B, #92998B);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 0.1875rem;
  transition: all 0.3s ease;
  padding-bottom: 0;
  margin: 0 !important;
}
.submenu-first > li a:hover {
  background-size: 100% 0.1875rem;
  transition: all 0.3s ease;
  padding-bottom: 0.625rem;
}
.submenu-first > .submenu-has-children > .submenu-arrow {
  background-image: url(img/offcanvas_plus.png);
}
.submenu-first > .submenu-has-children > .submenu-arrow-open {
  background-image: url(img/offcanvas_minus.png);
}

.submenu-second {
  width: calc(100% + 16px);
  display: none;
  margin: 0.3125rem 0 0.625rem;
  padding: 0;
}
.submenu-second > li {
  padding-left: 0.9375rem;
}
.submenu-second > li:last-child {
  margin-bottom: 0;
}
.submenu-second > li a {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1rem;
}
.submenu-second > a {
  position: relative;
}
.submenu-second .submenu-arrow {
  display: none;
}

.submenu-second > .active {
  position: relative;
}
.submenu-second > .active:before {
  content: "";
  position: absolute;
  height: 1.5625rem;
  border-left: 0.3125rem solid #92998B;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.submenu-second > .active a {
  font-weight: bold;
}

.submenu-third {
  display: none;
}

.submenu-forth {
  display: none;
}

/* Footer */
.footer {
  background-color: #131A1D;
  color: #ffffff;
  padding: 1.5625rem 0 4.0625rem 0;
  margin-top: 3.125rem;
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 4.625rem 0 2.5rem 0;
  }
}
.footer h1, .footer h2, .footer h3, .footer h4 {
  color: #ffffff;
}

.footer__logo {
  display: flex;
  overflow: hidden;
  text-indent: -999px;
  width: 13rem;
  height: 2.375rem;
  margin-bottom: 0.8125rem;
}
@media only screen and (min-width: 1024px) {
  .footer__logo {
    margin-bottom: 3.125rem;
  }
}
.footer__logo img {
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.footer__image {
  width: 18.9375rem;
  height: 12.8125rem;
  margin-bottom: 4.375rem;
  margin-top: 2.8125rem;
}
@media only screen and (min-width: 1024px) {
  .footer__image {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.footer__image img {
  display: block;
  height: 100%;
  width: 100%;
  background-size: 75% 75%;
  background-position: center;
  background-repeat: no-repeat;
}

footer h1, footer h2, footer h3, footer .footer__title {
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
  line-height: 1.125rem;
  color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  footer h1, footer h2, footer h3, footer .footer__title {
    margin: 0 0 0.4375rem 0;
  }
}

.footer__mobile {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .footer__mobile {
    display: none;
  }
}
.footer__mobile .footer__text {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.footer__mobile .footer__text p {
  text-align: center;
}

.footer__desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .footer__desktop {
    display: block;
    margin-bottom: 2.8125rem;
  }
}

.footer__text p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.125rem;
  margin: 0 0 0.9375rem;
}
.footer__text a {
  color: #ffffff;
  background-image: linear-gradient(#92998B, #92998B);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}
.footer__text a:hover {
  background-size: 100% 2px;
  color: #ffffff;
}
.footer__text a:focus-visible {
  outline: 0.125rem solid #ffffff;
}

.footermenu {
  padding: 0;
}
.footermenu li {
  margin: 0 0 0.3125rem 0;
}
.footermenu li a {
  font-weight: normal;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.footermenu li a:focus-visible {
  outline: 0.125rem solid #ffffff;
}

.footer__accordion {
  margin-bottom: 5rem;
  width: 100%;
}

.footer-accordion__holder {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.footer-accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 0.40625rem 0;
  border-bottom: 1px solid #F0F0F0;
}
.footer-accordion__button h2 {
  margin: 0;
}
.footer-accordion__button:focus {
  outline: none;
  box-shadow: none;
}
.footer-accordion__button:focus-visible {
  outline: 2px solid #ffffff;
}

.footer-accordion__icon {
  display: flex;
  height: 1.875rem;
  width: 1.875rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.footer-accordion__icon:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/accordion-arrow-down.png);
  transition: all 0.5s ease;
}

.footer-accordion__icon.open {
  transform: rotate(180deg);
}

.footer-accordion__content {
  display: none;
  margin-top: 1.25rem;
}

.footer__social-container {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .footer__social-container {
    justify-content: flex-start;
  }
}

.socialmedia__icon {
  display: flex;
  height: 3.125rem;
  width: 3.125rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.socialmedia__icon:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-size: 75% 75%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}
.socialmedia__icon:focus-visible {
  outline: 0.125rem solid #ffffff;
}

.socialmedia__icon.fb:before {
  background-image: url(img/facebook_white_icon.png);
}
.socialmedia__icon.fb:hover:before {
  background-image: url(img/facebook_grey_icon.png);
}

.socialmedia__icon.in:before {
  background-image: url(img/instagram_white_icon.png);
}
.socialmedia__icon.in:hover:before {
  background-image: url(img/instagram_grey_icon.png);
}

.socialmedia__icon.li:before {
  background-image: url(img/linkedin_white_icon.png);
}
.socialmedia__icon.li:hover:before {
  background-image: url(img/linkedin_grey_icon.png);
}

.footer__link {
  color: #ffffff;
  margin-bottom: 1.875rem;
}

.mainmenu__holder {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.375rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  width: 100%;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .mainmenu__holder {
    width: unset;
    display: flex;
    height: 100%;
    margin: 0 0 0 auto;
    align-items: center;
    position: static;
    background-color: #F2F2F2;
  }
}

.mainmenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0.625rem;
}
@media only screen and (min-width: 1024px) {
  .mainmenu {
    height: unset;
    padding: 0;
  }
}
.mainmenu li {
  padding: 0 0.625rem;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .mainmenu li {
    padding: 0 1.71875rem;
  }
}
.mainmenu a {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #131A1D;
  line-height: 1.125rem;
  transition: all 0.3s ease;
}
.mainmenu a:focus-visible {
  outline: 0.125rem solid #000000;
}

.hero {
  height: auto;
  width: 100%;
  margin: 0;
  margin-bottom: 0.75rem;
  margin-top: 1.0625rem;
}
.hero:has(.mob) .desk {
  display: none;
}
.hero:has(.desk) .mob {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: 27.125rem;
    margin-top: 1.875rem;
    display: block;
  }
  .hero:has(.desk) .hero__image.desk {
    display: block;
  }
  .hero:has(.desk) .mob {
    display: none;
  }
}

.frontpage__hero {
  width: unset;
  margin-left: -20px;
  margin-right: -20px;
  height: auto;
  margin-top: 0;
}
@media only screen and (min-width: 1024px) {
  .frontpage__hero {
    width: 100%;
    margin-bottom: 1.5625rem;
    height: 27.125rem;
    margin-top: 1.875rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.page__hero {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 1024px) {
  .page__hero {
    margin-bottom: 3.125rem;
  }
}

.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero--empty {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .hero--empty {
    margin-bottom: 3.125rem;
  }
}

button {
  background-color: transparent;
  border: 0;
  display: flex;
  cursor: pointer;
}
button:focus-visible {
  outline: 1px solid #000000;
}

.wp-block-button {
  display: flex;
  flex-direction: row;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.wp-block-button:focus-visible {
  outline: 0.125rem solid #000000 !important;
}

.wp-block-buttons > .wp-block-button {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.wp-block-buttons > .wp-block-button:focus-visible {
  outline: 0.125rem solid #000000 !important;
}

.wp-block-buttons {
  margin-bottom: 1.5625rem !important;
}
@media only screen and (min-width: 1024px) {
  .wp-block-buttons {
    margin-bottom: 1.25rem !important;
  }
}

.wp-block-buttons.is-content-justification-left {
  padding-left: 0 !important;
}
@media only screen and (min-width: 1024px) {
  .wp-block-buttons.is-content-justification-left {
    padding-left: 1.25rem !important;
  }
}

.wp-block-button__link {
  text-align: start;
}

.wp-block-buttons.is-content-justification-center {
  justify-content: start !important;
}
@media only screen and (min-width: 1024px) {
  .wp-block-buttons.is-content-justification-center {
    justify-content: center !important;
  }
}

.wp-block-button__link.wp-element-button {
  color: #131A1D;
  background-color: transparent;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.9375rem 1.25rem 0.9375rem 0.9375rem;
}
.wp-block-button__link.wp-element-button:hover {
  color: #6A6B6C;
}
.wp-block-button__link.wp-element-button:before {
  content: "";
  position: absolute;
  height: 1.875rem;
  border-left: 0.3125rem solid #92998B;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wp-block-button__link.wp-element-button:after {
  content: "";
  position: absolute;
  height: 0.8125rem;
  width: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(img/button_arrow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.wp-block-button__link.wp-element-button:focus-visible, .wp-block-button__link.wp-element-button:focus {
  outline: 0.125rem solid #000000 !important;
}

.wp-block-image {
  width: 100%;
  margin: 1.25rem auto;
}
.wp-block-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image--small {
  width: 100%;
  height: 15.4375rem;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 1024px) {
  .image--small {
    height: 29.5rem;
    margin-bottom: 3.75rem;
    margin-top: 3.75rem;
  }
}
.image--small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.content li {
  list-style: disc;
}

.wp-block-separator {
  border-bottom: 0.0625rem solid;
  color: #707070;
  width: 100% !important;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .wp-block-separator {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

.everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid {
  padding-left: 0;
  padding-right: 0;
}

.quote {
  display: flex;
  justify-content: center;
  background-color: #F2F2F2;
  padding: 1.25rem;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .quote {
    width: 20.5625rem;
  }
}
.quote p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin: 0;
  word-break: break-word;
}

.wp-block-boilerplate-quote {
  display: flex;
  justify-content: center;
}

.wp-block-spacer {
  height: 2.8125rem !important;
}
@media only screen and (min-width: 1024px) {
  .wp-block-spacer {
    min-height: 4.375rem;
  }
}

.puff {
  width: 100%;
  margin-bottom: 10px;
}
.puff:focus-visible {
  outline: 0.125rem solid #000000 !important;
}
.puff:hover .puff-content__container > .puff__title > span {
  background-size: 100% 0.1875rem;
  color: inherit;
  background-image: linear-gradient(#313131, #313131);
}
.puff:focus-visible {
  outline: 0.125rem solid #000000 !important;
}
.puff:focus-visible .puff-content__container > .puff__title > span {
  background-size: 100% 0.1875rem;
  color: inherit;
  background-image: linear-gradient(#313131, #313131);
}

.puff-image__container {
  width: 100%;
  margin-bottom: 0.3125rem;
  background-color: #F2F2F2;
  aspect-ratio: 367/217;
}
.puff-image__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.puff-content__container {
  padding: 1.25rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .puff-content__container {
    margin-bottom: 2.5rem;
  }
}
.puff-content__container p {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  margin-bottom: 0;
}

.puff__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.puff__title span {
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 0.1875rem;
  transition: all 0.3s ease;
  padding-bottom: 0.1875rem;
}
.puff__title span:hover, .puff__title span:focus-visible {
  background-size: 100% 0.1875rem;
  color: inherit;
  background-image: linear-gradient(#313131, #313131);
}

.puff__content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.large-2-5 {
  flex-basis: 20%;
  max-width: 20%;
}

.puff-separator {
  background: #707070;
  width: 100% !important;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
  border-bottom: none;
}
@media only screen and (min-width: 1024px) {
  .puff-separator {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.wp-block-boilerplate-puffs {
  margin-top: 1.25rem;
}

.footer-puffs__link {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .footer-puffs__link {
    margin-bottom: 3.125rem;
  }
}

.puff-link__container {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .puff.single-puff {
    max-width: 45.3125rem;
  }
}
.puff.single-puff .puff__title {
  text-align: center;
  margin-bottom: 0.625rem;
}
.puff.single-puff .puff__title span:hover {
  background-size: 0;
}
@media only screen and (min-width: 1024px) {
  .puff.single-puff .puff__title {
    font-size: 2.8125rem;
    line-height: 3.125rem;
    margin-bottom: 1.25rem;
  }
}
.puff.single-puff .puff-content__container {
  text-align: center;
  padding: 1.25rem 0;
}
@media only screen and (min-width: 1024px) {
  .puff.single-puff .puff-content__container p {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .puff.single-puff .puff-content__container {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .puff.single-puff .puff-image__container {
    height: 18.75rem;
  }
}

.puff__link {
  color: #000000;
  background-color: transparent;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.9375rem 1.5625rem 0.9375rem 0.9375rem;
}
.puff__link:hover {
  color: #1F62B4;
}
.puff__link:before {
  content: "";
  position: absolute;
  height: 1.875rem;
  border-left: 0.3125rem solid #000000;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.puff__link:after {
  content: "";
  position: absolute;
  height: 0.8125rem;
  width: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(img/arrow-yellow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.puff__link:focus-visible {
  outline: auto #000000 0.0625rem;
}

.ingress {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.33;
}
@media only screen and (min-width: 1024px) {
  .ingress {
    font-size: 1.5rem;
  }
}
.ingress p,
.ingress a {
  font-size: 1.125rem;
  line-height: 1.33;
  font-weight: 500;
  margin-bottom: 0;
  color: #313131;
}
@media only screen and (min-width: 1024px) {
  .ingress p,
  .ingress a {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.accordions {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
@media only screen and (min-width: 1024px) {
  .accordions {
    margin-top: 2.5rem;
    margin-bottom: 6.25rem;
  }
}

.column > .accordion-item {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 1024px) {
  .column > .accordion-item {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.accordion-item {
  border-top: 0.125rem solid #707070;
}

.accordion-item:last-child {
  border-bottom: 0.125rem solid #707070;
}

.accordion-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1rem 0 0.9375rem 1.0625rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .accordion-item__question {
    padding: 1.625rem 1.0625rem;
  }
}
.accordion-item__question:focus-visible {
  outline: auto #000000 0.0625rem;
}
.accordion-item__question:focus {
  outline: none;
}
.accordion-item__question h2 {
  font-size: 1.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  margin-bottom: 0 !important;
  width: 95%;
}
.accordion-item__question h2 a {
  color: #000000;
}

.accordion-item__answer {
  display: none;
  width: 95%;
  margin-bottom: 1.625rem;
  padding: 0 0 0 1.0625rem;
  opacity: 0.1;
  transition: 0.7s opacity ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .accordion-item__answer {
    margin-bottom: 1.625rem;
    width: 32rem;
  }
}
.accordion-item__answer p {
  margin-bottom: 0;
}

.accordion-item__answer.open {
  opacity: 1;
}

.accordion-item__icon {
  border: none;
  background-color: transparent;
  height: 0.9375rem;
  width: 0.9375rem;
  position: relative;
  cursor: pointer;
}
.accordion-item__icon:after, .accordion-item__icon:before {
  content: "";
  display: block;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-item__icon:before {
  height: 0.9375rem;
  width: 0.2em;
}
.accordion-item__icon:after {
  height: 0.2em;
  width: 0.9375rem;
}

.accordion-item__icon.open:before {
  height: 0;
  width: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex !important;
  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%;
  height: inherit !important;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  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-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
  list-style: none !important;
}
.slick-dots button {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #F2F2F2;
  border: 1px solid #6A6B6C;
  text-indent: -9999px;
}
.slick-dots button:focus {
  outline: none;
  box-shadow: none;
}
.slick-dots li.slick-active button {
  background-color: #6A6B6C;
}

.slick-arrow {
  display: none !important;
}

.slider-block {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.header__button {
  position: relative;
  padding: 1.25rem;
  height: 1.875rem;
  width: 5.625rem;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1024px) {
  .header__button {
    width: 7.1875rem;
  }
}
.header__button::before {
  display: none;
  left: -5px;
  width: 0.1875rem;
  position: absolute;
  top: 6px;
  height: 25px;
  background-color: #131A1D;
  content: "";
}
@media only screen and (min-width: 1024px) {
  .header__button::before {
    display: block;
  }
}

.close-offcanvas {
  left: 0.3125rem;
  width: 2.5rem;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  top: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  transition: all 0.3s ease;
  line-height: 1.125rem;
}
@media only screen and (min-width: 1024px) {
  .close-offcanvas {
    margin-left: 1.0625rem;
    width: 3.125rem;
  }
}
.close-offcanvas:after {
  color: #131A1D;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.bar {
  width: 1.875rem;
  height: 0.1875rem;
  margin-left: 3.75rem;
  background-color: #131A1D;
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .bar {
    margin-left: 5.125rem;
  }
}
.bar:nth-child(2) {
  top: 0.5rem;
  transition: all 0.3s ease;
}
.bar:nth-child(3) {
  top: calc(50% - 2px);
  transition: all 0.3s ease;
}
.bar:nth-child(4) {
  top: calc(100% - 12px);
  transition: all 0.3s ease;
}

.offcanvas-menu-open .bar:nth-child(2) {
  top: calc(50% - 2px);
  transform: rotate(45deg);
}
.offcanvas-menu-open .bar:nth-child(3) {
  opacity: 0;
}
.offcanvas-menu-open .bar:nth-child(4) {
  transform: rotate(135deg);
  top: calc(50% - 2px);
}
.offcanvas-menu-open .close-offcanvas:after {
  content: attr(data-text-open);
}

.everest-forms {
  margin-top: 1.125rem;
}

.evf-frontend-grid.evf-grid-2 {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
@media only screen and (min-width: 769px) {
  .evf-frontend-grid.evf-grid-2 {
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    width: unset !important;
  }
}
@media only screen and (min-width: 1024px) {
  .evf-frontend-grid.evf-grid-2 {
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    width: unset !important;
  }
}

.evf-frontend-row {
  width: 100%;
  display: flex !important;
  justify-content: space-between !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media only screen and (min-width: 1024px) {
  .evf-frontend-row {
    width: unset !important;
  }
}

.evf-field-container {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.evf-submit-container {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: flex-end;
}

.everest-forms,
label.required {
  color: #131A1D;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
textarea,
select,
.input-text {
  border: 1px solid #707070 !important;
  border-radius: 4px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
}
@media only screen and (min-width: 1024px) {
  input[type=text]:focus-visible, input[type=text]:focus,
  input[type=email]:focus-visible,
  input[type=email]:focus,
  input[type=tel]:focus-visible,
  input[type=tel]:focus,
  input[type=url]:focus-visible,
  input[type=url]:focus,
  textarea:focus-visible,
  textarea:focus,
  select:focus-visible,
  select:focus,
  .input-text:focus-visible,
  .input-text:focus {
    outline: 0.0625rem solid #131A1D !important;
  }
}

.everest-forms.evf-field-container.evf-frontend-row {
  min-height: 24.125rem !important;
}

.everest-forms .layout-two textarea {
  min-height: 24.125rem !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 0.8125rem !important;
}

.everest-forms-submit-button.button.evf-submit {
  color: #131A1D !important;
  font-weight: bold !important;
  display: flex;
  align-items: center;
}
.everest-forms-submit-button.button.evf-submit:after {
  content: "";
  display: block;
  height: 13px;
  width: 15px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
  background-image: url(img/contactform_arrow.png);
  margin-left: 0.375rem;
}

.everest-form {
  margin-bottom: 50px !important;
}
@media only screen and (min-width: 1024px) {
  .everest-form {
    margin-bottom: 100px !important;
  }
}

.everest-forms input[type=number] {
  max-width: 14.625rem !important;
}

.everest-forms select {
  max-width: 14.625rem !important;
  -webkit-appearance: none !important;
}

.content.page h1 {
  text-align: left;
}
.content.page h2 {
  font-size: 1.375rem;
  line-height: 3.125rem;
  font-weight: 600;
}
@media only screen and (min-width: 1024px) {
  .content.page h2 {
    font-size: 1.875rem;
  }
}

.frontpage__image {
  height: 443px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-section {
  margin: 0 auto 2.5rem;
}
.form-section h2 {
  text-transform: uppercase;
}

.contact {
  margin-bottom: 1em;
}
.contact .text {
  padding: 1em;
}
.contact a {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.46;
  color: #131A1D;
  position: relative;
}
.contact a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  transition: all 0.3s ease;
  background-color: #92998B;
}
.contact a:hover::after {
  right: 0;
}
.contact .contact__name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-template-profiles .content.page {
  margin-top: 2.5rem;
}

.wpcf7 form.wpcf7-form * {
  position: relative;
}
.wpcf7 form.wpcf7-form span.wpcf7-form-control-wrap {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
.wpcf7 form.wpcf7-form label {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  margin: 0 0 0.625rem;
}
.wpcf7 form.wpcf7-form input[type=text], .wpcf7 form.wpcf7-form input[type=email], .wpcf7 form.wpcf7-form input[type=tel], .wpcf7 form.wpcf7-form textarea {
  padding: 0.625rem;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  border: solid 1px #707070;
  border-radius: 3px;
}
.wpcf7 form.wpcf7-form textarea {
  height: 270px;
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  position: relative;
  width: 100%;
  color: #92998B;
  padding: 0px 5px;
  display: flex;
  top: 1px;
  border: solid 1px #92998B;
  outline: solid 1px #92998B;
  background-color: #ffffff;
  left: 0;
  font-size: 0.75rem;
  font-weight: 600;
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #AA010F;
  position: absolute;
  top: -7px;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  max-width: 730px;
  margin: 1.25rem auto;
  padding: 10px;
  border-radius: 3px;
  width: 90%;
  background-color: #ffb900;
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
}
.wpcf7 form.wpcf7-form .wpcf7-submit {
  background-color: #92998B;
  display: flex;
  color: #ffffff;
  padding: 7px 35px 7px 5px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background-image: url(img/contactform_arrow.svg);
  background-size: 15px 13px;
  background-position: 90% center;
  background-repeat: no-repeat;
}
.wpcf7 form.wpcf7-form .wpcf7-spinner {
  position: absolute;
  top: 5px;
  right: -20px;
  background: none;
  opacity: 1;
  z-index: 10;
}
.wpcf7 form.wpcf7-form input:invalid {
  animation: shake 0.2s ease-in-out 0s 2;
  outline: solid 2px #92998B;
  color: #92998B;
  margin-bottom: 8px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #007e0a !important;
  border-color: #007e0a !important;
  color: #ffffff;
}

.wpcf7 form.wpcf7-form.submitting .wpcf7-submit {
  background-image: none;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal__content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
  border-bottom: 1px solid #ddd;
}

.modal__body {
  padding: 20px;
}

.modal__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#login-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#login-form > .input-holder {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
#login-form > .input-holder label {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}
#login-form .button {
  text-align: center;
  display: flex;
  justify-content: center;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
}
.modal__footer .button {
  margin-left: 10px;
}

#login-message p {
  color: #cf0505;
  font-size: 14px;
  margin-bottom: 0;
  background: #fff0f0;
  padding: 10px 20px;
  border: 1px solid #ffbaba;
  border-radius: 4px;
}

.takeover-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  font-size: 14px;
  z-index: 100000;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: scale(0.6);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.extramenu {
  align-items: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.extramenu li,
.extramenu a {
  margin: 0 0 0 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #131A1D;
  line-height: 1.125rem;
  cursor: pointer;
}

.header-logged-in {
  background: #131A1D;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0px;
  color: #fff;
  display: flex;
  z-index: 100000;
}

.skip-to-content {
  display: none;
}

.header-cart {
  position: relative;
  align-items: center;
}

.header-cart img {
  width: 38px;
  height: auto;
  filter: invert(1);
}

.header-cart-count {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  top: 18px;
  display: flex;
  justify-content: center;
}

.header-logged-in-content {
  max-width: 1160px;
  width: calc(100% - 24px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logged-in-content img {
  height: 80%;
}

.header-logged-in-menu {
  display: flex;
  align-items: center;
}

.heder-user {
  margin-right: 12px;
  border: 2px solid;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  color: #fff;
  position: relative;
  top: 1px;
  font-weight: bold;
}

/* Product list */
.products-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
  width: calc(100% - 40px);
}

.product-card {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .product-card {
    width: 33.33%;
  }
}

.product-card__image {
  width: 100%;
  height: 440px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.product-card__image img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card__content {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  flex: 1;
}
.product-card__content h3 {
  font-size: 1.375rem;
  line-height: 2rem;
}
.product-card__content .product-card__form {
  margin-bottom: 15px;
}

.product-card__form label {
  display: block;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ededed;
  height: 40px;
  display: flex;
  align-items: center;
}
.product-card__form label:first {
  background-color: red;
}
.product-card__form label input {
  margin-right: 8px;
}

.product-card__actions {
  display: flex;
  justify-content: space-between;
}
.product-card__actions a {
  margin-top: 16px;
}

.product-card__add-to-cart {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 16px;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .product-card__add-to-cart {
    flex-direction: row;
  }
}

.product-quantity-selector {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .product-quantity-selector {
    width: unset;
  }
}
.product-quantity-selector input {
  width: 60px;
  text-align: center;
  font-size: 16px;
  margin: 0 10px;
}
.product-quantity-selector input[type=number] {
  flex: 1;
}
@media only screen and (min-width: 1024px) {
  .product-quantity-selector input[type=number] {
    flex: unset;
  }
}
.product-quantity-selector button {
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  background-color: #131A1D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
}

.product-total-price {
  padding: 10px 0;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  margin-top: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.add-item-cart-simple {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .add-item-cart-simple {
    margin-top: 0;
    width: unset;
  }
}

.button {
  background-color: #131A1D;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
}

.button-link {
  text-transform: uppercase;
  text-decoration: underline;
  color: #131A1D;
}

.product-single {
  max-width: 1160px;
  margin: 0 auto;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .product-single {
    flex-direction: row;
  }
}

.product-single__image {
  width: 100%;
  margin-bottom: 16px;
}
@media only screen and (min-width: 769px) {
  .product-single__image {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
}
.product-single__image img {
  width: 100%;
  height: auto;
}

.product-single__content {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .product-single__content {
    width: calc(50% - 20px);
  }
}
.product-single__content h1 {
  text-align: left;
}
.product-single__content .product-card__add-to-cart {
  justify-content: space-between;
}

.breadcrumbs {
  max-width: 1160px;
  margin: 0 auto;
  width: calc(100% - 40px);
  padding: 10px 0;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs li {
  margin: 0 5px 0 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin-left: 5px;
}
.breadcrumbs li a {
  text-decoration: none;
  color: #131A1D;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}

/* Cart */
.cart {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  flex-direction: column;
  margin-bottom: 16px;
}
.cart__item > * {
  width: 100%;
}

.cart__item h2 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  width: 200px;
  flex: 1;
  margin-bottom: 8px;
}

.cart__item-image {
  width: 100%;
}
.cart__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
  border-radius: 4px;
}

.cart__total {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-top: 16px;
}

.cart__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.cart__actions button {
  background-color: #131A1D;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
}

.button-text {
  background: none;
  border: none;
  color: #131A1D;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  margin-left: 10px;
}

.list-item {
  border-bottom: 1px solid #ededed;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.list-item span {
  margin-right: 2px;
}
@media only screen and (min-width: 769px) {
  .list-item {
    border-bottom: 0;
  }
}

.cart__item-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

@media only screen and (min-width: 769px) {
  .cart__item {
    flex-direction: row;
    align-items: center;
  }
  .cart__item > * {
    width: auto;
  }
  .cart__item h2 {
    margin-bottom: 0;
  }
  .cart__item-image {
    width: 150px;
    margin-right: 20px;
  }
  .cart__item-image img {
    margin-bottom: 0;
  }
  .cart__item-actions {
    margin-top: 0;
  }
  .list-item {
    margin-right: 20px;
  }
}
main > .woocommerce {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1160px) {
  main > .woocommerce {
    flex-direction: row;
  }
}
main > .woocommerce h2 {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (min-width: 1024px) {
  main > .woocommerce h2 {
    font-size: 1.25rem;
  }
}
main > .woocommerce header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  main > .woocommerce header {
    flex-direction: row;
    justify-content: space-between;
  }
}
main > .woocommerce .edit {
  background-color: #131A1D;
  color: #fff;
  border: none;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 16px;
}
main > .woocommerce .woocommerce-Address {
  margin-bottom: 48px;
}
main > .woocommerce .woocommerce-Address:last-child {
  margin-bottom: 0;
}

.table-holder {
  width: 100%;
  overflow-x: auto;
}
.table-holder > table {
  width: 100%;
  min-width: 700px;
}

.woocommerce-table,
.shop_table {
  width: 100%;
  margin-bottom: 32px;
}
.woocommerce-table .button,
.shop_table .button {
  background-color: transparent;
  padding: 0;
  color: #000;
  font-size: 14px;
}
.woocommerce-table .woocommerce-orders-table__header,
.shop_table .woocommerce-orders-table__header {
  background-color: #dddddd;
  font-weight: bold;
  text-align: left;
  padding: 10px 8px;
}
.woocommerce-table tr,
.shop_table tr {
  border-bottom: 1px solid #ddd;
  height: 40px;
}
.woocommerce-table tr th,
.woocommerce-table tr td,
.shop_table tr th,
.shop_table tr td {
  vertical-align: middle;
}
.woocommerce-table tr th:first-child,
.woocommerce-table tr td:first-child,
.shop_table tr th:first-child,
.shop_table tr td:first-child {
  text-align: left;
  padding-left: 8px;
}
.woocommerce-table tr th:last-child,
.woocommerce-table tr td:last-child,
.shop_table tr th:last-child,
.shop_table tr td:last-child {
  text-align: right;
  padding-right: 8px;
}
.woocommerce-table a,
.shop_table a {
  color: #000;
}
.woocommerce-table .woocommerce-table__product-total,
.shop_table .woocommerce-table__product-total {
  text-align: right;
}

.woocommerce-MyAccount-navigation {
  width: 250px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 32px;
}
.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  padding: 10px;
  border-radius: 8px;
}
.woocommerce-MyAccount-content label {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 1160px) {
  .woocommerce-MyAccount-content {
    width: unset;
    margin-left: 20px;
    padding: 30px;
    flex: 1;
  }
}

.woocommerce-MyAccount-navigation-link {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
  padding: 10px 0;
}

/* Forms */
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  height: 40px;
}

.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  align-items: flex-start;
}
.form-row input,
.form-row select {
  width: 100%;
  max-width: 700px;
  height: 40px;
}

#account_display_name_description {
  font-size: 12px;
  color: #666;
}

.woocommerce-form-row fieldset legend {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.woocommerce-input-wrapper {
  width: 100%;
}

.select2-selection {
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px !important;
}

.select2-selection__rendered {
  font-size: 16px !important;
}

mark.order-number,
mark.order-date,
mark.order-status,
mark.order-total,
mark.order-actions {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
}

.checkout-form h1 {
  text-align: left;
}

textarea[name=order_comments] {
  width: 100%;
  height: 140px;
  resize: none;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
}

.wc_payment_method.payment_method_omikai {
  display: none;
}

.woocommerce-error {
  margin: 0;
  padding: 0;
  background: #ffe5e5;
  border: 1px solid #d88c8c;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.woocommerce-error li:last-child {
  margin-bottom: 0;
}
.woocommerce-error:focus {
  outline: unset;
}

.woocommerce-order {
  width: 100%;
}
.woocommerce-order h1 {
  text-align: left;
  margin-bottom: 16px;
}
.woocommerce-order ul {
  margin: 0;
  padding: 0;
}
.woocommerce-order .woocommerce-order-details__title {
  margin-top: 36px;
}
.woocommerce-order .woocommerce-order-overview {
  margin-bottom: 16px;
}

address {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  address {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}

.woocommer-message {
  padding: 20px;
  border: 1px solid;
  margin-bottom: 20px;
}

#image-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  justify-content: center;
  align-items: center;
  display: none;
}
#image-modal img {
  width: 98%;
  height: 98%;
  -o-object-fit: contain;
     object-fit: contain;
}
#image-modal #close-image-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}

.woocommerce-message {
  padding: 20px;
  border: 1px #000 dotted;
  margin-bottom: 20px;
}
