@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700;800&amp;display=swap);
@keyframes awn-fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes awn-fade-out {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes awn-slide-right {
    0% {
        opacity: 0;
        left: 100%
    }
    to {
        opacity: 1;
        left: 0
    }
}

@keyframes awn-slide-left {
    0% {
        opacity: 0;
        right: 100%
    }
    to {
        opacity: 1;
        right: 0
    }
}

@keyframes awn-bar {
    0% {
        right: 100%
    }
    to {
        right: 0
    }
}

.awn-popup-loading-dots,
.awn-popup-loading-dots:after,
.awn-popup-loading-dots:before {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    animation-fill-mode: both;
    background: #fff;
    animation: awn-loading-dots 1s ease-in-out infinite
}

.awn-popup-loading-dots {
    position: relative;
    margin-left: 24px;
    display: inline-block;
    color: #fff;
    animation-delay: -.16s
}

.awn-popup-loading-dots:after,
.awn-popup-loading-dots:before {
    content: "";
    position: absolute;
    top: 0
}

.awn-popup-loading-dots:before {
    left: -16px;
    animation-delay: -.32s
}

.awn-popup-loading-dots:after {
    left: 16px
}

@keyframes awn-loading-dots {
    0%,
    80%,
    to {
        box-shadow: 0 0 0 0
    }
    40% {
        box-shadow: 0 0 0 2px
    }
}

#awn-popup-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    z-index: 99999;
    opacity: 0;
    animation-name: awn-fade-in;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

#awn-popup-wrapper.awn-hiding {
    animation-name: awn-fade-out
}

#awn-popup-wrapper .awn-popup-body {
    position: relative;
    border-radius: 6px;
    word-break: break-word;
    background: #fff;
    padding: 24px;
    min-width: 320px;
    font-size: 14px;
    max-width: 500px
}

#awn-popup-wrapper .awn-popup-body.awn-popup-confirm {
    display: flex;
    flex-direction: column;
    align-items: center
}

#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa {
    font-size: 44px;
    color: #c26700
}

#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
    background: transparent;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center
}

#awn-popup-wrapper .awn-popup-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px
}

#awn-popup-wrapper .awn-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 24px
}

#awn-popup-wrapper .awn-buttons .awn-btn {
    border-radius: 4px;
    border: 0;
    font-weight: 700;
    transition: background .2s linear;
    font-size: 14px;
    width: 45%;
    line-height: 32px;
    color: #fff
}

#awn-popup-wrapper .awn-buttons-1 .awn-btn {
    width: 100%
}

#awn-popup-wrapper .awn-buttons .awn-btn-success {
    background: #40871d
}

#awn-popup-wrapper .awn-buttons .awn-btn-success:hover {
    background: #367218
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel {
    background: #1c76a6
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover {
    background: #186690
}

#awn-toast-container {
    position: fixed;
    z-index: 99998;
    bottom: 24px;
    right: 24px;
    box-sizing: border-box
}

#awn-toast-container.awn-top-left,
#awn-toast-container.awn-top-right {
    top: 24px;
    bottom: auto
}

#awn-toast-container.awn-top-left .awn-toast:first-child,
#awn-toast-container.awn-top-right .awn-toast:first-child {
    margin-top: 16px
}

#awn-toast-container.awn-bottom-left,
#awn-toast-container.awn-top-left {
    left: 24px;
    right: auto
}

#awn-toast-container.awn-bottom-left .awn-toast,
#awn-toast-container.awn-top-left .awn-toast {
    right: 100%;
    animation-name: awn-slide-left
}

#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,
#awn-toast-container.awn-top-left .awn-toast.awn-hiding {
    right: 0
}

#awn-toast-container.awn-bottom-right .awn-toast,
#awn-toast-container.awn-top-right .awn-toast {
    left: 100%;
    animation-name: awn-slide-right
}

#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,
#awn-toast-container.awn-top-right .awn-toast.awn-hiding {
    left: 0
}

.awn-toast {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    width: 320px;
    background: #ebebeb;
    margin-top: 16px;
    border-radius: 6px;
    color: grey;
    font-size: 14px;
    animation-timing-function: linear;
    animation-fill-mode: both
}

.awn-toast-content {
    word-break: break-word
}

.awn-toast-label {
    display: block;
    text-transform: uppercase;
    color: grey;
    font-size: 18px
}

.awn-toast-icon {
    position: absolute;
    right: 16px;
    top: 6px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.awn-toast-icon .fa {
    font-size: 44px;
    color: grey
}

.awn-toast-wrapper {
    padding: 22px 88px 16px 16px;
    border: 2px solid #d1d1d1;
    border-radius: 6px
}

.awn-toast-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px
}

.awn-toast-progress-bar:after {
    content: " ";
    background: grey;
    position: absolute;
    width: 100%;
    right: 100%;
    top: 0;
    height: 6px;
    animation-name: awn-bar;
    animation-duration: inherit;
    animation-timing-function: linear;
    animation-fill-mode: both
}

.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after {
    animation-play-state: paused
}

.awn-toast.awn-hiding {
    animation-name: awn-fade-out !important
}

.awn-toast.awn-toast-success {
    background: #dff8d3;
    color: #40871d
}

.awn-toast.awn-toast-success .awn-toast-wrapper {
    border-color: #a7d590
}

.awn-toast.awn-toast-success .fa,
.awn-toast.awn-toast-success b {
    color: #40871d
}

.awn-toast.awn-toast-success .awn-toast-progress-bar:after {
    background: #40871d
}

.awn-toast.awn-toast-info {
    background: #d3ebf8;
    color: #1c76a6
}

.awn-toast.awn-toast-info .awn-toast-wrapper {
    border-color: #9fd3ef
}

.awn-toast.awn-toast-info .fa,
.awn-toast.awn-toast-info b {
    color: #1c76a6
}

.awn-toast.awn-toast-info .awn-toast-progress-bar:after {
    background: #1c76a6
}

.awn-toast.awn-toast-alert {
    background: #f8d5d3;
    color: #a92019
}

.awn-toast.awn-toast-alert .awn-toast-wrapper {
    border-color: #f0a29d
}

.awn-toast.awn-toast-alert .fa,
.awn-toast.awn-toast-alert b {
    color: #a92019
}

.awn-toast.awn-toast-alert .awn-toast-progress-bar:after {
    background: #a92019
}

.awn-toast.awn-toast-warning {
    background: #ffe7cc;
    color: #c26700
}

.awn-toast.awn-toast-warning .awn-toast-wrapper {
    border-color: #ffc480
}

.awn-toast.awn-toast-warning .fa,
.awn-toast.awn-toast-warning b {
    color: #c26700
}

.awn-toast.awn-toast-warning .awn-toast-progress-bar:after {
    background: #c26700
}

[class^=awn-] {
    box-sizing: border-box
}

@font-face {
    font-family: Proxima Nova;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/ProximaNova/ProximaNova-Light.woff) format("woff")
}

@font-face {
    font-family: Proxima Nova;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/ProximaNova/ProximaNova-Regular.woff) format("woff")
}

@font-face {
    font-family: Proxima Nova;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/ProximaNova/ProximaNova-Semibold.woff) format("woff")
}

@font-face {
    font-family: Proxima Nova;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/ProximaNova/ProximaNova-Bold.woff) format("woff")
}

@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;
    z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

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

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

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

.swiper-container-multirow-column>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

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

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

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

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

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

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.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-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.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
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/44*27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1*var(--swiper-navigation-size)/2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: .3s opacity;
    transition: opacity .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: transform .2s, top .2s;
    -o-transition: .2s transform, .2s top;
    transition: transform .2s, top .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: transform .2s, left .2s;
    -o-transition: .2s transform, .2s left;
    transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: transform .2s, right .2s;
    -o-transition: .2s transform, .2s right;
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-top: 4px solid rgba(0, 0, 0, 0)
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-container-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-filter: blur(50px);
    filter: blur(50px)
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

/*!
 * Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 /* */

html {
    -ms-overflow-style: scrollbar
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.row-cols-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.row-cols-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1,
.col-auto {
    -webkit-box-flex: 0
}

.col-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-2,
.col-3 {
    -webkit-box-flex: 0
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-4,
.col-5 {
    -webkit-box-flex: 0
}

.col-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-6,
.col-7 {
    -webkit-box-flex: 0
}

.col-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-8,
.col-9 {
    -webkit-box-flex: 0
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-10,
.col-11 {
    -webkit-box-flex: 0
}

.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width:576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .row-cols-sm-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .row-cols-sm-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .row-cols-sm-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .row-cols-sm-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .row-cols-sm-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
    .row-cols-sm-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-sm-0 {
        margin-left: 0
    }
    .offset-sm-1 {
        margin-left: 8.33333%
    }
    .offset-sm-2 {
        margin-left: 16.66667%
    }
    .offset-sm-3 {
        margin-left: 25%
    }
    .offset-sm-4 {
        margin-left: 33.33333%
    }
    .offset-sm-5 {
        margin-left: 41.66667%
    }
    .offset-sm-6 {
        margin-left: 50%
    }
    .offset-sm-7 {
        margin-left: 58.33333%
    }
    .offset-sm-8 {
        margin-left: 66.66667%
    }
    .offset-sm-9 {
        margin-left: 75%
    }
    .offset-sm-10 {
        margin-left: 83.33333%
    }
    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .row-cols-md-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .row-cols-md-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .row-cols-md-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .row-cols-md-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .row-cols-md-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
    .row-cols-md-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-md-0 {
        margin-left: 0
    }
    .offset-md-1 {
        margin-left: 8.33333%
    }
    .offset-md-2 {
        margin-left: 16.66667%
    }
    .offset-md-3 {
        margin-left: 25%
    }
    .offset-md-4 {
        margin-left: 33.33333%
    }
    .offset-md-5 {
        margin-left: 41.66667%
    }
    .offset-md-6 {
        margin-left: 50%
    }
    .offset-md-7 {
        margin-left: 58.33333%
    }
    .offset-md-8 {
        margin-left: 66.66667%
    }
    .offset-md-9 {
        margin-left: 75%
    }
    .offset-md-10 {
        margin-left: 83.33333%
    }
    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .row-cols-lg-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .row-cols-lg-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .row-cols-lg-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .row-cols-lg-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .row-cols-lg-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
    .row-cols-lg-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-lg-0 {
        margin-left: 0
    }
    .offset-lg-1 {
        margin-left: 8.33333%
    }
    .offset-lg-2 {
        margin-left: 16.66667%
    }
    .offset-lg-3 {
        margin-left: 25%
    }
    .offset-lg-4 {
        margin-left: 33.33333%
    }
    .offset-lg-5 {
        margin-left: 41.66667%
    }
    .offset-lg-6 {
        margin-left: 50%
    }
    .offset-lg-7 {
        margin-left: 58.33333%
    }
    .offset-lg-8 {
        margin-left: 66.66667%
    }
    .offset-lg-9 {
        margin-left: 75%
    }
    .offset-lg-10 {
        margin-left: 83.33333%
    }
    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .row-cols-xl-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .row-cols-xl-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .row-cols-xl-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .row-cols-xl-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .row-cols-xl-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
    .row-cols-xl-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-xl-0 {
        margin-left: 0
    }
    .offset-xl-1 {
        margin-left: 8.33333%
    }
    .offset-xl-2 {
        margin-left: 16.66667%
    }
    .offset-xl-3 {
        margin-left: 25%
    }
    .offset-xl-4 {
        margin-left: 33.33333%
    }
    .offset-xl-5 {
        margin-left: 41.66667%
    }
    .offset-xl-6 {
        margin-left: 50%
    }
    .offset-xl-7 {
        margin-left: 58.33333%
    }
    .offset-xl-8 {
        margin-left: 66.66667%
    }
    .offset-xl-9 {
        margin-left: 75%
    }
    .offset-xl-10 {
        margin-left: 83.33333%
    }
    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }
    .d-sm-inline {
        display: inline !important
    }
    .d-sm-inline-block {
        display: inline-block !important
    }
    .d-sm-block {
        display: block !important
    }
    .d-sm-table {
        display: table !important
    }
    .d-sm-table-row {
        display: table-row !important
    }
    .d-sm-table-cell {
        display: table-cell !important
    }
    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }
    .d-md-inline {
        display: inline !important
    }
    .d-md-inline-block {
        display: inline-block !important
    }
    .d-md-block {
        display: block !important
    }
    .d-md-table {
        display: table !important
    }
    .d-md-table-row {
        display: table-row !important
    }
    .d-md-table-cell {
        display: table-cell !important
    }
    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }
    .d-lg-inline {
        display: inline !important
    }
    .d-lg-inline-block {
        display: inline-block !important
    }
    .d-lg-block {
        display: block !important
    }
    .d-lg-table {
        display: table !important
    }
    .d-lg-table-row {
        display: table-row !important
    }
    .d-lg-table-cell {
        display: table-cell !important
    }
    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }
    .d-xl-inline {
        display: inline !important
    }
    .d-xl-inline-block {
        display: inline-block !important
    }
    .d-xl-block {
        display: block !important
    }
    .d-xl-table {
        display: table !important
    }
    .d-xl-table-row {
        display: table-row !important
    }
    .d-xl-table-cell {
        display: table-cell !important
    }
    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }
    .d-print-inline {
        display: inline !important
    }
    .d-print-inline-block {
        display: inline-block !important
    }
    .d-print-block {
        display: block !important
    }
    .d-print-table {
        display: table !important
    }
    .d-print-table-row {
        display: table-row !important
    }
    .d-print-table-cell {
        display: table-cell !important
    }
    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column,
.flex-row {
    -webkit-box-direction: normal !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse,
.flex-row-reverse {
    -webkit-box-direction: reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }
    .flex-sm-column,
    .flex-sm-row {
        -webkit-box-direction: normal !important
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }
    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }
    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }
    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }
    .flex-md-column,
    .flex-md-row {
        -webkit-box-direction: normal !important
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }
    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }
    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }
    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }
    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }
    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }
    .flex-lg-column,
    .flex-lg-row {
        -webkit-box-direction: normal !important
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }
    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }
    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }
    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }
    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }
    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }
    .flex-xl-column,
    .flex-xl-row {
        -webkit-box-direction: normal !important
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }
    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }
    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }
    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }
    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }
    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

@media (min-width:576px) {
    .m-sm-0 {
        margin: 0 !important
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }
    .m-sm-1 {
        margin: .25rem !important
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }
    .m-sm-2 {
        margin: .5rem !important
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }
    .m-sm-3 {
        margin: 1rem !important
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }
    .m-sm-4 {
        margin: 1.5rem !important
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }
    .m-sm-5 {
        margin: 3rem !important
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }
    .p-sm-0 {
        padding: 0 !important
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }
    .p-sm-1 {
        padding: .25rem !important
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }
    .p-sm-2 {
        padding: .5rem !important
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }
    .p-sm-3 {
        padding: 1rem !important
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }
    .p-sm-4 {
        padding: 1.5rem !important
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }
    .p-sm-5 {
        padding: 3rem !important
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }
    .m-sm-n1 {
        margin: -.25rem !important
    }
    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -.25rem !important
    }
    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -.25rem !important
    }
    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -.25rem !important
    }
    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -.25rem !important
    }
    .m-sm-n2 {
        margin: -.5rem !important
    }
    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -.5rem !important
    }
    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -.5rem !important
    }
    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -.5rem !important
    }
    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -.5rem !important
    }
    .m-sm-n3 {
        margin: -1rem !important
    }
    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }
    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }
    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }
    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }
    .m-sm-n4 {
        margin: -1.5rem !important
    }
    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }
    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }
    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }
    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }
    .m-sm-n5 {
        margin: -3rem !important
    }
    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }
    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }
    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }
    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }
    .m-sm-auto {
        margin: auto !important
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width:768px) {
    .m-md-0 {
        margin: 0 !important
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }
    .m-md-1 {
        margin: .25rem !important
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }
    .m-md-2 {
        margin: .5rem !important
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }
    .m-md-3 {
        margin: 1rem !important
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }
    .m-md-4 {
        margin: 1.5rem !important
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }
    .m-md-5 {
        margin: 3rem !important
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }
    .p-md-0 {
        padding: 0 !important
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }
    .p-md-1 {
        padding: .25rem !important
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }
    .p-md-2 {
        padding: .5rem !important
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }
    .p-md-3 {
        padding: 1rem !important
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }
    .p-md-4 {
        padding: 1.5rem !important
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }
    .p-md-5 {
        padding: 3rem !important
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }
    .m-md-n1 {
        margin: -.25rem !important
    }
    .mt-md-n1,
    .my-md-n1 {
        margin-top: -.25rem !important
    }
    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -.25rem !important
    }
    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -.25rem !important
    }
    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -.25rem !important
    }
    .m-md-n2 {
        margin: -.5rem !important
    }
    .mt-md-n2,
    .my-md-n2 {
        margin-top: -.5rem !important
    }
    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -.5rem !important
    }
    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -.5rem !important
    }
    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -.5rem !important
    }
    .m-md-n3 {
        margin: -1rem !important
    }
    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }
    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }
    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }
    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }
    .m-md-n4 {
        margin: -1.5rem !important
    }
    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }
    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }
    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }
    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }
    .m-md-n5 {
        margin: -3rem !important
    }
    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }
    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }
    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }
    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }
    .m-md-auto {
        margin: auto !important
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width:992px) {
    .m-lg-0 {
        margin: 0 !important
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }
    .m-lg-1 {
        margin: .25rem !important
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }
    .m-lg-2 {
        margin: .5rem !important
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }
    .m-lg-3 {
        margin: 1rem !important
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }
    .m-lg-4 {
        margin: 1.5rem !important
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }
    .m-lg-5 {
        margin: 3rem !important
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }
    .p-lg-0 {
        padding: 0 !important
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }
    .p-lg-1 {
        padding: .25rem !important
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }
    .p-lg-2 {
        padding: .5rem !important
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }
    .p-lg-3 {
        padding: 1rem !important
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }
    .p-lg-4 {
        padding: 1.5rem !important
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }
    .p-lg-5 {
        padding: 3rem !important
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }
    .m-lg-n1 {
        margin: -.25rem !important
    }
    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -.25rem !important
    }
    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -.25rem !important
    }
    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -.25rem !important
    }
    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -.25rem !important
    }
    .m-lg-n2 {
        margin: -.5rem !important
    }
    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -.5rem !important
    }
    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -.5rem !important
    }
    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -.5rem !important
    }
    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -.5rem !important
    }
    .m-lg-n3 {
        margin: -1rem !important
    }
    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }
    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }
    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }
    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }
    .m-lg-n4 {
        margin: -1.5rem !important
    }
    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }
    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }
    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }
    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }
    .m-lg-n5 {
        margin: -3rem !important
    }
    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }
    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }
    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }
    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }
    .m-lg-auto {
        margin: auto !important
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width:1200px) {
    .m-xl-0 {
        margin: 0 !important
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }
    .m-xl-1 {
        margin: .25rem !important
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }
    .m-xl-2 {
        margin: .5rem !important
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }
    .m-xl-3 {
        margin: 1rem !important
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }
    .m-xl-4 {
        margin: 1.5rem !important
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }
    .m-xl-5 {
        margin: 3rem !important
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }
    .p-xl-0 {
        padding: 0 !important
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }
    .p-xl-1 {
        padding: .25rem !important
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }
    .p-xl-2 {
        padding: .5rem !important
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }
    .p-xl-3 {
        padding: 1rem !important
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }
    .p-xl-4 {
        padding: 1.5rem !important
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }
    .p-xl-5 {
        padding: 3rem !important
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }
    .m-xl-n1 {
        margin: -.25rem !important
    }
    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -.25rem !important
    }
    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -.25rem !important
    }
    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -.25rem !important
    }
    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -.25rem !important
    }
    .m-xl-n2 {
        margin: -.5rem !important
    }
    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -.5rem !important
    }
    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -.5rem !important
    }
    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -.5rem !important
    }
    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -.5rem !important
    }
    .m-xl-n3 {
        margin: -1rem !important
    }
    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }
    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }
    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }
    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }
    .m-xl-n4 {
        margin: -1.5rem !important
    }
    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }
    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }
    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }
    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }
    .m-xl-n5 {
        margin: -3rem !important
    }
    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }
    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }
    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }
    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }
    .m-xl-auto {
        margin: auto !important
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
    -o-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
    -o-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
    -o-transition: opacity .25s ease, visibility 0s ease .25s;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,
.fancybox-spaceball {
    background: rgba(0, 0, 0, 0);
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: rgba(0, 0, 0, 0);
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: none
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0
}

.fancybox-caption {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .85)), color-stop(50%, rgba(0, 0, 0, .3)), color-stop(65%, rgba(0, 0, 0, .15)), color-stop(75.5%, rgba(0, 0, 0, .075)), color-stop(82.85%, rgba(0, 0, 0, .037)), color-stop(88%, rgba(0, 0, 0, .019)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0));
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
    background: rgba(0, 0, 0, 0);
    border: 4px solid;
    border-color: #888 #888 #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@-webkit-keyframes fancybox-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fancybox-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, .25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, .25, 1);
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    -o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5, .5, .5);
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-1turn);
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(1turn);
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }
    .fancybox-slide--image {
        padding: 6px 0
    }
    .fancybox-close-small {
        right: -6px
    }
    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }
    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .2s cubic-bezier(.25, .46, .45, .94);
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width:576px) {
    .fancybox-thumbs {
        width: 110px
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }
    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:focus {
    outline: 0
}

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

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

iframe {
    border: 0
}

textarea {
    resize: none;
    overflow: auto;
    vertical-align: top;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none
}

button,
input,
select,
textarea {
    outline: none;
    border: none;
    font-size: 100%;
    margin: 0
}

button,
input {
    line-height: normal
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0;
    text-align: left
}

.color-primary {
    color: #69e2b0
}

.color-black {
    color: #000
}

.color-white {
    color: #fff
}

.text-uppercase {
    text-transform: uppercase
}

.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.loader img,
.loader svg {
    width: 40px
}

.loader.hide {
    opacity: 0;
    visibility: hidden
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@-webkit-keyframes color {
    0%,
    to {
        stroke: #69e2b0
    }
    40% {
        stroke: #ff5100
    }
    66% {
        stroke: #1ec16f
    }
    80%,
    90% {
        stroke: #eb001b
    }
}

@keyframes color {
    0%,
    to {
        stroke: #69e2b0
    }
    40% {
        stroke: #ff5100
    }
    66% {
        stroke: #1ec16f
    }
    80%,
    90% {
        stroke: #eb001b
    }
}

body {
    background-color: #efefef
}

.showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%
}

.link,
.typography a,
a {
    color: #54e9cf;
    text-decoration: underline;
    cursor: pointer
}

.link:hover,
.typography a:hover,
a:hover {
    text-decoration: none;
    color: #69e2b0
}

.fixed,
.typography code,
.typography pre {
    font-family: Manrope, sans-serif;
    font-size: 1em;
    line-height: 1.3
}

.italic,
.typography em,
.typography i {
    font-style: italic
}

.bold,
.typography b,
.typography strong,
b,
strong {
    font-weight: 600
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

a {
    text-decoration: none
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.typography .h1,
.typography .h2,
.typography .h3,
.typography .h4,
.typography .h5,
.typography .h6,
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-weight: 400;
    font-family: Manrope, sans-serif
}

.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child,
.typography h1:first-child,
.typography h2:first-child,
.typography h3:first-child,
.typography h4:first-child,
.typography h5:first-child,
.typography h6:first-child {
    margin-top: 0
}

.h1,
.typography .h1,
.typography h1 {
    line-height: 1.2
}

.h2,
.typography .h2,
.typography h2 {
    line-height: 1.3
}

.h3,
.h4,
.typography .h3,
.typography .h4,
.typography h3,
.typography h4 {
    line-height: 1.4
}

.h1,
.typography .h1,
.typography h1 {
    font-size: 200%;
    font-weight: 700
}

.h2,
.typography .h2,
.typography h2 {
    font-size: 200%;
    font-weight: 500
}

.h3,
.typography .h3,
.typography h3 {
    font-size: 180%;
    font-weight: 500
}

.h4,
.typography .h4,
.typography h4 {
    font-size: 120%;
    font-weight: 500
}

.h5,
.typography .h5,
.typography h5 {
    font-size: 130%;
    font-weight: 500
}

.block-margins,
.typography .h1,
.typography .h2,
.typography .h3,
.typography .h4,
.typography .h5,
.typography .h6,
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6,
.typography ol,
.typography p,
.typography pre,
.typography ul {
    margin: 15px 0
}

.typography ul,
.unordered-list {
    padding-left: 0;
    margin-bottom: 2em
}

.typography ul li,
.unordered-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px
}

.typography ul li:last-child,
.unordered-list li:last-child {
    margin-bottom: 0
}

.typography ul li:before,
.unordered-list li:before {
    content: "";
    width: 15px;
    height: 2px;
    display: block;
    background: #69e2b0;
    position: absolute;
    top: .75em;
    left: 0
}

.ordered-list,
.typography ol {
    padding-left: 0;
    margin-bottom: 2em;
    counter-reset: myCounter
}

.ordered-list li,
.typography ol li {
    position: relative;
    list-style: none;
    margin-bottom: 5px
}

.ordered-list li:last-child,
.typography ol li:last-child {
    margin-bottom: 0
}

.ordered-list li:before,
.typography ol li:before {
    counter-increment: myCounter;
    color: #000;
    content: counter(myCounter) ". "
}

table {
    width: 100%
}

table td,
table th {
    font-weight: 400;
    border: 1px solid #dbdddc;
    padding: 10px;
    vertical-align: middle
}

table.large td {
    padding: 25px
}

.typography {
    font-size: 18px;
    line-height: 1.7;
    font-family: Proxima Nova, sans-serif;
    letter-spacing: normal
}

@media screen and (max-width:767px) {
    .typography {
        font-size: 14px
    }
}

.typography blockquote {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700
}

.typography p:first-child {
    margin-top: 0
}

.typography__text {
    max-width: 1040px;
    margin: 0 auto;
    font-weight: 300
}

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

.typography small {
    font-size: .8em
}

.typography big {
    font-size: 19px
}

@media screen and (max-width:767px) {
    .typography big {
        font-size: 16px
    }
}

.typography>:first-child {
    margin-top: 0
}

.typography>:last-child {
    margin-bottom: 0
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5 {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .typography img {
        margin: 15px 0 !important;
        width: 100% !important
    }
}

.float-left {
    float: left;
    margin-right: 1em
}

.float-right {
    float: right;
    margin-left: 1em
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.hamburger .line {
    width: 32px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 10px 0;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    cursor: pointer;
    border-radius: 3px
}

.hamburger .line:nth-child(2) {
    width: 35px;
    display: none
}

.hamburger .line:nth-child(3) {
    width: 18px
}

.hamburger.is-active .line:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg)
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
    width: 32px
}

.hamburger.is-active .line:nth-child(3) {
    width: 32px;
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg)
}

.btn {
    padding: 0 30px;
    color: #000;
    background-color: #dbdddc;
    font-size: 18px;
    font-family: Manrope, sans-serif;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: top;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
    text-transform: uppercase;
    height: 50px;
    font-weight: 900;
    text-align: center
}

.btn img,
.btn svg {
    width: 18px;
    height: 18px;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.btn img:first-child,
.btn svg:first-child {
    margin-right: 10px
}

.btn img:last-child,
.btn svg:last-child {
    margin-left: 10px
}

.btn--primary {
    color: #000;
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163)
}

.btn--primary:hover {
    color: #000;
    background-image: -webkit-gradient(linear, right top, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(right, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(-90deg, #40efeb, #9ed163)
}

.btn--line-primary {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163)
}

.btn--line-primary:before {
    content: "";
    background: #121516;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    display: block;
    border-radius: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute
}

.btn--line-primary span {
    position: relative;
    z-index: 2
}

.btn--line-primary:hover {
    color: #000;
    background-image: -webkit-gradient(linear, right top, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(right, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(-90deg, #40efeb, #9ed163)
}

.btn--line-primary:hover:before {
    background: rgba(0, 0, 0, 0) !important
}

.btn--small {
    font-size: 15px;
    padding: 0 15px;
    height: 40px
}

.btn--large {
    height: 68px;
    padding: 0 30px
}

.btn:active {
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98)
}

.btn[disabled] {
    background: #dbdddc;
    cursor: not-allowed;
    opacity: .5
}

@-webkit-keyframes errorInput {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    to {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }
}

@keyframes errorInput {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    to {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }
}

.field-icon {
    width: 50px;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.field-icon,
.field>label:not(.select) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.field>label:not(.select) {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 18px;
    line-height: 1.15;
    margin-bottom: .9375rem;
    text-transform: uppercase;
    font-family: Proxima Nova, sans-serif;
    font-weight: 600;
    height: 18px
}

.field input,
.field textarea {
    border: 2px solid #68e2b2;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0);
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Manrope, sans-serif
}

.field input::-webkit-input-placeholder,
.field textarea::-webkit-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.field input::-moz-placeholder,
.field textarea::-moz-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.field input:-ms-input-placeholder,
.field textarea:-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.field input::-ms-input-placeholder,
.field textarea::-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.field input::placeholder,
.field textarea::placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.field input[disabled],
.field textarea[disabled] {
    opacity: .5;
    border-color: #ccc;
    pointer-events: none
}

.field input:focus,
.field input:hover,
.field textarea:focus,
.field textarea:hover {
    border-color: #4becdc
}

.field .field-gray {
    border-color: #4e5a5b;
    background: #4e5a5b
}

.field .field-counter {
    font-size: 22px;
    font-weight: 700
}

.field>textarea {
    min-height: 100px;
    padding-top: 10px;
    overflow: hidden
}

.field__error-message {
    margin-top: 5px;
    color: red
}

.field__append {
    height: 46px;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: 0 !important;
    right: 0
}

.field__append .currency-marker {
    height: 50px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.field__group {
    position: relative;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.field__group input {
    padding-right: 60px
}

.field__group:last-child {
    margin-bottom: 0
}

.field p {
    font-size: 13px;
    line-height: 1.2
}

.field--error label {
    color: #eb001b
}

.field--error input,
.field--error textarea {
    border-color: #eb001b !important;
    will-change: transform;
    -webkit-animation: errorInput .2s cubic-bezier(.6, .2, .1, 1);
    animation: errorInput .2s cubic-bezier(.6, .2, .1, 1)
}

.field__subtext {
    text-transform: uppercase;
    color: silver;
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-weight: 500;
    font-size: 18px !important
}

.field--material {
    position: relative
}

.field--material label:not(.select) {
    position: absolute;
    top: 16px;
    left: 0;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: .05em;
    color: #999;
    font-weight: 500;
    pointer-events: none;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.field--material input {
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding-top: 9px;
    border: none;
    border-bottom: 2px solid #ccc;
    padding-left: 0
}

.field--material input:focus,
.field--material input:hover {
    background: rgba(0, 0, 0, 0);
    border-color: #bfbfbf
}

.field--material.active label {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    font-size: 12px
}

.field--material.field--error label {
    color: red
}

.field--horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

@media screen and (max-width:767px) {
    .field--horizontal {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.field--horizontal input,
.field--horizontal textarea {
    border-radius: 30px;
    padding-left: 20px;
    background: #fff;
    height: 45px
}

.field--horizontal input:focus,
.field--horizontal input:hover,
.field--horizontal textarea:focus,
.field--horizontal textarea:hover {
    background: #fff;
    border-color: #ddd
}

.field--horizontal input[disabled],
.field--horizontal textarea[disabled] {
    background: #e1e1e1;
    border-color: #e1e1e1
}

.field--horizontal>label:not(.select) {
    margin: 0 !important;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 180px;
    font-size: 20px;
    font-weight: 500
}

@media screen and (max-width:767px) {
    .field--horizontal>label:not(.select) {
        width: 100%;
        font-size: 16px;
        margin-bottom: 10px !important
    }
}

.field--horizontal.field--subtext input,
.field--horizontal.field--subtext textarea {
    padding-right: 60px
}

.select {
    position: relative;
    display: block;
    cursor: pointer
}

.select:after {
    content: "";
    width: 9px;
    height: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 2px;
    pointer-events: none
}

.select select {
    border: 2px solid #68e2b2;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0);
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Manrope, sans-serif;
    text-overflow: ellipsis;
    font-weight: 700;
    padding-right: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    outline: none
}

.select select::-webkit-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.select select::-moz-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.select select:-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.select select::-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.select select::placeholder {
    color: hsla(0, 0%, 100%, .5);
    font-weight: 500
}

.select select[disabled] {
    opacity: .5;
    border-color: #ccc;
    pointer-events: none
}

.select select:focus,
.select select:hover {
    border-color: #4becdc
}

.select select:-ms-expand {
    display: none
}

.select select option {
    font-size: 16px;
    font-weight: 400
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.checkbox,
.radio {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    font-weight: 400;
    vertical-align: middle;
    text-transform: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 18px;
    line-height: 1.3;
    text-align: left;
    margin: 0 !important
}

.checkbox a,
.radio a {
    text-decoration: underline;
    margin-left: 5px
}

.checkbox a:hover,
.radio a:hover {
    text-decoration: none
}

.checkbox input,
.radio input {
    display: none
}

.checkbox input:checked+span:after,
.radio input:checked+span:after {
    opacity: 1
}

.checkbox input:checked+span:before,
.radio input:checked+span:before {
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163)
}

.checkbox span,
.radio span {
    cursor: pointer
}

.checkbox span:before,
.radio span:before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: #ebebeb;
    position: absolute;
    border-radius: 3px;
    left: 0;
    top: 0
}

.checkbox span:after,
.radio span:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M6 12c-.5 0-1-.2-1.4-.6l-4-4c-.8-.8-.8-2 0-2.8s2.1-.8 2.8 0L6 7.2 12.6.6c.8-.8 2-.8 2.8 0s.8 2 0 2.8l-8 8c-.4.4-.9.6-1.4.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 65%;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.radio__subtext {
    font-size: 14px;
    color: rgba(0, 0, 0, .5)
}

.radio__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.radio__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px)
}

@media screen and (max-width:767px) {
    .radio__col {
        width: calc(100% - 30px);
        margin-bottom: 5px
    }
}

@media screen and (max-width:767px) {
    .radio__col:last-child {
        margin-bottom: 0
    }
}

.radio span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.radio span img {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.radio span:before {
    border-radius: 50%
}

.radio span:after {
    background: #69e2b0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 9px;
    left: 4px
}

@-webkit-keyframes caret {
    50% {
        border-color: rgba(0, 0, 0, 0)
    }
}

@keyframes caret {
    50% {
        border-color: rgba(0, 0, 0, 0)
    }
}

.header {
    position: relative;
    z-index: 3
}

.header .container {
    max-width: 1432px
}

.header .nav-button {
    position: absolute;
    top: 0;
    bottom: 28px;
    left: 0;
    background: rgba(0, 0, 0, 0);
    display: none;
    width: 90px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

@media screen and (max-width:1200px) {
    .header .nav-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (max-width:992px) {
    .header .nav-button {
        bottom: 30px
    }
}

@media screen and (max-width:767px) {
    .header .nav-button {
        width: 60px
    }
}

.header__slogan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-align: center;
    white-space: nowrap;
    margin-top: -45px;
    overflow: hidden;
    height: 66px
}

@media screen and (max-width:767px) {
    .header__slogan {
        margin-top: -55px
    }
}

.header__slogan:after {
    content: "";
    background: url(../images/logo/slogan-bg.png) 50% no-repeat;
    width: 285px;
    height: 66px;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: .3
}

.header__slogan p {
    position: relative;
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #4cebda;
    z-index: 2
}

.header__slogan p:after,
.header__slogan p:before {
    content: "";
    width: 9999px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    opacity: .2
}

.header__slogan p:before {
    right: 100%;
    margin-right: 20px
}

.header__slogan p:after {
    left: 100%;
    margin-left: 20px
}

.header__logo {
    display: block;
    width: 100%;
    max-width: 148px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 auto
}

.header__logo img {
    width: 100%
}

.header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    height: 130px
}

@media screen and (max-width:1200px) {
    .header__row {
        padding-bottom: 15px
    }
}

@media screen and (max-width:767px) {
    .header__row {
        height: 120px
    }
}

.header__nav {
    padding-right: 100px
}

@media screen and (max-width:1280px) {
    .header__nav {
        padding-right: 40px
    }
}

.header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__nav li.is-active a {
    color: #8da1a1
}

.header__nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400
}

.header__nav a:hover {
    color: #69e2b0
}

@media screen and (max-width:1200px) {
    .header__nav {
        display: none
    }
}

.header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 100px
}

@media screen and (max-width:1280px) {
    .header__right {
        padding-left: 40px
    }
}

@media screen and (max-width:1200px) {
    .header__right {
        position: absolute;
        right: 0
    }
}

@media screen and (max-width:1200px) {
    .header__right .link-icon {
        display: none
    }
}

.header__nav,
.header__right {
    width: calc(45.83333% - 30px)
}

@media screen and (max-width:1200px) {
    .header__nav,
    .header__right {
        width: auto;
        padding: 0
    }
}

.header-profile {
    position: relative
}

@media screen and (max-width:992px) {
    .header-profile .total-balance {
        display: none
    }
}

.header-profile__slogan {
    text-transform: uppercase;
    color: #4cebda;
    font-weight: 500;
    letter-spacing: .15em;
    font-size: 12px;
    position: relative
}

.header-profile__slogan:before {
    content: "";
    width: 9999px;
    height: 1px;
    background: #4cebda;
    display: block;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-right: 30px
}

@media screen and (max-width:1200px) {
    .header-profile__slogan {
        display: none
    }
}

.header-profile__logo {
    display: none
}

@media screen and (max-width:1200px) {
    .header-profile__logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.header-profile .nav-button {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    width: 90px
}

@media screen and (max-width:1200px) {
    .header-profile .nav-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.header-profile__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 120px
}

.header-profile__right,
.header-profile__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:1200px) {
    .header-profile__right {
        display: none
    }
}

.header-profile__right>* {
    margin: 0 30px
}

.header-profile__right>:last-child {
    margin-right: 0
}

.follow a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px
}

.follow a:hover svg {
    fill: #fff
}

.follow svg {
    width: 23px;
    height: 23px;
    fill: #7edb91
}

.footer {
    position: relative;
    overflow: hidden
}

.footer__nav-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.footer__nav-col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px)
}

@media screen and (max-width:767px) {
    .footer__nav-col {
        width: calc(50% - 30px);
        margin-bottom: 40px
    }
}

@media screen and (max-width:767px) {
    .footer__nav-col.hidden-sm {
        display: none
    }
    .footer__nav-col:last-child {
        margin-bottom: 0
    }
}

.footer .container {
    position: relative;
    z-index: 2
}

.footer .follow {
    max-width: 300px;
    margin: 0 auto
}

@media screen and (max-width:992px) {
    .footer .follow {
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .footer .follow .footer-title {
        text-align: center
    }
}

.footer .follow ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:767px) {
    .footer .follow ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }
}

.footer .follow li {
    margin: 0 30px 0 0
}

.footer .follow li:last-child {
    margin-right: 0
}

.footer__logo {
    display: block;
    width: 100%;
    max-width: 210px
}

.footer__logo img {
    width: 100%
}

.footer__nav a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none
}

@media screen and (max-width:360px) {
    .footer__nav a {
        font-size: 14px
    }
}

.footer__nav a:hover {
    color: #69e2b0
}

.footer__nav li {
    margin-bottom: 25px
}

.footer__nav li:last-child {
    margin-bottom: 0
}

.footer__nav li.is-active a {
    color: #8da1a1
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding: 70px 0
}

@media screen and (max-width:767px) {
    .footer__row {
        padding: 30px 0
    }
}

.footer__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px)
}

@media screen and (max-width:992px) {
    .footer__col {
        width: calc(100% - 30px);
        margin-bottom: 60px
    }
}

@media screen and (max-width:992px) {
    .footer__col:last-child {
        margin-bottom: 0
    }
}

.footer__bottom {
    padding: 50px 0;
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 300;
    position: relative
}

@media screen and (max-width:767px) {
    .footer__bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.footer__bottom:before {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163);
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0
}

@media screen and (max-width:767px) {
    .footer__bottom ul {
        margin-top: 20px;
        width: 100%
    }
}

.footer__bottom ul li {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 30px
}

.footer__bottom ul li:first-child {
    margin-left: 0
}

.footer__bottom ul a {
    color: #fff;
    font-size: 13px
}

.footer-title {
    font-weight: 900;
    font-size: 19px;
    color: #6c7b7c;
    margin-bottom: 30px
}

.footer-profile-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 85px
}

@media screen and (max-width:767px) {
    .footer-profile-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
        padding-top: 60px
    }
}

.footer-profile-row__copyright {
    max-width: 130px;
    color: #949494;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300
}

@media screen and (max-width:767px) {
    .footer-profile-row__col {
        margin-bottom: 60px;
        width: 50%
    }
}

@media screen and (max-width:767px) {
    .footer-profile-row .follow ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .footer-profile-row .follow li {
        margin: 0 10px
    }
}

.footer-profile-row .footer__nav li {
    margin-bottom: 35px
}

.footer-profile-row .footer__nav li:last-child {
    margin-bottom: 0
}

.text-gradient-strong {
    font-weight: 700 !important;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.modal-content .typography {
    text-align: center;
    margin-bottom: 30px
}

.modal-content .typography:last-child {
    margin-bottom: 0
}

.modal-body {
    position: relative
}

.modal-body:before {
    position: fixed;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    background: rgba(23, 28, 28, .67);
    -webkit-animation: fadeIn .32s ease;
    animation: fadeIn .32s ease;
    -webkit-transition: opacity .32s ease;
    -o-transition: opacity ease .32s;
    transition: opacity .32s ease
}

.modal,
.modal-body.modal-fadeOut:before {
    opacity: 0
}

.modal {
    -webkit-transition: all .01s ease;
    -o-transition: all ease .01s;
    transition: all .01s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    height: 0;
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    visibility: hidden;
    padding-top: 65px;
    padding-bottom: 30px
}

@media screen and (max-width:767px) {
    .modal {
        padding: 0
    }
}

.modal.modal-visible {
    opacity: 1;
    height: auto;
    visibility: visible;
    bottom: 0
}

.modal-inner {
    -webkit-transition: all .2s ease-in;
    -o-transition: all ease-in .2s;
    transition: all .2s ease-in;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    position: relative;
    display: inline-block;
    width: 90%;
    max-width: 570px;
    opacity: 0
}

@media screen and (max-width:767px) {
    .modal-inner {
        border-radius: 0
    }
}

.modal-inner.modal-reveal {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.modal-inner__close {
    -webkit-transition: color .32s ease;
    -o-transition: color .32s ease;
    transition: color .32s ease;
    position: absolute;
    z-index: 2;
    right: -10px;
    top: -55px;
    cursor: pointer
}

.modal-inner__close svg {
    width: 24px;
    height: 24px;
    fill: #4debd8
}

.modal-inner__close:hover svg {
    fill: #fff
}

@media screen and (max-width:767px) {
    .modal-inner__close {
        right: 10px;
        top: 10px
    }
    .modal-inner__close svg {
        width: 20px;
        height: 20px
    }
}

.modal-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center
}

@media screen and (max-width:767px) {
    .modal-title {
        font-size: 24px
    }
}

.modal-inner {
    width: 100%;
    background: #171c1c;
    border: 2px solid #242b2b;
    -webkit-box-shadow: 2px 2px 57px rgba(0, 0, 0, .04);
    box-shadow: 2px 2px 57px rgba(0, 0, 0, .04)
}

.modal-inner .contacts__title,
.modal-inner .title {
    text-align: center
}

.modal-inner .field {
    margin-bottom: 20px
}

.modal-inner .field:last-child {
    margin-bottom: 0
}

.modal-inner .typography {
    font-size: 14px
}

.modal-inner .checkbox {
    font-size: 13px
}

.modal-inner .checkbox a {
    text-decoration: underline
}

.modal-inner .field--row label:not(.select) {
    width: 110px
}

@media screen and (max-width:767px) {
    .modal-inner .field--row label:not(.select) {
        width: 100%
    }
}

.modal-header {
    padding: 20px 30px
}

.modal-header--border-bottom {
    border-bottom: 2px solid #fff
}

.modal-content {
    padding: 30px
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px 20px;
    margin-top: -10px
}

.modal-footer>* {
    margin: 10px
}

.modal-footer--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

[data-accordion=content-container] {
    height: 0;
    overflow: hidden
}

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

.accordion__trigger {
    display: block;
    position: relative;
    line-height: 1.3;
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 1.5625rem 3.75rem 1.5625rem 0
}

@media screen and (max-width:1200px) {
    .accordion__trigger {
        padding-right: 3.75rem
    }
}

@media screen and (max-width:992px) {
    .accordion__trigger {
        padding: 1.875rem 0
    }
}

@media screen and (max-width:767px) {
    .accordion__trigger {
        padding-right: 2.5rem
    }
}

.accordion__trigger:hover {
    color: #69e2b0
}

.accordion__trigger:hover>span {
    text-decoration: underline
}

.accordion__trigger.is-collapsed {
    border-color: rgba(0, 0, 0, 0);
    color: #000;
    text-decoration: none;
    pointer-events: none
}

.accordion__trigger.is-collapsed:after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg)
}

.accordion__content {
    padding: 0 3.75rem 1.875rem 0
}

.accordion {
    position: relative
}

.accordion,
.accordion:last-child {
    border: none
}

.accordion__category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 35px 60px 35px 0;
    cursor: pointer;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2)
}

.accordion__category-item:after {
    position: absolute;
    top: 50%;
    right: 25px;
    content: "";
    width: 27px;
    height: 14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492.004 492.004' fill='%231b5553'%3E%3Cpath d='M382.678 226.804L163.73 7.86C158.666 2.792 151.906 0 144.698 0s-13.968 2.792-19.032 7.86l-16.124 16.12c-10.492 10.504-10.492 27.576 0 38.064L293.398 245.9l-184.06 184.06c-5.064 5.068-7.86 11.824-7.86 19.028 0 7.212 2.796 13.968 7.86 19.04l16.124 16.116c5.068 5.068 11.824 7.86 19.032 7.86s13.968-2.792 19.032-7.86L382.678 265c5.076-5.084 7.864-11.872 7.848-19.088.016-7.244-2.772-14.028-7.848-19.108z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg)
}

@media screen and (max-width:767px) {
    .accordion__category-item:after {
        right: 15px
    }
}

.accordion__content {
    padding: 40px 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    font-family: Proxima Nova, sans-serif;
    color: #7d7d7d
}

.accordion__content:last-child {
    margin-bottom: 0
}

.accordion__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 50px
}

@media screen and (max-width:767px) {
    .accordion__icon {
        margin-right: 30px
    }
}

.accordion__icon svg {
    width: 72px;
    height: 72px;
    fill: url(#primary-gradient)
}

@media screen and (max-width:767px) {
    .accordion__icon svg {
        width: 40px;
        height: 40px
    }
}

.accordion__description {
    font-size: 20px;
    font-family: Proxima Nova, sans-serif;
    font-weight: 600;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:767px) {
    .accordion__description {
        font-size: 16px
    }
}

.accordion__title {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.55;
    font-weight: 600;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: Proxima Nova, sans-serif
}

@media screen and (max-width:767px) {
    .accordion__title {
        font-size: 18px
    }
}

.accordion__title:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492.004 492.004' fill='%2369e2b0'%3E%3Cpath d='M382.678 226.804L163.73 7.86C158.666 2.792 151.906 0 144.698 0s-13.968 2.792-19.032 7.86l-16.124 16.12c-10.492 10.504-10.492 27.576 0 38.064L293.398 245.9l-184.06 184.06c-5.064 5.068-7.86 11.824-7.86 19.028 0 7.212 2.796 13.968 7.86 19.04l16.124 16.116c5.068 5.068 11.824 7.86 19.032 7.86s13.968-2.792 19.032-7.86L382.678 265c5.076-5.084 7.864-11.872 7.848-19.088.016-7.244-2.772-14.028-7.848-19.108z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat
}

.accordion__title>* {
    pointer-events: none
}

.accordion__title.is-collapsed {
    text-decoration: none
}

.accordion__item {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.accordion__item:last-child {
    margin-bottom: 0
}

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative
}

.scroll-wrapper>.scroll-content {
    border: none !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important
}

.scroll-wrapper>.scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scroll-element {
    display: none
}

.scroll-element,
.scroll-element div {
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block
}

.scroll-element .scroll-arrow,
.scroll-element .scroll-bar {
    cursor: default
}

.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999
}

.scroll-textarea>.scroll-content {
    overflow: hidden !important
}

.scroll-textarea>.scroll-content>textarea {
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important
}

.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scrollbar-inner>.scroll-element,
.scrollbar-inner>.scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-inner>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-x {
    bottom: 2px;
    height: 4px;
    left: 0;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-y {
    right: 2px;
    top: 15px;
    bottom: 15px;
    width: 6px
}

.scrollbar-inner>.scroll-element .scroll-element_outer {
    overflow: hidden;
    background: #fff
}

.scrollbar-inner>.scroll-element .scroll-bar,
.scrollbar-inner>.scroll-element .scroll-element_outer,
.scrollbar-inner>.scroll-element .scroll-element_track {
    border-radius: 8px
}

.scrollbar-inner>.scroll-element .scroll-bar,
.scrollbar-inner>.scroll-element .scroll-element_track {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40)
}

.scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: rgba(0, 0, 0, 0)
}

.scrollbar-inner>.scroll-element .scroll-bar {
    background-color: #69e2b0
}

.scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar,
.scrollbar-inner>.scroll-element:hover .scroll-bar {
    background-color: #3eda99
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px
}

.datepicker--cells {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.datepicker--cell,
.datepicker--cells {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex
}

.datepicker--cell {
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 32px;
    z-index: 1
}

.datepicker--cell.-focus- {
    background: #f0f0f0
}

.datepicker--cell.-current- {
    color: #4eb5e6
}

.datepicker--cell.-current-.-focus- {
    color: #4a4a4a
}

.datepicker--cell.-current-.-in-range- {
    color: #4eb5e6
}

.datepicker--cell.-in-range- {
    background: rgba(92, 196, 239, .1);
    color: #4a4a4a;
    border-radius: 0
}

.datepicker--cell.-in-range-.-focus- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell.-disabled- {
    cursor: default;
    color: #aeaeae
}

.datepicker--cell.-disabled-.-focus- {
    color: #aeaeae
}

.datepicker--cell.-disabled-.-in-range- {
    color: #a1a1a1
}

.datepicker--cell.-disabled-.-current-.-focus- {
    color: #aeaeae
}

.datepicker--cell.-range-from- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 4px 0 0 4px
}

.datepicker--cell.-range-to- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 0 4px 4px 0
}

.datepicker--cell.-range-from-.-range-to- {
    border-radius: 4px
}

.datepicker--cell.-selected- {
    border: none
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    color: #fff;
    background: #69e2b0
}

.datepicker--cell.-selected-.-focus- {
    background: #69e2b0
}

.datepicker--cell:empty {
    cursor: default
}

.datepicker--days-names {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 8px 0 3px
}

.datepicker--day-name,
.datepicker--days-names {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex
}

.datepicker--day-name {
    color: #69e2b0;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em
}

.datepicker--cell-day {
    width: 14.28571%
}

.datepicker--cells-months {
    height: 170px
}

.datepicker--cell-month {
    width: 33.33%;
    height: 25%
}

.datepicker--cells-years,
.datepicker--years {
    height: 170px
}

.datepicker--cell-year {
    width: 25%;
    height: 33.33%
}

.datepickers-container {
    position: absolute;
    left: 0;
    top: 0
}

@media print {
    .datepickers-container {
        display: none
    }
}

.datepicker {
    background: #fff;
    border: 1px solid #dbdbdb;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    width: 250px;
    position: absolute;
    left: -100000px;
    opacity: 0;
    transition: opacity .3s ease, left 0s .3s, -webkit-transform .3s ease;
    -webkit-transition: opacity .3s ease, left 0s .3s, -webkit-transform .3s ease;
    -o-transition: opacity .3s ease, transform .3s ease, left 0s .3s;
    transition: opacity .3s ease, transform .3s ease, left 0s .3s;
    transition: opacity .3s ease, transform .3s ease, left 0s .3s, -webkit-transform .3s ease;
    z-index: 100
}

.datepicker.-from-top- {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px)
}

.datepicker.-from-right- {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px)
}

.datepicker.-from-bottom- {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px)
}

.datepicker.-from-left- {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px)
}

.datepicker.active {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    transition: opacity .3s ease, left 0s 0s, -webkit-transform .3s ease;
    -webkit-transition: opacity .3s ease, left 0s 0s, -webkit-transform .3s ease;
    -o-transition: opacity .3s ease, transform .3s ease, left 0s 0s;
    transition: opacity .3s ease, transform .3s ease, left 0s 0s;
    transition: opacity .3s ease, transform .3s ease, left 0s 0s, -webkit-transform .3s ease
}

.datepicker-inline .datepicker {
    border-color: #d7d7d7;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.datepicker-inline .datepicker--pointer {
    display: none
}

.datepicker--content {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 4px
}

.-only-timepicker- .datepicker--content {
    display: none
}

.datepicker--pointer {
    position: absolute;
    background: #fff;
    border-top: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    width: 10px;
    height: 10px;
    z-index: -1
}

.-top-center- .datepicker--pointer,
.-top-left- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    top: calc(100% - 4px);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.-right-bottom- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    right: calc(100% - 4px);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.-bottom-center- .datepicker--pointer,
.-bottom-left- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
    bottom: calc(100% - 4px);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg)
}

.-left-bottom- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-top- .datepicker--pointer {
    left: calc(100% - 4px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.-bottom-left- .datepicker--pointer,
.-top-left- .datepicker--pointer {
    left: 10px
}

.-bottom-right- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    right: 10px
}

.-bottom-center- .datepicker--pointer,
.-top-center- .datepicker--pointer {
    left: calc(50% - 5px)
}

.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    top: 10px
}

.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
    bottom: 10px
}

.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
    top: calc(50% - 5px)
}

.datepicker--body {
    display: none
}

.datepicker--body.active {
    display: block
}

.datepicker--nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    min-height: 32px;
    padding: 4px
}

.-only-timepicker- .datepicker--nav {
    display: none
}

.datepicker--nav-action,
.datepicker--nav-title {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    cursor: pointer;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center
}

.datepicker--nav-action {
    width: 32px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.datepicker--nav-action:hover {
    background: #f0f0f0
}

.datepicker--nav-action.-disabled- {
    visibility: hidden
}

.datepicker--nav-action svg {
    width: 32px;
    height: 32px
}

.datepicker--nav-action path {
    fill: none;
    stroke: #9c9c9c;
    stroke-width: 2px
}

.datepicker--nav-title {
    border-radius: 4px;
    padding: 0 8px
}

.datepicker--nav-title i {
    font-style: normal;
    color: #9c9c9c;
    margin-left: 5px
}

.datepicker--nav-title:hover {
    background: #f0f0f0
}

.datepicker--nav-title.-disabled- {
    cursor: default;
    background: none
}

.datepicker--buttons {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 4px;
    border-top: 1px solid #efefef
}

.datepicker--button {
    color: #4eb5e6;
    cursor: pointer;
    border-radius: 4px;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: 32px
}

.datepicker--button:hover {
    color: #4a4a4a;
    background: #f0f0f0
}

.datepicker--time {
    border-top: 1px solid #efefef;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 4px;
    position: relative
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
    -ms-flex: 0 1 138px;
    -webkit-box-flex: 0;
    flex: 0 1 138px;
    max-width: 138px
}

.-only-timepicker- .datepicker--time {
    border-top: none
}

.datepicker--time-sliders {
    -ms-flex: 0 1 153px;
    -webkit-box-flex: 0;
    flex: 0 1 153px;
    margin-right: 10px;
    max-width: 153px
}

.datepicker--time-label {
    display: none;
    font-size: 12px
}

.datepicker--time-current {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    font-size: 14px;
    text-align: center;
    margin: 0 0 0 10px
}

.datepicker--time-current-colon {
    margin: 0 2px 3px;
    line-height: 1
}

.datepicker--time-current-hours,
.datepicker--time-current-minutes {
    line-height: 1;
    font-size: 19px;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
    position: relative;
    z-index: 1
}

.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
    content: "";
    background: #f0f0f0;
    border-radius: 4px;
    position: absolute;
    left: -2px;
    top: -3px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0
}

.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
    opacity: 1
}

.datepicker--time-current-ampm {
    text-transform: uppercase;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    color: #9c9c9c;
    margin-left: 6px;
    font-size: 11px;
    margin-bottom: 1px
}

.datepicker--time-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 11px;
    height: 17px;
    background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 50%/100% 1px no-repeat;
    background: -o-linear-gradient(left, #dedede, #dedede) left 50%/100% 1px no-repeat;
    background: linear-gradient(90deg, #dedede, #dedede) left 50%/100% 1px no-repeat
}

.datepicker--time-row:first-child {
    margin-bottom: 4px
}

.datepicker--time-row input[type=range] {
    background: none;
    cursor: pointer;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.datepicker--time-row input[type=range]::-ms-tooltip {
    display: none
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:focus {
    outline: none
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -moz-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -ms-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    margin-top: -6px
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.datepicker--time-row input[type=range]::-moz-range-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.datepicker--time-row input[type=range]::-ms-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0)
}

.datepicker--time-row input[type=range]::-ms-fill-lower,
.datepicker--time-row input[type=range]::-ms-fill-upper {
    background: rgba(0, 0, 0, 0)
}

.datepicker--time-row span {
    padding: 0 12px
}

.datepicker--time-icon {
    color: #9c9c9c;
    border: 1px solid;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    margin: 0 5px -1px 0;
    width: 1em;
    height: 1em
}

.datepicker--time-icon:after,
.datepicker--time-icon:before {
    content: "";
    background: currentColor;
    position: absolute
}

.datepicker--time-icon:after {
    height: .4em;
    width: 1px;
    left: calc(50% - 1px);
    top: calc(50% + 1px);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.datepicker--time-icon:before {
    width: .4em;
    height: 1px;
    top: calc(50% + 1px);
    left: calc(50% - 1px)
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
    background: none;
    border: none
}

body,
html {
    min-height: 100vh
}

html {
    line-height: 1.3;
    font-size: 16px
}

body,
html {
    color: #fff
}

body {
    margin: 0;
    padding: 0;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0e1113;
    position: relative
}

body:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .555);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 8;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

body.overflow,
body.overflow-transparent {
    overflow: hidden
}

@media screen and (max-width:992px) {
    body.overflow:before {
        opacity: 1;
        visibility: visible
    }
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: underline
}

.container {
    position: relative;
    max-width: 1284px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px
}

@media screen and (max-width:767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px
    }
}

.mobile-menu {
    overflow: hidden;
    overflow-y: auto;
    padding: 15px 0 60px;
    background: #0f1d1f;
    position: fixed;
    top: 120px;
    height: calc(100% - 120px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: none
}

.mobile-menu .link-icon,
.mobile-menu .total-balance {
    width: 100%;
    padding: 10px 30px
}

.mobile-menu__top {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.mobile-menu__top>* {
    margin: 5px
}

@media screen and (max-width:1200px) {
    .mobile-menu__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.mobile-menu__nav {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.mobile-menu__nav ul {
    width: 100%
}

.mobile-menu__nav ul>li>a {
    text-decoration: none;
    padding: 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    text-align: left
}

.mobile-menu__nav ul>li.is-active a {
    color: #69e2b0
}

.mobile-menu__nav ul>li.is-active svg {
    fill: url(#primary-gradient)
}

.mobile-menu__nav:last-of-type {
    border: none;
    margin-bottom: 40px;
    padding-bottom: 0
}

.mobile-menu__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px
}

.mobile-menu__icon svg {
    width: 22px;
    height: 22px;
    fill: #5d9099
}

.mobile-menu .select-language {
    z-index: 5
}

.mobile-menu .social-icons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px 0
}

.mobile-menu .social-icons a {
    border-radius: 50%
}

.mobile-menu .social-icons li {
    margin: 0 10px
}

.mobile-menu .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (max-width:767px) {
    .mobile-menu .container {
        padding-left: 0;
        padding-right: 0
    }
}

.mobile-menu.open {
    display: none
}

@media screen and (max-width:1200px) {
    .mobile-menu.open {
        display: block
    }
}

section {
    margin-bottom: 7.5rem
}

@media screen and (max-width:992px) {
    section {
        margin-bottom: 3.75rem
    }
}

.select-language {
    position: relative
}

.select-language__link {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, .3);
    text-decoration: none
}

.select-language__link:hover {
    border-color: #fff;
    color: #fff
}

.select-language__link:hover:after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-right-color: #fff;
    border-top-color: #fff
}

.select-language__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 71px;
    background: -webkit-gradient(linear, left top, left bottom, from(#2d3d3b), to(#141e1f));
    background: -o-linear-gradient(top, #2d3d3b, #141e1f);
    background: linear-gradient(180deg, #2d3d3b, #141e1f);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px) scale(.9);
    -ms-transform: translateY(-10px) scale(.9);
    transform: translateY(-10px) scale(.9);
    will-change: transform;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    z-index: 2;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .15);
    margin-top: 3px;
    border-radius: 5px
}

@media screen and (max-width:1200px) {
    .select-language__dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 90vw;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        -webkit-box-shadow: 0 0 0 999px rgba(0, 0, 0, .85);
        box-shadow: 0 0 0 999px rgba(0, 0, 0, .85)
    }
}

.select-language__dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 10px 13px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .06em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid hsla(0, 0%, 86.7%, .15)
}

@media screen and (max-width:1200px) {
    .select-language__dropdown a {
        padding: 15px 20px;
        font-size: 16px
    }
}

.select-language__dropdown a:hover {
    color: #69e2b0
}

.select-language__dropdown li:last-child a {
    border: none
}

.select-language.open .select-language__dropdown {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    visibility: visible
}

@media screen and (max-width:1200px) {
    .select-language.open .select-language__dropdown {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
}

.select-language--gray .select-language__dropdown {
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1)
}

.select-language--gray .select-language__dropdown a:hover {
    background: #69e2b0
}

.select-language--gray .select-language__link {
    border-color: #dedede;
    color: #4c4c4c
}

.select-language--gray .select-language__link:hover {
    background: #dedede
}

.select-language--gray .select-language__link:hover:after {
    border-left: 2px solid #4c4c4c;
    border-bottom: 2px solid #4c4c4c
}

.subtitle {
    text-transform: uppercase;
    color: rgba(0, 0, 0, .4);
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 10px
}

.subtitle:last-child {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .subtitle {
        font-size: 14px
    }
}

.contacts__title,
.title {
    font-size: 46px;
    margin-bottom: 30px
}

.contacts__title:last-child,
.title:last-child {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .contacts__title,
    .title {
        font-size: 32px
    }
}

.title--small {
    font-size: 35px
}

@media screen and (max-width:767px) {
    .title--small {
        font-size: 24px
    }
}

.faq {
    padding: 6.25rem 0 8.75rem
}

@media screen and (max-width:992px) {
    .faq {
        padding: 80px 0
    }
}

.faq .accordion {
    margin-top: 50px
}

.faq .accordion:first-child {
    margin-top: 0
}

.faq .typography {
    margin-bottom: 30px
}

.faq .typography:last-child {
    margin-bottom: 0
}

.faq .subtitle.text-center {
    color: hsla(0, 0%, 69.4%, .4)
}

.faq .text-center.contacts__title,
.faq .title.text-center {
    margin-bottom: 55px
}

.page-section {
    padding: 3.75rem 0 0;
    position: relative
}

.page-section:before {
    content: "";
    width: 100%;
    height: 300px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#0e1113), to(#0d1a1b));
    background-image: -o-linear-gradient(bottom, #0e1113, #0d1a1b);
    background-image: linear-gradient(0deg, #0e1113, #0d1a1b);
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

@media screen and (max-width:992px) {
    .page-section {
        padding: 80px 0
    }
}

@media screen and (max-width:767px) {
    .page-section {
        padding: 40px 0
    }
}

.page-section--not-shadow:before {
    display: none
}

.social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px
}

.social svg {
    width: 20px;
    height: 20px;
    fill: #6d6d6d
}

.social-icons {
    right: 0;
    z-index: 61;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width:1200px) {
    .social-icons {
        display: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.social-icons li {
    margin-bottom: 12px
}

.social-icons li:last-child {
    margin-bottom: 0
}

.social-icons img {
    width: 20px
}

.social-icons__icon-wrap {
    width: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social-icons svg {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    fill: #000
}

.social-icons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 2px 3px 32px rgba(0, 47, 106, .16);
    box-shadow: 2px 3px 32px rgba(0, 47, 106, .16);
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#7edb92));
    background-image: -o-linear-gradient(left, #40efeb 0, #7edb92 100%);
    background-image: linear-gradient(90deg, #40efeb, #7edb92);
    width: 44px;
    min-width: 44px;
    height: 44px;
    color: #000;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px
}

.social-icons a .social-icons__name {
    opacity: 0;
    width: 0;
    margin: 0;
    padding-left: 0
}

@media screen and (max-width:1200px) {
    .social-icons a {
        position: relative
    }
    .social-icons a .social-icons__name {
        opacity: 1;
        width: auto;
        color: #fff;
        font-size: 10px;
        position: absolute;
        top: 100%;
        width: 100%;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        overflow: hidden;
        left: 0;
        right: 0;
        text-align: center
    }
}

@media screen and (min-width:1200px) {
    .social-icons a:hover {
        width: auto
    }
    .social-icons a:hover .social-icons__name {
        opacity: 1;
        padding-left: 15px;
        width: auto
    }
    .social-icons a:hover .social-icons__name+svg {
        margin-left: 10px
    }
    .social-icons a:hover svg {
        fill: #000
    }
}

.field-block {
    border-radius: 15px;
    background: #ececec;
    padding: 3px 10px;
    position: relative
}

.field-block input,
.field-block select {
    height: 40px
}

.field-block--space {
    padding: 20px 15px
}

.field-block input {
    background: #fff;
    border-radius: 40px;
    padding-right: 50px;
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px
}

.field-block input:focus,
.field-block input:hover {
    background: #fff
}

.field-block__currency {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
    z-index: 2;
    color: rgba(0, 0, 0, .4);
    font-size: 14px;
    font-weight: 600;
    right: 40px
}

.form-block {
    border-radius: 15px;
    background: #f3f3f3;
    color: #000;
    -webkit-box-shadow: 10px 20px 95px rgba(0, 0, 0, .2);
    box-shadow: 10px 20px 95px rgba(0, 0, 0, .2);
    padding: 30px 44px
}

.form-block .field {
    margin-bottom: 20px
}

.form-block .field label {
    margin-bottom: 15px
}

@media screen and (max-width:992px) {
    .form-block .field label {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.form-block .field:last-child {
    margin-bottom: 0
}

.form-block .totals {
    margin-bottom: 30px;
    margin-top: 30px
}

.form-block .totals:last-child {
    margin-bottom: 0
}

.form-block .btn {
    width: 100%
}

@media screen and (max-width:767px) {
    .form-block .field-block {
        margin-left: -15px !important;
        margin-right: -15px !important;
        border-radius: 0
    }
    .form-block .field-block .select-payments {
        border-radius: 0
    }
}

.form-block__title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 35px
}

@media screen and (max-width:992px) {
    .form-block__title {
        text-align: center
    }
}

@media screen and (max-width:767px) {
    .form-block__title {
        font-size: 28px
    }
}

.icon-list {
    font-size: 19px
}

@media screen and (max-width:767px) {
    .icon-list {
        font-size: 16px
    }
}

.icon-list li {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:767px) {
    .icon-list li {
        margin-bottom: 25px
    }
}

.icon-list li:last-child {
    margin-bottom: 0
}

.icon-list svg {
    width: 28px;
    height: 28px;
    fill: #69e2b0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px
}

.auth-layout {
    min-height: 100vh;
    background: url(../images/auth.png) 0 100% no-repeat #171d1e;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.auth-layout .bar {
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0
}

@media screen and (max-width:1200px) {
    .auth-layout .bar {
        display: none
    }
}

.auth-layout__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 30px
}

.auth-layout__header,
.auth-layout__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.auth-layout__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 100px;
    height: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative
}

@media screen and (max-width:992px) {
    .auth-layout__header {
        padding: 0 30px
    }
}

@media screen and (max-width:767px) {
    .auth-layout__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.auth-layout__header .nav-button {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 90px;
    display: none !important
}

.auth-layout__header .nav-button .hamburger span {
    background: #fff
}

@media screen and (max-width:1200px) {
    .auth-layout__header .nav-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (max-width:767px) {
    .auth-layout__header .nav-button {
        height: 70px
    }
}

.auth-layout__logo {
    display: block;
    width: 100%;
    max-width: 148px
}

.auth-layout__logo img {
    width: 100%
}

.auth-layout__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:767px) {
    .auth-layout__right {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.auth-layout__right>* {
    margin: 0 50px 0 0
}

.auth-layout__right>:last-child {
    margin-right: 0
}

@media screen and (max-width:767px) {
    .auth-layout__right>* {
        margin: 0 10px
    }
}

.auth-layout__footer {
    font-size: 15px;
    color: #949494;
    font-weight: 300;
    padding-top: 80px;
    padding-bottom: 80px
}

.auth-layout__content,
.auth-layout__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.auth-layout__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.wrapper {
    min-height: 100vh
}

.main-layout,
.profile-layout {
    overflow: hidden;
    min-height: 100vh
}

.main-layout .bar,
.profile-layout .bar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    border-left: 1px solid hsla(0, 0%, 80%, .2);
    z-index: 3
}

@media screen and (max-width:1200px) {
    .main-layout .bar,
    .profile-layout .bar {
        display: none
    }
}

.main-layout footer,
.main-layout header,
.main-layout section,
.profile-layout footer,
.profile-layout header,
.profile-layout section {
    padding-right: 90px
}

@media screen and (max-width:1200px) {
    .main-layout footer,
    .main-layout header,
    .main-layout section,
    .profile-layout footer,
    .profile-layout header,
    .profile-layout section {
        padding-right: 0
    }
}

.main-layout .footer,
.main-layout .footer-profile,
.profile-layout .footer,
.profile-layout .footer-profile {
    margin-top: auto
}

.main-layout__wrapper,
.profile-layout__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh
}

.profile-navigation__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 25px
}

.profile-navigation__icon svg {
    fill: #5d9099;
    width: 22px;
    height: 22px
}

.profile-navigation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none
}

.profile-navigation a:hover {
    color: #69e2b0
}

.profile-navigation li {
    margin-bottom: 15px
}

.profile-navigation li:last-child {
    margin-bottom: 0
}

.profile-navigation .is-active a {
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163);
    color: #374c52
}

.profile-navigation .is-active svg {
    fill: #384d53
}

.profile-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: url(../images/profile.png) top no-repeat #101315;
    background-size: 100%
}

@media screen and (max-width:1200px) {
    .profile-layout {
        background-size: inherit
    }
}

.profile-layout__logo {
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.profile-layout__logo,
.profile-layout__logo img {
    position: relative;
    z-index: 2
}

.profile-layout__logo:after {
    content: "";
    width: 90%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #0e1111
}

.profile-layout .inner-wrapper-sticky {
    z-index: 2
}

.profile-layout__sidebar {
    width: 260px;
    background: #0e1111
}

@media screen and (max-width:1440px) {
    .profile-layout__sidebar {
        width: 220px
    }
}

@media screen and (max-width:1200px) {
    .profile-layout__sidebar {
        display: none
    }
}

.profile-layout__wrapper {
    width: calc(100% - 260px)
}

@media screen and (max-width:1440px) {
    .profile-layout__wrapper {
        width: calc(100% - 220px)
    }
}

@media screen and (max-width:1200px) {
    .profile-layout__wrapper {
        width: 100%
    }
}

.profile-layout .footer {
    background: #0e1111;
    margin-top: auto
}

@media screen and (max-width:1280px) {
    .profile-layout .header__nav {
        margin-right: 30px
    }
}

@media screen and (max-width:1200px) {
    .profile-layout .header__nav {
        display: none
    }
}

.profile-layout .header__right {
    position: relative;
    padding-right: 0;
    margin-right: 0
}

@media screen and (max-width:1200px) {
    .profile-layout .header__right {
        padding-right: 60px
    }
}

.profile-layout .page-section {
    padding: 50px 0
}

.profile-layout section {
    padding-top: 0;
    padding-bottom: 0;
    margin: 50px 0
}

.profile-layout section:first-child {
    margin-top: 0
}

@media screen and (max-width:767px) {
    .profile-layout section {
        margin: 30px 0
    }
}

.color-yellow {
    color: #69e2b0
}

.bar {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 130px
}

.bar,
.bar__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.bar__menu-btn {
    height: 130px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.bar .social-icons {
    margin: auto 0
}

.bar .social {
    margin-top: auto;
    margin-bottom: auto
}

.bar .social li {
    margin-bottom: 15px
}

.bar .social li:last-child {
    margin-bottom: 0
}

.bar .social a {
    margin: 0 auto
}

.bar .social a:hover svg {
    fill: #69e2b0
}

.sign {
    width: 100%;
    max-width: 675px
}

.sign__block {
    background: #080a0b;
    border: 2px solid #00d9c4;
    border-radius: 12px;
    padding: 43px 73px
}

@media screen and (max-width:767px) {
    .sign__block {
        padding: 40px 20px
    }
}

@media screen and (max-width:992px) {
    .sign {
        padding: 40px;
        border-radius: 0;
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .sign {
        padding: 30px 20px
    }
}

.sign .checkbox {
    font-size: 14px;
    margin-bottom: 15px !important
}

.sign .checkbox:last-child {
    margin-bottom: 0 !important
}

.sign .field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px
}

@media screen and (max-width:767px) {
    .sign .field {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.sign .field:last-child {
    margin-bottom: 0
}

.sign .field label {
    width: 135px;
    padding-right: 10px;
    text-transform: none;
    font-weight: 400;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px
}

@media screen and (max-width:767px) {
    .sign .field label {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px
    }
}

.sign .field input {
    border-width: 1px;
    height: 40px
}

.sign__top {
    margin-bottom: 35px;
    text-align: center
}

@media screen and (max-width:992px) {
    .sign__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.sign__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px
}

@media screen and (max-width:767px) {
    .sign__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px
    }
}

.sign__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(50% - 40px);
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .sign__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(50% - 20px)
    }
}

@media screen and (max-width:360px) {
    .sign__col {
        width: calc(100% - 20px)
    }
}

.sign__col--12 {
    width: calc(100% - 40px)
}

@media screen and (max-width:767px) {
    .sign__col--12 {
        width: calc(100% - 20px)
    }
}

.sign .recaptcha {
    margin-top: 30px
}

.sign__bottom {
    font-size: 15px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px
}

.sign__footer {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -20px
}

@media screen and (max-width:992px) {
    .sign__footer {
        margin-top: 40px
    }
}

.sign__footer>* {
    margin: 0 30px 20px 0
}

.sign__footer>:last-child {
    margin-right: 0
}

.sign__title {
    font-weight: 400;
    color: #4aecdc;
    font-size: 28px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 15px
}

.sign__title:last-child {
    margin-bottom: 0
}

.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 90px;
    bottom: 0;
    background: #0d1718;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 20;
    overflow: hidden
}

.mega-menu__top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2)
}

@media screen and (max-width:1200px) {
    .mega-menu {
        display: none
    }
}

.mega-menu__logo {
    display: block;
    width: 100%;
    max-width: 148px;
    position: relative;
    z-index: 2
}

.mega-menu__logo img {
    width: 100%
}

.mega-menu__top {
    height: 130px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mega-menu__center,
.mega-menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mega-menu__center {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 100px
}

.mega-menu__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 60px;
    height: 130px;
    z-index: 2
}

@media screen and (max-width:1440px) {
    .mega-menu__right {
        padding-right: 30px
    }
}

.mega-menu__right>* {
    margin: 0 20px 0 0
}

.mega-menu__right>:last-child {
    margin-right: 0
}

@media screen and (max-width:767px) {
    .mega-menu__right {
        display: none
    }
}

.mega-menu .container {
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static
}

.mega-menu .container,
.mega-menu__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mega-menu__row {
    min-height: 100vh
}

.mega-menu .link-icon {
    font-size: 33px;
    margin-bottom: 60px;
    font-weight: 300
}

.mega-menu .link-icon svg {
    width: 36px;
    height: 36px;
    margin-right: 20px
}

.mega-menu .link-icon:last-child {
    margin-bottom: 0
}

.mega-menu__col {
    width: 50%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mega-menu__nav {
    padding-left: 5vw
}

.mega-menu__nav li {
    margin-bottom: 60px
}

.mega-menu__nav li:last-child {
    margin-bottom: 0
}

.mega-menu__nav li.is-active a {
    color: #949494
}

.mega-menu__nav a {
    color: #fff;
    font-weight: 300;
    font-size: 33px;
    text-decoration: none
}

.mega-menu__nav a:hover {
    color: #69e2b0
}

.status {
    font-weight: 500;
    color: #7f7f7f
}

.status--success {
    color: #00c750
}

.status--danger {
    color: red
}

table strong {
    font-weight: 500
}

.dataTables_info {
    display: none
}

.dataTables_paginate {
    margin: 20px 0
}

.dataTables_paginate>span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.dataTables_paginate .next,
.dataTables_paginate .previous {
    display: none !important
}

.dataTables_paginate .paginate_button {
    color: silver;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    width: 33px;
    height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    margin: 0 5px 0 0
}

.dataTables_paginate .paginate_button:hover {
    color: #000
}

.dataTables_paginate .paginate_button.current {
    border-color: #69e2b0;
    color: #000
}

.block {
    background: #fff;
    -webkit-box-shadow: 0 7px 95px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 7px 95px 0 rgba(0, 0, 0, .05);
    padding: 20px 45px;
    border-radius: 15px
}

@media screen and (max-width:767px) {
    .block {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        padding: 20px 30px
    }
}

.block .table-wrapper {
    overflow-x: auto
}

@media screen and (max-width:767px) {
    .block .table-wrapper {
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px
    }
}

.block table td,
.block table th {
    border: none;
    padding: 20px 10px
}

.block table td:first-child,
.block table th:first-child {
    padding-left: 0
}

.block table td:last-child,
.block table th:last-child {
    padding-right: 0
}

@media screen and (max-width:767px) {
    .block table td:last-child,
    .block table th:last-child {
        padding-right: 30px
    }
}

.block table td {
    font-size: 15px;
    border-bottom: 1px solid #ededed
}

@media screen and (max-width:767px) {
    .block table td {
        font-size: 14px
    }
}

.block table th {
    font-size: 18px;
    font-weight: 500;
    color: silver;
    border-bottom: 3px solid #ededed
}

@media screen and (max-width:767px) {
    .block table th {
        font-size: 16px
    }
}

.block.tradingview-widget {
    height: 445px;
    padding: 15px 0 0;
    overflow: hidden
}

.block.tradingview-widget .tradingview-widget-copyright {
    display: none
}

.block.tradingview-widget .tradingview-widget-container {
    height: 100% !important
}

.table-filter-hidden .dataTables_length {
    display: none
}

.referral-link {
    background: hsla(0, 0%, 89.8%, .6);
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px
}

@media screen and (max-width:992px) {
    .referral-link {
        padding: 30px 20px
    }
}

@media screen and (max-width:767px) {
    .referral-link {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.referral-link .btn {
    font-size: 19px;
    height: 45px;
    padding: 0 25px
}

.referral-link .btn svg {
    margin-left: 15px
}

.referral-link .field {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 40px
}

@media screen and (max-width:992px) {
    .referral-link .field {
        margin-right: 15px
    }
}

@media screen and (max-width:767px) {
    .referral-link .field {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: 15px
    }
}

.referral-link .field input {
    padding-left: 30px;
    pointer-events: none;
    font-size: 18px
}

@media screen and (max-width:767px) {
    .referral-link .field input {
        padding-left: 20px;
        font-size: 15px
    }
}

.referral-link .field label {
    width: 200px;
    height: auto
}

@media screen and (max-width:992px) {
    .referral-link .field label {
        width: 160px;
        font-size: 18px
    }
}

@media screen and (max-width:767px) {
    .referral-link .field label {
        width: 100%;
        margin-bottom: 10px !important
    }
}

.intro {
    padding-top: 10px;
    position: relative;
    margin-bottom: 88px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom
}

@media screen and (max-width:767px) {
    .intro {
        padding-top: 0
    }
}

.intro__bg {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    height: 126%;
    left: 0;
    right: 0
}

.intro__bg img {
    max-width: inherit !important;
    height: 100%
}

.intro__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    z-index: 2
}

.intro__col,
.intro__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.intro__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width:992px) {
    .intro__col {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:992px) {
    .intro__col:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
}

.intro__content {
    max-width: 421px;
    margin: 0 0 0 auto;
    padding-bottom: 60px;
    padding-top: 38px
}

@media screen and (max-width:992px) {
    .intro__content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 600px
    }
}

.intro__robot {
    margin-top: auto;
    margin-right: auto;
    margin-left: -8px
}

@media screen and (max-width:992px) {
    .intro__robot {
        margin: auto auto 0;
        max-width: 400px;
        display: none
    }
}

@media screen and (max-width:767px) {
    .intro__robot {
        max-width: 100%
    }
}

.intro__title {
    text-transform: uppercase;
    font-size: 3.6875rem;
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 540px;
    letter-spacing: .05em
}

@media screen and (max-width:767px) {
    .intro__title {
        font-size: 2.5rem
    }
}

.intro .btn {
    width: 100%;
    max-width: 290px
}

.intro__description {
    margin: 0 0 40px;
    font-weight: 700;
    font-size: 25px
}

@media screen and (max-width:767px) {
    .intro__description {
        font-size: 1.125rem
    }
}

.intro .intro-icons {
    margin-top: 60px
}

@media screen and (max-width:767px) {
    .intro .intro-icons {
        margin-top: 30px
    }
}

.link-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600
}

.link-icon:hover {
    color: #fff
}

.link-icon svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    fill: #fff
}

.intro-bremby {
    position: relative;
    color: rgba(0, 0, 0, 0)
}

.intro-bremby:after {
    content: "";
    background: url(../images/intro/bremby.png) 50% no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.intro-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px
}

@media screen and (max-width:767px) {
    .intro-icons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.intro-icons li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px);
    margin-bottom: 30px
}

@media screen and (max-width:767px) {
    .intro-icons li {
        width: calc(50% - 30px)
    }
}

.intro-icons__icon {
    margin-bottom: 30px;
    position: relative;
    width: 45px;
    height: 45px
}

@media screen and (max-width:992px) {
    .intro-icons__icon {
        margin-left: auto;
        margin-right: auto
    }
}

.intro-icons__icon:after {
    content: "";
    width: 30px;
    height: 0;
    -webkit-box-shadow: 0 0 20px 12px rgba(58, 229, 229, .5);
    box-shadow: 0 0 20px 12px rgba(58, 229, 229, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1
}

.intro-icons__icon svg {
    width: inherit;
    height: inherit;
    fill: #3ae5e5
}

.intro-icons__description {
    opacity: .6;
    font-size: 13px;
    line-height: 1.7;
    max-width: 140px
}

@media screen and (max-width:992px) {
    .intro-icons__description {
        max-width: 160px;
        margin-left: auto;
        margin-right: auto
    }
}

.payments-and-footer-wrapper {
    position: relative
}

@media screen and (max-width:1200px) {
    .payments-and-footer-wrapper {
        margin-top: 40px
    }
}

.payments-and-footer-wrapper__inner {
    padding-top: 170px
}

@media screen and (max-width:992px) {
    .payments-and-footer-wrapper__inner {
        padding-top: 60px
    }
}

.payments-and-footer-wrapper__inner:after {
    content: "";
    width: 2px;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(bottom, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(0deg, #40efeb, #9ed163);
    top: 0;
    right: 90px;
    display: block;
    z-index: 3;
    position: absolute
}

@media screen and (max-width:1200px) {
    .payments-and-footer-wrapper__inner:after {
        display: none
    }
}

.payments-and-footer-wrapper:before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163);
    top: -2px;
    right: 90px;
    display: block;
    z-index: 3;
    position: absolute
}

@media screen and (max-width:1200px) {
    .payments-and-footer-wrapper:before {
        right: 0
    }
}

.payments-and-footer-wrapper footer,
.payments-and-footer-wrapper section {
    position: relative;
    z-index: 2
}

.payments-and-footer-wrapper:after {
    content: "";
    position: absolute;
    width: 9999px;
    top: 0;
    bottom: 0;
    right: 90px;
    height: 100%
}

@media screen and (max-width:1200px) {
    .payments-and-footer-wrapper:after {
        display: none
    }
}

.payments {
    position: relative
}

.payments:after {
    content: "";
    width: 786px;
    height: 1023px;
    position: absolute;
    top: -60%;
    left: 0;
    display: block;
    background: url(../images/light2.png) 50% no-repeat;
    background-size: cover;
    pointer-events: none;
    opacity: .5
}

.payments__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.payments__buttons {
    margin-top: 80px
}

@media screen and (max-width:767px) {
    .payments__buttons {
        margin-top: 30px
    }
}

.payments__buttons .btn {
    width: 100%;
    height: 68px
}

.payments__buttons .btn:before {
    background: #0e1113
}

.payments .section-intro {
    margin-bottom: 62px
}

@media screen and (max-width:767px) {
    .payments .section-intro {
        margin-bottom: 30px
    }
}

.payments .section-intro__description {
    max-width: 210px;
    margin-left: auto;
    margin-right: auto
}

.payments__content {
    margin: 0 0 0 auto;
    max-width: 390px;
    text-align: center
}

@media screen and (max-width:992px) {
    .payments__content {
        max-width: 90%;
        margin: 0 auto
    }
}

@media screen and (max-width:767px) {
    .payments__content {
        max-width: 100%
    }
}

.payments__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width:992px) {
    .payments__col {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:992px) {
    .payments__col:first-child {
        margin-top: 70px
    }
}

.payments__col:first-child img {
    margin: -15px 0 0
}

@media screen and (max-width:992px) {
    .payments__col:first-child img {
        margin: 0
    }
}

@media screen and (max-width:992px) {
    .payments__col:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
}

.container-large {
    max-width: 1432px
}

.statisticts-section {
    position: relative
}

.statisticts-section:before {
    bottom: -45%;
    left: 0;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1)
}

.statisticts-section:after,
.statisticts-section:before {
    content: "";
    position: absolute;
    display: block;
    pointer-events: none;
    width: 621px;
    height: 865px;
    background: url(../images/decor.png) 50% no-repeat;
    opacity: .9
}

.statisticts-section:after {
    bottom: 0;
    right: 0
}

.statisticts-section+section.steps {
    margin-top: -12px
}

.statisticts-section .container {
    position: relative;
    z-index: 2
}

.statisticts-section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -37.5px;
    margin-right: -37.5px;
    margin-bottom: -30px
}

@media screen and (max-width:1200px) {
    .statisticts-section__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px
    }
}

.statisticts-section__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 37.5px;
    margin-right: 37.5px;
    width: calc(50% - 75px);
    margin-bottom: 30px
}

@media screen and (max-width:1200px) {
    .statisticts-section__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:992px) {
    .statisticts-section__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px)
    }
}

.investment {
    position: relative
}

.investment:after {
    content: "";
    width: 923px;
    height: 935px;
    position: absolute;
    top: -10%;
    right: 90px;
    display: block;
    background: url(../images/light1.png) 50% no-repeat;
    background-size: cover;
    pointer-events: none
}

@media screen and (max-width:1200px) {
    .investment:after {
        right: 0
    }
}

.investment .swiper-container {
    overflow: visible
}

.investment .notebook-video {
    width: 781px;
    max-width: 131%;
    margin: 1% 0 0 -6%
}

@media screen and (max-width:1200px) {
    .investment .notebook-video {
        max-width: 100%;
        margin: 0 auto
    }
}

.investment .section-intro {
    text-align: left;
    max-width: 400px;
    margin-bottom: 45px
}

@media screen and (max-width:1200px) {
    .investment .section-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }
}

.investment .section-intro:last-child {
    margin-bottom: 0
}

.investment .section-intro .contacts__title:before,
.investment .section-intro .title:before {
    margin: 0 auto 30px 0
}

@media screen and (max-width:1200px) {
    .investment .section-intro .contacts__title:before,
    .investment .section-intro .title:before {
        margin-left: auto
    }
}

.investment__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 50px
}

@media screen and (max-width:767px) {
    .investment__row {
        margin-bottom: 20px
    }
}

.investment__row:last-child {
    margin-bottom: 0
}

.investment__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
    margin-bottom: 60px
}

@media screen and (max-width:1200px) {
    .investment__col {
        width: calc(100% - 30px)
    }
}

.steps-item {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2a5156), to(#082528));
    background-image: -o-linear-gradient(top, #2a5156 0, #082528 100%);
    background-image: linear-gradient(180deg, #2a5156, #082528);
    -webkit-box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    border-radius: 12px;
    padding: 45px 55px 70px
}

@media screen and (max-width:1200px) {
    .steps-item {
        padding: 40px
    }
}

.steps-item__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px
}

.steps-item__description {
    font-size: 16px;
    line-height: 1.6
}

.steps-item__count {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #90d678
}

.steps-item__count span {
    color: #56e8cb
}

.section-intro {
    text-align: center
}

.section-intro .contacts__title,
.section-intro .title {
    margin-bottom: 21px
}

.section-intro__description {
    font-size: 18px;
    line-height: 1.45;
    color: #848484
}

.contacts__title,
.title {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .05em
}

.contacts__title:before,
.title:before {
    content: "";
    width: 65px;
    height: 2px;
    background: #4debd8;
    display: block;
    margin: 0 auto 30px
}

.title--left:before {
    margin: 0 auto 30px 0
}

.steps {
    padding-bottom: 130px
}

.steps+section.investment {
    margin-top: 167px
}

@media screen and (max-width:1200px) {
    .steps+section.investment {
        margin-top: 50px
    }
}

@media screen and (max-width:767px) {
    .steps+section.investment {
        margin-top: 0
    }
}

.steps__hearts img {
    position: absolute;
    z-index: 2;
    pointer-events: none
}

.steps__hearts img:first-child {
    top: 100%;
    right: 100%;
    -webkit-transform: translate(50%, -30%);
    -ms-transform: translate(50%, -30%);
    transform: translate(50%, -30%)
}

.steps__hearts img:last-child {
    bottom: 100%;
    left: 100%;
    -webkit-transform: translate(-40%, 21%);
    -ms-transform: translate(-40%, 21%);
    transform: translate(-40%, 21%)
}

@media screen and (max-width:767px) {
    .steps__hearts img:last-child {
        -webkit-transform: translate(-25%, 30%);
        -ms-transform: translate(-25%, 30%);
        transform: translate(-25%, 30%)
    }
}

.steps .section-intro {
    margin: 0 auto 70px
}

.steps .swiper-slide,
.steps .swiper-wrapper {
    height: auto
}

.steps .swiper-container {
    overflow: visible
}

.steps .steps-item {
    height: 100%
}

.notebook-video {
    position: relative;
    text-decoration: none;
    display: block
}

.notebook-video:after {
    content: "";
    width: 130%;
    height: 10%;
    background: url(../images/investment/notebook-shadow.png) 50% no-repeat;
    background-size: contain;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -38%);
    -ms-transform: translate(-50%, -38%);
    transform: translate(-50%, -38%)
}

.notebook-video__title {
    text-transform: uppercase;
    font-weight: 900;
    width: 100%;
    font-size: 160%;
    margin-bottom: 3%;
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:767px) {
    .notebook-video__title {
        margin-bottom: 20px;
        font-size: 120%
    }
}

.notebook-video svg {
    width: 100%;
    height: 100%;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    fill: url(#primary-gradient)
}

.notebook-video__content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    text-align: center
}

.notebook-video__icon {
    width: 24%;
    height: 14%;
    display: block;
    margin: 0 auto
}

@media screen and (max-width:767px) {
    .notebook-video__icon {
        height: 50px
    }
}

.notebook-video img {
    opacity: .5
}

.notebook-video:hover svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.primary-gradient {
    height: 0;
    width: 0;
    opacity: 0
}

sup {
    vertical-align: top;
    font-size: .5em;
    margin-top: .25em
}

sub,
sup {
    display: inline-block
}

sub {
    vertical-align: bottom;
    font-size: .8em;
    margin-top: .2em
}

.investment-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

@media screen and (max-width:1200px) {
    .investment-stats {
        text-align: center
    }
}

.investment-stats li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px)
}

@media screen and (max-width:767px) {
    .investment-stats li {
        width: calc(100% - 30px);
        margin-bottom: 30px
    }
}

@media screen and (max-width:767px) {
    .investment-stats li:last-child {
        margin-bottom: 0
    }
}

.investment-stats__count {
    margin-bottom: 15px;
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -.08em
}

.investment-stats__title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 25px;
    max-width: 210px;
    text-transform: uppercase;
    line-height: 1.45
}

@media screen and (max-width:1200px) {
    .investment-stats__title {
        margin-left: auto;
        margin-right: auto
    }
}

.investment-stats__description {
    line-height: 1.6;
    color: #848484;
    font-size: 13px;
    max-width: 210px
}

@media screen and (max-width:1200px) {
    .investment-stats__description {
        margin-left: auto;
        margin-right: auto
    }
}

.counters .swiper-container {
    overflow: visible
}

.count-item__value {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    display: inline-block
}

@media screen and (max-width:767px) {
    .count-item__value {
        font-size: 24px
    }
}

.count-item__value sub {
    margin-bottom: .2em;
    font-size: .6em
}

.count-item__description {
    max-width: 135px;
    line-height: 1.55
}

@media screen and (max-width:767px) {
    .count-item__description {
        font-size: 14px
    }
}

.count-item__icon {
    width: 58px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px
}

.count-item__icon svg {
    width: 100%;
    height: 100%;
    fill: url(#primary-gradient)
}

.advantages-item {
    color: #848484
}

.advantages-item__description {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.6;
    font-family: Proxima Nova, sans-serif;
    letter-spacing: .1em
}

@media screen and (max-width:1200px) {
    .advantages-item__description {
        font-size: 14px
    }
}

@media screen and (max-width:767px) {
    .advantages-item__description {
        font-size: 12px
    }
}

.advantages-item__icon {
    width: 95px;
    height: 95px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    background: url(../icons/box.svg) 50% no-repeat
}

.advantages-item__icon svg {
    width: 50%;
    height: 50%
}

@media screen and (max-width:767px) {
    .advantages-item__icon {
        width: 75px;
        height: 75px
    }
}

.advantages-item svg {
    fill: #646464
}

.advantages-item:hover {
    color: #fff
}

.advantages-item:hover svg {
    fill: url(#primary-gradient)
}

.gradient-text {
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.username {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    max-width: 120px
}

@media screen and (max-width:767px) {
    .username {
        font-size: 12px;
        max-width: 100px
    }
}

@media screen and (max-width:360px) {
    .username {
        max-width: 80px
    }
}

.price-gradient-primary {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:767px) {
    .price-gradient-primary {
        font-size: 12px
    }
}

.statisticts-block {
    background: rgba(24, 37, 36, .7);
    border-radius: 12px;
    padding: 65px 77px 48px
}

@media screen and (max-width:1200px) {
    .statisticts-block {
        padding: 40px
    }
}

@media screen and (max-width:767px) {
    .statisticts-block {
        padding: 40px 30px
    }
}

@media screen and (max-width:360px) {
    .statisticts-block {
        padding: 30px 15px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0
    }
}

.statisticts-block .contacts__title:before,
.statisticts-block .title:before {
    margin: 0 auto 30px 0
}

.statisticts-block table td {
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: 300
}

@media screen and (max-width:767px) {
    .statisticts-block table td {
        font-size: 12px
    }
}

.statisticts-block table td:first-child {
    padding-left: 0
}

.statisticts-block table td:last-child {
    padding-right: 0
}

.statisticts-block--gradient {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(64, 239, 235, .1)), to(rgba(158, 209, 99, .1)));
    background-image: -o-linear-gradient(bottom, rgba(64, 239, 235, .1) 0, rgba(158, 209, 99, .1) 100%);
    background-image: linear-gradient(0deg, rgba(64, 239, 235, .1), rgba(158, 209, 99, .1))
}

.company-info table td {
    font-size: 16px;
    padding: 8px;
    border: none;
    color: #848484
}

@media screen and (max-width:767px) {
    .company-info table td {
        font-size: 14px
    }
}

.company-info table td .company-info__label {
    color: #fff
}

.company-info table td:first-child {
    padding-left: 0
}

.company-info table td:last-child {
    padding-right: 0
}

.totals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: -webkit-gradient(linear, left bottom, left top, from(#2b5259), to(#0b2529));
    background: -o-linear-gradient(bottom, #2b5259 0, #0b2529 100%);
    background: linear-gradient(0deg, #2b5259, #0b2529);
    border-radius: 12px;
    -webkit-box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48);
    box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48)
}

.totals li {
    padding: 20px 25px;
    border-right: 1px solid #1a2828;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.totals li:last-child {
    border: none
}

.totals__title {
    font-size: 13px;
    margin-bottom: 5px
}

.totals__value {
    font-size: 17px;
    font-weight: 900;
    color: #00ead6;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.totals__value sub {
    color: #67d670
}

.total-invested {
    border-radius: 12px;
    padding: 30px 25px;
    color: #000;
    -webkit-box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48);
    box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48);
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163)
}

.total-invested__title {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600
}

.total-invested__value {
    font-size: 25px;
    font-weight: 900
}

.participants {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    color: #000;
    -webkit-box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48);
    box-shadow: 0 11px 38px 0 rgba(0, 0, 0, .48)
}

.participants__title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px
}

.participants__count {
    font-weight: 900;
    font-size: 25px;
    white-space: nowrap
}

.certificate {
    padding-bottom: 40px;
    position: relative;
    width: 100%;
    max-width: 490px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

@media screen and (max-width:767px) {
    .certificate {
        padding-bottom: 0
    }
}

.certificate:after {
    content: "";
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    border-radius: 12px
}

@media screen and (max-width:767px) {
    .certificate:after {
        display: none
    }
}

.certificate:before {
    content: "";
    width: 65px;
    height: 2px;
    background: #4debd8;
    position: absolute;
    bottom: 90px;
    left: -30px;
    z-index: 2;
    pointer-events: none
}

@media screen and (max-width:767px) {
    .certificate:before {
        display: none
    }
}

.certificate img {
    border-radius: 12px;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

@media screen and (max-width:767px) {
    .certificate img {
        margin-top: 15px
    }
}

.certificate .totals {
    position: absolute;
    right: 30px;
    bottom: 0;
    -webkit-transform: translateZ(30px);
    transform: translateZ(30px);
    z-index: 2
}

@media screen and (max-width:767px) {
    .certificate .totals {
        position: relative;
        right: auto
    }
}

.certificate .total-invested {
    position: absolute;
    left: -95px;
    z-index: 2;
    bottom: 133px;
    -webkit-transform: translateZ(50px);
    transform: translateZ(50px)
}

@media screen and (max-width:767px) {
    .certificate .total-invested {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto
    }
}

.certificate .participants {
    position: absolute;
    right: 31px;
    top: -82px;
    max-width: 125px;
    -webkit-transform: translateZ(20px);
    transform: translateZ(20px);
    z-index: 2
}

@media screen and (max-width:767px) {
    .certificate .participants {
        position: relative;
        right: auto;
        top: auto;
        max-width: 100%;
        margin: 15px 0
    }
}

.company {
    position: relative
}

.company:after {
    content: "";
    width: 1191px;
    height: 1624px;
    position: absolute;
    top: -45%;
    right: 90px;
    display: block;
    background: url(../images/flag2.png) 50% no-repeat;
    background-size: cover;
    pointer-events: none
}

@media screen and (max-width:1200px) {
    .company:after {
        right: 0
    }
}

.company__title {
    text-transform: uppercase;
    font-size: 3.75rem;
    margin-bottom: 48px;
    line-height: 1.1;
    letter-spacing: .05em
}

@media screen and (max-width:992px) {
    .company__title {
        font-size: 3.125rem
    }
}

@media screen and (max-width:767px) {
    .company__title {
        font-size: 1.875rem;
        margin-bottom: 30px;
        text-align: center
    }
}

.company .certificate {
    margin-bottom: 32px;
    margin-top: 15px
}

@media screen and (max-width:1200px) {
    .company .certificate {
        margin-left: auto;
        margin-right: auto
    }
}

.company .certificate:last-child {
    margin-bottom: 0
}

.company__count {
    font-weight: 900;
    font-size: 25px;
    position: relative;
    display: inline-block;
    margin-bottom: 52px;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:767px) {
    .company__count {
        margin-bottom: 30px;
        text-align: center;
        display: block;
        font-size: 20px
    }
}

.company__count:before {
    content: "";
    width: 120px;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 30px
}

@media screen and (max-width:767px) {
    .company__count:before {
        display: none
    }
}

.company .typography {
    font-size: 16px
}

.company__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -55px;
    margin-right: -55px
}

.company__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 55px;
    margin-right: 55px;
    width: calc(50% - 110px)
}

@media screen and (max-width:1280px) {
    .company__col {
        width: calc(100% - 110px)
    }
}

.company__col:last-child {
    position: relative;
    z-index: 2
}

@media screen and (max-width:1280px) {
    .company__col:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 90px
    }
}

@media screen and (max-width:767px) {
    .company__col:last-child {
        margin-bottom: 30px
    }
}

.company__block {
    border-radius: 12px;
    border: 2px solid rgba(95, 151, 156, .2);
    padding: 120px 112px 67px;
    position: relative
}

@media screen and (max-width:1280px) {
    .company__block {
        padding: 90px 112px 67px
    }
}

@media screen and (max-width:992px) {
    .company__block {
        padding: 60px
    }
}

@media screen and (max-width:767px) {
    .company__block {
        padding: 40px 30px
    }
}

.company+section.statisticts-section {
    margin-top: -55px
}

@media screen and (max-width:992px) {
    .company+section.statisticts-section {
        margin-top: 0
    }
}

.funds .section-intro {
    margin-bottom: 48px
}

.funds .section-intro__description {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto
}

.funds .swiper-slide,
.funds .swiper-wrapper {
    height: auto
}

.funds .swiper-container {
    overflow: visible;
    padding-top: 80px
}

.funds .funds-item {
    height: 100%
}

.funds__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 44px;
    padding-bottom: 15px
}

.funds__bottom .btn {
    height: 68px;
    width: 100%;
    max-width: 390px
}

.funds__bottom .btn:before {
    background: #0e1718
}

.funds-item {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#264145), to(#061417));
    background-image: -o-linear-gradient(top, #264145 0, #061417 100%);
    background-image: linear-gradient(180deg, #264145, #061417);
    -webkit-box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    border-radius: 12px;
    padding: 50px 55px 30px;
    text-align: center
}

@media screen and (max-width:1200px) {
    .funds-item {
        padding: 50px 30px 30px
    }
}

.funds-item__icon {
    width: 100%;
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -160px
}

.funds-item__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 25px
}

.funds-item__description {
    font-size: 16px;
    font-family: Proxima Nova, sans-serif;
    line-height: 1.6
}

.funds-item.is-active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3c585c), to(#102528));
    background-image: -o-linear-gradient(top, #3c585c 0, #102528 100%);
    background-image: linear-gradient(180deg, #3c585c, #102528)
}

.deposits-item {
    height: 206px;
    position: relative;
    cursor: pointer
}

.deposits-item__content {
    padding: 20px 60px;
    border-radius: 12px;
    position: relative
}

.deposits-item__content,
.deposits-item__content:after {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.deposits-item__content:after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#00d9c4), to(#51ca83));
    background: -o-linear-gradient(top, #00d9c4 0, #51ca83 100%);
    background: linear-gradient(180deg, #00d9c4, #51ca83);
    -webkit-box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    opacity: 0;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    z-index: -1;
    border-radius: inherit
}

@media screen and (max-width:1220px) {
    .deposits-item__content {
        padding: 20px 40px
    }
}

@media screen and (max-width:767px) {
    .deposits-item__content {
        padding: 20px
    }
}

.deposits-item.is-active .deposits-item__content:after {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.deposits-item.is-active .deposits-item__count,
.deposits-item.is-active .deposits-item__count-desc,
.deposits-item.is-active .deposits-item__item-value {
    color: #000
}

.deposits-item.is-active .deposits-item__item--earn {
    display: block
}

.deposits-item__item {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700
}

.deposits-item__item:last-child {
    margin-bottom: 0
}

.deposits-item__item--earn {
    display: none
}

.deposits-item__count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.deposits-item__count-content {
    margin-left: 7px
}

.deposits-item__count-number {
    font-weight: 700;
    font-size: 60px
}

.deposits-item__count-sub {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px
}

.deposits-item__count-desc {
    text-transform: uppercase;
    color: #4e5a5b;
    font-size: 16px;
    font-weight: 900
}

[data-deposit] {
    display: none
}

.answer-item {
    padding-left: 75px;
    padding-right: 45px;
    position: relative;
    margin-bottom: 5px
}

.answer-item:before {
    content: "+";
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 24px;
    color: #52b18d;
    font-weight: 700
}

.answer-item__content {
    display: none;
    cursor: pointer
}

.answer-item__trigger {
    padding: 15px 0;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer
}

.answer-item__trigger:hover {
    color: #fff
}

.answer-item.is-active {
    background: rgba(27, 84, 82, .5);
    color: #fff;
    padding-top: 15px;
    padding-bottom: 30px
}

.answer-item.is-active:before {
    content: "-";
    top: 24px
}

.answer-item.is-active .answer-item__trigger {
    font-weight: 700
}

.limits-warning {
    padding: 40px 60px;
    border-radius: 12px;
    background: -webkit-gradient(linear, left top, left bottom, from(#2b525a), to(#072427));
    background: -o-linear-gradient(top, #2b525a 0, #072427 100%);
    background: linear-gradient(180deg, #2b525a, #072427);
    -webkit-box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43);
    box-shadow: 0 11px 81px 0 rgba(0, 0, 0, .43)
}

@media screen and (max-width:767px) {
    .limits-warning {
        padding: 40px
    }
}

.limits-warning__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px
}

.limits-warning__content {
    line-height: 1.65;
    font-size: 16px
}

.limits-warning__content big {
    font-weight: 700
}

.limits-warning__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.limits-warning__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 20px
}

.limits-warning__icon svg {
    width: 41px;
    height: 41px;
    fill: url(#primary-gradient)
}

.field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.field-group input,
.field-group select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.field-group__currency {
    background-image: -webkit-gradient(linear, right top, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(right, #40efeb, #9ed163);
    background-image: linear-gradient(-90deg, #40efeb, #9ed163);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #1d1d1d
}

.select-deposit {
    position: relative
}

.select-deposit__value {
    font-size: 18px !important;
    white-space: nowrap
}

.select-deposit__value strong {
    background: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background: linear-gradient(90deg, #40efeb, #9ed163);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.select-deposit__trigger {
    border-color: #4e5a5b;
    background: #4e5a5b;
    font-weight: 700;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 30px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    position: relative;
    z-index: 2
}

.select-deposit__trigger:after {
    content: "";
    width: 14px;
    height: 27px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492.004 492.004' fill='%23181d1e'%3E%3Cpath d='M382.678 226.804L163.73 7.86C158.666 2.792 151.906 0 144.698 0s-13.968 2.792-19.032 7.86l-16.124 16.12c-10.492 10.504-10.492 27.576 0 38.064L293.398 245.9l-184.06 184.06c-5.064 5.068-7.86 11.824-7.86 19.028 0 7.212 2.796 13.968 7.86 19.04l16.124 16.116c5.068 5.068 11.824 7.86 19.032 7.86s13.968-2.792 19.032-7.86L382.678 265c5.076-5.084 7.864-11.872 7.848-19.088.016-7.244-2.772-14.028-7.848-19.108z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    top: 50%;
    right: 20px
}

.select-deposit select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    width: 100%;
    border-radius: 12px;
    cursor: pointer
}

.calculate-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:767px) {
    .calculate-stats {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.calculate-stats__separate {
    width: 45px;
    height: 1px;
    background: #69e2b0;
    display: block;
    margin-top: 16px
}

.calculate-stats li {
    position: relative;
    margin: 0 15px 0 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3
}

@media screen and (max-width:767px) {
    .calculate-stats li {
        width: 100%;
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        margin-bottom: 15px
    }
    .calculate-stats li:last-child {
        margin-bottom: 0
    }
}

.calculate-stats li.calculate-stats__separate-li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media screen and (max-width:767px) {
    .calculate-stats li.calculate-stats__separate-li {
        display: none
    }
}

.calculate-stats__value {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 2px;
    white-space: nowrap
}

.calculate-stats__value sub {
    color: #69e2b0;
    font-weight: 400;
    margin: .45em 0 0;
    vertical-align: top;
    font-size: .6em
}

.calculate-stats__desc {
    font-size: 14px
}

.calculate-profit__block {
    border: 2px solid #8fd67a;
    background: #19292b;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    padding: 50px 20px 20px 50px;
    margin-top: -2px;
    display: none
}

@media screen and (max-width:767px) {
    .calculate-profit__block {
        padding: 30px 10px 0 20px;
        border-top-right-radius: 0
    }
}

.calculate-profit__block-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.calculate-profit__block-row>* {
    margin: 0 30px 30px 0
}

@media screen and (max-width:767px) {
    .calculate-profit__block-row>* {
        margin: 0 10px 30px 0
    }
}

.calculate-profit__block-row .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap
}

@media screen and (max-width:767px) {
    .calculate-profit__block-row .btn {
        width: 100%;
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }
}

.calculate-profit .calculate-stats {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    width: 490px
}

@media screen and (max-width:767px) {
    .calculate-profit .calculate-stats {
        width: 100%;
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }
}

.calculate-profit .field {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 160px
}

@media screen and (max-width:767px) {
    .calculate-profit .field {
        width: 100%;
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial
    }
}

.calculate-profit .field label {
    text-transform: none;
    font-size: 13px;
    color: hsla(0, 0%, 100%, .7);
    font-weight: 400;
    font-family: Proxima Nova, sans-serif;
    margin-bottom: 7px;
    margin-top: -18px
}

@media screen and (max-width:767px) {
    .calculate-profit .field label {
        margin-top: 0
    }
}

.calculate-profit .js-open-calculate-form {
    width: 100%;
    height: 68px;
    max-width: calc(29.16667% - 30px);
    position: relative;
    z-index: 2;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

@media screen and (max-width:1440px) {
    .calculate-profit .js-open-calculate-form {
        max-width: calc(37.5% - 30px)
    }
}

@media screen and (max-width:767px) {
    .calculate-profit .js-open-calculate-form {
        max-width: 100%;
        width: 100%
    }
}

.calculate-profit .js-open-calculate-form:before {
    background: #19292b
}

.calculate-profit.is-opened .js-open-calculate-form {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.calculate-profit.is-opened .js-open-calculate-form:before {
    bottom: 0
}

.deposits .limits-warning {
    margin-bottom: 60px
}

.deposits .limits-warning:last-child {
    margin-bottom: 0
}

.deposits__block {
    padding: 50px 112px;
    background: #000;
    border-radius: 12px;
    background: -webkit-gradient(linear, left bottom, left top, from(#1a292c), to(#102022));
    background: -o-linear-gradient(bottom, #1a292c 0, #102022 100%);
    background: linear-gradient(0deg, #1a292c, #102022)
}

@media screen and (max-width:1200px) {
    .deposits__block {
        padding: 50px 80px
    }
}

@media screen and (max-width:992px) {
    .deposits__block {
        padding: 50px 30px;
        margin-left: -30px;
        margin-right: -30px;
        border-radius: 0
    }
}

@media screen and (max-width:767px) {
    .deposits__block {
        margin-left: -15px;
        margin-right: -15px
    }
}

.deposits__slider {
    margin-bottom: 50px
}

@media screen and (max-width:1200px) {
    .deposits__slider {
        margin-bottom: 75px
    }
}

.deposits__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 30px
}

.deposits__row:last-child {
    margin-bottom: 0
}

.deposits__col-sidebar {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(29.16667% - 30px)
}

@media screen and (max-width:1440px) {
    .deposits__col-sidebar {
        width: calc(37.5% - 30px)
    }
}

@media screen and (max-width:992px) {
    .deposits__col-sidebar {
        width: calc(100% - 30px);
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 30px
    }
}

.deposits__col-content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(54.16667% - 30px);
    padding-left: 100px;
    margin-bottom: -80px
}

@media screen and (max-width:1440px) {
    .deposits__col-content {
        width: calc(54.16667% - 30px)
    }
}

@media screen and (max-width:992px) {
    .deposits__col-content {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:1440px) {
    .deposits__col-content {
        padding-left: 50px
    }
}

@media screen and (max-width:1200px) {
    .deposits__col-content {
        margin-bottom: 0
    }
}

@media screen and (max-width:992px) {
    .deposits__col-content {
        padding-left: 0
    }
}

.deposits .typography li {
    margin: 0 0 30px
}

.deposits .typography h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px
}

.deposits .typography p {
    color: #848484;
    margin: 10px 0
}

.deposits .swiper-container {
    overflow: visible
}

.deposits .section-intro {
    margin-bottom: 60px
}

.text-columns .typography {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 120px;
    -moz-column-gap: 120px;
    column-gap: 120px;
    font-size: 16px
}

@media screen and (max-width:1200px) {
    .text-columns .typography {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

.page-intro,
.text-columns .typography p:last-child {
    margin-bottom: 0
}

.page-intro {
    position: relative
}

.page-intro__title {
    text-transform: uppercase;
    font-size: 48px;
    max-width: 50%;
    margin-bottom: 50px
}

.page-intro__title:last-child {
    margin-bottom: 0
}

@media screen and (max-width:1200px) {
    .page-intro__title {
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .page-intro__title {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: center
    }
}

@media screen and (max-width:360px) {
    .page-intro__title {
        font-size: 32px
    }
}

.page-intro__description {
    font-size: 25px;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .page-intro__description {
        text-align: center
    }
}

.page-intro__text {
    margin-top: 60px;
    padding-left: 80px;
    position: relative
}

@media screen and (max-width:1200px) {
    .page-intro__text {
        padding-left: 60px
    }
}

@media screen and (max-width:767px) {
    .page-intro__text {
        padding-left: 30px;
        margin-top: 40px
    }
}

.page-intro__text:before {
    content: "";
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(bottom, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(0deg, #40efeb, #9ed163)
}

.page-intro__text:first-child {
    margin-top: 0
}

.page-intro__text .typography {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 120px;
    -moz-column-gap: 120px;
    column-gap: 120px;
    font-size: 16px
}

@media screen and (max-width:1200px) {
    .page-intro__text .typography {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

.page-intro__text .typography p:last-child {
    margin-bottom: 0
}

.page-intro__content {
    max-width: 50%
}

@media screen and (max-width:992px) {
    .page-intro__content {
        max-width: 100%;
        width: 100%;
        text-align: center
    }
}

.page-intro__content .page-intro__title {
    max-width: 100%
}

.page-intro__button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:992px) {
    .page-intro__button {
        width: 100%;
        margin-top: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.page-intro__button .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.page-intro__button:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #4aecdc;
    display: block;
    margin: 0 30px
}

@media screen and (max-width:992px) {
    .page-intro__button:before {
        display: none
    }
}

.page-intro__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:992px) {
    .page-intro__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.page-intro:after {
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    height: calc(100% + 150px);
    left: 0;
    right: 0
}

.page-intro .container {
    height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 2
}

@media screen and (max-width:767px) {
    .page-intro .container {
        height: 300px
    }
}

.page-intro .container:after {
    content: "";
    width: 100vw;
    height: 2px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(bottom, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(0deg, #40efeb, #9ed163);
    display: block;
    position: absolute;
    top: 100%;
    right: 30px
}

.page-intro.page-intro-faq:after {
    background: url(../images/faq/intro.png) top no-repeat;
    background-size: cover
}

.page-intro.page-intro-contacts:after {
    background: url(../images/contacts/intro.png) top no-repeat;
    background-size: cover
}

.page-intro.page-intro-company .container {
    height: auto;
    padding-top: 100px;
    padding-bottom: 245px
}

@media screen and (max-width:1200px) {
    .page-intro.page-intro-company .container {
        padding-bottom: 200px
    }
}

@media screen and (max-width:992px) {
    .page-intro.page-intro-company .container {
        padding-top: 60px
    }
}

@media screen and (max-width:767px) {
    .page-intro.page-intro-company .container {
        padding-bottom: 150px
    }
}

.page-intro.page-intro-company .container:after {
    display: none
}

.page-intro.page-intro-company:after {
    background: url(../images/about/intro.png) top no-repeat;
    background-size: cover
}

.page-intro.page-intro-company+section.company {
    margin-top: -100px
}

.page-intro.page-intro-company+section.company .company__block {
    background: rgba(15, 16, 16, .4)
}

.page-intro.page-intro-investments .container {
    height: auto;
    padding-top: 100px;
    padding-bottom: 245px
}

@media screen and (max-width:1200px) {
    .page-intro.page-intro-investments .container {
        padding-bottom: 200px
    }
}

@media screen and (max-width:992px) {
    .page-intro.page-intro-investments .container {
        padding-top: 60px
    }
}

@media screen and (max-width:767px) {
    .page-intro.page-intro-investments .container {
        padding-bottom: 150px
    }
}

.page-intro.page-intro-investments .container:after {
    display: none
}

.page-intro.page-intro-investments:after {
    background: url(../images/investments/intro.png) top no-repeat;
    background-size: cover
}

.page-intro.page-intro-investments+section.deposits {
    margin-top: -100px
}

.page-intro.page-intro-investments+section.deposits .deposits__block {
    background: rgba(20, 53, 56, .4);
    border: 1px solid rgba(74, 236, 220, .4)
}

.page-intro.page-intro-statistic .container {
    height: auto;
    padding-top: 100px;
    padding-bottom: 300px
}

@media screen and (max-width:992px) {
    .page-intro.page-intro-statistic .container {
        padding-top: 60px
    }
}

@media screen and (max-width:767px) {
    .page-intro.page-intro-statistic .container {
        padding-bottom: 190px
    }
}

.page-intro.page-intro-statistic .container:after {
    display: none
}

.page-intro.page-intro-statistic:after {
    background: url(../images/statistic/intro.png) top no-repeat;
    background-size: cover
}

.page-intro.page-intro-statistic+section.statisticts-section {
    margin-top: -200px;
    position: relative;
    z-index: 2
}

@media screen and (max-width:767px) {
    .page-intro.page-intro-statistic+section.statisticts-section {
        margin-top: -100px
    }
}

.block-form {
    border-radius: 12px;
    padding: 50px 67px;
    background: #212a2d
}

@media screen and (max-width:767px) {
    .block-form {
        padding: 40px 30px
    }
}

.block-form .field {
    margin-bottom: 30px
}

.block-form .field:last-child {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .block-form .btn {
        width: 100%
    }
}

.social-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #fff
}

.social-links a:hover {
    color: #69e2b0
}

.social-links li {
    margin-bottom: 40px
}

.social-links li:last-child {
    margin-bottom: 0
}

.social-links__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 35px
}

.social-links__icon svg {
    width: 23px;
    height: 23px;
    fill: url(#primary-gradient)
}

.contacts__title:before {
    display: none
}

@media screen and (max-width:767px) {
    .contacts__title {
        text-align: center
    }
}

.contacts__description {
    font-size: 18px;
    max-width: 430px;
    line-height: 1.5;
    font-family: Proxima Nova, sans-serif;
    color: #848484
}

@media screen and (max-width:767px) {
    .contacts__description {
        text-align: center
    }
}

.contacts__top {
    margin-bottom: 80px
}

@media screen and (max-width:767px) {
    .contacts__top {
        margin-bottom: 40px
    }
}

.contacts__top:last-child {
    margin-bottom: 0
}

.contacts__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.contacts__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px)
}

@media screen and (max-width:992px) {
    .contacts__col {
        width: calc(100% - 30px)
    }
}

.contacts__col:last-child {
    padding-top: 40px;
    padding-left: 120px
}

@media screen and (max-width:992px) {
    .contacts__col:last-child {
        padding-left: 0;
        margin-top: 30px
    }
}

.account-statistics-item {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(129, 161, 158, .5)), to(rgba(27, 40, 41, .5)));
    background: -o-linear-gradient(top, rgba(129, 161, 158, .5) 0, rgba(27, 40, 41, .5) 100%);
    background: linear-gradient(180deg, rgba(129, 161, 158, .5), rgba(27, 40, 41, .5));
    height: 110px;
    padding: 0 30px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .account-statistics-item {
        padding: 0 1.25vw
    }
}

@media screen and (max-width:1200px) {
    .account-statistics-item {
        padding: 0 20px
    }
}

.account-statistics-item__value {
    font-weight: 700;
    font-size: 25px;
    border-bottom: 1px solid #69e2b0;
    padding: 10px 0;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: calc(100% - 85px)
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .account-statistics-item__value {
        font-size: 1.5vw;
        max-width: calc(100% - 35px)
    }
}

@media screen and (max-width:767px) {
    .account-statistics-item__value {
        font-size: 22px
    }
}

.account-statistics-item__value sub {
    font-size: .65em;
    color: #69e2b0;
    font-weight: 400;
    margin: .35em 0 0;
    display: inline-block;
    vertical-align: top
}

.account-statistics-item__title {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: .05em
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .account-statistics-item__title {
        font-size: .8vw
    }
}

.account-statistics-item__title strong {
    display: block
}

.account-statistics .swiper-container {
    overflow: visible
}

.payments-logos__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.payments-logos__list li {
    margin: 0 15px 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.payments-logos a {
    opacity: .6;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.payments-logos a:hover {
    opacity: 1
}

.hr {
    height: 1px;
    display: block;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(90deg, #40efeb, #9ed163);
    position: relative;
    margin: 60px 0
}

.hr:after {
    width: 15px;
    height: 2px;
    background: #182223;
    margin: 0 0 0 -7px
}

.hr:after,
.hr:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0)
}

.hr:before {
    width: 31px;
    height: 45px;
    will-change: transform;
    border-top: 1px solid #6ee0a8;
    border-left: 1px solid #6ee0a8;
    border-bottom: 1px solid #6ee0a8
}

.logout-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    height: 120px;
    cursor: pointer;
    text-decoration: none
}

.logout-btn svg {
    width: 24px;
    height: 24px;
    fill: url(#primary-gradient);
    margin-bottom: 20px
}

.total-balance {
    font-size: 14px;
    color: #4cebda;
    font-weight: 300
}

.total-balance span {
    color: #fff;
    font-weight: 600
}

.table-wrap {
    overflow-x: auto;
    overflow-y: hidden
}

.nowrap {
    white-space: nowrap
}

.table td,
.table th {
    border: none;
    border-bottom: 1px solid #2d4245
}

.table td:first-child,
.table th:first-child {
    padding-left: 0
}

.table td:last-child,
.table th:last-child {
    padding-right: 0
}

.table td {
    font-size: 12px;
    font-weight: 400
}

.table th {
    font-size: 12px;
    letter-spacing: .05em;
    white-space: nowrap;
    text-transform: uppercase;
    border-bottom: 2px solid #2d4245;
    padding-bottom: 15px
}

.table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0
}

@media screen and (max-width:767px) {
    .lk-buttons .btn {
        width: 100%
    }
}

.profile-block {
    background: rgba(95, 151, 156, .2);
    border-radius: 12px;
    padding: 25px 35px;
    margin-bottom: 30px;
    overflow: hidden
}

@media screen and (max-width:1600px) {
    .profile-block {
        padding: 25px
    }
}

.profile-block .table-wrap {
    margin-left: -35px;
    margin-right: -35px;
    padding-left: 35px;
    padding-right: 35px
}

@media screen and (max-width:767px) {
    .profile-block .table-wrap {
        padding-left: 15px;
        padding-right: 15px
    }
}

.profile-block:last-child {
    margin-bottom: 0
}

.profile-block .field {
    margin-bottom: 20px
}

.profile-block .field label {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: none
}

.profile-block .js-tab-content {
    margin-bottom: 40px
}

.profile-block .typography {
    font-size: 16px
}

@media screen and (max-width:767px) {
    .profile-block .typography {
        font-size: 14px
    }
}

.profile-block .refferal-module {
    margin-left: -35px;
    margin-right: -35px;
    margin-bottom: -25px
}

.profile-block__content-row {
    border-bottom: 1px solid rgba(95, 151, 156, .2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -35px;
    margin-right: -35px
}

@media screen and (max-width:767px) {
    .profile-block__content-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.profile-block__col {
    width: 50%;
    padding: 35px;
    border-right: 1px solid rgba(95, 151, 156, .2)
}

.profile-block__col:last-child {
    border: none
}

@media screen and (max-width:767px) {
    .profile-block__col {
        width: 100%;
        padding: 15px
    }
}

.profile-block__top-border {
    border-bottom: 1px solid rgba(95, 151, 156, .2);
    padding-bottom: 25px;
    margin-left: -35px;
    margin-right: -35px;
    padding-left: 35px;
    padding-right: 35px
}

@media screen and (max-width:767px) {
    .profile-block__top-border {
        padding-left: 15px;
        padding-right: 15px
    }
}

.profile-block .title-module,
.profile-block .typography,
.profile-block__top {
    margin-bottom: 30px
}

.profile-block .title-module:last-child,
.profile-block .typography:last-child,
.profile-block__top:last-child {
    margin-bottom: 0
}

.profile-block__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:767px) {
    .profile-block__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.profile-block__top .btn {
    height: 35px;
    font-size: 13px;
    padding: 0 20px
}

@media screen and (max-width:767px) {
    .profile-block__top .btn {
        width: 100%
    }
}

.profile-block__top .title-module {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .profile-block__top .title-module {
        width: 100%;
        margin-bottom: 30px
    }
    .profile-block__top .title-module:last-child {
        margin-bottom: 0
    }
}

.label-datepicker {
    position: relative
}

.label-datepicker input {
    padding-right: 30px
}

.label-datepicker:after {
    content: "";
    width: 14px;
    height: 16px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cpath d='M492 60.163h-98.489V40c0-11.046-8.954-20-20-20s-20 8.954-20 20v20.163H158.489V40c0-11.046-8.954-20-20-20s-20 8.954-20 20v20.163H20c-11.046 0-20 8.955-20 20V472c0 11.045 8.954 20 20 20h472c11.046 0 20-8.955 20-20V80.163c0-11.045-8.954-20-20-20zM472 452H40V100.163h78.489v20.164c0 11.046 8.954 20 20 20s20-8.954 20-20v-20.164H353.51v20.164c0 11.046 8.954 20 20 20s20-8.954 20-20v-20.164H472V452z'/%3E%3Ccircle cx='256' cy='234.95' r='27'/%3E%3Ccircle cx='256' cy='352.46' r='27'/%3E%3Ccircle cx='138.49' cy='234.95' r='27'/%3E%3Ccircle cx='373.51' cy='234.95' r='27'/%3E%3Ccircle cx='138.49' cy='352.46' r='27'/%3E%3Ccircle cx='373.51' cy='352.46' r='27'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top
}

.checkbox-label {
    width: 100%;
    display: block
}

.checkbox-label__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(95, 151, 156, .2);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.checkbox-label svg {
    width: 16px;
    height: 16px
}

.checkbox-label__image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto
}

.checkbox-label__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 6px;
    background-color: rgba(95, 151, 156, .2)
}

.checkbox-label__icon svg {
    fill: #fff;
    opacity: 0
}

.checkbox-label input {
    display: none
}

.checkbox-label input:checked+span.checkbox-label__content {
    background: #4debd8;
    color: #2d4245
}

.checkbox-label input:checked+span.checkbox-label__content .checkbox-label__icon {
    background: #2d4245
}

.checkbox-label input:checked+span.checkbox-label__content .checkbox-label__icon svg {
    opacity: 1
}

.currency-marker {
    text-transform: uppercase;
    font-weight: 600;
    background: #69e2b0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: top;
    padding: 0 20px;
    font-size: 17px;
    color: #000
}

@media screen and (max-width:767px) {
    .currency-marker {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px
    }
}

.select-deposit ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -20px
}

.select-deposit__label {
    font-size: 15px;
    margin-bottom: 15px
}

.select-deposit li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px);
    margin-bottom: 20px
}

@media screen and (max-width:992px) {
    .select-deposit li {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:767px) {
    .select-deposit li {
        width: calc(100% - 30px);
        margin-bottom: 15px
    }
}

.select-deposit .deposits-item {
    display: block;
    position: relative;
    height: auto;
    border-radius: 12px;
    border: 1px solid #2d4446
}

.select-deposit .deposits-item:hover {
    background: #2d4446
}

.select-deposit .deposits-item span {
    display: block;
    position: relative;
    z-index: 2
}

.select-deposit .deposits-item__count {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.select-deposit .deposits-item__count-desc {
    color: #fff
}

.select-deposit .deposits-item__content {
    padding: 20px 40px
}

.select-deposit .deposits-item input {
    display: none
}

.select-deposit .deposits-item input:checked+span.deposits-item__content {
    z-index: 0;
    color: #000
}

.select-deposit .deposits-item input:checked+span.deposits-item__content:after {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.select-deposit .deposits-item__item,
.select-deposit .deposits-item__item--earn {
    display: block
}

.select-payment__label {
    font-size: 15px;
    margin-bottom: 15px
}

.select-payment ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -20px
}

.select-payment li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px);
    margin-bottom: 20px
}

@media screen and (max-width:767px) {
    .select-payment li {
        width: calc(100% - 30px);
        margin-bottom: 15px
    }
}

.filter-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: -5px;
    margin-right: -5px
}

.filter-table .field {
    margin-bottom: 0;
    overflow: hidden
}

.filter-table .field>label:not(.select) {
    height: auto
}

@media screen and (max-width:767px) {
    .filter-table {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -25px;
        margin-right: -25px
    }
}

.filter-table>* {
    margin: 5px !important;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.filter-table .label-datepicker {
    margin: 0 !important
}

.filter-table__col-2 {
    width: 16.666666%;
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: 0
}

@media screen and (max-width:1200px) {
    .filter-table__col-2 {
        width: 20%
    }
}

@media screen and (max-width:767px) {
    .filter-table__col-2 {
        width: calc(50% - 10px)
    }
}

@media screen and (max-width:360px) {
    .filter-table__col-2 {
        width: 100%
    }
}

.filter-table select {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.filter-table select option {
    color: #000;
    font-weight: 400
}

@media screen and (max-width:767px) {
    .filter-table>.select {
        width: calc(50% - 10px)
    }
}

@media screen and (max-width:360px) {
    .filter-table>.select {
        width: 100%
    }
}

.filter-table .select:after {
    content: "";
    width: 0;
    height: 0;
    border-color: #b2bccd rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 4px 3.5px 0;
    z-index: 5;
    right: 10px;
    margin-top: 0;
    display: block;
    background: none
}

.filter-table input:not([type=checkbox]),
.filter-table input:not([type=radio]),
.filter-table select,
.filter-table textarea {
    height: 35px;
    border-color: #4debd8;
    border-radius: 5px;
    padding-left: 12px;
    font-size: 13px
}

.filter-table input:not([type=checkbox])::-webkit-input-placeholder,
.filter-table input:not([type=radio])::-webkit-input-placeholder,
.filter-table select::-webkit-input-placeholder,
.filter-table textarea::-webkit-input-placeholder {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.filter-table input:not([type=checkbox])::-moz-placeholder,
.filter-table input:not([type=radio])::-moz-placeholder,
.filter-table select::-moz-placeholder,
.filter-table textarea::-moz-placeholder {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.filter-table input:not([type=checkbox]):-ms-input-placeholder,
.filter-table input:not([type=radio]):-ms-input-placeholder,
.filter-table select:-ms-input-placeholder,
.filter-table textarea:-ms-input-placeholder {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.filter-table input:not([type=checkbox])::-ms-input-placeholder,
.filter-table input:not([type=radio])::-ms-input-placeholder,
.filter-table select::-ms-input-placeholder,
.filter-table textarea::-ms-input-placeholder {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.filter-table input:not([type=checkbox])::placeholder,
.filter-table input:not([type=radio])::placeholder,
.filter-table select::placeholder,
.filter-table textarea::placeholder {
    font-size: 13px;
    color: #b2bccd;
    font-weight: 600
}

.referral-module .btn {
    font-size: 16px;
    height: 42px;
    padding: 0 25px
}

.referral-module .btn:before {
    background: #26393b
}

.referral-module__input-wrapper {
    position: relative;
    pointer-events: none
}

.referral-module__input-wrapper:before {
    content: "";
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background-image: -webkit-gradient(linear, left top, right top, from(#4e5a5b), color-stop(50%, rgba(78, 90, 91, .8)), to(rgba(78, 90, 91, 0)));
    background-image: -o-linear-gradient(left, #4e5a5b 0, rgba(78, 90, 91, .8) 50%, rgba(78, 90, 91, 0) 100%);
    background-image: linear-gradient(90deg, #4e5a5b, rgba(78, 90, 91, .8) 50%, rgba(78, 90, 91, 0));
    display: block
}

@media screen and (max-width:1200px) {
    .referral-module__input-wrapper:before {
        display: none
    }
}

.referral-module .field {
    margin-bottom: 20px
}

.referral-module .field label {
    text-transform: none;
    font-weight: 300;
    font-size: 14px
}

.referral-module .field input {
    background: #4e5a5b;
    border-color: #4e5a5b;
    font-size: 12px;
    height: 40px;
    direction: rtl;
    padding-right: 20px
}

@media screen and (max-width:1200px) {
    .referral-module .field input {
        direction: ltr
    }
}

.wallet-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 17px 15px
}

@media screen and (min-width:1200px) and (max-width:1440px) {
    .wallet-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media screen and (max-width:767px) {
    .wallet-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.wallet-item__value {
    margin-left: auto;
    font-weight: 900;
    font-size: 24px
}

@media screen and (min-width:1200px) and (max-width:1440px) {
    .wallet-item__value {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
        font-size: 22px
    }
}

@media screen and (max-width:767px) {
    .wallet-item__value {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
        font-size: 22px
    }
}

.wallet-item__value sub {
    text-transform: uppercase;
    color: #56d8c4;
    font-size: .6em;
    display: inline-block;
    vertical-align: top;
    margin-top: .45em;
    font-weight: 700;
    letter-spacing: .05em
}

.wallet-item__icon {
    width: 37px;
    height: 37px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.wallet-item__icon img {
    height: 100%
}

.wallet-item__subtitle {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: .05em
}

.wallet-item__title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px
}

.balance-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.balance-item__subtitle {
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 3px;
    margin-top: -14px
}

.balance-item__value {
    font-size: 22px;
    font-weight: 600
}

@media screen and (max-width:1440px) {
    .balance-item__value {
        font-size: 18px
    }
}

.balance-item__currency {
    text-transform: uppercase;
    font-size: 21px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:1440px) {
    .balance-item__currency {
        font-size: 18px
    }
}

.balance-item__currency span {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.balance-item__currency:before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    margin: 0 20px
}

@media screen and (max-width:1440px) {
    .balance-item__currency:before {
        margin: 0 10px
    }
}

.total-balance-module {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(top, #40efeb 0, #9ed163 100%);
    background-image: linear-gradient(180deg, #40efeb, #9ed163);
    color: #000
}

.total-balance-module .balance-item {
    margin-bottom: 35px
}

.total-balance-module .balance-item:last-child {
    margin-bottom: 0
}

.total-balance-module__list {
    margin-top: 40px
}

.total-balance-module__list li {
    margin-bottom: 10px
}

.total-balance-module__list li:last-child {
    margin-bottom: 0
}

.total-balance-module__icon svg {
    width: 60px;
    height: 60px
}

@media screen and (max-width:1440px) {
    .total-balance-module__icon svg {
        width: 45px;
        height: 45px
    }
}

.total-balance-module__title {
    text-transform: uppercase;
    font-size: 19px;
    margin-bottom: 5px
}

@media screen and (max-width:1440px) {
    .total-balance-module__title {
        font-size: 16px
    }
}

.total-balance-module__title:last-child {
    margin-bottom: 0
}

.total-balance-module__value {
    font-size: 33px;
    font-weight: 700
}

@media screen and (max-width:1440px) {
    .total-balance-module__value {
        font-size: 26px
    }
}

.total-balance-module__value sub {
    text-transform: uppercase;
    color: #fff;
    font-size: .6em;
    display: inline-block;
    vertical-align: top;
    margin-top: .6em;
    font-weight: 400;
    letter-spacing: .05em
}

.total-balance-module__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0 10px
}

.action-module .btn,
.total-balance-module__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.action-module .btn {
    width: 100%;
    margin-bottom: 25px;
    font-size: 15px;
    padding: 0 20px
}

@media screen and (max-width:1600px) {
    .action-module .btn {
        font-size: 14px;
        padding: 0 15px
    }
}

.action-module .btn svg {
    width: 26px;
    height: 26px
}

@media screen and (max-width:1600px) {
    .action-module .btn svg {
        width: 23px;
        height: 23px
    }
}

.action-module .btn:last-child {
    margin-bottom: 0
}

.activity-list__title {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px
}

.activity-list__title:last-child {
    margin-bottom: 0
}

.activity-list__date {
    text-transform: uppercase;
    font-size: 12px;
    opacity: .5
}

.activity-list li {
    margin-bottom: 30px
}

.activity-list li:last-child {
    margin-bottom: 0
}

.title-module {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700
}

.title-module:after {
    content: "";
    width: 60px;
    height: 2px;
    display: block;
    background: #4debd8;
    margin: 20px 0 0
}

.account .profile-block {
    margin-bottom: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.account__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.account__col-3,
.account__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.account__col-3 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(25% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width:1440px) {
    .account__col-3 {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width:1200px) {
    .account__col-3 {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:767px) {
    .account__col-3 {
        width: calc(100% - 30px)
    }
}

.account__col-6 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width:1440px) {
    .account__col-6 {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width:1200px) {
    .account__col-6 {
        width: calc(100% - 30px)
    }
}

.refferal-module {
    background-image: -webkit-gradient(linear, left top, right top, from(#40efeb), to(#9ed163));
    background-image: -o-linear-gradient(left, #40efeb, #9ed163);
    background-image: linear-gradient(90deg, #40efeb, #9ed163);
    color: #000;
    padding: 25px 30px;
    position: relative
}

.refferal-module:after {
    content: "";
    width: 190px;
    height: 125px;
    position: absolute;
    bottom: -10px;
    left: 100%;
    -webkit-transform: translateX(-55%);
    -ms-transform: translateX(-55%);
    transform: translateX(-55%);
    background: svg-load("../icons/users.html", fill=#fff);
    background-repeat: no-repeat;
    background-position: top;
    pointer-events: none;
    opacity: .2
}

.refferal-module .block-title {
    margin-bottom: 20px;
    font-weight: 600
}

.refferal-module input {
    height: 37px;
    border-radius: 8px;
    border-color: #fff;
    background: #fff;
    font-size: 12px
}

.refferal-module a {
    height: 37px;
    width: 37px
}

.refferal-module__row {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.refferal-module__col:first-child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(75% - 30px)
}

@media screen and (max-width:767px) {
    .refferal-module__col:first-child {
        width: calc(100% - 30px);
        margin-bottom: 20px
    }
}

.refferal-module__col:last-child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(25% - 30px)
}

@media screen and (max-width:767px) {
    .refferal-module__col:last-child {
        width: calc(100% - 30px)
    }
}

.banner-code__image {
    margin-bottom: 20px
}

.banner-code input {
    background: #4e5a5b;
    border-color: #4e5a5b;
    color: #fff
}

.banner-code .copy-form a svg {
    fill: #fff
}

.wallet-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    padding: 10px 15px;
    background-color: #fff
}

.wallet-element__icon {
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.wallet-element__title {
    text-transform: uppercase;
    color: #69e2b0;
    font-weight: 700;
    font-size: 14px
}

.wallet-element__subtitle {
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px
}

.wallet-element__value {
    margin-left: auto;
    font-size: 16px;
    letter-spacing: -.29px;
    font-family: Proxima Nova, sans-serif;
    font-weight: 700;
    color: #69e2b0
}

.copy-form {
    position: relative;
    width: 100%;
    z-index: 2
}

.copy-form input {
    padding-right: 50px;
    padding-left: 15px;
    pointer-events: none;
    width: 100%;
    height: 40px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    border-radius: 8px;
    font-size: 16px
}

.copy-form a {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.copy-form a svg {
    width: 20px;
    height: 20px;
    fill: #000
}

.invited-username {
    background: #273c3e;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    height: 37px
}

.invited-username span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.levels-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -15px
}

.levels-nav li {
    margin: 0 30px 15px 0
}

.levels-nav a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(105, 226, 176, .4);
    text-decoration: underline;
    font-weight: 400
}

@media screen and (max-width:767px) {
    .levels-nav a {
        font-size: 13px
    }
}

.levels-nav a:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 2px;
    display: block;
    margin-right: 8px
}

.levels-nav a:hover {
    color: #69e2b0
}

.levels-nav .is-active a {
    color: #69e2b0;
    text-decoration: none
}

.levels-nav__link--primary:before {
    background-color: #fff
}

.levels-nav__link--primary-light:before {
    background-color: #00ead6
}

.levels-nav__link--neutral:before {
    background-color: #69e2b0
}

.levels-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px
}

.levels-list li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);
    margin-bottom: 20px
}

.levels-list__title {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 20px
}

.levels-list__title small {
    color: #00ead6;
    font-size: 11px
}

.level-item {
    border: 1px solid rgba(95, 151, 156, .2);
    border-radius: 8px;
    padding: 10px 20px 10px 15px
}

@media screen and (max-width:992px) {
    .level-item {
        padding: 10px
    }
}

.level-item__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.level-item__icon img {
    width: 27px
}

@media screen and (max-width:992px) {
    .level-item__icon img {
        width: 20px
    }
}

.level-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.level-item__title {
    text-transform: uppercase;
    font-weight: 400;
    color: #00ead6;
    font-size: 12px
}

@media screen and (max-width:992px) {
    .level-item__title {
        font-size: 10px
    }
}

.level-item__value {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: 26px
}

@media screen and (max-width:992px) {
    .level-item__value {
        font-size: 20px
    }
}

.payment-system {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 11px
}

.payment-system img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 8px;
    width: 25px
}

.modal-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px
}

.modal-icon img {
    width: 140px
}

*/