@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

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

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -9px;
}
.hamburger-inner::after {
    bottom: -9px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
    perspective: 64px;
}
.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
    perspective: 64px;
}
.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
    perspective: 64px;
}
.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
    perspective: 64px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
    perspective: 64px;
}
.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
    perspective: 64px;
}
.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

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

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-6.4px, -8px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-6.4px, 8px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(6.4px, -8px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(6.4px, 8px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

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

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

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -9px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 0.5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 9px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 18px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
    top: 0.5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 9px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 18px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 9px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -64px;
    top: -64px;
    transform: translate3d(64px, 64px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -64px;
    top: -64px;
    transform: translate3d(-64px, 64px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 9px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -64px;
    top: 64px;
    transform: translate3d(64px, -64px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -64px;
    top: 64px;
    transform: translate3d(-64px, -64px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

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

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
    top: 0.5px;
}
.hamburger--slider .hamburger-inner::before {
    top: 9px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 18px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-4.5714285714px, -8px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
    top: 0.5px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 9px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 18px;
}
.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(4.5714285714px, -8px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
    top: 0.5px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 9px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 9px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-container-pointer-events {
    touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none;
}

.pswp * {
    box-sizing: border-box;
}

.pswp img {
    max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
    display: block;
}

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    transform-origin: left top;
    /* for open/close transition */
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background: #222;
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC;
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.2s;
    box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
    opacity: 1;
}

.pswp__button:active {
    outline: none;
    opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
    opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
    /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
    .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
        background-image: url(default-skin.svg);
    }

    .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
        background: none;
    }
}
.pswp__button--close {
    background-position: 0 -44px;
}

.pswp__button--share {
    background-position: -44px -44px;
}

.pswp__button--fs {
    display: none;
}

.pswp--supports-fs .pswp__button--fs {
    display: block;
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0;
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute;
}

.pswp__button--arrow--left {
    left: 0;
}

.pswp__button--arrow--right {
    right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: "";
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute;
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__share-modal--hidden {
    display: none;
}

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform 0.25s;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
}

.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000;
}

.pswp__share-tooltip a:first-child {
    /* round corners on the first/last list item */
    border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
    opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px;
}

a.pswp__share--facebook:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}

a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF;
}

a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF;
}

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D;
}

a.pswp__share--download:hover {
    background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: 0.75;
    padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
}

.pswp__caption small {
    font-size: 11px;
    color: #BBB;
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC;
}

.pswp__caption--empty {
    display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
    visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px;
}

.pswp__preloader--active {
    opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
    animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
    /* 
    	The idea of animating inner circle is based on Polymer ("material") loading indicator 
    	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right;
    }
}
@-webkit-keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0);
    }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
    opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none;
}

.pswp__element--disabled {
    display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
    background: none;
}

@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-black-webfont.woff2") format("woff2"), url("../../fonts/silka-black-webfont.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-bold-webfont.woff2") format("woff2"), url("../../fonts/silka-bold-webfont.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-extralight-webfont.woff2") format("woff2"), url("../../fonts/silka-extralight-webfont.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-light-webfont.woff2") format("woff2"), url("../../fonts/silka-light-webfont.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-medium-webfont.woff2") format("woff2"), url("../../fonts/silka-medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Silka";
    src: url("../../fonts/silka-regular-webfont.woff2") format("woff2"), url("../../fonts/silka-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
.intro {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
}

.title30 {
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.title40 {
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 767px) {
    .title40 {
        font-size: 30px;
    }
}

.title60 {
    font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 767px) {
    .title60 {
        font-size: 40px;
    }
}

.p20 {
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.big {
    font-size: 60px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 1349px) {
    .big {
        font-size: 45px;
    }
}
@media (max-width: 1024px) {
    .big {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .big {
        font-size: 30px;
    }
}

.btn {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 14px 25px;
    background-color: #000;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    border-radius: 50px;
}
@media (max-width: 767px) {
    .btn {
        padding: 10px 25px !important;
    }
}
.btn.hasarrow {
    display: flex;
    align-items: center;
    padding: 14px 10px 14px 20px;
}
@media (max-width: 767px) {
    .btn.hasarrow {
        padding: 10px 10px 10px 20px !important;
    }
}
.btn.hasarrow svg {
    width: 34px;
    min-width: 34px;
    max-width: 34px;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    margin-left: 10px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn.hasarrow:hover {
    background-color: #000;
}
.btn.hasarrow:hover svg {
    transform: rotate(-30deg);
}
.btn:hover {
    background-color: #fdcb50;
}

.backbtn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.backbtn svg {
    margin-right: 10px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.backbtn svg path {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.backbtn:hover {
    color: #fdcb50;
}
.backbtn:hover svg {
    transform: scale(1.1, 1.1) translateX(-5px);
}
.backbtn:hover svg path {
    stroke: #fdcb50;
}

.shover {
    position: relative;
}
.shover:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #fdcb50;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.shover:hover:before {
    right: auto;
    left: 0;
    width: 100%;
}

.socialmedia {
    display: flex;
    align-items: center;
}
.socialmedia a:not(:last-child) {
    margin-right: 15px;
}
.socialmedia a svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.socialmedia a svg path,
.socialmedia a svg circle {
    fill: #000;
}
.socialmedia a:hover svg {
    transform: scale(1.3, 1.3);
}

.swiper-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    z-index: 2;
    pointer-events: none;
}
.swiper-nav svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.swiper-nav-right {
    pointer-events: auto;
    z-index: 9999999999;
    cursor: pointer;
    opacity: 1;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.swiper-nav-right:hover svg {
    transform: scale(1.3, 1.3);
}
.swiper-nav-right.swiper-button-disabled {
    opacity: 0.3 !important;
    pointer-events: none;
}
.swiper-nav-left {
    pointer-events: auto;
    cursor: pointer;
    z-index: 9999999999;
    opacity: 1;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.swiper-nav-left.swiper-button-disabled {
    opacity: 0.3 !important;
    pointer-events: none;
}
.swiper-nav-left svg {
    transform: rotate(180deg);
}
.swiper-nav-left:hover svg {
    transform: rotate(180deg) scale(1.3, 1.3);
}

.book {
    position: relative;
}
.book-img {
    position: relative;
    background-color: #f4f4f4;
    padding: 70px;
}
@media (max-width: 1149px) {
    .book-img {
        padding: 50px;
    }
}
@media (max-width: 329px) {
    .book-img {
        padding: 20px;
    }
}
.book-img img {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 330px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .book-img img {
        height: 220px;
        min-height: 220px;
    }
}
.book-content {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.book-name {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 5px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.book-author {
    font-size: 20px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: #000;
}
.book:hover h4,
.book:hover span {
    color: #fdcb50;
}
.book:hover img {
    transform: scale(1.05, 1.05);
}
.book-coauthor {
    font-size: 17px;
    color: #000;
}
.book-coauthor-label {
    font-size: 15px;
}
.home-heroslider-item .title30.author {
    font-size: 30px;
}
.home-heroslider-item .title40.author {
    font-size: 40px;
}

@media (max-width: 1024px) {
    .book:hover img {
        transform: scale(1);
    }
}

.bordertop {
    position: relative;
}
.bordertop:before {
    content: "";
    width: calc( 100% - 60px );
    height: 1px;
    position: absolute;
    left: 30px;
    top: 0;
    background-color: #d8d8d8;
}

.blogitem {
    position: relative;
    display: flex;
    flex-direction: column;
}
.blogitem img {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 330px;
    min-height: 330px;
    max-height: 330px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 20px;
}
.blogitem .title40 {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 20px;
}
.blogitem:hover .title40 {
    color: #fdcb50;
}

.dropdown {
    position: relative;
}
.dropdown-c {
    max-width: -webkit-fill-available;
    width: 100%;
    height: auto;
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropdown.active .dropdown-c {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.share {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 60px;
}
.share span {
    display: flex;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 20px;
}
.share ul {
    display: flex;
    align-items: center;
}
.share ul li img,
.share ul li svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
}
.share ul li:not(:last-of-type) {
    margin-right: 30px;
}

* {
    font-family: "Silka";
    outline: none !important;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none;
}

a, a:before, a:after, svg, svg *, input, select, textarea, button {
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), fill 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), stroke 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1900px;
    padding-left: 30px;
    padding-right: 30px;
}
@media (max-width: 767px) {
    .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

html, body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul, ol {
    list-style-position: outside;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

a {
    text-decoration: none;
}

a img {
    border: none;
}

img, video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

video {
    outline: none;
}

header, footer, section, article, aside, main, nav, svg {
    display: block;
}

table {
    border-collapse: collapse;
}

input, textarea, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

input[type=text], input[type=email], textarea, select {
    width: 100%;
}

input[type=submit] {
    cursor: pointer;
}

select, button {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

input[type=checkbox]:focus {
    outline: 0;
}

.header {
    position: sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    top: 0;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
    z-index: 9999999999;
}
@media (max-width: 1024px) {
    .header {
        padding-top: 15px;
        padding-bottom: 15px;
        z-index: 16;
    }
    .header:before {
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 16;
    }
}
.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    width: 330px;
    height: auto;
}
@media (max-width: 1199px) {
    .header-logo {
        width: 220px;
        z-index: 99999;
    }
}
.header-logo svg {
    width: 100%;
}
.header-rn {
    position: relative;
    display: flex;
    flex-direction: row;
}
@media (max-width: 1024px) {
    .header-rn {
        display: none;
    }
}
.header-rn-search {
    position: relative;
    padding-right: 40px;
}
@media (max-width: 1199px) {
    .header-rn-search {
        padding-right: 20px;
    }
}
.header-rn-search:before {
    content: none;
    width: 1px;
    height: 75px;
    background-color: #d8d8d8;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.header-rn-search svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .header-rn-search svg {
        display: block !important;
        width: 24px;
        min-width: 24px;
        max-width: 24px;
        height: 24px;
        max-height: 24px;
        min-height: 24px;
    }
    .header-rn-search svg * {
        fill: #000;
    }
}
.header-rn-search:hover svg {
    transform: scale(1.3, 1.3);
}
@media (max-width: 1024px) {
    .header-rn-search:hover svg {
        transform: none;
    }
}
.header-rn-elink {
    margin-left: 40px;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 1399px) {
    .header-rn-elink {
        font-size: 18px;
    }
}
@media (max-width: 1199px) {
    .header-rn-elink {
        margin-left: 20px;
    }
}
@media (max-width: 1024px) {
    .header-nav {
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        right: 0;
        will-change: transform;
        transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        display: block;
        transform: translateX(100%);
        padding: 120px 20px 150px 20px;
        background-color: #fdcb50;
        z-index: 15;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100vh;
    }
    .header-nav .header-rn {
        display: flex !important;
        margin-top: 50px;
    }
    .header-nav .header-rn button:before {
        background-color: #000;
    }
    .header-nav.-open {
        visibility: visible;
        pointer-events: auto;
        right: 0;
        transform: translateX(0);
    }
}
.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
}
.header-nav ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: #fdcb50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    top: 130px;
    opacity: 0;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    visibility: hidden;
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu {
        display: none;
    }
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu.active-menu {
        position: relative;
        display: flex;
        width: 100%;
        opacity: 1;
        align-items: flex-start;
        justify-content: flex-start;
        top: 0;
        padding: 0;
        visibility: visible;
        margin-top: 20px;
    }
}
.header-nav ul.sub-menu .sub-menu-title {
    display: flex;
    margin-right: 30px;
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu .sub-menu-title {
        margin-bottom: 20px;
    }
}
.header-nav ul.sub-menu a {
    background-color: #fff;
    color: #000 !important;
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu a {
        font-size: 20px;
        font-weight: normal !important;
    }
}
.header-nav ul.sub-menu a:before {
    content: "" !important;
    left: 0 !important;
}
.header-nav ul.sub-menu a:after {
    display: none;
}
.header-nav ul.sub-menu a:hover {
    background-color: #000;
    color: #fff !important;
}
.header-nav ul.sub-menu a.sub-menu-link:hover {
    color: #000 !important;
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu li {
        padding-left: 0;
    }
}
@media (max-width: 1024px) {
    .header-nav ul.sub-menu li a:before {
        display: none;
    }
}
.header-nav ul.sub-menu .sub-menu-link {
    color: #000;
    background: none;
}
.header-nav ul.sub-menu .sub-menu-link:before {
    width: 100%;
    background-color: #000;
}
.header-nav ul.sub-menu .sub-menu-link:hover {
    background: none;
    color: #000;
}
.header-nav ul.sub-menu .sub-menu-link:hover:before {
    width: 0;
}
@media (max-width: 1024px) {
    .header-nav li {
        padding-left: 60px;
    }
}
.header-nav li:not(:last-child) {
    margin-right: 30px;
}
@media (max-width: 1399px) {
    .header-nav li:not(:last-child) {
        margin-right: 15px;
    }
}
@media (max-width: 1024px) {
    .header-nav li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.header-nav li.active-menu-item a {
    color: #fdcb50;
}
@media (max-width: 1024px) {
    .header-nav li.active-menu-item a {
        color: #000;
        font-weight: bold;
    }
    .header-nav li.active-menu-item a:before {
        content: "→";
        position: absolute;
        left: -50px;
    }
}
.header-nav li.menu-item-has-children a:after {
    content: "";
    width: 100%;
    height: 200%;
    position: absolute;
    left: 0;
    bottom: -55px;
    background-image: url("../svg/Vector.svg");
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    opacity: 0;
}
@media (max-width: 1399px) {
    .header-nav li.menu-item-has-children a:after {
        bottom: -57px;
    }
}
.header-nav li.menu-item-has-children:hover a:after {
    opacity: 1;
}
.header-nav li.menu-item-has-children:hover .sub-menu {
    width: 100%;
    visibility: visible;
    opacity: 1;
}
.header-nav a {
    position: relative;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 1399px) {
    .header-nav a {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .header-nav a {
        font-size: 40px;
    }
}
.header-nav a:hover {
    color: #fdcb50;
}
@media (max-width: 1024px) {
    .header-nav a:hover {
        color: #000;
    }
}
.header-nav .header-rn {
    display: none;
}
.header .hamburger {
    display: none;
}
@media (max-width: 1024px) {
    .header .hamburger {
        display: flex;
        z-index: 99999;
    }
}

.footer {
    position: relative;
    width: 100%;
    background-color: #ececec;
    padding-top: 50px;
    padding-bottom: 40px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 120px;
}
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 60px;
    }
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 1024px) {
    .footer-bottom .socialmedia {
        display: none;
    }
}
.footer-bottom footer {
    width: 35%;
    color: #000;
}
.footer-bottom footer a {
    color: #000;
}
@media (max-width: 1149px) {
    .footer-bottom footer {
        width: 40%;
    }
}
@media (max-width: 1024px) {
    .footer-bottom footer {
        width: 100%;
    }
}
.footer-bottom .footer-nav {
    width: 35%;
}
@media (max-width: 1149px) {
    .footer-bottom .footer-nav {
        width: 40%;
    }
}
@media (max-width: 1024px) {
    .footer-bottom .footer-nav {
        width: 100%;
        display: none;
    }
}
.footer-bottom .footer-nav ul {
    justify-content: flex-end;
}
@media (max-width: 1024px) {
    .footer-logo svg {
        width: 100%;
        max-width: 320px;
    }
}
.footer-nav {
    position: relative;
}
@media (max-width: 1024px) {
    .footer-nav.-primary {
        padding-top: 60px;
    }
}
@media (max-width: 767px) {
    .footer-nav.-primary ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 50px;
    }
}
.footer-nav.-primary li:nth-child(n+4) {
    display: none;
}
@media (max-width: 1024px) {
    .footer-nav.-primary li:nth-child(n+4) {
        display: flex;
    }
}
@media (max-width: 767px) {
    .footer-nav.-primary li {
        margin: 0 !important;
    }
}
.footer-nav ul {
    display: flex;
    align-items: center;
}
.footer-nav li:not(:last-child) {
    margin-right: 40px;
}
@media (max-width: 1249px) {
    .footer-nav li:not(:last-child) {
        margin-right: 15px;
    }
}
.footer-nav a {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    position: relative;
}
.footer-nav a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #fdcb50;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-nav a:hover:before {
    right: auto;
    left: 0;
    width: 100%;
}

.newsletterpart {
    position: relative;
    background-color: #fdcb50;
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 767px) {
    .newsletterpart {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.newsletterpart .big {
    margin-bottom: 40px;
}
.newsletterpart .btn {
    margin-left: auto;
}
@media (max-width: 767px) {
    .newsletterpart .btn {
        margin-left: 0;
    }
}

.bookspart {
    position: relative;
    margin-top: 125px;
    padding-bottom: 120px;
}
.bookspart-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 40px;
}
.bookspart-header .swiper-nav {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.bookspart-header .swiper-nav .swiper-button-disabled {
    opacity: 1;
}
.bookspart-header .swiper-nav-left {
    margin-right: 50px;
}
@media (max-width: 767px) {
    .bookspart-header .swiper-nav-left {
        margin-right: 40px;
    }
}
.bookspart-header .swiper-nav svg {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}
.bookspart-header .swiper-nav svg ellipse {
    fill: #f4f4f4;
}

.blogpart {
    position: relative;
    padding-bottom: 120px;
}
.blogpart-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .blogpart-header .intro {
        display: flex;
        flex-direction: column;
        padding-right: 20px;
    }
}
.blogpart-header .intro a {
    font-weight: 200;
    color: #000;
    margin-left: 10px;
}
@media (max-width: 767px) {
    .blogpart-header .intro a {
        margin-left: 0px;
        margin-top: 10px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.blogpart-header .swiper-nav {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.blogpart-header .swiper-nav .swiper-button-disabled {
    opacity: 1;
}
.blogpart-header .swiper-nav-left {
    margin-right: 50px;
}
@media (max-width: 369px) {
    .blogpart-header .swiper-nav-left {
        margin-right: 20px;
    }
}
.blogpart-header .swiper-nav svg {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}
.blogpart-header .swiper-nav svg ellipse {
    fill: #f4f4f4;
}
.blogpart .blogitem span {
    display: flex;
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .blogpart .blogitem p {
        font-size: 18px;
    }
}

.searchlightbox {
    position: fixed;
    width: 100%;
    z-index: 99999999;
    bottom: 0;
    left: 0;
    background: #fdcb50;
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .searchlightbox {
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 0;
        width: 0;
    }
}
.searchlightbox.active {
    -webkit-clip-path: circle(100vw at 50% 50%);
            clip-path: circle(100vw at 50% 50%);
}
@media (max-width: 1024px) {
    .searchlightbox.active {
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 1;
        width: 100%;
    }
}
.searchlightbox form {
    position: relative;
    margin-top: 130px;
}
@media (max-width: 767px) {
    .searchlightbox form {
        margin-top: 40px;
    }
}
.searchlightbox input {
    width: 100%;
    height: auto;
    font-size: 100px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding-right: 120px;
}
@media (max-width: 1439px) {
    .searchlightbox input {
        font-size: 80px;
    }
}
@media (max-width: 767px) {
    .searchlightbox input {
        font-size: 20px;
        padding-bottom: 15px;
        padding-right: 40px;
    }
}
.searchlightbox input::-moz-placeholder {
    -moz-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.searchlightbox input:-ms-input-placeholder {
    -ms-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.searchlightbox input::placeholder {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.searchlightbox button {
    position: absolute;
    right: 0;
    bottom: 45px;
}
@media (max-width: 1439px) {
    .searchlightbox button {
        bottom: 20px;
    }
}
.searchlightbox button svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 76px;
    max-width: 76px;
    min-width: 76px;
    height: 76px;
    min-height: 76px;
    max-height: 76px;
}
@media (max-width: 1439px) {
    .searchlightbox button svg {
        width: 55px;
        max-width: 55px;
        min-width: 55px;
        height: 55px;
        min-height: 55px;
        max-height: 55px;
    }
}
@media (max-width: 767px) {
    .searchlightbox button svg {
        width: 24px;
        max-width: 24px;
        min-width: 24px;
        height: 24px;
        min-height: 24px;
        max-height: 24px;
    }
}
.searchlightbox button:hover svg {
    transform: scale(1.1, 1.1);
    opacity: 0.5;
}

.home {
    position: relative;
}
.home-heroslider {
    position: relative;
    background-color: rgba(1, 156, 222, 0.36);
}
.home-heroslider:before {
    content: "";
    width: 100%;
    height: 140px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
@media (max-width: 849px) {
    .home-heroslider:before {
        height: 60px;
    }
}
.home-heroslider .swiper-wrapper {
    margin: 0;
    padding: 0 !important;
}
.home-heroslider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 849px) {
    .home-heroslider .swiper-slide {
        height: auto;
        align-items: flex-start;
    }
}
.home-heroslider-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-bottom: 140px;
}
@media (max-width: 849px) {
    .home-heroslider-item {
        flex-direction: column-reverse;
        align-items: center;
        padding-bottom: 0;
        height: 100%;
    }
}
.home-heroslider-item-book {
    transform: translateY(140px);
    z-index: 2;
}
.home-heroslider-item-image,
.home-heroslider-item-video {
    transform: translateY(100px);
    z-index: 2;
}
@media (max-width: 1489px) {
    .home-heroslider-item-book {
        padding-left: 100px;
        transform: translateY(60px);
    }
}
@media (max-width: 849px) {
    .home-heroslider-item-book {
        transform: none;
        padding: 0;
        margin-top: auto;
    }
}
.home-heroslider-item-book img {
    height: 645px;
    min-height: 645px;
    max-height: 645px;
}
@media (max-width: 1349px) {
    .home-heroslider-item-book img {
        min-width: 394px;
    }
}
@media (max-width: 849px) {
    .home-heroslider-item-book img {
        min-width: inherit;
        height: 275px;
        min-height: 275px;
        max-height: 275px;
    }
}
.home-heroslider-item-content {
    padding-left: 190px;
    padding-top: 140px;
    padding-bottom: 50px;
}
@media (max-width: 1489px) {
    .home-heroslider-item-content {
        padding-left: 40px;
        padding-right: 150px;
        padding-top: 60px;
    }
}
@media (max-width: 849px) {
    .home-heroslider-item-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
    }
}
.home-heroslider-item .category {
    display: flex;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 40px;
}
@media (max-width: 849px) {
    .home-heroslider-item .category {
        text-align: center;
        margin-bottom: 20px;
    }
}
.home-heroslider-item .title-book {
    font-size: 100px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    width: 100%;
    max-width: 800px;
}
@media (max-width: 1349px) {
    .home-heroslider-item .title-book {
        font-size: 50px;
    }
}
@media (max-width: 849px) {
    .home-heroslider-item .title-book {
        text-align: center;
    }
}
.home-heroslider-item .author {
    font-size: 100px;
    font-weight: lighter;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    width: 100%;
    max-width: 800px;
}
@media (max-width: 1349px) {
    .home-heroslider-item .author {
        font-size: 50px;
    }
}
@media (max-width: 849px) {
    .home-heroslider-item .author {
        text-align: center;
        margin-bottom: 20px;
    }
}
.home-heroslider-item .btn {
    margin-top: 40px;
}
.home-heroslider-item .btn:hover {
    color: #000;
}
@media (max-width: 849px) {
    .home-heroslider-item .btn {
        margin-top: 20px;
    }
}
@media (max-width: 849px) {
    .home-heroslider .swiper-nav {
        top: auto;
        bottom: 225px;
    }
}
.home-heroslider .swiper-nav .swiper-button-disabled {
    opacity: 0 !important;
}
@media (max-width: 849px) {
    .home-heroslider .swiper-nav svg {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }
}
.home-about {
    position: relative;
    padding-top: 25px;
    padding-bottom: 95px;
}
.home-about .big {
    margin-top: 60px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .home-about .big {
        margin-top: 30px;
    }
}
.home-about .btn {
    margin-left: auto;
}
@media (max-width: 767px) {
    .home-about .btn {
        margin-left: 0;
    }
}

.libri {
    position: relative;
}
.libri-main {
    padding-top: 25px;
    margin-top: 50px;
}
.libri-main h1 {
    margin-bottom: 108px;
}
@media (max-width: 949px) {
    .libri-main h1 {
        margin-bottom: 30px;
    }
}
.libri-products {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
    padding-bottom: 100px;
}
@media (max-width: 1249px) {
    .libri-products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 949px) {
    .libri-products {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 60px;
    }
}
@media (max-width: 549px) {
    .libri-products {
        grid-template-columns: repeat(1, 1fr);
    }
}
.libri-pagination {
    position: relative;
    padding-bottom: 120px;
}
.libri-pagination nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.libri-pagination nav a,
.libri-pagination nav span {
    background-color: #ececec;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 2px;
    text-align: left;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}
.libri-pagination nav a:not(:last-child),
.libri-pagination nav span:not(:last-child) {
    margin-right: 10px;
}
.libri-pagination nav span {
    margin-right: 10px;
    background-color: #fdcb50;
}
.libri-pagination nav .next {
    margin-left: 10px;
}
.libri-pagination nav a {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.libri-pagination nav a:hover {
    background-color: #fdcb50;
    transform: scale(1.3, 1.3);
}

.product {
    position: relative;
}
.product-main {
    position: relative;
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .product-main {
        margin-top: 30px;
    }
}
.product-main-about {
    position: relative;
    margin-top: 40px;
    display: flex;
    max-width: 1525px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    padding-bottom: 130px;
}
@media (max-width: 949px) {
    .product-main-about {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .product-main-about {
        padding-bottom: 80px;
    }
}
.product-main-about-img {
    position: relative;
    width: 29%;
    height: auto;
}
@media (max-width: 949px) {
    .product-main-about-img {
        width: 100%;
    }
}
.product-main-about-img img {
    width: 100%;
    height: auto;
}
@media (max-width: 949px) {
    .product-main-about-img img {
        width: auto;
        margin: 0 auto;
    }
}
.product-main-about-img span {
    display: flex;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.73;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-top: 20px;
}
.product-main-about-img span a {
    color: #000;
}
@media (max-width: 949px) {
    .product-main-about-img span {
        display: none;
    }
}
.product-main-about-con {
    position: relative;
    width: 58%;
}
@media (max-width: 949px) {
    .product-main-about-con {
        width: 100%;
        margin-top: 40px;
    }
}
.product-main-about-con-tr {
    position: relative;
    display: flex;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .product-main-about-con-tr.-pad {
        flex-direction: column;
    }
}
.product-main-about-con .category {
    margin-bottom: 20px;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.product-main-about-con .author {
    font-weight: 300;
    margin-bottom: 30px;
}
.product-main-about-con-pages, .product-main-about-con-yor {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    margin-bottom: 60px;
}
.product-main-about-con-yor {
    margin-right: 0;
}
.product-main-about-con-price {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}
.product-main-about-con-price .price {
    padding: 10px 20px;
    background-color: #e2e2e2;
    border-radius: 50px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .product-main-about-con-price {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.product-main-about-con-edition {
    display: flex;
    flex-direction: column;
}
.product-main-about-con-edition .dropdown {
    position: relative;
    margin-top: 5px;
}
.product-main-about-con-edition .dropdown-h {
    position: relative;
    z-index: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    background-color: #e2e2e2;
    border-radius: 50px;
    padding: 10px 20px;
}
.product-main-about-con-edition .dropdown-h:before {
    content: "";
    width: 0;
    height: 100%;
    background-color: #fdcb50;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
    border-radius: 50px;
}
.product-main-about-con-edition .dropdown-h svg {
    transform: rotate(270deg);
    margin-left: 10px;
    width: 25px;
    min-width: 25px;
    max-width: 25px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-main-about-con-edition .dropdown-h:hover:before {
    width: 100%;
}
.product-main-about-con-edition .dropdown-c {
    background: rgba(253, 203, 80, 0.5);
    border-radius: 23px;
    padding-left: 17px;
    padding-right: 17px;
}
.product-main-about-con-edition .dropdown-c span {
    display: flex;
    width: 100%;
    max-width: -webkit-fill-available;
    cursor: pointer;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-main-about-con-edition .dropdown-c span:not(:last-of-type) {
    border-bottom: 1px solid #000;
}
.product-main-about-con-edition .dropdown-c span:hover {
    opacity: 0.5;
}
.product-main-about-con-edition .dropdown.active .dropdown-h svg {
    transform: rotate(450deg);
}
.product-main-about-con-edition .dropdown.active .dropdown-h:before {
    width: 100%;
}
.product-main-about-con-edition .dropdown.active .dropdown-c {
    padding-top: 50px;
    transform: translateY(-45px);
    padding-bottom: 10px;
}
.product-main-about-con-edition .dropdown.active .dropdown-c span {
    padding: 10px 0;
}
.product-main-about-con-priceselect {
    position: relative;
    margin-top: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.product-main-about-con-priceselect .dropdown-h {
    position: relative;
    z-index: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    border-radius: 50px;
    padding: 10px 20px;
}
.product-main-about-con-priceselect .dropdown-h span {
    color: #fff;
}
.product-main-about-con-priceselect .dropdown-h svg {
    transform: rotate(90deg);
    margin-left: 10px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
}
.product-main-about-con-priceselect .dropdown-h:hover svg {
    transform: rotate(270deg);
}
.product-main-about-con-priceselect .dropdown-c {
    background: #fff;
    border: 1px solid #f4f4f4;
    border-radius: 23px;
    padding-left: 12px;
    padding-right: 12px;
}
.product-main-about-con-priceselect .dropdown-c a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: -webkit-fill-available;
    cursor: pointer;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-main-about-con-priceselect .dropdown-c a svg {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    max-height: 38px;
    min-height: 38px;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-main-about-con-priceselect .dropdown-c a:not(:last-of-type) {
    border-bottom: 1px solid #d8d8d8;
}
.product-main-about-con-priceselect .dropdown-c a:hover svg {
    transform: rotate(-30deg);
}
.product-main-about-con-priceselect.active .dropdown-h svg {
    transform: rotate(270deg);
}
.product-main-about-con-priceselect.active .dropdown-c {
    padding-top: 50px;
    transform: translateY(-45px);
    padding-bottom: 10px;
}
.product-main-about-con-priceselect.active .dropdown-c a {
    padding: 20px 0;
}
.product-main-about-con .tab {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 60px;
    flex-direction: column;
}
.product-main-about-con .tab-links {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
}
@media (max-width: 767px) {
    .product-main-about-con .tab-links {
        width: 100%;
        overflow: scroll;
    }
}
.product-main-about-con .tab-links span {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    padding-bottom: 20px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    cursor: pointer;
}
@media (max-width: 767px) {
    .product-main-about-con .tab-links span {
        min-width: -webkit-fit-content;
        min-width: -moz-fit-content;
        min-width: fit-content;
    }
}
.product-main-about-con .tab-links span:before {
    content: "";
    width: 0%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fdcb50;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-main-about-con .tab-links span:not(:last-of-type) {
    margin-right: 30px;
}
.product-main-about-con .tab-links span:hover {
    color: #fdcb50;
}
.product-main-about-con .tab-links span:hover:before {
    width: 100%;
}
.product-main-about-con .tab-links span.current {
    color: #fdcb50;
}
.product-main-about-con .tab-links span.current:before {
    width: 100%;
}
.product-main-about-con .tab-content-item {
    display: none;
}
.product-main-about-con .tab-content-item.active {
    display: flex;
    flex-direction: column;
}
.product-main-about-con .tab-content-item .authorimg {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.product-main-about-con .tab-content-item h3 {
    margin: 20px 0;
}
.product .bookspart {
    margin-top: 0;
}

.about {
    position: relative;
}
.about h1 {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .about h1 {
        margin-bottom: 30px;
    }
}
.about-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 120px;
}
@media (max-width: 1024px) {
    .about-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .about-content {
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
.about-content:first-of-type {
    padding-top: 120px;
    padding-bottom: 60px;
    border-bottom: 1px solid #d8d8d8;
}
@media (max-width: 767px) {
    .about-content:first-of-type {
        padding-top: 60px;
    }
}
.about-content-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
}
.about-content-links a {
    color: #000;
    font-weight: 300;
    font-size: 20px;
}
.about-content-links a:before {
    width: 100%;
    background-color: #000;
}
.about-content-links a:not(:last-child) {
    margin-bottom: 20px;
}
.about-content-links a:hover:before {
    width: 0;
}
.about-content-footer {
    position: relative;
    margin-top: 20px;
}
.about-content-footer p:not(:last-child) {
    margin-bottom: 20px;
}

.contact {
    position: relative;
}
.contact-info {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 60px;
    border-bottom: 1px solid #d8d8d8;
}
@media (max-width: 1024px) {
    .contact-info {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        padding-top: 80px;
    }
}
@media (max-width: 767px) {
    .contact-info {
        padding: 60px 20px;
    }
}
.contact-info h1 {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .contact-info h1 {
        margin-bottom: 30px;
    }
}
.contact-info p,
.contact-info a {
    display: inline-block;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .contact-info p,
.contact-info a {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
.contact-info a {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.contact-info a:before {
    background-color: #000;
}
.contact-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .contact-content {
        padding: 60px 30px 100px 30px;
    }
}
@media (max-width: 767px) {
    .contact-content {
        padding: 60px 20px;
    }
}
.contact-content-item {
    position: relative;
}
.contact-content-item:not(:last-of-type) {
    margin-bottom: 20px;
}
.contact-content-item h4,
.contact-content-item p,
.contact-content-item span,
.contact-content-item li {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
.contact-content-item h4 {
    font-weight: bold;
}

.articles {
    position: relative;
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .articles {
        margin-top: 60px;
    }
}
@media (max-width: 767px) {
    .articles {
        margin-top: 40px;
    }
}
.articles-main {
    padding-top: 25px;
}
.articles-featured {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
    margin-bottom: 150px;
}
@media (max-width: 1024px) {
    .articles-featured {
        margin-top: 30px;
        margin-bottom: 100px;
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .articles-featured {
        margin-bottom: 60px;
    }
}
.articles-featured-img {
    position: relative;
    width: 60%;
}
@media (max-width: 1024px) {
    .articles-featured-img {
        width: 100%;
    }
}
.articles-featured-img img {
    width: 100%;
    height: auto;
    min-height: 550px;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .articles-featured-img img {
        height: auto;
        min-height: auto;
    }
}
.articles-featured-content {
    position: relative;
    width: 40%;
    padding-left: 40px;
}
@media (max-width: 1024px) {
    .articles-featured-content {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
}
.articles-featured-content h2 {
    margin-bottom: 20px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.articles-featured:hover h2 {
    color: #fdcb50;
}
.articles-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 120px 40px;
    padding-bottom: 100px;
}
@media (max-width: 1249px) {
    .articles-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .articles-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .articles-items .blogitem img {
        height: auto;
        min-height: auto;
        max-height: auto;
    }
}
.articles-authors {
    position: relative;
    margin-bottom: 135px;
    padding-bottom: 90px;
}
@media (max-width: 1024px) {
    .articles-authors {
        margin-bottom: 80px;
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .articles-authors {
        margin-bottom: 60px;
    }
}
.articles-authors:before {
    content: "";
    width: 100%;
    height: 57%;
    background-color: #f4f4f4;
    position: absolute;
    left: 0;
    bottom: 0;
}
.articles-authors .wrapper {
    overflow: hidden;
}
.articles-authors-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .articles-authors-header .intro {
        padding-right: 20px;
    }
}
.articles-authors-header .swiper-nav {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.articles-authors-header .swiper-nav .swiper-button-disabled {
    opacity: 1;
}
.articles-authors-header .swiper-nav-left {
    margin-right: 50px;
}
@media (max-width: 359px) {
    .articles-authors-header .swiper-nav-left {
        margin-right: 10px;
    }
}
.articles-authors-header .swiper-nav svg {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}
.articles-authors-header .swiper-nav svg ellipse {
    fill: #f4f4f4;
}
.articles-authors .swiper-slide img {
    margin-bottom: 20px;
    height: 450px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 767px) {
    .articles-authors .swiper-slide img {
        min-height: 320px;
        height: auto;
    }
}
.articles-authors .swiper-slide span {
    font-weight: 300;
}

.article {
    position: relative;
}
.article-featured {
    position: relative;
    padding-top: 60px;
}
@media (max-width: 1024px) {
    .article-featured {
        padding-top: 30px;
    }
}
.article-featured .backbtn {
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .article-featured .backbtn {
        margin-bottom: 30px;
    }
}
.article-featured img {
    width: 100%;
    height: auto;
}
.article-content {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #fff;
    max-width: 1220px;
}
@media (max-width: 1024px) {
    .article-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}
.article-content-info {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.article-content-info .category {
    margin-bottom: 20px;
    display: flex;
}
.article-content-info h1 {
    margin-bottom: 20px;
}
.article-content-info-i {
    display: flex;
    align-items: center;
    max-width: none !important;
    margin-left: 0 !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
}
@media (max-width: 369px) {
    .article-content-info-i {
        flex-direction: column;
    }
}
.article-content-info-i span {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}
.article-content-info-i span:not(:last-of-type) {
    margin-right: 35px;
}
@media (max-width: 369px) {
    .article-content-info-i span:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.article-content * {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.article-content blockquote {
    border-top: 1px solid #d8d8d8;
    max-width: none;
    padding-top: 25px;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-bottom: 60px;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .article-content blockquote {
        padding-top: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
.article-content h2 {
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .article-content h2 {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
.article-content p {
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 767px) {
    .article-content p {
        font-size: 18px;
    }
}
.article-content p:not(:last-of-type) {
    margin-bottom: 25px;
}
.article-content img,
.article-content video {
    width: 100%;
    height: auto;
    margin: 80px auto;
}
@media (max-width: 767px) {
    .article-content img,
.article-content video {
        margin: 60px auto;
    }
}
.article-content a {
    color: #fdcb50;
}
.article-content a:hover {
    color: #000;
}
.article-book {
    position: relative;
    background-color: #f4f4f4;
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .article-book {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.article-book .wrapper {
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .article-book .wrapper {
        flex-direction: column;
    }
}
.article-book-img {
    position: relative;
    width: 30%;
    height: auto;
}
@media (max-width: 767px) {
    .article-book-img {
        width: 100%;
    }
}
.article-book-img img {
    width: 100%;
    height: auto;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 767px) {
    .article-book-img img {
        width: auto;
    }
}
.article-book-info {
    position: relative;
    width: 65%;
}
@media (max-width: 767px) {
    .article-book-info {
        width: 100%;
        margin-top: 40px;
    }
}
.article-book-info .author {
    display: flex;
    font-weight: 300;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .article-book-info .author {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .article-book-info .p20 {
        font-size: 18px;
    }
}
.article-book-info .btn {
    margin-top: 40px;
}
.article-related {
    position: relative;
    margin-top: 120px;
    padding-top: 25px;
}
@media (max-width: 767px) {
    .article-related {
        margin-top: 80px;
        padding-bottom: 100px;
    }
}

body.search-page {
    background: #fdcb50;
}

.templatesearch {
    position: relative;
    width: 100%;
}
.templatesearch-search {
    position: relative;
    padding-top: 130px;
}
@media (max-width: 767px) {
    .templatesearch-search {
        padding-top: 40px;
    }
}
.templatesearch-search input {
    width: 100%;
    height: auto;
    font-size: 100px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding-right: 120px;
}
@media (max-width: 1439px) {
    .templatesearch-search input {
        font-size: 80px;
    }
}
@media (max-width: 767px) {
    .templatesearch-search input {
        font-size: 20px;
        padding-bottom: 15px;
        padding-right: 40px;
    }
}
.templatesearch-search input::-moz-placeholder {
    -moz-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.templatesearch-search input:-ms-input-placeholder {
    -ms-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.templatesearch-search input::placeholder {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: rgba(0, 0, 0, 0.5);
}
.templatesearch-search button {
    position: absolute;
    right: 0;
    bottom: 45px;
}
@media (max-width: 1439px) {
    .templatesearch-search button {
        bottom: 20px;
    }
}
.templatesearch-search button svg {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 76px;
    max-width: 76px;
    min-width: 76px;
    height: 76px;
    min-height: 76px;
    max-height: 76px;
}
@media (max-width: 1439px) {
    .templatesearch-search button svg {
        width: 55px;
        max-width: 55px;
        min-width: 55px;
        height: 55px;
        min-height: 55px;
        max-height: 55px;
    }
}
@media (max-width: 767px) {
    .templatesearch-search button svg {
        width: 24px;
        max-width: 24px;
        min-width: 24px;
        height: 24px;
        min-height: 24px;
        max-height: 24px;
    }
}
.templatesearch-search button:hover svg {
    transform: scale(1.1, 1.1);
    opacity: 0.5;
}
.templatesearch-header {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .templatesearch-header {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
    }
}
.templatesearch-header-categories {
    position: relative;
}
@media (max-width: 767px) {
    .templatesearch-header-categories {
        margin-top: 30px;
    }
}
.templatesearch-header-categories a {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
}
@media (max-width: 767px) {
    .templatesearch-header-categories a {
        font-size: 18px;
    }
}
.templatesearch-header-categories a:before {
    background: #000;
}
.templatesearch-header-categories a:not(:last-of-type) {
    margin-right: 20px;
}
.templatesearch-header-categories a.active:before {
    width: 100%;
}
.templatesearch-items {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    padding-bottom: 80px;
}
.templatesearch-item {
    position: relative;
    background: #fff;
    display: flex;
    align-items: stretch;
}
.templatesearch-item:not(:last-of-type) {
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .templatesearch-item:not(:last-of-type) {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .templatesearch-item {
        flex-direction: column;
    }
}
.templatesearch-item-img {
    position: relative;
    width: 24%;
    height: 300px;
}
@media (max-width: 1024px) {
    .templatesearch-item-img {
        width: 30%;
    }
}
@media (max-width: 767px) {
    .templatesearch-item-img {
        width: 100%;
        height: auto;
    }
}
.templatesearch-item-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 767px) {
    .templatesearch-item-img img {
        height: auto;
        width: 100%;
    }
}
.templatesearch-item-con {
    position: relative;
    width: 76%;
    padding: 30px 30px 30px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1599px) {
    .templatesearch-item-con {
        padding: 30px;
    }
}
@media (max-width: 1149px) {
    .templatesearch-item-con {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 1024px) {
    .templatesearch-item-con {
        width: 70%;
    }
}
@media (max-width: 767px) {
    .templatesearch-item-con {
        width: 100%;
        padding: 25px 20px;
    }
}
.templatesearch-item-con .category {
    margin-right: 30px;
    background: #f4f4f4;
    padding: 10px 30px;
    border-radius: 50px;
}
@media (max-width: 1149px) {
    .templatesearch-item-con .category {
        margin-right: 0;
    }
}
.templatesearch-item-con h2 {
    max-width: 700px;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}
.templatesearch-item-con h2 span {
    font-weight: 300;
}
@media (max-width: 1349px) {
    .templatesearch-item-con h2 {
        font-size: 40px;
    }
}
@media (max-width: 1149px) {
    .templatesearch-item-con h2 {
        font-size: 30px;
        padding: 0;
        max-width: none;
        margin: 20px 0;
    }
}
.templatesearch-item-con .btn {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}
.templatesearch-item.-book .templatesearch-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}
.templatesearch-item.-book .templatesearch-item-img img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    padding: 25px;
}
.templatesearch-seeall {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
}
.templatesearch-seeall:hover {
    background: #fff;
    color: #000;
}

.wizzard {
    position: relative;
}
.wizzard-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 200px;
    width: 100%;
    max-width: 1525px;
}
@media (max-width: 1249px) {
    .wizzard-form {
        margin-top: 60px;
        margin-bottom: 100px;
    }
}
.wizzard-form-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.wizzard-form-header button {
    background: #ececec;
    width: -webkit-fill-available;
    padding: 24.5px 35px;
    color: #a5a5a5;
}
@media (max-width: 1024px) {
    .wizzard-form-header button {
        width: 25%;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .wizzard-form-header button {
        display: none;
    }
}
.wizzard-form-header button.current {
    background: #fdcb50;
    color: #000;
}
@media (max-width: 1024px) {
    .wizzard-form-header button.current {
        font-size: 30px;
        width: 50%;
    }
}
@media (max-width: 767px) {
    .wizzard-form-header button.current {
        width: 100%;
        display: flex;
        font-size: 24px;
    }
}
.wizzard-form-header button:not(:last-child) {
    margin-right: 20px;
}
@media (max-width: 767px) {
    .wizzard-form-header button:not(:last-child) {
        margin-right: 0;
    }
}
.wizzard-form-content {
    position: relative;
    background-color: #ececec;
    margin-top: 20px;
    padding: 60px;
    width: 100%;
}
@media (max-width: 767px) {
    .wizzard-form-content {
        padding: 30px;
    }
}
.wizzard-form-content-item {
    position: relative;
    display: none;
}
.wizzard-form-content-item.active {
    display: flex;
    flex-direction: column;
}
.wizzard-form-content .field {
    position: relative;
    display: flex;
    flex-direction: column;
}
.wizzard-form-content .field:not(:last-child) {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #000;
}
.wizzard-form-content .field-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 70px;
}
@media (max-width: 1024px) {
    .wizzard-form-content .field-list {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .wizzard-form-content .field-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }
}
.wizzard-form-content .field-input {
    display: flex;
    flex-direction: column;
}
.wizzard-form-content .field-input .sublabel {
    margin-bottom: 15px;
}
.wizzard-form-content .field-input input {
    margin-top: auto;
}
.wizzard-form-content .field-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.wizzard-form-content .field-checkbox input {
    cursor: pointer;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50% !important;
    padding: 0 !important;
    margin-left: 10px;
    position: relative;
}
.wizzard-form-content .field-checkbox input:before {
    content: "";
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wizzard-form-content .field-checkbox input:checked:before {
    width: 60%;
    height: 60%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    border-radius: 50%;
}
.wizzard-form-content .field-item {
    position: relative;
}
.wizzard-form-content .field-item label {
    display: flex;
    margin-bottom: 15px;
}
.wizzard-form-content .field-item .dropdown {
    width: 100% !important;
}
.wizzard-form-content .field-item:not(:last-child) {
    margin-bottom: 40px;
}
.wizzard-form-content .field .dropdown {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
}
.wizzard-form-content .field .dropdown-h {
    position: relative;
    z-index: 1;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
}
.wizzard-form-content .field .dropdown-h span {
    color: #000;
}
.wizzard-form-content .field .dropdown-h svg {
    transform: rotate(90deg);
    margin-left: 10px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    min-width: 20px;
    min-height: 20px;
}
.wizzard-form-content .field .dropdown-h:hover svg {
    transform: rotate(270deg);
}
.wizzard-form-content .field .dropdown-c {
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 23px;
    padding-left: 12px;
    padding-right: 12px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px 0;
}
.wizzard-form-content .field .dropdown-c * {
    color: #000;
}
.wizzard-form-content .field .dropdown.active .dropdown-h svg {
    transform: rotate(270deg);
}
.wizzard-form-content .field .dropdown.active .dropdown-c {
    padding-top: 50px;
    transform: translateY(-39px);
    padding-bottom: 10px;
}
.wizzard-form-content .field .dropdown.active .dropdown-c a {
    padding: 20px 0;
}
.wizzard-form-content .field label {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
@media (max-width: 767px) {
    .wizzard-form-content .field label {
        font-size: 18px;
    }
}
.wizzard-form-content .field textarea {
    margin-top: 25px;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    border: none;
    font-size: 20px;
    color: #000;
    min-height: 280px;
}
.wizzard-form-content .field input {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #fff;
    border: none;
    font-size: 20px;
    color: #000;
}
.wizzard-form-content .field p {
    margin-bottom: 60px;
    color: #000;
}
.wizzard-form-navigation {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    margin-top: 25px;
}
@media (max-width: 767px) {
    .wizzard-form-navigation {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}
.wizzard-form-navigation button.back {
    display: none;
    background-color: #ececec;
    color: #000;
}
.wizzard-form-navigation button.submit {
    display: none;
}
.wizzard-form-navigation button:not(:first-child) {
    margin-left: 45px;
}
@media (max-width: 767px) {
    .wizzard-form-navigation button:not(:first-child) {
        margin-left: 0;
        margin-top: 20px;
    }
}
.wizzard-form-navigation button:hover {
    background-color: #fdcb50;
    color: #fff;
}
.wizzard-form-navigation.show-prev .back {
    display: flex;
}
.wizzard-form-navigation.last-step .next {
    display: none;
}
.wizzard-form-navigation.last-step .submit {
    display: flex;
}
