@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&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
}

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    border-radius: 5px;
    border: 2px solid #000;
    background: #4c4c4c;
    color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
    /* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}

.tooltipster-base .tooltipster-content {
    overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tooltipster-arrow span,
.tooltipster-arrow-border {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span,
.tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}

.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom-right span,
.tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}

.tooltipster-arrow-bottom .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tooltipster-arrow-top-left span,
.tooltipster-arrow-bottom-left span {
    left: 6px;
}

.tooltipster-arrow-top-left .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}

.tooltipster-arrow-top-right span,
.tooltipster-arrow-bottom-right span {
    right: 6px;
}

.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}

.tooltipster-arrow-left span,
.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-left: 9px solid;
    margin-top: -8px;
}

.tooltipster-arrow-right span,
.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}

.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-right: 9px solid;
    margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-fall-show {}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-slide.tooltipster-slide-show {}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

@font-face {
    font-family: Fraunces;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Fraunces144ptS100-SemiBold.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 {
    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: #890c0c
}

.color-accent {
    color: #00a470
}

.color-black {
    color: #000
}

.color-white {
    color: #fff
}

.text-uppercase {
    text-transform: uppercase
}

.nowrap {
    white-space: nowrap
}

@media screen and (max-width:992px) {
    .hidden-md {
        display: none
    }
}

.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: #890c0c
    }

    40% {
        stroke: #ff5100
    }

    66% {
        stroke: #1ec16f
    }

    80%,
    90% {
        stroke: #eb001b
    }
}

@keyframes color {

    0%,
    to {
        stroke: #890c0c
    }

    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: #890c0c;
    text-decoration: underline;
    cursor: pointer
}

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

.fixed,
.typography code,
.typography pre {
    font-family: Nunito;
    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: Nunito
}

.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: 23px 0
}

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

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

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

.typography ul li:before,
.unordered-list li:before {
    content: "";
    width: 23px;
    height: 2px;
    display: block;
    background: #a5aed3;
    position: absolute;
    top: .8em;
    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: #890c0c;
    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: 16px;
    line-height: 1.8;
    font-family: Open Sans;
    letter-spacing: normal
}

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

.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: 22px
}

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

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

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

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5 {
    font-family: Nunito;
    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: 46px;
    height: 3px;
    background-color: #96a3c8;
    display: block;
    margin: 11px auto;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    cursor: pointer;
    border-radius: 6px
}

.hamburger .line:first-child {
    width: 22px
}

.hamburger .line:nth-child(2) {
    width: 40px
}

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

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

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

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

.btn {
    padding: 0 45px;
    color: #000;
    background-color: #dbdddc;
    font-size: 14px;
    font-family: Nunito;
    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: 50px;
    font-size: 23px;
    height: 65px;
    font-weight: 700;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease
}

@media screen and (max-width:767px) {
    .btn {
        height: 55px;
        font-size: 18px;
        padding: 0 30px
    }
}

.btn img,
.btn svg {
    width: 24px;
    height: 24px;
    display: block
}

.btn img:first-child,
.btn svg:first-child {
    margin-right: 15px;
    margin-left: -15px
}

@media screen and (max-width:767px) {

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

.btn img:last-child,
.btn svg:last-child {
    margin-left: 15px;
    margin-right: -15px
}

@media screen and (max-width:767px) {

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

.btn--primary {
    background: #890c0c;
    color: #fff
}

.btn--primary svg {
    fill: #fff
}

.btn--primary:hover {
    background: #5363a8;
    color: #fff
}

.btn--primary-light {
    background: #9399c3;
    color: #fff
}

.btn--primary-light svg {
    fill: #fff
}

.btn--primary-light:hover {
    background: #890c0c;
    color: #fff
}

.btn--accent,
.file-uploader .btn.is-uploaded {
    background: #890c0c;
    color: #fff
}

.btn--accent svg,
.file-uploader .btn.is-uploaded svg {
    fill: #fff
}

.btn--accent:hover,
.file-uploader .btn.is-uploaded:hover {
    background: #890c0c;
    color: #fff
}

.btn--light {
    background: #cfd5e9;
    color: #890c0c
}

.btn--light:hover {
    background: #bec6e1
}

.btn--white {
    background: #fff;
    color: #890c0c
}

.btn--line-primary {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #afbde1;
    color: #890c0c
}

.btn--line-primary svg {
    fill: #c5cad8
}

.btn--line-primary:hover {
    color: #fff;
    border-color: #8591c3;
    background: #8591c3
}

.btn--line-primary:hover svg {
    fill: #fff
}

.btn--shadow {
    -webkit-box-shadow: 0 11px 38px 0 rgba(195, 202, 227, .6);
    box-shadow: 0 11px 38px 0 rgba(195, 202, 227, .6)
}

.btn--small {
    font-size: 14px;
    padding: 0 25px;
    height: 45px
}

.btn--large {
    font-size: 30px;
    height: 70px;
    padding: 0 30px
}

.btn--large .btn__icon-wrap {
    width: 40px;
    height: 40px
}

.btn--large .btn__icon-wrap:last-child {
    margin-left: 25px
}

.btn--large .btn__icon-wrap svg {
    width: 20px;
    height: 20px
}

.btn__icon-wrap {
    background: #fff;
    width: 30px;
    height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    margin-right: -15px
}

.btn__icon-wrap svg {
    width: 16px;
    height: 16px;
    margin: 0 !important
}

.btn__icon-wrap:last-child {
    margin-left: 20px
}

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

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

@-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 {
    position: relative
}

.field_large input {
    height: 80px !important
}

.field>label:not(.select) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: .625rem;
    font-weight: 700;
    height: 18px
}

.field input,
.field textarea {
    border: 2px solid #e1e3ec;
    height: 43px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: #fff;
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: #000;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Nunito
}

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

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

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

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

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

.field input:focus,
.field input:hover,
.field textarea:focus,
.field textarea:hover {
    border-color: #9ba9d8
}

.field input.white-shadow,
.field textarea.white-shadow {
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    border-color: #e1e3ec;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.field input.white-shadow.bold,
.field textarea.white-shadow.bold {
    font-weight: 700;
    color: #890c0c
}

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

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

.field__group {
    position: relative;
    margin-bottom: 5px
}

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

.field__subtext-group {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.field__subtext-group input {
    padding-right: 60px
}

.field__subtext {
    font-family: Open Sans;
    top: 50%;
    font-size: 16px;
    line-height: 1;
    margin-top: -3px;
    font-weight: 700;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.field__text {
    position: absolute;
    left: 100%;
    white-space: nowrap;
    margin-left: 15px;
    color: rgba(0, 0, 0, .6);
    bottom: 11px
}

@media screen and (max-width:767px) {
    .field__text {
        position: relative;
        bottom: auto;
        left: auto;
        margin-left: 0;
        margin-top: 15px;
        width: 100%
    }
}

.field__text strong {
    font-weight: 700;
    font-size: 1.2em
}

.field__text small {
    font-size: .7em
}

.field p {
    font-size: 14px;
    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__content {
    width: 100%
}

.field__wallet {
    position: relative
}

.field__wallet-icon {
    position: absolute;
    height: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    bottom: 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
}

@media screen and (max-width:767px) {
    .field__wallet-icon img {
        height: 20px
    }
}

.field__wallet input {
    padding-right: 250px;
    height: 80px !important
}

@media screen and (max-width:767px) {
    .field__wallet input {
        padding-right: 110px;
        height: 60px !important
    }
}

@media screen and (max-width:360px) {
    .field__wallet input {
        padding-right: 75px
    }
}

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

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

.field--horizontal label {
    font-size: 15px;
    font-family: Open Sans;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0 !important;
    padding-right: 15px
}

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

.field--shadow>label:not(.select) {
    font-size: 15px;
    font-weight: 400;
    color: #890c0c
}

.field--shadow .field-and-button,
.field--shadow input {
    height: 50px
}

.field--shadow .field-and-button,
.field--shadow input,
.field--shadow textarea {
    border-color: #e1e3ec;
    background: #fff;
    font-weight: 600;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09)
}

.field--shadow .field-and-button[disabled],
.field--shadow input[disabled],
.field--shadow textarea[disabled] {
    color: #838383
}

.field--shadow .field-and-button[disabled]:focus,
.field--shadow .field-and-button[disabled]:hover,
.field--shadow input[disabled]:focus,
.field--shadow input[disabled]:hover,
.field--shadow textarea[disabled]:focus,
.field--shadow textarea[disabled]:hover {
    border-color: #e1e3ec
}

.field--shadow .field-and-button:not([disabled]):focus,
.field--shadow .field-and-button:not([disabled]):hover,
.field--shadow input:not([disabled]):focus,
.field--shadow input:not([disabled]):hover,
.field--shadow textarea:not([disabled]):focus,
.field--shadow textarea:not([disabled]):hover {
    border-color: #bfc6d8
}

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

.select:after {
    content: "";
    width: 9px;
    height: 14px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='97.285' height='97.285' fill='%231a535c' stroke='%231a535c'%3E%3Cpath d='M83.952 34.479L50.056.585a2 2 0 00-2.828 0L13.333 34.479a2 2 0 000 2.828l9.03 9.031a1.999 1.999 0 002.828 0l14.534-14.532v63.478a2 2 0 002 2H55.56a2 2 0 002-2V31.807l14.532 14.532c.75.75 2.078.75 2.828 0l9.031-9.031a2 2 0 00.001-2.829z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    margin-top: 2px;
    pointer-events: none
}

.select select {
    border: 2px solid #e1e3ec;
    height: 43px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: #fff;
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    color: #000;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Nunito;
    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: rgba(0, 0, 0, .5);
    font-weight: 500
}

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

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

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

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

.select select:focus,
.select select:hover {
    border-color: #9ba9d8
}

.select select.white-shadow {
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    border-color: #e1e3ec;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.select select.white-shadow.bold {
    font-weight: 700;
    color: #890c0c
}

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

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

.not-saving {
    width: 100%;
    background: #e2e6f6;
    font-size: 19px;
    font-weight: 700;
    border-radius: 8px;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    padding: 13px 20px;
    color: rgba(82, 95, 162, .5)
}

input+.not-saving {
    margin-top: 25px
}

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

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

.field-payment,
.field-select {
    border: 2px solid #e1e3ec;
    height: 43px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: #fff;
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: #000;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Nunito;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.field-payment::-webkit-input-placeholder,
.field-select::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-payment::-moz-placeholder,
.field-select::-moz-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-payment:-ms-input-placeholder,
.field-select:-ms-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-payment::-ms-input-placeholder,
.field-select::-ms-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-payment::placeholder,
.field-select::placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-payment:focus,
.field-payment:hover,
.field-select:focus,
.field-select:hover {
    border-color: #9ba9d8
}

.field-payment.white-shadow,
.field-select.white-shadow {
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    border-color: #e1e3ec;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.field-payment.white-shadow.bold,
.field-select.white-shadow.bold,
.typography b.field-payment.white-shadow,
.typography b.field-select.white-shadow,
.typography strong.field-payment.white-shadow,
.typography strong.field-select.white-shadow {
    font-weight: 700;
    color: #890c0c
}

.field-payment:last-child,
.field-select:last-child {
    margin-bottom: 0
}

.field-payment__after,
.field-select__after {
    padding-right: 30px
}

.field-payment .select2-selection__rendered,
.field-select .select2-selection__rendered {
    font-size: 17px;
    font-weight: 600;
    padding-left: 15px !important
}

.field-payment .select2-container,
.field-select .select2-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100% !important
}

.field-payment .select2-container .selection,
.field-select .select2-container .selection {
    height: 100%;
    display: block
}

.field-payment .select2-container .select2-selection,
.field-select .select2-container .select2-selection {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    border: none
}

.field-payment__icon,
.field-select__icon {
    margin-right: 20px;
    width: auto;
    max-height: 43px;
    border-radius: 50%;
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media screen and (max-width:767px) {

    .field-payment__icon,
    .field-select__icon {
        margin-right: 15px
    }
}

.field-payment__icon img,
.field-select__icon img {
    height: 38px
}

.field-payment--shadow,
.field-select--shadow {
    -webkit-box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.field-payment--shadow .select2-container--default .select2-selection--single .select2-selection__arrow:after,
.field-select--shadow .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    opacity: .5
}

.field-and-timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.field-and-timer>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.field-and-timer p {
    padding-left: 20px
}

.field-and-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #e1e3ec;
    height: 43px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    background: #fff;
    padding-left: 15px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: #000;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    font-family: Nunito;
    position: relative;
    padding-right: 12px
}

.field-and-button::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-and-button::-moz-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-and-button:-ms-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-and-button::-ms-input-placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-and-button::placeholder {
    color: rgba(0, 0, 0, .5);
    font-weight: 500
}

.field-and-button:focus,
.field-and-button:hover {
    border-color: #9ba9d8
}

.field-and-button.white-shadow {
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    border-color: #e1e3ec;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.field-and-button.white-shadow.bold,
.typography b.field-and-button.white-shadow,
.typography strong.field-and-button.white-shadow {
    font-weight: 700;
    color: #890c0c
}

.field-and-button input {
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding-left: 0;
    padding-right: 12px
}

.field-and-button .btn {
    height: 25px;
    font-size: 11px;
    padding: 0 13px;
    white-space: nowrap
}

.field-payment {
    height: 80px
}

.field-payment .select2-selection__rendered {
    opacity: 0
}

.field-payment .select2-container .select2-selection {
    padding-left: 68px !important
}

.checkbox,
.radio {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    font-family: Open Sans;
    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: 16px;
    -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;
    color: #000
}

.checkbox a,
.radio a {
    text-decoration: underline;
    color: inherit
}

.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: #890c0c
}

.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: 2px;
    left: 0;
    top: 0
}

.checkbox span:after,
.radio span:after {
    content: "";
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS0xLTFoNTgydjQwMkgtMXoiLz48cGF0aCBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMS42NTIgMy4yMTFhLjc0Ny43NDcgMCAwMC0xLjA2MSAwTDkuNDEgMTQuMzRhLjc0NC43NDQgMCAwMS0xLjA2MiAwTDMuNDQ5IDkuMzUxYS43NDMuNzQzIDAgMDAtMS4wNjIgMEwuMjIyIDExLjI5N2EuNzUxLjc1MSAwIDAwLjAwMSAxLjA3bDQuOTQgNS4xODRjLjI5Mi4yOTYuNzcxLjc3NiAxLjA2MiAxLjA3bDIuMTI0IDIuMTQxYS43NTEuNzUxIDAgMDAxLjA2MiAwbDE0LjM2Ni0xNC4zNGEuNzYyLjc2MiAwIDAwMC0xLjA3MWwtMi4xMjUtMi4xNHoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 70%;
    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: #890c0c;
    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
}

@media screen and (max-width:1100px) {
    .header .container-large {
        padding-right: 90px
    }
}

.header .nav-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 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:1100px) {
    .header .nav-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.header .select-language {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__logo {
    display: block;
    width: 100%;
    max-width: 193px;
    margin-right: 30px
}

.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:767px) {
    .header__row {
        height: 90px
    }
}

.header__nav {
    margin-right: auto;
    margin-left: auto
}

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

.header__nav li {
    margin: 0;
    padding: 5px 0;
    position: relative
}

.header__nav li:hover ul {
    display: block
}

.header__nav li ul {
    position: absolute;
    top: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none
}

.header__nav li ul li {
    margin: 0;
    padding: 3px 0
}

.header__nav li ul a {
    padding: 4px 16px;
    white-space: nowrap;
    color: #890c0c;
    border: 1px solid #890c0c;
    border-radius: 30px;
    font-size: 13px
}

.header__nav li ul a:hover {
    background: #cccfe2;
    border-color: #cccfe2;
    color: #fff
}

.header__nav li ul a:after {
    display: none
}

@media screen and (max-width:1370px) {
    .header__nav li {
        margin: 0 15px
    }
}

.header__nav li.is-active a {
    color: #fff;
    background: #890c0c
}

.header__nav li.is-active a:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.header__nav a {
    display: block;
    color: #890c0c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    padding: 6px 15px;
    border-radius: 30px;
    border: 2px solid rgba(0, 0, 0, 0)
}

.header__nav a:hover {
    background: #cfd5e9;
    color: #890c0c
}

.header__col-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__col-right .btn--light {
    padding: 0 33px
}

.header__col-right .btn--line-primary {
    color: #000
}

.header__col-right .btn--line-primary:hover {
    color: #fff
}

.header__col-right>* {
    margin: 0 31px 0 0
}

.header__col-right>.select-language {
    margin: 0 65px 0 0
}

@media screen and (max-width:1440px) {
    .header__col-right>.select-language {
        margin-right: 40px
    }
}

@media screen and (max-width:767px) {
    .header__col-right>.select-language {
        margin-right: 10px
    }
}

.header__col-right>:last-child {
    margin-right: 0
}

@media screen and (max-width:767px) {
    .header__col-right {
        display: none
    }
}

.follow .footer-title {
    margin-bottom: 30px
}

.follow__name {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 5px;
    font-size: 12px
}

.follow ul {
    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;
    max-width: 330px;
    margin-bottom: -15px
}

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

.follow ul li {
    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;
    width: 20%;
    margin-bottom: 15px
}

@media screen and (max-width:767px) {
    .follow ul li {
        margin: 0 12px 15px
    }
}

.follow a {
    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;
    width: 35px;
    height: 35px;
    position: relative;
    color: #4c69b4
}

.follow a:hover {
    color: #fff
}

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

.follow svg {
    width: 25px;
    height: 25px;
    fill: #5669b0
}

.footer-title {
    font-weight: 700;
    font-size: 23px
}

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

.banners-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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 330px;
    margin-bottom: -30px
}

.banners-list li {
    width: 50%;
    margin-bottom: 30px
}

.banners-list li:nth-child(2n) {
    padding-left: 15px
}

.footer {
    position: relative;
    color: #fff;
    font-family: Open Sans
}

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

.footer__copyright {
    line-height: 1.4
}

@media screen and (max-width:767px) {
    .footer__copyright {
        width: 100%;
        text-align: center
    }
}

@media screen and (max-width:767px) {
    .footer .banners-list {
        margin-left: auto;
        margin-right: auto
    }
}

.footer .footer-title {
    margin-top: -4px
}

.footer:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #8b99c2;
    left: 0
}

@media screen and (max-width:1100px) {
    .footer:after {
        right: 0
    }
}

.footer .follow {
    margin-bottom: 40px
}

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

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

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

.footer__row-nav {
    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:767px) {
    .footer__row-nav {
        text-align: left
    }
}

.footer__row-nav ul {
    -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:992px) {
    .footer__row-nav ul {
        width: calc(45.83333% - 30px)
    }
}

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

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

@media screen and (max-width:992px) {
    .footer__col:first-child {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:767px) {
    .footer__col:first-child {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:1100px) {
    .footer__col:first-child {
        margin-bottom: 60px
    }
}

@media screen and (max-width:767px) {
    .footer__col:first-child {
        margin-bottom: 30px
    }
}

.footer__col:last-child {
    -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:992px) {
    .footer__col:last-child {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:767px) {
    .footer__col:last-child {
        width: calc(100% - 30px)
    }
}

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

@media screen and (max-width:767px) {
    .footer__nav a {
        font-size: 14px;
        font-weight: 500
    }
}

.footer__nav a:hover {
    color: #5669b0
}

.footer__nav li {
    margin-bottom: 30px
}

@media screen and (max-width:767px) {
    .footer__nav li {
        margin-bottom: 15px
    }
}

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

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

.footer__nav--regular a {
    font-weight: 400
}

.footer__bottom {
    border-top: 1px solid #b9c2da;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    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
}

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

.footer__bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px
}

@media screen and (max-width:767px) {
    .footer__bottom ul {
        width: 100%;
        margin-top: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.footer__bottom ul li {
    margin: 0 0 0 60px
}

@media screen and (max-width:767px) {
    .footer__bottom ul li:first-child {
        margin-left: 0
    }
}

.footer__bottom ul a {
    color: #fff
}

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

@-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-body {
    overflow: hidden;
    position: relative;
    height: 100vh
}

.modal-body:before {
    position: fixed;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    visibility: visible;
    background: url(../images/bg/bg-auth.jpg) 50% no-repeat;
    background-size: cover;
    opacity: 1;
    -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: 100;
    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;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.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: 670px;
    opacity: 0
}

@media screen and (max-width:767px) {
    .modal-inner {
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        min-height: 100vh
    }
}

.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: -35px;
    cursor: pointer
}

.modal-inner__close svg {
    width: 24px;
    height: 24px;
    fill: #890c0c
}

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

@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%;
    padding-left: 35px !important;
    padding-right: 35px !important
}

@media screen and (max-width:767px) {
    .modal-inner {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

.modal-inner .road-map__date,
.modal-inner .title {
    font-size: 34px;
    text-align: center;
    color: #890c0c
}

@media screen and (max-width:767px) {

    .modal-inner .road-map__date,
    .modal-inner .title {
        font-size: 28px
    }
}

.modal-inner .field-payment {
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

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

.modal-inner .field>label:not(.select) {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px
}

.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: 0 30px
}

.modal-header__description {
    text-align: center;
    font-size: 15px;
    margin-top: -15px
}

.currency-and-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.currency-and-icon img {
    margin-right: 10px;
    height: 35px
}

.payment-confirm-list {
    margin-bottom: 30px
}

.payment-confirm-list .currency-and-icon img {
    margin-right: 0
}

.payment-confirm-list:last-child {
    margin-bottom: 0
}

.payment-confirm-list__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.payment-confirm-list__name:after {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 2px dotted #b6c1de;
    margin: 0 10px
}

.payment-confirm-list__value {
    color: #890c0c;
    font-weight: 700
}

.payment-confirm-list li {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    font-size: 20px;
    line-height: 1
}

@media screen and (max-width:767px) {
    .payment-confirm-list li {
        font-size: 17px
    }
}

.payment-confirm-list li:last-child {
    margin-bottom: 0
}

.modal-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-image: -o-linear-gradient(73deg, #6776b4 0, #93b3d4 100%);
    background-image: linear-gradient(17deg, #6776b4, #93b3d4);
    margin: 0 auto 30px
}

.modal-icon,
.modal-icon span {
    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
}

.modal-icon span {
    width: 80%;
    height: 80%;
    border-radius: inherit;
    border: 1px solid hsla(0, 0%, 100%, .3)
}

.modal-icon svg {
    width: 65%;
    height: 65%;
    fill: #c3d9f0
}

.modal-icon_success {
    background-image: -o-linear-gradient(73deg, #60cab2 0, #48af8c 100%);
    background-image: linear-gradient(17deg, #60cab2, #48af8c)
}

.modal-icon_success svg {
    fill: #fff
}

.modal-content {
    padding: 30px 30px 0
}

.modal-content .qr {
    margin: 0 auto 20px;
    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
}

@media screen and (max-width:360px) {
    .modal-content .qr img {
        max-width: 180px
    }
}

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

.modal-footer .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap
}

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

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

.field__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: 15px
}

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

    .field__top label {
        width: 100%;
        margin-bottom: 5px
    }

    .field__top label:last-child {
        margin-bottom: 0
    }
}

.field--error .field-group {
    border-color: red
}

.field--error .field-group input,
.field--error .field-group select {
    border: none
}

.labels-list {
    font-weight: 600;
    font-size: 13px
}

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

.labels-list li:first-child {
    margin-left: 0
}

.field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e1e3ec
}

.field-group,
.field-group:hover {
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.field-group:focus,
.field-group:hover {
    border-color: #9ba9d8
}

.field-group input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 15px;
    border-color: rgba(0, 0, 0, 0) !important
}

.field-group__subtext {
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 20px
}

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

.accordion {
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
    font-family: Open Sans
}

.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:1100px) {
    .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: #890c0c
}

.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__content {
    padding: 0 55px 40px 70px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    font-family: Open Sans;
    color: #7d7d7d
}

@media screen and (max-width:992px) {
    .accordion__content {
        padding-left: 30px
    }
}

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

.accordion__title {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    color: #890c0c;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 30px 70px;
    cursor: pointer;
    border: 1px solid #e8e8e9;
    border-radius: 15px;
    position: relative;
    font-family: Open Sans
}

@media screen and (max-width:992px) {
    .accordion__title {
        padding-left: 30px;
        padding-right: 50px
    }
}

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

.accordion__title:after {
    position: absolute;
    top: 50%;
    right: 25px;
    content: "";
    width: 26px;
    height: 13px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 248' fill='%23dedede'%3E%3Cpath d='M506.1 109.8L401.6 5.8c-7.8-7.8-20.5-7.8-28.3.1-7.8 7.8-7.8 20.5.1 28.3l70.2 69.8H20c-11 0-20 9-20 20s9 20 20 20h423.6l-70.2 69.8c-7.8 7.8-7.9 20.5-.1 28.3 7.8 7.8 20.5 7.9 28.3.1l104.5-104c7.9-7.9 7.8-20.6 0-28.4z'/%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__title:after {
        right: 15px
    }
}

.accordion__title:hover:after {
    background-image: svg-load("../icons/001-right-arrow.svg", fill=#890c0c);
    background-size: contain;
    background-repeat: no-repeat
}

.accordion__title>* {
    pointer-events: none
}

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

.accordion__item {
    border-radius: 15px;
    margin-bottom: 15px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.accordion__item:hover {
    background: #fff;
    color: #890c0c
}

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

.accordion__item.is-collapsed {
    background: #fff;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, .08);
    box-shadow: 0 0 40px rgba(0, 0, 0, .08)
}

.accordion__item.is-collapsed .accordion__title {
    font-size: 19px;
    border-color: rgba(0, 0, 0, 0);
    font-weight: 700
}

@media screen and (max-width:767px) {
    .accordion__item.is-collapsed .accordion__title {
        font-size: 14px
    }
}

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

.select2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 1em
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    overflow: hidden;
    z-index: 1051;
    -webkit-box-shadow: 0 0 20px 16px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px 16px rgba(0, 0, 0, .1)
}

.select2-results {
    display: block
}

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

.select2-results__option {
    padding: 10px 20px;
    font-weight: 500;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-results__option--selectable {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--open .select2-selection__arrow:after {
    -webkit-transform: translateY(-50%) rotate(180deg) !important;
    -ms-transform: translateY(-50%) rotate(180deg) !important;
    transform: translateY(-50%) rotate(180deg) !important
}

.select2-container--default .select2-selection--single {
    border-radius: 8px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px;
    padding-right: 0
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1px;
    width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "";
    width: 20px;
    height: 10px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492 290.6' fill='%237f7f7f'%3E%3Cpath d='M484.1 24.3L468 8.1C462.9 3 456.2.2 449 .2c-7.2 0-14 2.8-19 7.9L246.1 191.9l-184-184C57 2.8 50.2 0 43 0S29 2.8 24 7.9L7.9 24c-10.5 10.5-10.5 27.6 0 38L227 282c5.1 5.1 11.8 8.6 19.1 8.6h.1c7.2 0 14-3.6 19-8.6L484.1 62.6c5.1-5.1 7.9-12 7.9-19.2 0-7.2-2.8-14.1-7.9-19.1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #888;
    border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    padding: 0 4px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: #f1f1f1;
    color: #333;
    outline: none
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #000;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 220px;
    overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--group {
    padding: 0
}

.select2-container--default .select2-results__option--disabled {
    color: #999
}

.select2-container--default .select2-results__option--selected {
    background-color: #f2f4fc;
    color: #09459f
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #b6c2e4;
    color: #fff
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
    background-image: linear-gradient(180deg, #fff 50%, #eee);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
    background-image: linear-gradient(180deg, #eee 50%, #ccc);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: rgba(0, 0, 0, 0);
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #888;
    border-width: 0 4px 5px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -o-linear-gradient(top, #fff 0, #eee 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
    background-image: linear-gradient(180deg, #fff 0, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
    background-image: linear-gradient(180deg, #eee 50%, #fff);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: none
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0)
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
    padding: 0
}

.select2-container--classic .select2-results__option--disabled {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

.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: #890c0c
}

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

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

body,
html {
    min-height: 100vh;
    overflow-x: hidden;
    min-width: 320px
}

html {
    line-height: 1.3;
    font-size: 16px;
    color: #000
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Nunito;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: url(../images/bg/bg-page.jpg) top no-repeat #fff;
    background-size: cover;
    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-transparent {
    overflow: hidden;
    height: 100vh
}

body.overflow {
    overflow: hidden
}

@media screen and (max-width:992px) {
    body.overflow:before {
        opacity: 1;
        visibility: visible
    }
}

.is-has-intro {
    position: relative;
    background: url(../images/bg/bg-index.jpg) center top 3895px no-repeat
}

.is-has-intro .header {
    background: rgba(0, 0, 0, 0) !important
}

.is-has-intro:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 1900px;
    height: 2516px;
    background: url(../images/intro/bg.jpg) top no-repeat;
    background-size: cover;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media screen and (max-width:992px) {
    .is-has-intro:after {
        width: 1575px;
        background-size: contain
    }
}

.is-header-transparent .header {
    background: rgba(0, 0, 0, 0) !important
}

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

a {
    text-decoration: underline
}

i {
    font-family: Open Sans;
    font-style: italic
}

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

@media screen and (min-width:1100px) and (max-width:1500px) {
    .container {
        padding-left: 60px;
        padding-right: 60px
    }
}

.container-large {
    position: relative;
    max-width: 1284px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1432px
}

@media screen and (max-width:767px) {
    .container-large {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media screen and (min-width:992px) and (max-width:1500px) {
    .container-large {
        padding-left: 60px;
        padding-right: 60px
    }
}

.mobile-menu {
    overflow: hidden;
    overflow-y: auto;
    padding: 15px 0 30px;
    background: #fff;
    position: fixed;
    top: 130px;
    height: calc(100% - 130px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: none
}

@media screen and (max-width:767px) {
    .mobile-menu {
        top: 90px;
        height: calc(100% - 90px)
    }
}

.mobile-menu__top {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 5px
}

.mobile-menu__top-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mobile-menu__top-buttons>* {
    margin: 5px
}

.mobile-menu__top .btn {
    height: 45px;
    font-size: 13px !important;
    padding: 0 25px
}

@media screen and (max-width:767px) {
    .mobile-menu__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.mobile-menu__nav {
    margin-bottom: 15px;
    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: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 20px;
    color: #000;
    text-align: left
}

.mobile-menu__nav ul>li.is-active a {
    color: #890c0c
}

.mobile-menu__nav:last-of-type {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.mobile-menu .select-language {
    z-index: 5;
    margin-right: 20px
}

.mobile-menu .navigation-label {
    display: inline-block;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px)
}

.mobile-menu .social {
    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 li {
    margin: 0 10px
}

.mobile-menu .social-icons {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mobile-menu .container,
.mobile-menu .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mobile-menu .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (max-width:767px) {
    .mobile-menu .container {
        padding-left: 0;
        padding-right: 0
    }
}

.mobile-menu__balance {
    padding: 0 25px;
    margin-bottom: 10px
}

.mobile-menu__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15px;
    margin: 15px -5px
}

.mobile-menu__buttons>.btn {
    height: 40px;
    margin: 0 5px 10px
}

.mobile-menu .btn {
    font-size: 16px
}

@media screen and (max-width:360px) {
    .mobile-menu .btn {
        font-size: 14px
    }
}

.mobile-menu.open {
    display: none
}

@media screen and (max-width:1100px) {
    .mobile-menu.open {
        display: block
    }
}

section {
    margin: 9.375rem 0
}

section:first-child {
    margin-top: 0
}

@media screen and (max-width:992px) {
    section {
        margin: 7.5rem 0
    }
}

.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: 14px;
    font-weight: 700;
    border-radius: 8px;
    height: 40px;
    text-decoration: none;
    color: #890c0c
}

.select-language__link img {
    width: 25px;
    opacity: .5;
    margin-right: 10px
}

.select-language__link:hover img {
    opacity: 1
}

.select-language__dropdown {
    position: absolute;
    top: 100%;
    left: -12px;
    min-width: 125px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    -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 40px rgba(0, 0, 0, .18);
    box-shadow: 0 0 40px rgba(0, 0, 0, .18);
    margin-top: 3px
}

@media screen and (max-width:1100px) {
    .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, .35);
        box-shadow: 0 0 0 999px rgba(0, 0, 0, .35)
    }
}

.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;
    width: 100%;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #cfd5e9
}

.select-language__dropdown a img {
    width: 25px;
    margin-right: 10px
}

.select-language__dropdown a:hover {
    background: #cfd5e9
}

@media screen and (max-width:1100px) {
    .select-language__dropdown a {
        padding: 15px 20px;
        font-size: 16px;
        color: #000
    }
}

.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:1100px) {
    .select-language.open .select-language__dropdown {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
}

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

.road-map__date,
.title {
    font-size: 57px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px
}

.road-map__date:last-child,
.title:last-child {
    margin-bottom: 0
}

@media screen and (max-width:1680px) {

    .road-map__date,
    .title {
        font-size: 50px
    }
}

@media screen and (max-width:767px) {

    .road-map__date,
    .title {
        font-size: 32px
    }
}

@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.road-map__date,
.faq .title.text-center {
    margin-bottom: 55px
}

.page-article {
    padding: 3.75rem 0 8.75rem;
    background-repeat: no-repeat
}

.page-article section {
    margin: 80px 0
}

.page-article section:first-child {
    margin-top: 0
}

.page-article section:last-child {
    margin-bottom: 0
}

.page-article .road-map__date,
.page-article .title,
.page-article .typography {
    color: #890c0c
}

.page-article .typography .color-gray {
    opacity: .6
}

.page-article:last-child {
    margin-bottom: 0
}

@media screen and (max-width:992px) {
    .page-article {
        padding: 80px 0
    }
}

@media screen and (max-width:767px) {
    .page-article {
        padding: 40px 0 80px
    }
}

.trust-widget__image {
    display: block;
    margin: 0 auto
}

.media-about {
    background: #fff;
    padding: 11.25rem 0
}

@media screen and (max-width:1100px) {
    .media-about {
        padding: 120px 0
    }
}

@media screen and (max-width:992px) {
    .media-about {
        padding: 80px 0
    }
}

.media-about__bottom {
    margin-top: 95px
}

@media screen and (max-width:992px) {
    .media-about__bottom {
        margin-top: 80px
    }
}

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

@media screen and (max-width:767px) {
    .media-about .swiper-container {
        margin-right: -15px;
        margin-left: -15px;
        padding-left: 15px;
        padding-right: 15px
    }
}

.media-about .road-map__date,
.media-about .title {
    margin-bottom: 21px
}

.social-icons {
    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;
    margin-right: 20px
}

@media screen and (max-width:1100px) {
    .social-icons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.social-icons li {
    margin-bottom: 10px
}

.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: #99a6ca
}

.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;
    border-radius: 30px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #8c9ac2
}

.social-icons a .social-icons__name {
    opacity: 0;
    width: 0;
    margin: 0;
    padding-left: 0
}

@media screen and (max-width:1100px) {
    .social-icons a {
        position: relative
    }

    .social-icons a .social-icons__name {
        opacity: 1;
        width: auto;
        color: #000;
        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:1100px) {
    .social-icons a:hover {
        width: auto;
        background: #fff;
        -webkit-box-shadow: 0 0 0 2px #e7ebf6;
        box-shadow: 0 0 0 2px #e7ebf6
    }

    .social-icons a:hover .social-icons__name {
        opacity: 1;
        padding-left: 15px;
        font-size: 17px;
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        width: auto
    }

    .social-icons a:hover .social-icons__name+svg {
        margin-left: 10px
    }
}

.auth-layout {
    min-height: 100vh;
    background: url(../images/bg/bg-auth.jpg) top no-repeat #f4f4f4;
    background-size: cover;
    overflow: hidden
}

.auth-layout,
.auth-layout__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

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

.auth-layout__header {
    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: 0 100px;
    height: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative
}

@media screen and (max-width:992px) {
    .auth-layout__header {
        height: 90px
    }
}

.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;
    right: 0;
    height: 100%;
    width: 90px
}

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

@media screen and (max-width:992px) {
    .auth-layout__header {
        padding-left: 30px;
        padding-right: 90px
    }
}

@media screen and (max-width:767px) {
    .auth-layout__header {
        padding-left: 15px
    }
}

.auth-layout__header .btn--line-yellow {
    color: #000
}

.auth-layout__logo {
    display: block;
    width: 100%;
    max-width: 193px
}

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

.auth-layout__right .btn--light {
    padding: 0 33px
}

.auth-layout__right .btn--line-primary {
    color: #000
}

.auth-layout__right .btn--line-primary:hover {
    color: #fff
}

.auth-layout__right>* {
    margin: 0 31px 0 0
}

.auth-layout__right>.select-language {
    margin: 0 65px 0 0
}

@media screen and (max-width:1440px) {
    .auth-layout__right>.select-language {
        margin-right: 40px
    }
}

@media screen and (max-width:767px) {
    .auth-layout__right>.select-language {
        margin-right: 10px
    }
}

.auth-layout__right>:last-child {
    margin-right: 0
}

@media screen and (max-width:767px) {
    .auth-layout__right {
        display: none
    }
}

.auth-layout__right .btn--light {
    background: #c4d0e6
}

.auth-layout__content {
    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;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 60px 0
}

.wrapper {
    min-height: 100vh
}

.main-layout .header {
    position: relative;
    background: url(../images/bg/bg-header.jpg) center right 90px no-repeat;
    background-size: cover;
    z-index: 6
}

@media screen and (max-width:1100px) {
    .main-layout .header {
        background-position: 50%
    }
}

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

.main-layout {
    overflow: hidden;
    min-height: 100vh
}

.main-layout .bar {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    border-left: 1px solid #cbd9ef
}

@media screen and (max-width:1100px) {
    .main-layout .bar {
        display: none
    }
}

.main-layout footer,
.main-layout header,
.main-layout section {
    padding-right: 90px
}

@media screen and (max-width:1100px) {

    .main-layout footer,
    .main-layout header,
    .main-layout section {
        padding-right: 0
    }
}

.main-layout .footer {
    margin-top: auto
}

.main-layout .footer:after {
    right: 90px
}

@media screen and (max-width:1100px) {
    .main-layout .footer:after {
        right: 0
    }
}

.main-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-layout {
    min-height: 100vh
}

.profile-layout .typography big {
    font-size: 19px
}

.profile-layout .mobile-menu {
    top: 90px;
    height: calc(100% - 90px)
}

@media screen and (max-width:360px) {
    .profile-layout .mobile-menu .btn--small {
        font-size: 12px;
        padding: 0 10px;
        height: 40px
    }
}

.profile-layout .chart-block {
    border-radius: 40px;
    padding-bottom: 40px;
    padding-top: 30px
}

.profile-layout .chart-block__total {
    font-size: 21px;
    line-height: 1.6
}

.profile-layout .chart-block .chart-labels {
    margin-top: 20px
}

.profile-layout .chart-block .chart-labels .color-icon {
    width: 10px;
    height: 10px
}

.profile-layout .chart-block .chart-labels li {
    font-size: 13px;
    margin: 0 15px 20px
}

.profile-layout .road-map__date,
.profile-layout .title {
    font-size: 39px;
    color: #890c0c
}

.profile-layout .title--small {
    font-size: 29px
}

@media screen and (max-width:767px) {
    .profile-layout .title--small {
        font-size: 20px
    }
}

@media screen and (max-width:767px) {

    .profile-layout .road-map__date,
    .profile-layout .title {
        font-size: 30px
    }
}

.profile-layout__wrapper {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: url(../images/bg/profile.png) 100% 0 no-repeat #fff
}

.profile-layout .typography {
    font-size: 14px
}

.profile-layout .header {
    background: url(../images/bg/bg-header.jpg) 50% no-repeat;
    background-size: cover;
    z-index: 6
}

.profile-layout .header__logo {
    max-width: 144px
}

.profile-layout .header__row {
    height: 90px;
    padding-left: 40px;
    padding-right: 40px
}

@media screen and (max-width:767px) {
    .profile-layout .header__row {
        padding-left: 15px
    }
}

.profile-layout .header__col-left {
    width: 250px
}

@media screen and (max-width:1440px) {
    .profile-layout .header__col-left {
        width: 180px
    }
}

.profile-layout .header__col-center {
    -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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 50px
}

@media screen and (max-width:1440px) {
    .profile-layout .header__col-center {
        padding: 0 30px
    }
}

.profile-layout .header .btn,
.profile-layout .header__link {
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    padding: 0 15px;
    border-radius: 30px
}

.profile-layout .header__link {
    text-decoration: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #6570b6;
    background: #fff
}

.profile-layout .header__link:hover {
    background: #cfd5e9;
    color: #890c0c
}

@media screen and (max-width:1100px) {
    .profile-layout .header__link {
        display: none
    }
}

.profile-layout .header__col-right {
    position: relative;
    padding-right: 0;
    margin-right: 0
}

.profile-layout .header__col-right>.btn:not(:last-child) {
    margin: 0 15px 0 0
}

@media screen and (max-width:1100px) {
    .profile-layout .header__col-right {
        padding-right: 60px
    }
}

.profile-layout .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 0 30px;
    padding-right: 15px
}

@media screen and (max-width:1220px) {
    .profile-layout .header__buttons {
        margin-left: 15px
    }
}

@media screen and (max-width:1100px) {
    .profile-layout .header__buttons {
        display: none
    }
}

.profile-layout .header__buttons .btn {
    text-align: center
}

.profile-layout .header__buttons>* {
    margin: 0 15px 0 0
}

.profile-layout .header__buttons>:last-child {
    margin-right: 0
}

@media screen and (max-width:1100px) {
    .profile-layout .header .balance-component {
        display: none
    }
}

.profile-layout__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.profile-layout__sidebar {
    width: 290px;
    background: #fff;
    z-index: 2;
    border-right: 1px solid #e7ebf6
}

@media screen and (max-width:1440px) {
    .profile-layout__sidebar {
        width: 220px
    }
}

@media screen and (max-width:1100px) {
    .profile-layout__sidebar {
        display: none
    }
}

.profile-layout__content {
    width: calc(100% - 290px);
    padding-top: 30px;
    padding-bottom: 60px
}

@media screen and (max-width:1440px) {
    .profile-layout__content {
        width: calc(100% - 220px)
    }
}

@media screen and (max-width:1100px) {
    .profile-layout__content {
        width: 100%
    }
}

.profile-layout__content .container {
    margin: 0 auto 0 0;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1132px
}

@media screen and (max-width:992px) {
    .profile-layout__content .container {
        padding-left: 15px;
        padding-right: 15px
    }
}

.profile-layout section {
    padding-top: 0;
    padding-bottom: 0;
    margin: 50px 0
}

.profile-layout section:first-child {
    margin-top: 0
}

.profile-layout section.section-title {
    margin-bottom: 30px
}

.profile-layout section.section-title+section {
    margin-top: 0
}

@media screen and (max-width:767px) {
    .profile-layout section {
        margin: 30px 0
    }
}

.profile-layout .footer {
    margin-top: auto
}

.section-title--center {
    text-align: center
}

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

.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__vertical-link {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #00a470;
    border-radius: 30px;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto auto;
    width: 30px;
    line-height: 30px;
    padding: 13px 0;
    text-decoration: none;
    letter-spacing: -.25em
}

.bar__vertical-link.is-active,
.bar__vertical-link:hover {
    background: #890c0c;
    color: #fff
}

.bar .social,
.bar .social-icons {
    margin-bottom: 30px
}

.bar .social {
    margin-top: 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: #890c0c
}

.page-intro {
    margin-bottom: 80px;
    position: relative
}

.page-intro:after {
    content: "";
    position: absolute;
    width: calc(100% - 90px);
    height: 100%;
    display: block;
    right: 90px;
    bottom: 0;
    background: url(../images/bg/bg-page-intro.jpg) 50% no-repeat;
    background-size: cover
}

@media screen and (max-width:1100px) {
    .page-intro:after {
        width: 100%;
        right: 0
    }
}

.page-intro .road-map__date,
.page-intro .title {
    margin-bottom: 0
}

.page-intro+section {
    margin-top: 80px
}

.page-intro__buttons {
    margin-top: 30px
}

.page-intro__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 46px 0 112px;
    position: relative;
    z-index: 2
}

@media screen and (max-width:992px) {
    .page-intro__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

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

.page-intro__line {
    width: 180px;
    height: 2px;
    background: #890c0c;
    display: block;
    margin: 0 40px
}

@media screen and (max-width:767px) {
    .page-intro__line {
        margin: 10px 0;
        width: 80px
    }
}

.page-intro__description {
    font-size: 28px;
    max-width: 640px;
    font-family: Open Sans;
    line-height: 1.7;
    font-weight: 600;
    width: 50%
}

@media screen and (max-width:992px) {
    .page-intro__description {
        width: 100%;
        margin-top: 30px
    }
}

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

.page-intro--header-overlay:after {
    height: calc(100% + 130px)
}

.page-intro--accent:after {
    background: #cef0ed;
    background: -o-linear-gradient(310deg, #cef0ed 0, #dff5f3 30%, #c3ede9 60%);
    background: linear-gradient(140deg, #cef0ed, #dff5f3 30%, #c3ede9 60%)
}

.page-intro--accent .page-intro__line {
    background: #00a470
}

.page-intro--accent .road-map__date,
.page-intro--accent .title {
    color: #00a470
}

.page-intro--green-line .page-intro__line {
    background: #00a470
}

.sign {
    width: 100%;
    max-width: 674px
}

.modal-inner,
.sign__block {
    background: #fff;
    border-radius: 30px;
    padding: 39px 72px;
    -webkit-box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14)
}

@media screen and (max-width:767px) {

    .modal-inner,
    .sign__block {
        padding: 30px;
        border-radius: 0
    }
}

.sign__footer {
    text-align: center;
    margin-top: 35px
}

.sign .checkbox {
    font-size: 14px;
    margin-bottom: 15px
}

.sign .checkbox:first-of-type {
    margin-top: 30px
}

.sign .checkbox:last-of-type {
    margin-bottom: 0
}

.sign .field {
    margin-bottom: 15px
}

.sign .field label {
    font-size: 17px;
    font-weight: 500
}

.sign .field input {
    background: #fff;
    height: 43px;
    border-radius: 8px;
    -webkit-box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.sign .field input:focus,
.sign .field input:hover {
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.sign__top {
    margin-bottom: 37px;
    text-align: center
}

.sign .btn {
    padding: 0 53px
}

.sign__bottom {
    margin-top: 30px;
    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
}

@media screen and (max-width:992px) {
    .sign__bottom {
        margin-top: 40px
    }
}

.sign__description {
    font-size: 15px;
    font-family: Open Sans
}

.sign__title {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.1;
    color: #890c0c;
    margin-bottom: 13px
}

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

.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 90px;
    bottom: 0;
    background: #fff;
    background-repeat: no-repeat;
    color: #000;
    z-index: 20;
    overflow: hidden
}

@media screen and (max-width:1100px) {
    .mega-menu {
        display: none
    }
}

.mega-menu__slogan {
    color: #000;
    font-size: 17px;
    font-weight: 300;
    margin-left: 70px;
    position: absolute;
    top: 45px;
    left: 0;
    max-width: 135px
}

@media screen and (max-width:992px) {
    .mega-menu__slogan {
        font-size: 13px
    }
}

.mega-menu__logo {
    display: block;
    width: 100%;
    max-width: 193px;
    position: relative;
    z-index: 2
}

.mega-menu__logo img {
    width: 100%
}

.mega-menu__top {
    height: 130px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #cbd9ef
}

.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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mega-menu__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mega-menu__right .btn--light {
    padding: 0 33px
}

.mega-menu__right .btn--line-primary {
    color: #000
}

.mega-menu__right .btn--line-primary:hover {
    color: #fff
}

.mega-menu__right>* {
    margin: 0 31px 0 0
}

.mega-menu__right>.select-language {
    margin: 0 65px 0 0
}

@media screen and (max-width:1440px) {
    .mega-menu__right>.select-language {
        margin-right: 40px
    }
}

@media screen and (max-width:767px) {
    .mega-menu__right>.select-language {
        margin-right: 10px
    }
}

.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%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static
}

.mega-menu__nav {
    -webkit-columns: 2;
    -moz-columns: 2;
    column-count: 2
}

.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: #000;
    font-weight: 300;
    font-size: 33px;
    text-decoration: none
}

.mega-menu__nav a:hover {
    color: #890c0c
}

table strong {
    font-weight: 500
}

.dataTables_info {
    display: none
}

.pagination {
    margin-top: 20px
}

.pagination,
.pagination .pagination-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.pagination .pagination-button {
    color: #fff;
    background: #c2c9e5;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    width: 33px;
    height: 33px;
    -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;
    cursor: pointer
}

.pagination .pagination-button:hover {
    background: #b2b9d4
}

.pagination .pagination-button.active,
.pagination .pagination-button.current {
    border-color: #48af8c;
    background: #48af8c
}

.pagination .pagination-button:first-child,
.pagination .pagination-button:last-child {
    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: #fff;
    background: #c2c9e5;
    font-weight: 500;
    font-size: 14px;
    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;
    cursor: pointer
}

.dataTables_paginate .paginate_button:hover {
    background: #b2b9d4
}

.dataTables_paginate .paginate_button.active,
.dataTables_paginate .paginate_button.current {
    border-color: #48af8c;
    background: #48af8c
}

.table-filter-hidden .dataTables_filter,
.table-filter-hidden .dataTables_length {
    display: none
}

.intro-apps {
    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) {
    .intro-apps {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

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

.intro-apps img {
    width: 150px
}

@media screen and (max-width:767px) {
    .intro-apps img {
        max-width: 75%
    }
}

.intro-apps a:hover {
    opacity: .85
}

.intro-apps li {
    margin-right: 35px
}

@media screen and (max-width:767px) {
    .intro-apps li {
        width: 50%;
        margin-right: 0
    }
}

.intro-apps li:last-child {
    margin-right: 0;
    max-width: 135px;
    font-size: 14px;
    color: #7b87bd;
    font-weight: 600
}

@media screen and (max-width:767px) {
    .intro-apps li:last-child {
        max-width: 100%;
        width: 100%;
        margin-top: 25px
    }
}

.phone-composition {
    position: relative
}

.phone-composition img {
    position: relative;
    z-index: 1
}

.phone-composition:after {
    content: "";
    width: 103%;
    height: 132%;
    position: absolute;
    top: -9.3%;
    left: -5%;
    background: url(../images/intro/phone-shadow.png) 50% no-repeat;
    background-size: cover
}

.intro {
    padding-top: 90px
}

@media screen and (max-width:992px) {
    .intro {
        text-align: center;
        padding-top: 70px
    }
}

.intro .phone-composition {
    margin-right: -127px;
    margin-top: -35px;
    margin-left: auto;
    width: 100%;
    max-width: 509px
}

@media screen and (max-width:1680px) {
    .intro .phone-composition {
        margin-right: -30px;
        max-width: 31vw
    }
}

@media screen and (max-width:1380px) {
    .intro .phone-composition {
        max-width: 34vw
    }
}

@media screen and (max-width:1100px) {
    .intro .phone-composition {
        max-width: 40vw;
        margin-right: -5vw;
        margin-top: -15px
    }
}

.intro__title {
    font-size: 57px;
    line-height: 1.2;
    font-weight: 700
}

@media screen and (max-width:1680px) {
    .intro__title {
        font-size: 50px
    }
}

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

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

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

@media screen and (max-width:992px) {
    .intro__col {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:992px) {
    .intro__col:last-child {
        display: none
    }
}

.intro__content {
    max-width: 90%
}

@media screen and (max-width:1440px) {
    .intro__content {
        max-width: 100%
    }
}

.intro__content>* {
    margin-bottom: 30px
}

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

.intro__description {
    margin-bottom: 68px;
    font-weight: 600;
    font-size: 15px;
    max-width: 650px;
    line-height: 1.9;
    font-family: Open Sans
}

@media screen and (max-width:992px) {
    .intro__description {
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width:767px) {
    .intro__description {
        margin-bottom: 40px
    }
}

.intro__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 92px
}

@media screen and (max-width:992px) {
    .intro__buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 60px
    }
}

.intro__buttons .btn {
    white-space: nowrap
}

@media screen and (max-width:767px) {
    .intro__buttons .btn {
        font-size: 18px;
        padding: 0;
        width: calc(50% - 10px)
    }
}

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

.intro__buttons>* {
    margin: 0 30px 15px 0
}

@media screen and (max-width:767px) {
    .intro__buttons>* {
        margin: 0 5px
    }
}

.advantage-item {
    padding-left: 100px;
    position: relative
}

@media screen and (max-width:1280px) {
    .advantage-item {
        padding-left: 85px
    }
}

@media screen and (max-width:992px) {
    .advantage-item {
        padding-left: 0;
        text-align: center
    }
}

.advantage-item__top {
    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) {
    .advantage-item__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.advantage-item__title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 23px;
    max-width: 70%;
    display: block
}

@media screen and (max-width:1440px) {
    .advantage-item__title {
        font-size: 20px
    }
}

@media screen and (max-width:992px) {
    .advantage-item__title {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: 15px
    }
}

.advantage-item__content {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-family: Open Sans
}

@media screen and (max-width:1440px) {
    .advantage-item__content {
        font-size: 15px
    }
}

@media screen and (max-width:1100px) {
    .advantage-item__content {
        font-size: 14px
    }
}

.advantage-item__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    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: 1px solid #c5cad8;
    position: absolute;
    top: 0;
    left: 0
}

@media screen and (max-width:992px) {
    .advantage-item__icon {
        position: relative;
        top: auto;
        left: auto;
        margin-left: auto;
        margin-right: auto
    }
}

.advantage-item__icon:after {
    content: "";
    width: 130px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #c5cad8;
    z-index: -1
}

@media screen and (max-width:1280px) {
    .advantage-item__icon:after {
        width: 110px
    }
}

.advantage-item__icon svg {
    width: 35px;
    height: 35px;
    fill: #c5cad8
}

.advantages .slider-dots {
    margin-top: 30px;
    display: none
}

@media screen and (max-width:992px) {
    .advantages .slider-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.slider-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slider-dots .swiper-pagination-bullet-active {
    background: #890c0c
}

.earn {
    text-align: center
}

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

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

.earn__buttons>* {
    margin: 0 15px 15px
}

@media screen and (max-width:767px) {
    .earn__buttons>* {
        margin: 0 5px 15px
    }
}

.earn .road-map__date,
.earn .title {
    max-width: 615px;
    margin: 0 auto 50px
}

@media screen and (max-width:767px) {

    .earn .road-map__date,
    .earn .title {
        margin-bottom: 30px
    }
}

.earn__description {
    max-width: 1145px;
    font-size: 20px;
    font-family: Open Sans;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 88px;
    margin-left: auto;
    margin-right: auto
}

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

@media screen and (max-width:1100px) {
    .earn__description {
        margin-bottom: 60px
    }
}

@media screen and (max-width:992px) {
    .earn__description {
        margin-bottom: 40px;
        line-height: 1.7
    }
}

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

.title-logo {
    font-weight: 700;
    font-size: 38px;
    color: #890c0c
}

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

.title-logo img {
    margin-right: 15px
}

.why-list__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px
}

@media screen and (max-width:1100px) {
    .why-list__title {
        font-size: 20px
    }
}

.why-list__number {
    font-size: 52px;
    line-height: 1;
    color: #c5cad8;
    font-weight: 600;
    font-family: Fraunces;
    position: absolute;
    top: -7px;
    left: 0
}

.why-list__description {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-family: Open Sans
}

@media screen and (max-width:1440px) {
    .why-list__description {
        font-size: 15px
    }
}

@media screen and (max-width:1100px) {
    .why-list__description {
        font-size: 14px
    }
}

.why-list li {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px
}

@media screen and (max-width:1100px) {
    .why-list li {
        margin-bottom: 30px
    }
}

.why-list li:last-child {
    margin-bottom: 0
}

.notebook-media svg {
    overflow: visible;
    enable-background: new 0 0 1894.6 1113
}

.notebook-media__screen {
    fill: #fff
}

.why-choose__content {
    margin: 46px 0 0 auto;
    max-width: 445px
}

@media screen and (max-width:1280px) {
    .why-choose__content {
        margin-top: 0
    }
}

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

@media screen and (max-width:767px) {
    .why-choose__content {
        max-width: 100%
    }
}

.why-choose .title-logo {
    margin-bottom: 22px
}

@media screen and (max-width:992px) {
    .why-choose .title-logo {
        text-align: center
    }
}

.why-choose .road-map__date,
.why-choose .title {
    margin-bottom: 50px
}

@media screen and (max-width:992px) {

    .why-choose .road-map__date,
    .why-choose .title {
        text-align: center
    }
}

.why-choose__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -48px
}

@media screen and (max-width:992px) {
    .why-choose__row {
        margin-bottom: 0
    }
}

.why-choose__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.why-choose__col:first-child {
    width: calc(58.33333% - 30px)
}

@media screen and (max-width:992px) {
    .why-choose__col:first-child {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:1440px) {
    .why-choose__col:first-child {
        padding-right: 40px
    }
}

@media screen and (max-width:992px) {
    .why-choose__col:first-child {
        padding-right: 0;
        margin-bottom: 30px
    }
}

.why-choose__col:last-child {
    width: calc(41.66667% - 30px)
}

@media screen and (max-width:992px) {
    .why-choose__col:last-child {
        width: calc(100% - 30px)
    }
}

.why-choose .notebook-media {
    margin-right: -116px;
    float: right;
    width: 191%;
    margin-top: 8px
}

@media screen and (max-width:992px) {
    .why-choose .notebook-media {
        width: 100%;
        margin: 0 auto;
        float: none;
        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
    }

    .why-choose .notebook-media svg {
        width: 130%
    }
}

.statistics-list {
    font-size: 18px
}

@media screen and (max-width:1100px) {
    .statistics-list {
        font-size: 16px
    }
}

.statistics-list__rate {
    font-weight: 700;
    color: #48af8c;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.statistics-list__date {
    -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
}

.statistics-list__date:after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 2px dotted #b2b2b2;
    margin: 0 5px
}

.statistics-list svg {
    width: 17px;
    height: 17px;
    fill: #48af8c;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.statistics-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px
}

.statistics-list li:last-child {
    margin-bottom: 0
}

.statistics-list li.is-down .statistics-list__rate {
    color: #890c0c
}

.statistics-list li.is-down svg {
    fill: #890c0c;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1)
}

.plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.plan__symbol {
    font-size: 223px;
    font-weight: 700;
    line-height: 1;
    position: absolute !important;
    color: rgba(168, 177, 218, .52);
    top: -10px;
    right: -20px;
    z-index: 1 !important
}

@media screen and (max-width:1100px) {
    .plan__symbol {
        font-size: 180px
    }
}

.plan__description {
    max-width: 230px;
    font-size: 16px;
    line-height: 1.7;
    font-family: Open Sans;
    margin: 0 auto 20px
}

.plan__title {
    font-weight: 700;
    font-size: 38px;
    color: #48589a;
    margin-bottom: 30px
}

@media screen and (max-width:1100px) {
    .plan__title {
        font-size: 36px
    }
}

@media screen and (max-width:360px) {
    .plan__title {
        font-size: 28px
    }
}

.plan__card {
    margin-bottom: 73px;
    text-align: center;
    background-color: #ccc;
    background-size: cover;
    border-radius: 25px;
    padding: 188px 30px 40px;
    min-height: 454px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width:767px) {
    .plan__card {
        margin-bottom: 40px;
        padding-top: 150px
    }
}

.plan__card:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    right: 25px;
    background: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 100%, .5)), to(hsla(0, 0%, 100%, 0)));
    background: -o-linear-gradient(bottom, hsla(0, 0%, 100%, .5) 0, hsla(0, 0%, 100%, 0) 100%);
    background: linear-gradient(0deg, hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, 0))
}

.plan__card>* {
    position: relative;
    z-index: 2
}

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

.plan .statistics-list {
    margin: auto 25px 0
}

.plan .btn {
    font-size: 19px;
    height: 46px;
    border: 2px solid #fff;
    background: #6979bf;
    padding: 0 22px
}

.plan .btn:hover {
    background: #5769b7
}

.plan--light .plan__title {
    color: #d6d8e5
}

.plan--light .plan__symbol {
    color: rgba(168, 177, 218, .5);
    right: 0
}

.plan--light .btn {
    background: #a8b1da
}

.plan--light .btn:hover {
    background: #96a1d2
}

.plan--accent .plan__title {
    color: #287861
}

.plan--accent .plan__symbol {
    color: rgba(40, 120, 97, .3)
}

.plan--accent .btn {
    background: #00a671
}

.plan--accent .btn:hover {
    background: #008d60
}

.plans .swiper-container {
    overflow: visible;
    height: auto
}

.plans .swiper-slide {
    overflow: hidden;
    height: auto
}

.plans .swiper-wrapper {
    height: auto
}

.plans .road-map__date,
.plans .title {
    max-width: 615px;
    margin: 0 auto 60px;
    text-align: center
}

@media screen and (max-width:767px) {

    .plans .road-map__date,
    .plans .title {
        margin-bottom: 40px
    }
}

.plans .plan {
    height: 100%
}

.plans__description {
    max-width: 1145px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-family: Open Sans;
    margin-bottom: 90px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

@media screen and (max-width:992px) {
    .plans__description {
        line-height: 1.7
    }
}

@media screen and (max-width:767px) {
    .plans__description {
        margin-bottom: 40px;
        font-size: 16px
    }
}

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

.project-rates-item {
    text-align: center;
    font-weight: 700;
    font-size: 19px
}

.project-rates-item__count {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 55%);
    -ms-transform: translate(-50%, 55%);
    transform: translate(-50%, 55%);
    background: #d1d6e8;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    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;
    font-size: 22px;
    font-weight: 900
}

.project-rates-item__count span {
    line-height: 1;
    margin-top: 2px;
    margin-left: -6px
}

.project-rates-item__count sup {
    font-size: .5em;
    margin-left: 1px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px
}

.project-rates-item__icon {
    background: #fff;
    border: 3px solid #d1d6e8;
    border-radius: 50%;
    width: 155px;
    height: 155px;
    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: 0 auto 65px;
    position: relative
}

@media screen and (max-width:1100px) {
    .project-rates-item__icon {
        width: 130px;
        height: 130px
    }
}

.project-rates-item__icon:after {
    content: "";
    width: 240px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #c5cad8;
    z-index: -1
}

.project-rates-item__icon svg {
    width: 70px;
    height: 70px;
    fill: #c2c8e1
}

@media screen and (max-width:1100px) {
    .project-rates-item__icon svg {
        width: 50px;
        height: 50px
    }
}

.project-rates-item__name {
    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
}

@media screen and (max-width:767px) {
    .project-rates-item__name {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.project-rates-item .answer-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 10px;
    margin-top: 2px
}

@media screen and (max-width:767px) {
    .project-rates-item .answer-icon {
        margin-top: 0
    }
}

.project-rates .slider-dots {
    margin-top: 30px;
    display: none
}

@media screen and (max-width:992px) {
    .project-rates .slider-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.project-rates .swiper-slide:first-child .project-rates-item__count {
    background-image: -o-linear-gradient(73deg, #60cab2 0, #5de6c7 100%);
    background-image: linear-gradient(17deg, #60cab2, #5de6c7);
    color: #fff
}

.project-rates .swiper-slide:nth-child(2) .project-rates-item__count {
    background-image: -o-linear-gradient(73deg, #caceda 0, #a7b2bc 100%);
    background-image: linear-gradient(17deg, #caceda, #a7b2bc);
    color: #fff
}

.project-rates .swiper-slide:nth-child(3) .project-rates-item__count {
    background-image: -o-linear-gradient(73deg, #b8c5f6 0, #92a5eb 100%);
    background-image: linear-gradient(17deg, #b8c5f6, #92a5eb);
    color: #4357aa
}

.project-rates .swiper-slide:nth-child(4) .project-rates-item__count {
    background-image: -o-linear-gradient(73deg, #169b75 0, #287861 100%);
    background-image: linear-gradient(17deg, #169b75, #287861);
    color: #fff
}

.project-rates .swiper-slide:nth-child(5) .project-rates-item__count {
    background-image: -o-linear-gradient(73deg, #6776b4 0, #232e5b 100%);
    background-image: linear-gradient(17deg, #6776b4, #232e5b);
    color: #fff
}

.project-rates .swiper-container,
.we-invest svg {
    overflow: visible
}

.we-invest .st0 {
    opacity: .702
}

.we-invest .st1 {
    opacity: .302
}

.we-invest .road-map__date,
.we-invest .title {
    text-align: center;
    margin-bottom: 100px
}

@media screen and (max-width:767px) {

    .we-invest .road-map__date,
    .we-invest .title {
        margin-bottom: 60px
    }
}

.we-invest__icons {
    margin-bottom: 90px
}

@media screen and (max-width:767px) {
    .we-invest__icons {
        margin-bottom: 60px
    }
}

.we-invest__subtext {
    text-align: center;
    color: #890c0c;
    font-weight: 700;
    font-size: 43px
}

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

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

.stats-list__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    width: 67px
}

@media screen and (max-width:767px) {
    .stats-list__icon {
        margin-right: 0;
        margin-bottom: 15px
    }
}

.stats-list__value {
    color: #787878;
    font-size: 32px;
    font-weight: 300
}

.stats-list__value small {
    font-size: .6em;
    font-weight: 600;
    color: #6473b4
}

.stats-list__title {
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 2px
}

.stats-list li {
    -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-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:767px) {
    .stats-list li {
        width: calc(100% - 30px);
        margin-bottom: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }
}

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

.chart-labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -20px
}

.chart-labels .color-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.chart-labels li {
    margin: 0 30px 20px;
    font-weight: 600;
    font-size: 15px;
    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) {
    .chart-labels li {
        margin: 0 15px 20px
    }
}

@media screen and (max-width:767px) {
    .chart-labels li {
        font-size: 13px;
        margin: 0 5px 15px
    }
}

.chart-block {
    background: #fff;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    padding: 70px 30px;
    position: relative
}

.chart-block__title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: #890c0c;
    font-size: 29px
}

.chart-block .chart-labels {
    margin-top: 50px
}

@media screen and (max-width:767px) {
    .chart-block .chart-labels {
        margin-top: 30px
    }
}

.chart-block__inner {
    position: relative
}

.chart-block__total {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 30px;
    text-align: center;
    color: #890c0c;
    font-weight: 700;
    z-index: 2
}

@media screen and (max-width:1440px) {
    .chart-block__total {
        font-size: 2vw
    }
}

@media screen and (max-width:992px) {
    .chart-block__total {
        font-size: 5vw
    }
}

@media screen and (max-width:767px) {
    .chart-block {
        padding-left: 0;
        padding-right: 0
    }
}

.chart-block #chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.chart-block svg {
    overflow: visible;
    pointer-events: none
}

@media screen and (max-width:992px) {
    .traiding-statistics {
        text-align: center
    }
}

.traiding-statistics .chart-block {
    width: 147%;
    margin: 0 0 0 96px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative
}

@media screen and (max-width:1900px) {
    .traiding-statistics .chart-block {
        margin: 0;
        width: 120%
    }
}

@media screen and (max-width:1440px) {
    .traiding-statistics .chart-block {
        width: 100%;
        padding-left: 0;
        padding-right: 0
    }
}

@media screen and (max-width:767px) {
    .traiding-statistics .chart-block {
        padding: 20px 0 40px
    }
}

.traiding-statistics .chart-block:after {
    content: "";
    width: 9999px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    background: inherit
}

.traiding-statistics .road-map__date,
.traiding-statistics .title {
    margin-bottom: 50px
}

@media screen and (max-width:992px) {

    .traiding-statistics .road-map__date,
    .traiding-statistics .title {
        margin-bottom: 40px
    }
}

.traiding-statistics .title-logo {
    margin-bottom: 25px
}

@media screen and (max-width:992px) {
    .traiding-statistics .stats-list {
        text-align: left
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics .stats-list__icon {
        width: 40px
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics .stats-list__title {
        font-size: 16px
    }
}

@media screen and (max-width:1750px) {
    .traiding-statistics .stats-list__value {
        font-size: 27px
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics .stats-list__value {
        font-size: 22px
    }
}

.traiding-statistics .stats-list,
.traiding-statistics__description {
    margin-bottom: 82px
}

@media screen and (max-width:992px) {

    .traiding-statistics .stats-list,
    .traiding-statistics__description {
        margin-bottom: 60px
    }
}

@media screen and (max-width:767px) {

    .traiding-statistics .stats-list,
    .traiding-statistics__description {
        margin-bottom: 40px
    }
}

.traiding-statistics .stats-list:last-child,
.traiding-statistics__description:last-child {
    margin-bottom: 0
}

.traiding-statistics__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.traiding-statistics__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.traiding-statistics__col:first-child {
    width: calc(62.5% - 30px)
}

@media screen and (max-width:1750px) {
    .traiding-statistics__col:first-child {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics__col:first-child {
        width: calc(100% - 30px)
    }
}

.traiding-statistics__col:last-child {
    width: calc(37.5% - 30px)
}

@media screen and (max-width:1750px) {
    .traiding-statistics__col:last-child {
        width: calc(50% - 30px);
        padding-left: 40px
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics__col:last-child {
        width: calc(100% - 30px);
        padding-left: 0;
        margin-top: 60px
    }
}

.traiding-statistics-accent {
    position: relative
}

.traiding-statistics-accent:before {
    content: "";
    width: 69%;
    height: 100%;
    background: #cef0ed;
    background: -o-linear-gradient(310deg, #cef0ed 0, #dff5f3 30%, #c3ede9 60%);
    background: linear-gradient(140deg, #cef0ed, #dff5f3 30%, #c3ede9 60%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-top-right-radius: 110px
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent:before {
        width: 50%
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent {
        text-align: center
    }
}

.traiding-statistics-accent__content {
    padding: 84px 0 128px
}

@media screen and (max-width:1100px) {
    .traiding-statistics-accent__content {
        padding: 60px 0
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent__content {
        padding-bottom: 0
    }
}

.traiding-statistics-accent .chart-block {
    width: 147%;
    margin: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
    box-shadow: none
}

.traiding-statistics-accent .chart-block .chart-labels {
    position: relative;
    z-index: 2
}

.traiding-statistics-accent .chart-block .apexcharts-canvas {
    position: relative
}

.traiding-statistics-accent .chart-block .apexcharts-canvas svg {
    position: relative;
    z-index: 2
}

.traiding-statistics-accent .chart-block .apexcharts-canvas:after {
    content: "";
    width: 90%;
    padding-bottom: 90%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%
}

@media screen and (max-width:1600px) {
    .traiding-statistics-accent .chart-block {
        width: 100%;
        padding-left: 0;
        padding-right: 0
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent .chart-block {
        padding: 0 30px 60px
    }
}

.traiding-statistics-accent .chart-block:after {
    content: "";
    width: 9999px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    background: inherit
}

.traiding-statistics-accent .road-map__date,
.traiding-statistics-accent .title {
    margin-bottom: 50px
}

@media screen and (max-width:992px) {

    .traiding-statistics-accent .road-map__date,
    .traiding-statistics-accent .title {
        margin-bottom: 40px
    }
}

.traiding-statistics-accent .title-logo {
    margin-bottom: 25px;
    margin-top: 33px
}

@media screen and (max-width:1100px) {
    .traiding-statistics-accent .title-logo {
        margin-top: 0
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent .stats-list {
        text-align: left
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics-accent .stats-list__icon {
        width: 40px
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics-accent .stats-list__title {
        font-size: 16px
    }
}

@media screen and (max-width:1750px) {
    .traiding-statistics-accent .stats-list__value {
        font-size: 27px
    }
}

@media screen and (min-width:992px) and (max-width:1750px) {
    .traiding-statistics-accent .stats-list__value {
        font-size: 22px
    }
}

@media screen and (max-width:1280px) {
    .traiding-statistics-accent .typography {
        font-size: 14px
    }
}

.traiding-statistics-accent__description {
    margin-bottom: 48px
}

.traiding-statistics-accent__description:last-child {
    margin-bottom: 0
}

.traiding-statistics-accent__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.traiding-statistics-accent__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.traiding-statistics-accent__col:first-child {
    width: calc(62.5% - 30px)
}

@media screen and (max-width:1450px) {
    .traiding-statistics-accent__col:first-child {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent__col:first-child {
        width: calc(100% - 30px)
    }
}

.traiding-statistics-accent__col:last-child {
    width: calc(37.5% - 30px)
}

@media screen and (max-width:1450px) {
    .traiding-statistics-accent__col:last-child {
        width: calc(50% - 30px);
        padding-left: 40px
    }
}

@media screen and (max-width:992px) {
    .traiding-statistics-accent__col:last-child {
        width: calc(100% - 30px);
        padding-left: 0;
        margin-top: 60px
    }
}

.apps__description {
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    font-family: Open Sans;
    color: #c5cad8
}

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

.apps img {
    height: 58px
}

@media screen and (max-width:767px) {
    .apps img {
        height: 40px;
        max-width: 100%
    }
}

.apps ul {
    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: 49px
}

@media screen and (max-width:767px) {
    .apps ul {
        margin-bottom: 25px
    }
}

.apps ul li {
    margin: 0 20px 20px
}

@media screen and (max-width:767px) {
    .apps ul li {
        width: calc(50% - 10px);
        margin: 0 5px 15px
    }
}

.mobile-phones {
    position: relative;
    max-width: 636px
}

.mobile-phones img {
    position: relative;
    z-index: 2
}

.mobile-phones:after {
    content: "";
    width: 150%;
    height: 137%;
    position: absolute;
    top: -8.3%;
    left: -3%;
    background: url(../images/mobile/phones-shadow.png) 50% no-repeat;
    background-size: cover
}

.mobile .road-map__date,
.mobile .title {
    margin-bottom: 53px
}

@media screen and (max-width:992px) {

    .mobile .road-map__date,
    .mobile .title {
        margin-bottom: 30px
    }
}

.mobile .title-logo {
    margin-bottom: 28px;
    margin-top: 30px
}

.mobile .mobile-phones {
    margin: -11% 0 0 -12%;
    pointer-events: none
}

@media screen and (max-width:1600px) {
    .mobile .mobile-phones {
        margin: -11% 0 0 -2%
    }
}

@media screen and (max-width:1100px) {
    .mobile .mobile-phones {
        max-width: 430px;
        margin: -11% 0 0
    }
}

@media screen and (max-width:992px) {
    .mobile .mobile-phones {
        max-width: 400px;
        margin: 0 auto 30px
    }
}

.mobile__description {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 70px;
    font-family: Open Sans
}

@media screen and (max-width:1440px) {
    .mobile__description {
        font-size: 15px
    }
}

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

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

@media screen and (max-width:992px) {
    .mobile__description {
        margin-bottom: 40px
    }
}

.mobile__content {
    text-align: center;
    max-width: 516px;
    margin-left: auto
}

@media screen and (max-width:992px) {
    .mobile__content {
        margin: 0 auto;
        max-width: 100%
    }
}

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

.mobile__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) {
    .mobile__col {
        width: calc(100% - 30px)
    }
}

.watch {
    padding-bottom: 17%;
    background: url(../images/watch/bg.png) bottom right 91px no-repeat;
    background-size: 100% 75%
}

@media screen and (max-width:1100px) {
    .watch {
        background-position: 100% 100%;
        background-size: 107%
    }
}

@media screen and (max-width:992px) {
    .watch {
        text-align: center;
        padding-bottom: 30%;
        background-size: 250%
    }
}

@media screen and (max-width:992px) and (max-width:530px) {
    .watch {
        background-size: 360%;
        padding-bottom: 35%
    }
}

@media screen and (max-width:992px) and (max-width:360px) {
    .watch {
        background-size: 400%
    }
}

.watch .typography {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-family: Open Sans;
    font-size: 20px;
    max-width: 370px
}

@media screen and (max-width:1440px) {
    .watch .typography {
        font-size: 15px
    }
}

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

@media screen and (max-width:992px) {
    .watch .typography {
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
        color: #fff
    }
}

.watch__content {
    max-width: 79%;
    margin-left: auto;
    padding-top: 12px;
    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
}

@media screen and (max-width:1280px) {
    .watch__content {
        max-width: 100%
    }
}

.watch__content .road-map__date,
.watch__content .title {
    margin-top: auto;
    color: #fff
}

.watch__content .road-map__date .color-primary,
.watch__content .title .color-primary {
    color: #afbde1
}

.watch .video-item {
    margin-bottom: 75px
}

@media screen and (max-width:1280px) {
    .watch .video-item {
        max-width: 90%
    }
}

@media screen and (max-width:992px) {
    .watch .video-item {
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width:767px) {
    .watch .video-item {
        max-width: 100%;
        margin-bottom: 40px
    }
}

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

.watch__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.watch__col:first-child {
    width: calc(58.33333% - 30px)
}

@media screen and (max-width:992px) {
    .watch__col:first-child {
        width: calc(100% - 30px)
    }
}

.watch__col:last-child {
    width: calc(41.66667% - 30px)
}

@media screen and (max-width:992px) {
    .watch__col:last-child {
        width: calc(100% - 30px)
    }
}

.leader-item {
    text-align: center
}

@media screen and (max-width:767px) {
    .leader-item {
        max-width: 240px
    }
}

@media screen and (max-width:360px) {
    .leader-item {
        max-width: 220px
    }
}

.leader-item__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px
}

.leader-item__subtitle {
    font-size: 14px;
    font-weight: 300
}

.leader-item__image {
    margin-bottom: 30px;
    position: relative
}

.leader-item__image:after {
    content: "";
    width: 100%;
    height: 292px;
    display: block;
    background: #dee2e8;
    border-radius: 50px
}

.leader-item__image img {
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.section-line {
    padding: 15px 0
}

@media screen and (max-width:992px) {
    .section-line {
        padding: 0
    }
}

@media screen and (max-width:767px) {
    .section-line {
        display: none
    }
}

.section-line:after {
    content: "";
    width: 75%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    height: 17px;
    background: url(../images/decor/line.png) 50%;
    background-repeat: repeat-x;
    background-size: contain
}

.leaders-slider-arrow {
    cursor: pointer
}

.leaders-slider-arrow svg {
    width: 68px;
    height: 30px;
    fill: #890c0c
}

@media screen and (max-width:992px) {
    .leaders {
        text-align: center
    }
}

.leaders .slider-dots {
    margin-top: 30px;
    display: none
}

@media screen and (max-width:992px) {
    .leaders .slider-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.leaders .leader-item__image {
    margin-bottom: 75px
}

@media screen and (max-width:1100px) {
    .leaders .leader-item__image {
        margin-bottom: 30px
    }
}

@media screen and (max-width:1250px) {
    .leaders .leader-item__image:after {
        height: 21vw
    }
}

@media screen and (max-width:992px) {
    .leaders .leader-item__image:after {
        height: 292px
    }
}

@media screen and (max-width:360px) {
    .leaders .leader-item__image:after {
        height: 250px
    }
}

.leaders .leaders-slider-arrow {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -65px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    margin-left: 75px
}

@media screen and (max-width:1680px) {
    .leaders .leaders-slider-arrow {
        right: 0;
        left: auto;
        margin-left: 0
    }
}

@media screen and (max-width:1100px) {
    .leaders .leaders-slider-arrow {
        margin-top: -4vw
    }

    .leaders .leaders-slider-arrow svg {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8)
    }
}

@media screen and (max-width:992px) {
    .leaders .leaders-slider-arrow {
        display: none
    }
}

@media screen and (max-width:767px) {
    .leaders .leader-item {
        width: 250px;
        margin: 0 auto
    }
}

.leaders .road-map__date,
.leaders .title {
    margin-bottom: 50px
}

@media screen and (max-width:1100px) {

    .leaders .road-map__date,
    .leaders .title {
        margin-bottom: 30px
    }
}

@media screen and (max-width:992px) {

    .leaders .road-map__date br,
    .leaders .title br {
        display: none
    }
}

.leaders .swiper-container {
    overflow: visible;
    max-width: 780px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 20px
}

@media screen and (max-width:1680px) {
    .leaders .swiper-container {
        padding-right: 100px;
        margin-top: 40px
    }
}

@media screen and (max-width:992px) {
    .leaders .swiper-container {
        padding-right: 0
    }
}

.leaders .swiper-slide {
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 0;
    pointer-events: none
}

.leaders .swiper-slide:nth-child(2n) .leader-item__image:after {
    background: #b2bad3
}

.leaders .swiper-slide:nth-child(3n) .leader-item__image:after {
    background: #bee2d7
}

@media screen and (max-width:992px) {
    .leaders .swiper-slide {
        opacity: 1
    }
}

.leaders .swiper-slide.swiper-slide-visible {
    opacity: 1;
    pointer-events: all
}

.leaders .btn {
    width: 100%;
    max-width: 335px;
    white-space: nowrap
}

@media screen and (max-width:1100px) {
    .leaders .btn {
        padding: 0 20px
    }
}

.leaders__description {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-family: Open Sans;
    line-height: 1.7;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 60px
}

@media screen and (max-width:1440px) {
    .leaders__description {
        font-size: 15px
    }
}

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

@media screen and (max-width:992px) {
    .leaders__description {
        margin-bottom: 40px
    }
}

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

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

.leaders__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.leaders__col:first-child {
    width: calc(29.16667% - 30px);
    position: relative;
    z-index: 2
}

@media screen and (max-width:1100px) {
    .leaders__col:first-child {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width:992px) {
    .leaders__col:first-child {
        width: calc(100% - 30px);
        margin-bottom: 80px
    }
}

.leaders__col:last-child {
    width: calc(70.83333% - 30px)
}

@media screen and (max-width:1100px) {
    .leaders__col:last-child {
        width: calc(66.66667% - 30px)
    }
}

@media screen and (max-width:992px) {
    .leaders__col:last-child {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:767px) {
    .leaders-items {
        text-align: center
    }
}

.leaders-items .road-map__date,
.leaders-items .title {
    margin-bottom: 50px
}

@media screen and (max-width:767px) {

    .leaders-items .road-map__date,
    .leaders-items .title {
        margin-bottom: 30px
    }
}

.leaders-items .typography {
    margin-bottom: 70px
}

@media screen and (max-width:767px) {
    .leaders-items .typography {
        margin-bottom: 40px
    }
}

.leaders-items .leader-item {
    padding-top: 60px
}

@media screen and (max-width:992px) {
    .leaders-items .leader-item {
        padding-top: 5vw
    }
}

@media screen and (max-width:767px) {
    .leaders-items .leader-item {
        padding-top: 13vw
    }
}

@media screen and (max-width:1380px) {
    .leaders-items .leader-item__image:after {
        height: 19vw;
        border-radius: 3.5vw
    }
}

@media screen and (max-width:992px) {
    .leaders-items .leader-item__image:after {
        height: 40vw;
        border-radius: 7vw
    }
}

@media screen and (max-width:767px) {
    .leaders-items .leader-item__image:after {
        height: 55vw;
        border-radius: 10vw
    }
}

.leaders-items__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: -30px
}

@media screen and (max-width:767px) {
    .leaders-items__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: -50px
    }
}

.leaders-items__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(20% - 40px);
    margin-bottom: 50px
}

.leaders-items__col:nth-child(2) .leader-item__image:after {
    background: #b2bad3
}

.leaders-items__col:nth-child(3) .leader-item__image:after {
    background: #bbe1d5
}

.leaders-items__col:nth-child(5) .leader-item__image:after {
    background: #949fca
}

.leaders-items__col:nth-child(6) .leader-item__image:after {
    background: #8ed8c8
}

.leaders-items__col:nth-child(7) .leader-item__image:after,
.leaders-items__col:nth-child(9) .leader-item__image:after {
    background: #e7ecfa
}

@media screen and (max-width:992px) {
    .leaders-items__col {
        width: calc(33.33333% - 40px)
    }
}

@media screen and (max-width:767px) {
    .leaders-items__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(50% - 30px)
    }
}

.road-menu li {
    margin-bottom: 30px
}

.road-menu li:last-child {
    margin-bottom: 0
}

.road-menu li.is-active a {
    background: #58a6ad
}

.road-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 33px;
    font-weight: 700;
    padding: 7px 0;
    max-width: 210px;
    width: 100%;
    display: block;
    text-align: center;
    background: #6473b4;
    border-radius: 30px;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease
}

@media screen and (max-width:1100px) {
    .road-menu a {
        font-size: 28px
    }
}

.road-menu a:hover {
    background: #7583bc
}

.road-map-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    position: relative
}

.road-map-indicator:after,
.road-map-indicator:before {
    content: "";
    width: 150px;
    height: 2px;
    position: absolute;
    top: 74px
}

@media screen and (max-width:1780px) {

    .road-map-indicator:after,
    .road-map-indicator:before {
        width: 5vw
    }
}

@media screen and (max-width:1600px) {

    .road-map-indicator:after,
    .road-map-indicator:before {
        display: none
    }
}

.road-map-indicator:after {
    margin-right: -1px;
    left: 100%;
    background: #868fbe;
    background: -webkit-gradient(linear, right top, left top, from(rgba(134, 143, 190, 0)), to(#868fbe));
    background: -o-linear-gradient(right, rgba(134, 143, 190, 0) 0, #868fbe 100%);
    background: linear-gradient(-90deg, rgba(134, 143, 190, 0), #868fbe)
}

.road-map-indicator:before {
    margin-left: -1px;
    right: 100%;
    background: #868fbe;
    background: -webkit-gradient(linear, left top, right top, from(rgba(134, 143, 190, 0)), to(#868fbe));
    background: -o-linear-gradient(left, rgba(134, 143, 190, 0) 0, #868fbe 100%);
    background: linear-gradient(90deg, rgba(134, 143, 190, 0), #868fbe)
}

@media screen and (max-width:767px) {
    .road-map-indicator {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.road-map-indicator li {
    padding-top: 60px;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .road-map-indicator li {
        width: 16.6666%;
        -webkit-box-flex: initial;
        -ms-flex-positive: initial;
        flex-grow: 0;
        margin-bottom: 40px;
        padding-top: 40px
    }
}

.road-map-indicator li.is-active .road-map-indicator__circle {
    border: none;
    position: relative
}

.road-map-indicator li.is-active .road-map-indicator__circle:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #58a6ad;
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media screen and (max-width:1100px) {
    .road-map-indicator li.is-active .road-map-indicator__circle:after {
        width: 13px;
        height: 13px
    }
}

.road-map-indicator__title {
    font-weight: 700;
    position: absolute;
    top: 0;
    margin-bottom: 30px;
    font-size: 22px;
    width: 100%
}

@media screen and (max-width:1100px) {
    .road-map-indicator__title {
        font-size: 18px
    }
}

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

.road-map-indicator__subtext {
    font-size: 20px;
    font-weight: 300;
    color: #858cbb;
    margin-top: 30px
}

@media screen and (max-width:1100px) {
    .road-map-indicator__subtext {
        font-size: 14px
    }
}

@media screen and (max-width:767px) {
    .road-map-indicator__subtext {
        margin-top: 15px
    }
}

.road-map-indicator__circle {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
    background: #890c0c
}

@media screen and (max-width:1100px) {
    .road-map-indicator__circle {
        width: 22px;
        height: 22px
    }
}

.road-map-indicator__circle:before {
    content: "";
    width: 500px;
    height: 2px;
    background: #868fbe;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.road-map {
    color: #fff;
    margin: 0;
    padding: 135px 0;
    position: relative;
    overflow: hidden
}

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

@media screen and (max-width:767px) {
    .road-map .road-menu li {
        margin-bottom: 10px
    }
}

@media screen and (max-width:767px) {
    .road-map .road-menu a {
        max-width: 100%
    }
}

.road-map .container,
.road-map .container-large {
    position: relative;
    z-index: 2
}

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

.road-map__sidebar {
    -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) {
    .road-map__sidebar {
        width: calc(100% - 30px)
    }
}

.road-map__content {
    -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) {
    .road-map__content {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:1280px) {
    .road-map__content {
        padding-left: 30px
    }
}

@media screen and (max-width:767px) {
    .road-map__content {
        padding-left: 0;
        margin-top: 40px
    }
}

.road-map__date {
    margin-bottom: 60px
}

.road-map .road-map-indicator {
    margin-bottom: 100px
}

@media screen and (max-width:767px) {
    .road-map .road-map-indicator {
        margin-bottom: 20px
    }
}

.road-map:after {
    content: "";
    position: absolute;
    width: calc(100% - 90px);
    height: 100%;
    display: block;
    right: 90px;
    bottom: 0;
    background: url(../images/road-map/bg.png) 0 0 no-repeat #890c0c;
    background-size: 1813px
}

@media screen and (max-width:1100px) {
    .road-map:after {
        width: 100%;
        right: 0;
        background-size: 150%
    }
}

.road-map .typography ul li {
    margin-bottom: 20px;
    padding-left: 25px
}

.road-map .typography ul li:last-child {
    margin-bottom: 0
}

.road-map .typography ul li:before {
    width: 12px
}

@media screen and (max-width:992px) {
    .watch-presentation {
        text-align: center
    }
}

.watch-presentation .road-map__date,
.watch-presentation .title {
    margin-bottom: 270px;
    padding: 120px 0 0
}

@media screen and (max-width:1360px) {

    .watch-presentation .road-map__date,
    .watch-presentation .title {
        padding-top: 40px
    }
}

@media screen and (max-width:992px) {

    .watch-presentation .road-map__date,
    .watch-presentation .title {
        padding-top: 0;
        margin-bottom: 40px
    }
}

.watch-presentation .video-item {
    -webkit-box-shadow: 15px 15px 100px rgba(0, 0, 0, .1);
    box-shadow: 15px 15px 100px rgba(0, 0, 0, .1)
}

.watch-presentation .video-item:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.051 30.051' fill='%23fff'%3E%3Cpath d='M19.982 14.438l-6.24-4.536a.752.752 0 00-1.195.607v9.069a.75.75 0 001.195.606l6.24-4.532a.747.747 0 000-1.214z'/%3E%3Cpath d='M15.026.002C6.726.002 0 6.728 0 15.028c0 8.297 6.726 15.021 15.026 15.021 8.298 0 15.025-6.725 15.025-15.021.001-8.3-6.727-15.026-15.025-15.026zm0 27.54c-6.912 0-12.516-5.601-12.516-12.514 0-6.91 5.604-12.518 12.516-12.518 6.911 0 12.514 5.607 12.514 12.518.001 6.913-5.603 12.514-12.514 12.514z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50%
}

.watch-presentation__text {
    position: relative;
    margin-top: -205px;
    z-index: -1
}

@media screen and (max-width:992px) {
    .watch-presentation__text {
        margin-top: -7vw
    }
}

@media screen and (max-width:767px) {
    .watch-presentation__text {
        margin-top: -5vw;
        margin-top: -30px
    }
}

.watch-presentation__text .watch-presentation__content {
    position: relative;
    z-index: 2
}

.watch-presentation__text:before {
    content: "";
    display: block;
    position: absolute;
    right: 49%;
    top: 50%;
    background: url(../images/about/aribuka-light.png) 50% no-repeat;
    background-size: contain;
    width: 35.5%;
    height: 82.15%;
    pointer-events: none;
    z-index: 2
}

@media screen and (max-width:992px) {
    .watch-presentation__text:before {
        width: 60vw;
        height: 40vw
    }
}

@media screen and (max-width:767px) {
    .watch-presentation__text:before {
        width: 120vw;
        height: 100vw
    }
}

.watch-presentation__text:after {
    content: "";
    width: 72%;
    height: 100%;
    background: #eaeefd;
    background: -webkit-gradient(linear, left top, left bottom, from(#eaeefd), to(#d9e0fa));
    background: -o-linear-gradient(top, #eaeefd 0, #d9e0fa 100%);
    background: linear-gradient(180deg, #eaeefd, #d9e0fa);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 110px
}

.watch-presentation .typography {
    padding: 80px 0;
    font-size: 20px
}

@media screen and (max-width:1100px) {
    .watch-presentation .typography {
        font-size: 17px
    }
}

@media screen and (max-width:992px) {
    .watch-presentation .typography {
        padding: 15vw 0 10vw
    }
}

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

.watch-presentation__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    z-index: 2
}

.watch-presentation__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.watch-presentation__col:first-child {
    width: calc(57.5% - 30px)
}

@media screen and (max-width:1360px) {
    .watch-presentation__col:first-child {
        padding-right: 40px
    }
}

@media screen and (max-width:992px) {
    .watch-presentation__col:first-child {
        width: calc(100% - 30px);
        padding-right: 0
    }
}

.watch-presentation__col:last-child {
    width: calc(42.5% - 30px)
}

@media screen and (max-width:992px) {
    .watch-presentation__col:last-child {
        width: calc(100% - 30px);
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
}

.watch-presentation__content {
    width: 380px;
    margin: 0 75px 0 auto;
    position: relative
}

@media screen and (max-width:992px) {
    .watch-presentation__content {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%
    }
}

.about-us .road-map__date,
.about-us .title {
    margin-bottom: 48px
}

.about-us__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 55px;
    padding-top: 73px
}

@media screen and (max-width:1100px) {
    .about-us__top {
        padding-top: 0
    }
}

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

@media screen and (max-width:992px) {
    .about-us__top-content {
        width: calc(100% - 30px)
    }
}

.about-us__top-content .typography {
    line-height: 1.85;
    width: 100%
}

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

@media screen and (max-width:992px) {
    .about-us__aribuka {
        width: calc(100% - 30px)
    }
}

.about-us__aribuka img {
    max-width: none;
    margin: -33% 0 0
}

@media screen and (max-width:992px) {
    .about-us__aribuka img {
        margin: 30px 0 0;
        max-width: 100%
    }
}

.about-us__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -45px;
    margin-right: -45px
}

@media screen and (max-width:1280px) {
    .about-us__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -20px;
        margin-right: -20px
    }
}

.about-us__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 45px;
    margin-right: 45px;
    width: calc(50% - 90px);
    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:1280px) {
    .about-us__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(50% - 40px)
    }
}

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

    .about-us__col:last-child {
        margin-bottom: 0
    }
}

.about-us__address {
    font-weight: 600;
    line-height: 1.5;
    font-size: 23px;
    margin-top: auto
}

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

.about-us__address strong {
    font-weight: 700
}

.about-us .typography {
    font-size: 17px;
    margin-bottom: 30px
}

.about-us .typography:last-child {
    margin-bottom: 0
}

@media screen and (max-width:1100px) {
    .about-us .typography {
        font-size: 16px
    }
}

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

.about-us .typography img {
    border-radius: 55px;
    margin: 33px 0
}

@media screen and (max-width:767px) {
    .about-us .typography img {
        border-radius: 30px
    }
}

.about-us .typography img:last-child {
    margin-bottom: 0
}

.about-us .typography img:first-child {
    margin-top: 0
}

.payments-composition {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -100px
}

@media screen and (max-width:767px) {
    .payments-composition {
        margin-bottom: -40px
    }
}

.payments-composition li {
    width: 33.333%;
    margin-bottom: 100px;
    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;
    padding-right: 30px
}

.payments-composition li img {
    max-height: 40px
}

@media screen and (max-width:767px) {
    .payments-composition li img {
        height: auto
    }
}

@media screen and (max-width:767px) {
    .payments-composition li {
        padding-left: 0;
        padding-right: 0;
        margin: 0 10px 40px;
        width: calc(33.333% - 20px)
    }
}

.payments {
    padding-bottom: 45px
}

@media screen and (max-width:1100px) {
    .payments {
        padding-bottom: 0
    }
}

.payments .title-logo {
    margin-bottom: 50px;
    margin-top: 5px
}

@media screen and (max-width:767px) {
    .payments .title-logo {
        margin-bottom: 30px
    }
}

.payments .road-map__date,
.payments .title {
    margin-bottom: 50px
}

@media screen and (max-width:767px) {

    .payments .road-map__date,
    .payments .title {
        margin-bottom: 30px
    }
}

.payments .payments-composition {
    margin-top: 20px
}

.payments__content {
    text-align: center;
    max-width: 503px;
    margin-left: auto
}

@media screen and (max-width:992px) {
    .payments__content {
        margin: 0 auto;
        max-width: 100%
    }
}

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

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

@media screen and (max-width:992px) {
    .payments__col {
        width: calc(100% - 30px)
    }
}

@media screen and (max-width:992px) {
    .payments__col:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 60px
    }
}

.payments__description {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 1.55;
    font-family: Open Sans;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 300
}

@media screen and (max-width:1440px) {
    .payments__description {
        font-size: 15px
    }
}

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

@media screen and (min-width:992px) {
    .payments--reverse .payments__content {
        margin-right: auto;
        margin-left: 0
    }
}

@media screen and (min-width:992px) {
    .payments--reverse .payments__col:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.video-item {
    display: block;
    width: 100%;
    max-width: 777px;
    -webkit-box-shadow: 15px 15px 100px rgba(0, 0, 0, .2);
    box-shadow: 15px 15px 100px rgba(0, 0, 0, .2);
    border-radius: 63px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width:767px) {
    .video-item {
        border-radius: 52px
    }
}

.video-item:after {
    content: "";
    width: 25%;
    height: 30%;
    display: block;
    position: absolute;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30.051 30.051' fill='%23d4def7'%3E%3Cpath d='M19.982 14.438l-6.24-4.536a.752.752 0 00-1.195.607v9.069a.75.75 0 001.195.606l6.24-4.532a.747.747 0 000-1.214z'/%3E%3Cpath d='M15.026.002C6.726.002 0 6.728 0 15.028c0 8.297 6.726 15.021 15.026 15.021 8.298 0 15.025-6.725 15.025-15.021.001-8.3-6.727-15.026-15.025-15.026zm0 27.54c-6.912 0-12.516-5.601-12.516-12.514 0-6.91 5.604-12.518 12.516-12.518 6.911 0 12.514 5.607 12.514 12.518.001 6.913-5.603 12.514-12.514 12.514z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.video-item img {
    width: 100%
}

.video-item:hover:after {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1)
}

.form .btn {
    margin-top: 20px
}

@media screen and (max-width:767px) {
    .form .btn {
        padding: 0;
        width: 100%
    }
}

@media screen and (max-width:360px) {
    .form .btn {
        font-size: 20px
    }
}

.form .field {
    margin-bottom: 30px
}

.form .field:last-child {
    margin-bottom: 0
}

.form+.map {
    margin-top: 90px
}

@media screen and (max-width:767px) {
    .form+.map {
        margin-top: 60px
    }
}

@media screen and (max-width:767px) {
    .form {
        padding-left: 15px;
        padding-right: 15px
    }
}

.map {
    height: 700px;
    background: #f3f5f9
}

@media screen and (max-width:992px) {
    .map {
        height: 500px
    }
}

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

.invest-icon__name {
    font-size: 19px;
    font-weight: 600
}

@media screen and (max-width:1440px) {
    .invest-icon__name {
        font-size: 17px
    }
}

.invest-icon__icon {
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .3);
    border: 2px solid #bcc3df;
    margin-left: -7px
}

.invest-icon__icon,
.invest-icon__icon-counter {
    width: 55px;
    height: 55px;
    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
}

.invest-icon__icon-counter {
    border-radius: 50%;
    background-image: -o-linear-gradient(73deg, #60cab2 0, #5de6c7 100%);
    background-image: linear-gradient(17deg, #60cab2, #5de6c7);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    position: relative
}

.invest-icon__icon-counter span {
    line-height: 1;
    margin-top: 2px;
    margin-left: -6px
}

.invest-icon__icon-counter sup {
    font-size: .5em;
    margin-left: 3px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px
}

.invest-icon__icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

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

.invest-icon svg {
    width: 28px;
    height: 28px;
    fill: #909ac5
}

.invest-icon--green .invest-icon__icon-counter {
    color: #fff;
    background-image: -o-linear-gradient(73deg, #6776b4 0, #232e5b 100%);
    background-image: linear-gradient(17deg, #6776b4, #232e5b)
}

.invest-icon--blue .invest-icon__icon-counter {
    background: #6776b4;
    background: -o-linear-gradient(30deg, #6776b4 0, #93b3d4 100%);
    background: linear-gradient(60deg, #6776b4, #93b3d4);
    background-image: -o-linear-gradient(73deg, #caceda 0, #a7b2bc 100%);
    background-image: linear-gradient(17deg, #caceda, #a7b2bc);
    color: #fff
}

.invest-icon--blue-light .invest-icon__icon-counter {
    background-image: -o-linear-gradient(73deg, #b8c5f6 0, #92a5eb 100%);
    background-image: linear-gradient(17deg, #b8c5f6, #92a5eb);
    color: #4357aa
}

.invest-icon--light .invest-icon__icon-counter {
    color: #fff !important;
    background-image: -o-linear-gradient(73deg, #169b75 0, #287861 100%);
    background-image: linear-gradient(17deg, #169b75, #287861)
}

.counter-item {
    font-family: Open Sans
}

.counter-item__title {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 9px
}

@media screen and (max-width:1440px) {
    .counter-item__title {
        font-size: 20px
    }
}

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

.counter-item__value {
    color: #890c0c;
    font-size: 34px;
    font-weight: 600;
    white-space: nowrap
}

@media screen and (max-width:1440px) {
    .counter-item__value {
        font-size: 32px
    }
}

@media screen and (max-width:767px) {
    .counter-item__value {
        font-size: 28px
    }
}

.counter-item__value small {
    font-size: .7em
}

.plans-tabs {
    position: relative
}

@media screen and (max-width:767px) {
    .plans-tabs {
        padding-top: 40px
    }
}

.plans-tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 100%;
    top: -52px;
    margin-right: -1px;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media screen and (max-width:767px) {
    .plans-tabs__nav {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        right: auto;
        left: 0;
        top: 0
    }
}

.plans-tabs__nav a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 13px 20px;
    white-space: nowrap;
    display: block;
    background: #475799;
    color: #fff;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px
}

@media screen and (max-width:767px) {
    .plans-tabs__nav a {
        font-size: 15px;
        height: 40px;
        border-top-left-radius: 17px;
        border-top-right-radius: 17px
    }
}

.plans-tabs__nav .is-active a {
    background: #f7f8fc;
    color: #000
}

.plans-tabs__content {
    border-radius: 22px;
    border-top-left-radius: 0;
    background-color: #f7f8fc;
    -webkit-box-shadow: 0 3px 57px 0 rgba(87, 92, 119, .35);
    box-shadow: 0 3px 57px 0 rgba(87, 92, 119, .35);
    width: 100%;
    padding: 15px
}

.invest-plan {
    background: #cbd6ee;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px
}

@media screen and (max-width:992px) {
    .invest-plan {
        margin-bottom: 40px
    }
}

@media screen and (max-width:767px) {
    .invest-plan {
        text-align: center
    }
}

.invest-plan:last-child {
    margin-bottom: 0
}

.invest-plan .plans-tabs {
    margin-bottom: 60px
}

@media screen and (max-width:992px) {
    .invest-plan .plans-tabs {
        margin-left: 52px
    }
}

@media screen and (max-width:767px) {
    .invest-plan .plans-tabs {
        margin-left: -30px;
        margin-right: -30px
    }

    .invest-plan .plans-tabs .plans-tabs__content {
        border-radius: 0
    }
}

.invest-plan .plans-tabs:last-child {
    margin-bottom: 0
}

.invest-plan .stats-list {
    margin-bottom: 41px
}

@media screen and (max-width:767px) {
    .invest-plan .stats-list {
        margin-bottom: 30px
    }
}

.invest-plan .stats-list__value {
    color: #d6d8e5;
    font-size: 32px;
    font-weight: 600
}

.invest-plan .stats-list li {
    width: calc(100% - 30px)
}

.invest-plan__wrapper {
    padding: 74px 60px 74px 110px;
    position: relative
}

@media screen and (max-width:1440px) {
    .invest-plan__wrapper {
        padding: 74px 60px
    }
}

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

.invest-plan__title {
    color: #48589a;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 24px
}

@media screen and (max-width:1280px) {
    .invest-plan__title {
        font-size: 48px
    }
}

@media screen and (max-width:767px) {
    .invest-plan__title {
        font-size: 36px
    }
}

.invest-plan .typography {
    margin-bottom: 90px;
    max-width: 400px
}

@media screen and (max-width:992px) {
    .invest-plan .typography {
        max-width: 100%;
        margin-bottom: 60px
    }
}

@media screen and (max-width:767px) {
    .invest-plan .typography {
        margin-bottom: 30px
    }
}

.invest-plan .counter-item__value,
.invest-plan .counter-item__value small,
.invest-plan .stats-list__value,
.invest-plan .stats-list__value small {
    color: #48589a
}

.invest-plan__counters-icons {
    max-width: 430px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -45px
}

@media screen and (max-width:992px) {
    .invest-plan__counters-icons {
        max-width: none
    }
}

@media screen and (max-width:767px) {
    .invest-plan__counters-icons {
        margin-bottom: -30px
    }
}

.invest-plan__counters-icons li {
    -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: 45px
}

@media screen and (max-width:992px) {
    .invest-plan__counters-icons li {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width:767px) {
    .invest-plan__counters-icons li {
        width: calc(50% - 30px);
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-bottom: 30px
    }
}

.invest-plan__invest-icons {
    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:767px) {
    .invest-plan__invest-icons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.invest-plan__invest-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:1280px) {
    .invest-plan__invest-icons li {
        width: calc(50% - 30px)
    }
}

@media screen and (max-width:992px) {
    .invest-plan__invest-icons li {
        width: calc(33.33333% - 30px)
    }
}

@media screen and (max-width:767px) {
    .invest-plan__invest-icons li {
        width: calc(50% - 30px);
        margin-bottom: 30px
    }
}

.invest-plan__symbol {
    position: absolute;
    top: -60px;
    left: -71px;
    line-height: 1;
    font-size: 650px;
    font-weight: 700;
    color: #bfc9e7
}

@media screen and (max-width:767px) {
    .invest-plan__symbol {
        font-size: 400px
    }
}

.invest-plan__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    z-index: 2
}

.invest-plan__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px
}

.invest-plan__col:first-child {
    width: calc(47.5% - 30px);
    padding-right: 40px
}

@media screen and (max-width:992px) {
    .invest-plan__col:first-child {
        width: calc(100% - 30px);
        padding-right: 0
    }
}

.invest-plan__col:last-child {
    width: calc(52.5% - 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) {
    .invest-plan__col:last-child {
        width: calc(100% - 30px);
        margin-top: 60px
    }
}

.invest-plan__btn {
    background: #475799;
    margin-top: auto;
    margin-right: auto;
    width: 100%;
    max-width: 226px;
    color: #fff
}

@media screen and (max-width:767px) {
    .invest-plan__btn {
        max-width: 100%
    }
}

.invest-plan__btn:hover {
    color: #fff;
    background: #4e60a7
}

.invest-plan--light {
    background: #e6e9f3
}

.invest-plan--light .counter-item__value,
.invest-plan--light .counter-item__value small,
.invest-plan--light .stats-list__value,
.invest-plan--light .stats-list__value small {
    color: #d6d8e5
}

.invest-plan--light .invest-plan__btn {
    background: #6570b6;
    color: #fff
}

.invest-plan--light .invest-plan__btn:hover {
    color: #fff !important;
    background: #737fcc
}

.invest-plan--light .invest-plan__symbol {
    color: #d0d5eb
}

.invest-plan--light .invest-plan__title {
    color: #d6d8e5
}

.invest-plan--accent {
    background: #bee9df
}

.invest-plan--accent .counter-item__value,
.invest-plan--accent .counter-item__value small,
.invest-plan--accent .stats-list__value,
.invest-plan--accent .stats-list__value small {
    color: #00a671
}

.invest-plan--accent .invest-plan__btn {
    background: #00a671;
    color: #fff
}

.invest-plan--accent .invest-plan__btn:hover {
    background: #00bb80
}

.invest-plan--accent .invest-plan__symbol {
    color: #b6e5d9
}

.invest-plan--accent .invest-plan__title {
    color: #00a671
}

.invest-plans .container-large {
    overflow: hidden
}

.color-accent {
    color: #890c0c
}

.levels-counters {
    max-width: 340px
}

.levels-counters li {
    font-size: 32px;
    font-weight: 700;
    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: 14%;
    height: 17.9%
}

@media screen and (max-width:1440px) {
    .levels-counters li {
        margin-bottom: 3.2vw;
        height: 5.591vw;
        font-size: 2.5vw
    }
}

@media screen and (max-width:767px) {
    .levels-counters li {
        margin-bottom: 30px;
        font-size: 24px
    }
}

.levels-counters li:last-child {
    margin-bottom: 0
}

.levels-composition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

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

.levels-composition__scheme {
    width: 50%
}

@media screen and (max-width:1440px) {
    .levels-composition__scheme img {
        height: 32.2vw
    }
}

@media screen and (max-width:767px) {
    .levels-composition__scheme {
        width: 100%
    }

    .levels-composition__scheme img {
        height: auto
    }
}

.levels-composition .levels-counters {
    padding-left: 40px
}

@media screen and (max-width:767px) {
    .levels-composition .levels-counters {
        padding: 0;
        width: 100%;
        margin-top: 40px
    }
}

.levels .road-map__date,
.levels .title {
    margin-bottom: 86px;
    max-width: 450px
}

.levels__scheme {
    margin-top: auto
}

.levels .typography {
    margin-bottom: 93px;
    line-height: 1.85
}

@media screen and (max-width:767px) {
    .levels .typography {
        margin-bottom: 60px
    }
}

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

.levels .levels-counters {
    width: 100%
}

.levels__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;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width:767px) {
    .levels__col {
        width: calc(100% - 30px)
    }
}

.levels__col:last-child {
    padding-left: 25px;
    padding-top: 8px
}

@media screen and (max-width:767px) {
    .levels__col:last-child {
        margin-top: 40px;
        padding-left: 0;
        padding-top: 0
    }
}

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

.prize__bottom {
    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:992px) {
    .prize__bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

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

.prize .road-map__date,
.prize .title {
    margin-bottom: 37px
}

@media screen and (max-width:767px) {

    .prize .road-map__date br,
    .prize .title br {
        display: none
    }
}

.prize .btn {
    height: 80px;
    font-size: 26px;
    padding: 0 45px
}

@media screen and (max-width:992px) {
    .prize .btn {
        height: 60px
    }
}

.prize .typography {
    margin-bottom: 77px
}

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

@media screen and (max-width:767px) {
    .prize .typography {
        margin-bottom: 40px
    }
}

.prize__title {
    color: #890c0c;
    font-size: 36px;
    font-weight: 700;
    max-width: 390px;
    margin-right: 15px
}

@media screen and (max-width:992px) {
    .prize__title {
        margin-bottom: 30px
    }
}

@media screen and (max-width:767px) {
    .prize__title {
        margin-right: 0;
        font-size: 24px;
        max-width: 100%
    }
}

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

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

@media screen and (max-width:767px) {
    .prize__content {
        width: calc(100% - 30px)
    }
}

.prize__content-wrapper {
    max-width: 92%
}

@media screen and (max-width:767px) {
    .prize__content-wrapper {
        max-width: 100%
    }
}

.prize__media {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:767px) {
    .prize__media {
        width: calc(100% - 30px);
        margin-top: 60px
    }
}

.prize__media img {
    margin: auto 0 0 auto
}

@media screen and (max-width:767px) {
    .prize__media img {
        max-width: 70%;
        margin: 0 auto
    }
}

.bounty-block {
    background-image: -o-linear-gradient(219deg, #d0d5ec 0, #e3e6f1 100%);
    background-image: linear-gradient(-129deg, #d0d5ec, #e3e6f1);
    -webkit-box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    border-radius: 25px;
    overflow: hidden
}

.bounty-block__icon {
    background: #fff;
    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: 100px;
    height: 100px;
    border-radius: 12px;
    margin: 0 0 -82px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media screen and (max-width:1330px) {
    .bounty-block__icon {
        margin-bottom: -60px
    }
}

@media screen and (max-width:767px) {
    .bounty-block__icon {
        width: 60px;
        height: 60px
    }
}

.bounty-block__icon svg {
    fill: #b1b8d8;
    width: 40px;
    height: 40px
}

@media screen and (max-width:767px) {
    .bounty-block__icon svg {
        width: 25px;
        height: 25px
    }
}

.bounty-block .typography {
    max-width: 90%
}

.bounty-block__title {
    font-size: 37px;
    font-weight: 700;
    color: #890c0c
}

@media screen and (max-width:767px) {
    .bounty-block__title {
        font-size: 30px
    }
}

.bounty-block__top {
    padding: 30px 55px;
    background: #e9eff6;
    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;
    border-bottom: 1px solid #d0e0ed
}

@media screen and (max-width:1330px) {
    .bounty-block__top {
        padding: 30px 40px
    }
}

@media screen and (max-width:767px) {
    .bounty-block__top {
        padding: 20px 30px
    }
}

.bounty-block__content {
    padding: 30px 55px 45px
}

@media screen and (max-width:1330px) {
    .bounty-block__content {
        padding: 30px 40px
    }
}

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

.bounty-block__buttons {
    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-top: 40px
}

@media screen and (max-width:1330px) {
    .bounty-block__buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.bounty-block__buttons .btn {
    font-size: 19px;
    height: 55px;
    white-space: nowrap
}

@media screen and (max-width:1440px) {
    .bounty-block__buttons .btn {
        padding: 0 25px
    }
}

@media screen and (max-width:1330px) {
    .bounty-block__buttons .btn {
        width: 100%;
        margin-bottom: 15px
    }

    .bounty-block__buttons .btn:last-child {
        margin-bottom: 0
    }
}

.bounty-block--darken {
    background-image: -o-linear-gradient(219deg, #bac3e3 0, #d1ddf2 100%);
    background-image: linear-gradient(-129deg, #bac3e3, #d1ddf2)
}

.bounty-block--darken .bounty-block__top {
    border: none
}

.bounty-block--gray {
    background: #dddee4
}

.bounty-block--gray .bounty-block__top {
    background: #edeef1;
    border: none
}

.bounty-block--accent {
    background-image: -o-linear-gradient(219deg, #b7e4d9 0, #d0efe8 100%);
    background-image: linear-gradient(-129deg, #b7e4d9, #d0efe8)
}

.bounty-block--accent .bounty-block__top {
    background: #e7f6f3;
    border: none
}

.bounty-steps li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5.625rem;
    font-size: 1.4375rem;
    line-height: 1.4
}

@media screen and (max-width:992px) {
    .bounty-steps li {
        margin-bottom: 3.75rem;
        font-size: 1.25rem
    }
}

@media screen and (max-width:767px) {
    .bounty-steps li {
        font-size: 1.125rem
    }
}

.bounty-steps li:first-child .bounty-steps__icon:before {
    display: none
}

.bounty-steps li:last-child {
    margin-bottom: 0
}

.bounty-steps li:last-child .bounty-steps__icon:after {
    display: none
}

.bounty-steps__content {
    max-width: 430px;
    min-height: 64px;
    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
}

.bounty-steps__content strong {
    font-weight: 700
}

.bounty-steps__icon {
    width: 49px;
    height: 49px;
    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 #6473b4;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 40px;
    position: relative
}

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

.bounty-steps__icon:after,
.bounty-steps__icon:before {
    content: "";
    left: 50%;
    width: 2px;
    height: 5.625rem;
    background: #00a470;
    position: absolute
}

@media screen and (max-width:992px) {

    .bounty-steps__icon:after,
    .bounty-steps__icon:before {
        height: 3.75rem
    }
}

.bounty-steps__icon:after {
    top: 100%;
    margin-top: 10px
}

.bounty-steps__icon:before {
    bottom: 100%;
    margin-bottom: 10px
}

.bounty-steps__icon svg {
    width: 20px;
    height: 22px;
    fill: #6473b4;
    opacity: .5
}

.bounty .bounty-block {
    margin-bottom: 90px
}

@media screen and (max-width:992px) {
    .bounty .bounty-block {
        margin-bottom: 40px
    }
}

.bounty .bounty-block:last-child {
    margin-bottom: 0
}

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

@media screen and (max-width:1440px) {
    .bounty__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -20px;
        margin-right: -20px
    }
}

@media screen and (max-width:992px) {

    .bounty .road-map__date,
    .bounty .title {
        margin-bottom: 10px
    }
}

@media screen and (max-width:992px) {
    .bounty .bounty-steps {
        margin-bottom: 60px
    }
}

.bounty__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 40px;
    margin-right: 40px;
    width: calc(50% - 80px)
}

@media screen and (max-width:1440px) {
    .bounty__col {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(50% - 40px)
    }
}

@media screen and (max-width:992px) {
    .bounty__col {
        width: calc(100% - 40px)
    }
}

.bounty__col--padding {
    padding-top: 12.5rem
}

@media screen and (max-width:992px) {
    .bounty__col:last-child {
        padding-top: 0;
        margin-top: 40px
    }
}

.intro+section.advantages {
    margin-top: 11.875rem
}

@media screen and (max-width:992px) {
    .intro+section.advantages {
        margin-top: 7.5rem
    }
}

.plans .slider-dots {
    margin-top: 30px;
    display: none
}

@media screen and (max-width:992px) {
    .plans .slider-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.plans+section.we-invest {
    margin-top: 12.1875rem
}

@media screen and (max-width:767px) {
    .plans+section.we-invest {
        margin-top: 7.5rem
    }
}

.we-invest+section.project-rates {
    margin-top: -1.875rem
}

@media screen and (max-width:767px) {
    .we-invest+section.project-rates {
        margin-top: 7.5rem
    }
}

.project-rates+section.traiding-statistics {
    margin-top: 13.75rem
}

@media screen and (max-width:1100px) {
    .project-rates+section.traiding-statistics {
        margin-top: 7.5rem
    }
}

.traiding-statistics+section.watch {
    margin-top: 13.75rem
}

@media screen and (max-width:1100px) {
    .traiding-statistics+section.watch {
        margin-top: 7.5rem
    }
}

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

@media screen and (max-width:767px) {
    .watch {
        margin-bottom: 1.875rem
    }
}

@media screen and (max-width:992px) {
    .watch+section.mobile {
        margin-top: 0
    }
}

@media screen and (max-width:767px) {
    .watch+section.mobile {
        margin-top: 1.875rem
    }
}

.mobile+section.leaders {
    margin-top: 14.375rem
}

@media screen and (max-width:1100px) {
    .mobile+section.leaders {
        margin-top: 7.5rem
    }
}

.traiding-statistics-accent+section.leaders-items {
    margin-top: 11.8125rem
}

@media screen and (max-width:1100px) {
    .traiding-statistics-accent+section.leaders-items {
        margin-top: 7.5rem
    }
}

.bounty {
    margin-bottom: 30px
}

@media screen and (max-width:767px) {
    .bounty {
        margin-bottom: 7.5rem
    }
}

.bounty+section.prize {
    margin-top: 30px
}

@media screen and (max-width:992px) {
    .bounty+section.prize {
        margin-top: 7.5rem
    }
}

.about-us+section.advantages {
    margin-top: 204px
}

@media screen and (max-width:992px) {
    .about-us+section.advantages {
        margin-top: 7.5rem
    }
}

.advantages+section.traiding-statistics-accent {
    margin-top: 198px
}

@media screen and (max-width:992px) {
    .advantages+section.traiding-statistics-accent {
        margin-top: 7.5rem
    }
}

.watch-presentation+section.payments {
    margin-top: 220px
}

@media screen and (max-width:992px) {
    .watch-presentation+section.payments {
        margin-top: 7.5rem
    }
}

.page-intro--bounty .page-intro__row {
    padding: 100px 0 160px
}

.page-intro+section.road-map {
    margin-top: -80px
}

[data-content] {
    display: none
}

.balance-component {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px
}

.balance-component .answer-icon {
    margin-right: 10px
}

@media screen and (max-width:1440px) {
    .balance-component {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 185px
    }
}

.balance-component__top {
    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-component__top {
        margin-bottom: 5px;
        width: 100%
    }
}

@media screen and (max-width:1440px) {
    .balance-component__name {
        width: calc(100% - 30px)
    }
}

.balance-component__value {
    margin: 0 5px;
    font-weight: 700;
    color: #890c0c
}

@media screen and (max-width:1440px) {
    .balance-component__value {
        margin-left: 0
    }
}

.balance-component__select {
    position: relative;
    cursor: pointer;
    display: block;
    padding-right: 20px
}

.balance-component__select:after {
    content: "";
    width: 12px;
    height: 7px;
    display: block;
    position: absolute;
    right: 0;
    margin-left: 8px;
    top: 50%;
    -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 492 290.6' fill='%23a8aaad'%3E%3Cpath d='M484.1 24.3L468 8.1C462.9 3 456.2.2 449 .2c-7.2 0-14 2.8-19 7.9L246.1 191.9l-184-184C57 2.8 50.2 0 43 0S29 2.8 24 7.9L7.9 24c-10.5 10.5-10.5 27.6 0 38L227 282c5.1 5.1 11.8 8.6 19.1 8.6h.1c7.2 0 14-3.6 19-8.6L484.1 62.6c5.1-5.1 7.9-12 7.9-19.2 0-7.2-2.8-14.1-7.9-19.1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain
}

.balance-component__select span {
    color: #1ec16f;
    font-weight: 700;
    font-size: 15px
}

.balance-component__select:hover ul {
    display: block
}

.balance-component__select:hover:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg)
}

.balance-component__select ul {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
    width: 100px;
    padding-top: 8px;
    display: none
}

.balance-component__select ul li {
    background: #f2f3f7;
    border: 1px solid #890c0c;
    color: #890c0c;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    text-align: center;
    padding: 4px 0;
    margin-bottom: 4px
}

.balance-component__select ul li:hover {
    background: #cccfe2;
    color: #fff;
    border-color: #cccfe2
}

.balance-component__select ul li:last-child {
    margin-bottom: 0
}

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

.row__col-6 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 40px;
    margin-right: 40px;
    width: calc(50% - 80px)
}

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

    .row__col-6:last-child {
        margin-bottom: 0
    }
}

.navigation__icon {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.navigation__icon img {
    max-width: 100%
}

.navigation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #890c0c;
    font-size: 15px;
    font-weight: 700;
    padding: 20px 40px;
    border-bottom: 1px solid #e7ebf6;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease
}

@media screen and (max-width:1440px) {
    .navigation a {
        padding-left: 18px;
        padding-right: 18px
    }
}

.navigation a img {
    opacity: .5;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.navigation a:hover {
    color: #890c0c;
    background: #f3f6fb
}

.navigation a:hover img {
    opacity: 1
}

.navigation .is-active a {
    color: #890c0c;
    background: #e7ebf6
}

.navigation .is-active a img {
    opacity: 1
}

.navigation .navigation-label {
    display: inline-block;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px)
}

.user-info__title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 34px
}

.user-info__block {
    -webkit-box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    background: #fff;
    border-radius: 8px
}

.user-info__block p {
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px
}

@media screen and (max-width:767px) {
    .user-info__block p {
        max-width: 160px
    }
}

@media screen and (max-width:360px) {
    .user-info__block p {
        max-width: 130px
    }
}

.user-info__block table td {
    border: none;
    font-size: 15px;
    font-family: Open Sans;
    padding: 18px 25px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .user-info__block table td {
        padding: 15px;
        font-size: 14px;
        width: 50%
    }
}

.user-info__block table td:last-child {
    font-weight: 700;
    color: #890c0c
}

.user-info__block table tr:nth-child(2n) td {
    background: #efeff6
}

.statistics-item {
    background: url(../images/plans/c.png) 0 0 no-repeat #6a7bc3;
    background-size: cover;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 105px;
    padding: 0 20px
}

.statistics-item__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px
}

.statistics-item__value {
    font-size: 25px;
    font-weight: 700;
    color: #890c0c
}

.statistics-item__icon {
    border-radius: 50%;
    width: 40px;
    height: 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;
    background: #dadeef;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.statistics-item__icon svg {
    width: 18px;
    height: 18px;
    fill: #a5aed9
}

.statistics-item--icon-left svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.statistics-item--icon-right svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.statistics-item--light {
    background: url(../images/plans/light.png) 0 0 no-repeat #6a7bc3;
    background-size: cover
}

.statistics-item--dark {
    background: url(../images/plans/b.png) 0 0 no-repeat #6a7bc3;
    background-size: cover;
    color: #fff
}

.statistics-item--dark .statistics-item__icon {
    background: #9cb6e1
}

.statistics-item--dark .statistics-item__icon svg {
    fill: #6a7bc3
}

.statistics-item--dark .statistics-item__value {
    color: #fff
}

.statistics-item--green {
    background: url(../images/plans/a.png) 0 0 no-repeat #6a7bc3;
    background-size: cover;
    color: #fff
}

.statistics-item--green .statistics-item__icon {
    background: #57cdaa
}

.statistics-item--green .statistics-item__icon svg {
    fill: #35a17c
}

.statistics-item--green .statistics-item__value {
    color: #fff
}

.statistics-module .swiper-container {
    overflow: visible
}

.balance-item {
    padding: 35px 25px;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width:1100px) and (max-width:1220px) {
    .balance-item {
        padding: 20px 15px
    }
}

@media screen and (max-width:992px) {
    .balance-item {
        padding: 20px 15px
    }
}

.balance-item__value {
    color: #890c0c;
    text-transform: uppercase;
    margin-bottom: 5px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 100px
}

.balance-item__value span {
    color: #890c0c
}

.balance-item__value:last-child {
    margin-bottom: 0
}

.balance-item__currency {
    text-transform: uppercase;
    color: #890c0c
}

.balance-item__logo {
    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: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.balance-item__logo img {
    height: 35px
}

@media screen and (min-width:1100px) and (max-width:1220px) {
    .balance-item__logo img {
        height: 22px
    }
}

@media screen and (max-width:992px) {
    .balance-item__logo img {
        height: 22px
    }
}

.balances-module__block {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0
}

.balances-module__block .balance-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 0;
    margin-right: 0;
    width: 33.33333%;
    border-right: 1px solid #dcdcec;
    border-top: 1px solid #dcdcec;
    margin-top: -1px
}

@media screen and (max-width:767px) {
    .balances-module__block .balance-item {
        width: 100%
    }
}

.balances-module__block .balance-item:nth-child(2n) {
    background: #f6f6f9;
    background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f9), to(#fdfdfe));
    background: -o-linear-gradient(top, #f6f6f9 0, #fdfdfe 100%);
    background: linear-gradient(180deg, #f6f6f9, #fdfdfe)
}

.balances-module__block .balance-item:nth-child(3n) {
    border-right: 0
}

@media screen and (max-width:1100px) {
    .balances-module__block {
        border-radius: 0;
        margin-left: -50px;
        margin-right: -50px
    }
}

@media screen and (max-width:992px) {
    .balances-module__block {
        margin-left: -15px;
        margin-right: -15px
    }
}

.partners-item {
    padding: 35px;
    font-size: 15px
}

@media screen and (min-width:1100px) and (max-width:1220px) {
    .partners-item {
        padding: 20px 15px
    }
}

@media screen and (max-width:992px) {
    .partners-item {
        padding: 20px 15px
    }
}

.partners-item small {
    font-size: .7em
}

.partners-item__title {
    margin-bottom: 8px;
    font-size: 16px;
    color: #890c0c;
    font-weight: 700
}

.partners-item__value {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    color: #890c0c;
    font-size: 22px;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .partners-item__value {
        font-size: 17px
    }
}

.partners-module__block {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0
}

.partners-module__block .partners-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 0;
    margin-right: 0;
    width: 33.33333%;
    border-right: 1px solid #dcdcec;
    border-top: 1px solid #dcdcec;
    margin-top: -1px
}

@media screen and (max-width:767px) {
    .partners-module__block .partners-item {
        width: 50%
    }
}

.partners-module__block .partners-item:nth-child(2n) {
    background: #f6f6f9;
    background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f9), to(#fdfdfe));
    background: -o-linear-gradient(top, #f6f6f9 0, #fdfdfe 100%);
    background: linear-gradient(180deg, #f6f6f9, #fdfdfe)
}

.partners-module__block .partners-item:nth-child(3n) {
    border-right: 0
}

@media screen and (max-width:767px) {
    .partners-module__block .partners-item:nth-child(3n) {
        border-right: 1px solid #dcdcec
    }
}

@media screen and (max-width:1100px) {
    .partners-module__block {
        border-radius: 0;
        margin-left: -50px;
        margin-right: -50px
    }
}

@media screen and (max-width:992px) {
    .partners-module__block {
        margin-left: -15px;
        margin-right: -15px
    }
}

.plan-card {
    background: #bbc3e3;
    border-radius: 20px;
    padding: 40px 30px 0;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.plan-card .invest-icon__icon-counter {
    font-size: 15px !important
}

.plan-card>* {
    position: relative;
    z-index: 2
}

.plan-card__symbol {
    position: absolute;
    font-size: 121px;
    font-weight: 700;
    color: #aeb7d9;
    right: 5px;
    top: -23px;
    line-height: 1;
    z-index: 1;
    font-family: Nunito
}

.plan-card__params {
    margin-bottom: 35px
}

.plan-card__params li {
    margin-bottom: 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;
    white-space: nowrap
}

.plan-card__params li p small {
    font-size: .7em
}

.plan-card__params li p:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 700;
    white-space: nowrap
}

.plan-card__params li p:first-child:after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 2px dotted #909acd;
    margin: 0 10px 3px
}

.plan-card__params li p:last-child {
    color: #d6d8e5;
    font-size: 19px;
    font-weight: 600
}

.plan-card__params li:last-child {
    margin-bottom: 0
}

.plan-card__title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 30px;
    color: #48589a
}

.plan-card__subtitle {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px
}

.plan-card__subtitle span {
    position: relative
}

.plan-card__subtitle span:after,
.plan-card__subtitle span:before {
    content: "";
    width: 999px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%
}

.plan-card__subtitle span:before {
    left: 100%;
    margin-left: 10px
}

.plan-card__subtitle span:after {
    right: 100%;
    margin-right: 10px
}

.plan-card__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5px
}

.plan-card__icons li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 7.5px;
    margin-right: 7.5px;
    width: calc(33.33333% - 15px);
    margin-bottom: 15px
}

.plan-card__buttons {
    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;
    padding: 25px 0;
    margin-top: auto;
    position: relative
}

.plan-card__buttons:before {
    content: "";
    width: 999px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.plan-card__buttons .btn {
    white-space: nowrap;
    height: 50px;
    font-size: 19px
}

.plan-card__buttons .btn--primary {
    background: #475799
}

.plan-card__buttons .btn:first-child {
    margin-left: 0
}

.plan-card__buttons .btn:last-child {
    margin-right: 0
}

.plan-card .btn-light {
    background: #abb3d6
}

.plan-card .invest-icon {
    text-align: center
}

.plan-card .invest-icon svg {
    width: 22px;
    height: 22px
}

.plan-card .invest-icon__icon {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-color: #a4aed6
}

.plan-card .invest-icon__icon-wrap {
    margin-bottom: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.plan-card .invest-icon__icon-counter {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px
}

.plan-card .invest-icon__name {
    font-size: 11px;
    font-weight: 700
}

@media screen and (min-width:1100px) and (max-width:1220px) {
    .plan-card {
        padding-left: 15px;
        padding-right: 15px
    }

    .plan-card .plan-card__params,
    .plan-card .plan-card__subtitle {
        font-size: 14px
    }

    .plan-card .plan-card__icons li {
        width: calc(50% - 15px)
    }
}

.plan-card--light {
    background: #dee2f1
}

.plan-card--light .btn--primary {
    background: #6570b6
}

.plan-card--light .plan-card__title {
    color: #d6d8e5
}

.plan-card--light .plan-card__buttons:before {
    background: #c0c6e1
}

.plan-card--light .plan-card__subtitle {
    color: #d6d8e5
}

.plan-card--light .plan-card__subtitle span:after,
.plan-card--light .plan-card__subtitle span:before {
    background: #c0c6e1
}

.plan-card--accent {
    background: #c1eae0
}

.plan-card--accent .btn--primary {
    background: #00a671
}

.plan-card--accent .btn.btn-light {
    background: #a2dcce
}

.plan-card--accent .plan-card__symbol {
    color: #9ddccc
}

.plan-card--accent .plan-card__title {
    color: #00a671
}

.plan-card--accent .plan-card__buttons:before {
    background: #a2dcce
}

.plan-card--accent .plan-card__subtitle {
    color: #00a671
}

.plan-card--accent .plan-card__subtitle span:after,
.plan-card--accent .plan-card__subtitle span:before {
    background: #a2dcce
}

.plan-card+div.plan-card-buttons {
    margin: 25px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.plan-card+div.plan-card-buttons .btn {
    height: 50px;
    font-size: 19px
}

.plan-card+div.plan-card-buttons .btn.btn-light {
    background: #abb3d6
}

.plans-cards .swiper-container {
    overflow: visible
}

.plans-cards .swiper-slide,
.plans-cards .swiper-wrapper {
    height: auto
}

.plans-cards .plan-card-wrapper {
    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
}

.plans-cards .plan-card-wrapper .plan-card {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.plans-cards .plan-card-buttons {
    margin-top: auto
}

.investments-card {
    background: #edf0f6;
    padding: 40px 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
    margin-bottom: 30px;
    border-radius: 15px;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

@media screen and (max-width:1440px) {
    .investments-card {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width:992px) {
    .investments-card {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media screen and (max-width:767px) {
    .investments-card {
        padding-left: 15px;
        padding-right: 15px
    }
}

.investments-card:last-child {
    margin-bottom: 0
}

.investments-card__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 7.5px;
    margin-right: 7.5px;
    width: calc(25% - 15px);
    margin-bottom: 40px
}

@media screen and (max-width:767px) {
    .investments-card__col {
        width: calc(50% - 15px);
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .investments-card__col:first-child,
    .investments-card__col:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

@media screen and (max-width:767px) {
    .investments-card__col.mobile-last {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
}

@media screen and (max-width:767px) {
    .investments-card__col.mobile-prelast {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
}

@media screen and (max-width:767px) {
    .investments-card__col.mobile-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
}

.investments-card__pm {
    max-width: 150px
}

.investments-card__subtitle {
    font-size: 15px;
    font-weight: 600;
    font-family: Open Sans;
    margin-bottom: 15px
}

.investments-card small {
    font-size: .75em
}

.investments-card__date {
    font-size: 18px;
    font-weight: 700;
    color: #890c0c
}

@media screen and (max-width:1440px) {
    .investments-card__date {
        font-size: 17px
    }
}

@media screen and (max-width:992px) {
    .investments-card__date {
        font-size: 13px
    }
}

.investments-card__days {
    margin: auto 0
}

.investments-card__days,
.investments-card__title {
    font-weight: 700;
    color: #890c0c;
    font-size: 25px
}

@media screen and (max-width:992px) {

    .investments-card__days,
    .investments-card__title {
        font-size: 22px !important
    }
}

@media screen and (max-width:767px) {

    .investments-card__days,
    .investments-card__title {
        font-size: 18px !important
    }
}

.investments-card__days {
    font-size: 39px
}

.investments-card__value {
    font-size: 25px;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .investments-card__value {
        font-size: 17px
    }
}

.investments-card__value sup {
    font-size: .65em;
    display: inline-block;
    vertical-align: top;
    margin-left: 2px
}

.field__wallet-icon img {
    height: 40px
}

@media screen and (max-width:767px) {
    .field__wallet-icon img {
        height: 25px
    }
}

@media screen and (max-width:360px) {
    .field__wallet-icon img {
        height: 17px
    }
}

.ellipsis {
    margin-right: 5px
}

.settings .field {
    margin-bottom: 25px
}

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

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

@media screen and (max-width:767px) {
    .settings__col-6 {
        width: calc(100% - 60px)
    }
}

.settings__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

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

.settings__buttons .btn {
    font-size: 18px;
    height: 45px
}

.verification .field {
    margin-bottom: 25px
}

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

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

@media screen and (max-width:767px) {
    .verification__col-4 {
        width: calc(100% - 60px)
    }
}

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

@media screen and (max-width:767px) {
    .verification__col-6 {
        width: calc(100% - 60px)
    }
}

.verification__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

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

.verification__buttons .btn {
    font-size: 18px;
    height: 45px
}

.file-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.file-item__image img {
    width: 35px
}

.file-item__size {
    margin-left: 10px;
    color: rgba(0, 0, 0, .4);
    font-size: 15px
}

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

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

.file-uploader input {
    display: none
}

@media screen and (max-width:767px) {
    .file-uploader__files {
        width: 100%;
        margin-top: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.file-uploader .btn {
    height: 33px
}

.file-uploader .btn img {
    width: 20px;
    height: 20px;
    display: none
}

.file-uploader .btn.is-uploaded img {
    display: block
}

.passport-upload-module__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:767px) {
    .passport-upload-module__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.passport-upload-module .modal-footer {
    padding-bottom: 0
}

.passport-upload-module__image {
    width: 35%
}

@media screen and (max-width:767px) {
    .passport-upload-module__image {
        width: 100%;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .passport-upload-module__image img {
        width: 130px
    }
}

.passport-upload-module__section {
    margin-bottom: 30px
}

.passport-upload-module__content {
    padding-left: 50px
}

@media screen and (max-width:767px) {
    .passport-upload-module__content {
        padding-left: 0;
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .passport-upload-module__subtitle {
        text-align: center
    }
}

.passport-upload-module .road-map__date,
.passport-upload-module .title,
.passport-upload-module__subtitle {
    margin-bottom: 15px
}

.time-counter {
    width: 28px
}

.upload-passport {
    height: 36px;
    font-size: 16px
}

@media screen and (max-width:767px) {
    .upload-passport {
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 45px
    }
}

.insurance-block {
    border: 2px solid #3caca2;
    border-radius: 13px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700
}

.insurance-block__subtitle {
    font-size: 16px
}

.insurance-block__value {
    font-size: 57px;
    color: #3caca2
}

.insurance-block__description {
    color: #3caca2;
    font-size: 27px
}

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

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

@media screen and (max-width:767px) {
    .insurance__content {
        width: calc(100% - 30px)
    }
}

.insurance__media {
    -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) {
    .insurance__media {
        width: calc(100% - 30px);
        margin-top: 30px
    }
}

.page-icons {
    position: fixed;
    right: 25px;
    top: 115px;
    z-index: 3
}

@media screen and (max-width:992px) {
    .page-icons {
        right: 15px;
        bottom: 90px;
        top: auto
    }
}

.page-icons__btn {
    width: 62px;
    height: 62px;
    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-radius: 50%;
    text-decoration: none;
    color: #fff;
    margin-bottom: 13px;
    font-size: 21px;
    font-weight: 600
}

@media screen and (max-width:992px) {
    .page-icons__btn {
        width: 50px;
        height: 50px;
        font-size: 18px
    }
}

.page-icons__btn:last-child {
    margin-bottom: 0
}

.page-icons__btn svg {
    fill: #fff;
    width: 27px;
    height: 27px
}

.page-icons__btn--accent {
    background: #01a671
}

.page-icons__btn--accent:hover {
    background: #018f62
}

.page-icons__btn--primary {
    background: #6570bb
}

.page-icons__btn--primary:hover {
    background: #5963a7
}

.page-icons__btn:hover {
    color: #fff
}

.files-list-item {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #e1e2ed;
    color: #890c0c;
    text-decoration: underline;
    border-radius: 5px;
    font-weight: 600;
    padding: 12px 20px;
    -webkit-box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .1)
}

.files-list-item svg {
    width: 18px;
    height: 23px;
    fill: #890c0c;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px
}

.files-list li {
    margin-bottom: 15px
}

.files-list li:last-child {
    margin-bottom: 0
}

.security-block-title {
    color: #6a7bc3;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px
}

.security-block-title:last-child {
    margin-bottom: 0
}

.security-apps {
    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) {
    .security-apps {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.security-apps__apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:767px) {
    .security-apps__apps {
        width: 100%;
        margin-top: 15px
    }
}

.security-apps__apps li {
    margin: 0 0 15px 15px
}

@media screen and (max-width:767px) {
    .security-apps__apps li:first-child {
        margin-left: 0
    }
}

.security-qr {
    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) {
    .security-qr__content {
        width: 100%;
        margin-bottom: 15px
    }
}

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

.code-2fa-form {
    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) {
    .code-2fa-form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.code-2fa-form .btn {
    height: 45px;
    font-size: 18px;
    margin-left: -15px
}

@media screen and (max-width:767px) {
    .code-2fa-form .btn {
        margin-left: 0
    }
}

.code-2fa-form input {
    height: 45px;
    padding-right: 15px;
    padding-left: 20px;
    font-size: 24px;
    font-weight: 700;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    border: 2px solid #e1e3ec;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

@media screen and (max-width:767px) {
    .code-2fa-form input {
        width: 100%;
        height: 40px;
        margin-bottom: 15px
    }
}

.security-block {
    background: #fff;
    padding: 40px 45px;
    margin-bottom: 30px;
    border-radius: 20px;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    position: relative;
    overflow: hidden;
    min-height: 190px;
    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
}

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

.security-block__step-count {
    position: absolute;
    bottom: -100px;
    left: -15px;
    color: #f3f4f9;
    font-size: 303px;
    line-height: 1;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .security-block__step-count {
        font-size: 150px;
        bottom: auto;
        top: 15px;
        left: -25px
    }
}

.security-block--auto-height {
    min-height: auto
}

.security-block--has-count {
    padding-left: 155px
}

@media screen and (max-width:767px) {
    .security-block--has-count {
        padding-left: 70px
    }
}

.security-status {
    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) {
    .security-status {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.security-status__value {
    margin-right: 30px;
    font-size: 15px;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .security-status__value {
        margin-bottom: 15px;
        width: 100%
    }
}

.security-status .btn {
    font-size: 18px;
    height: 45px;
    padding: 0 30px
}

.my-wallets .field {
    margin-bottom: 20px
}

.my-wallets .field input {
    font-size: 19px;
    font-weight: 700;
    color: #838383;
    font-family: Open Sans
}

@media screen and (max-width:767px) {
    .my-wallets .field input {
        font-size: 14px
    }
}

.my-wallets__block {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

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

.my-wallets__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.my-wallets__buttons .btn {
    height: 45px;
    padding: 0 30px;
    font-size: 18px
}

.my-wallets__buttons--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.withdraw-module__title {
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    color: #890c0c;
    margin-bottom: 30px
}

.withdraw-module__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.withdraw-module__buttons .btn {
    height: 45px;
    padding: 0 30px;
    font-size: 18px
}

.withdraw-module__buttons--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.withdraw-module .field {
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px
}

@media screen and (max-width:992px) {
    .withdraw-module .field {
        max-width: none
    }
}

.withdraw-module .field label {
    position: absolute;
    right: 100%;
    white-space: nowrap
}

@media screen and (max-width:992px) {
    .withdraw-module .field label {
        position: relative;
        right: auto;
        width: 100% !important;
        margin-bottom: 15px !important
    }
}

@media screen and (max-width:992px) {
    .withdraw-module .field__text {
        position: relative;
        width: 100%;
        left: auto;
        bottom: auto;
        margin-left: 0;
        margin-top: 10px
    }
}

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

.withdraw-module form {
    max-width: 660px;
    margin: 0 auto
}

@media screen and (max-width:992px) {
    .withdraw-module form {
        margin: 0;
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .withdraw-module form {
        padding-right: 0
    }
}

.withdraw-module input {
    color: #890c0c;
    font-weight: 700;
    font-family: Open Sans;
    font-size: 19px
}

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

table.js-datatables {
    border-collapse: separate;
    border-spacing: 0 7px
}

table.js-datatables strong {
    font-weight: 700
}

table.js-datatables td,
table.js-datatables th {
    border: none;
    padding-top: 17px;
    color: #890c0c;
    padding-bottom: 17px
}

@media screen and (max-width:767px) {

    table.js-datatables td,
    table.js-datatables th {
        font-size: 12px
    }
}

table.js-datatables td:first-child,
table.js-datatables th:first-child {
    padding-left: 20px
}

table.js-datatables td:last-child,
table.js-datatables th:last-child {
    padding-right: 20px
}

table.js-datatables td {
    font-size: 15px
}

table.js-datatables th {
    font-weight: 700;
    font-size: 14px
}

table.js-datatables tbody tr {
    background: rgba(0, 0, 0, 0);
    background: #fff;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

.table-section .table-filter {
    margin-bottom: 10px
}

.table-filter__radio {
    margin: 0 10px 15px 0;
    display: inline-block;
    vertical-align: top
}

.table-filter__radio span {
    height: 30px;
    font-size: 13px;
    border-radius: 20px;
    padding: 0 30px;
    background: #9cb6e1;
    -webkit-box-shadow: 0 11px 38px 0 rgba(195, 202, 227, .6);
    box-shadow: 0 11px 38px 0 rgba(195, 202, 227, .6);
    color: #fff;
    text-decoration: underline;
    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;
    cursor: pointer
}

.table-filter__radio:hover span {
    text-decoration: none
}

.table-filter__radio--primary span {
    background: #890c0c
}

.table-filter__radio--green span {
    background: #48af8c
}

.table-filter input {
    display: none
}

.table-filter input:checked+span {
    background: #e1e5f2;
    text-decoration: none
}

.table-wrapper {
    overflow: visible
}

@media screen and (max-width:992px) {
    .table-wrapper {
        overflow-x: auto;
        margin-left: -15px;
        margin-right: -15px
    }
}

.status {
    color: #9c9c9c;
    font-weight: 700
}

.status--success {
    color: #48af8c
}

.status--danger {
    color: #f00505
}

.user-info>* {
    margin-bottom: 10px
}

.user-info>:last-child {
    margin-bottom: 0
}

.partners__block {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1)
}

@media screen and (max-width:992px) {
    .partners__block {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0
    }
}

.partners__block-wrapper {
    background: #f1f4fa;
    padding: 30px;
    overflow: auto
}

@media screen and (max-width:1220px) {
    .partners .table-wrapper {
        overflow: auto
    }
}

.partners__empty {
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    color: #890c0c
}

.partners table.js-datatables {
    border-spacing: 0 12px
}

.partners table.js-datatables th {
    text-align: center;
    font-size: 14px;
    padding: 10px 0
}

.partners table.js-datatables tbody td {
    font-size: 17px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    border-right: 1px solid #fff;
    color: #000
}

.partners table.js-datatables tbody tr {
    background: #f1f4fa;
    -webkit-box-shadow: none;
    box-shadow: none
}

.partners table.js-datatables tbody tr td:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px
}

.partners table.js-datatables tbody tr td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px
}

.partners-invite__block {
    background: #57cdaa;
    background: -webkit-gradient(linear, left top, right top, from(#57cdaa), to(#48af8c));
    background: -o-linear-gradient(left, #57cdaa 0, #48af8c 100%);
    background: linear-gradient(90deg, #57cdaa, #48af8c);
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative
}

@media screen and (max-width:767px) {
    .partners-invite__block {
        padding: 20px
    }
}

.partners-invite__label {
    font-size: 13px;
    margin-bottom: 10px
}

.partners-invite__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

@media screen and (max-width:767px) {
    .partners-invite__form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        background: rgba(0, 0, 0, 0)
    }
}

.partners-invite__form .btn {
    height: 45px;
    font-size: 18px;
    margin-right: -1px
}

.partners-invite__form input {
    height: 45px;
    padding-right: 15px;
    padding-left: 20px;
    pointer-events: none;
    font-size: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 700;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    color: #890c0c;
    font-family: Nunito
}

@media screen and (max-width:767px) {
    .partners-invite__form input {
        width: 100%;
        height: 40px;
        margin-bottom: 15px;
        border-radius: 8px;
        font-size: 16px
    }
}

.earn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -20px;
    min-width: 400px;
    font-size: 15px
}

@media screen and (max-width:767px) {
    .earn-list {
        font-size: 13px
    }
}

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

.earn-list__logo {
    margin-bottom: 12px
}

.earn-list__logo img {
    height: 23px
}

.earn-list__value {
    color: #890c0c;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px
}

.earn-list__value:last-child {
    margin-bottom: 0
}

.earn-list__currency {
    color: #890c0c;
    text-transform: uppercase;
    font-weight: 700
}

.quantity {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.quantity .pt_QuantityNav {
    position: relative;
    height: 35px;
    width: 18px
}

.quantity .pt_QuantityNav .pt_QuantityButton {
    position: relative;
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #6570b6;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none
}

.quantity .pt_QuantityNav .pt_QuantityButton:hover {
    color: #48af8c
}

.quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityUp {
    position: absolute;
    height: 50%;
    top: 0
}

.quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityDown {
    position: absolute;
    bottom: 0;
    height: 50%
}

.quantity input[type=number] {
    -moz-appearance: textfield;
    color: #48af8c;
    border-radius: 2px;
    background-color: #f8f7f3;
    border: 1px solid #dcdcec;
    font-size: 20px;
    font-weight: 700;
    min-width: 50px;
    height: 40px;
    float: left;
    display: block;
    padding: 0 15px 0 2px;
    margin: 0;
    text-align: center;
    width: 70px
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.quantity input[type=number]:focus {
    outline: 0
}

.refback-quantity {
    position: relative
}

.refback-quantity__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.refback-quantity .btn {
    height: 40px;
    font-size: 15px;
    padding: 0 25px;
    margin: 0 0 0 8px
}

@media screen and (max-width:400px) {
    .refback-quantity .btn {
        padding: 0 11px;
        font-size: 14px;
        min-width: 70px
    }
}

@media screen and (max-width:330px) {
    .refback-quantity .btn {
        padding: 0 11px;
        font-size: 12px;
        height: 35px;
        min-width: 50px
    }
}

.refback-quantity__inner {
    position: relative;
    overflow: hidden
}

.refback-quantity__percent {
    position: absolute;
    color: #989ec7;
    right: 28px;
    top: 10px;
    font-weight: 700;
    font-size: 13px
}

.refback-quantity .quantity {
    width: auto
}

.refback-quantity .quantity input[type=number] {
    padding: 0 15px 0 5px;
    width: 50px;
    border-radius: 8px
}

.refback-quantity .quantity .pt_QuantityNav {
    margin: 0 0 0 5px
}

.refback-quantity .quantity .pt_QuantityButton {
    border-radius: 5px;
    height: calc(50% - 2px) !important;
    font-size: 16px
}

.review-item {
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    box-shadow: 0 14px 33px 0 rgba(3, 0, 117, .1);
    padding: 60px 75px
}

@media screen and (max-width:767px) {
    .review-item {
        padding: 30px 40px;
        border-radius: 15px
    }
}

.review-item__name {
    color: #890c0c;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px
}

@media screen and (max-width:767px) {
    .review-item__name {
        font-size: 24px;
        margin-bottom: 15px
    }
}

.review-item__text {
    font-size: 14px
}

@media screen and (max-width:767px) {
    .review-item__text {
        font-size: 13px
    }
}

.reviews .review-item {
    margin-bottom: 30px
}

.reviews .review-item:last-child {
    margin-bottom: 0
}

.reviews__buttons {
    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: 60px
}

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

.copy-code {
    position: relative;
    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
}

.copy-code__value {
    font-size: 23px;
    font-weight: 700;
    max-width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    color: #01a671
}

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

@media screen and (max-width:360px) {
    .copy-code__value {
        font-size: 13px
    }
}

.copy-code input {
    font-size: 23px;
    font-weight: 700;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0
}

@media screen and (max-width:767px) {
    .copy-code input {
        font-size: 13px
    }
}

.copy-code__button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 15px
}

.copy-code__button:hover svg {
    fill: #000
}

.copy-code svg {
    width: 22px;
    height: 22px;
    fill: #890c0c
}

.modal-step {
    display: none
}

.modal-step.is-active {
    display: block
}

.modal-footer {
    padding-bottom: 50px
}

.icon-link {
    width: 36px;
    height: 36px;
    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;
    background: #e7ebf6;
    border-radius: 50%
}

.icon-link svg {
    width: 18px;
    height: 18px;
    fill: #890c0c
}

.icon-link:hover {
    background: #890c0c
}

.icon-link:hover svg {
    fill: #fff
}

.top-button {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #fff;
    z-index: 4;
    border-radius: 50%;
    bottom: 35px;
    right: 110px;
    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: 0 10px 30px rgba(0, 0, 0, .26);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .26);
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

@media screen and (max-width:1100px) {
    .top-button {
        right: 15px;
        bottom: 15px
    }
}

.top-button svg {
    width: 20px;
    height: 20px;
    fill: #890c0c;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    margin-top: -2px
}

.top-button.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.banners-item {
    margin-bottom: 60px
}

.banners-item:last-child {
    margin-bottom: 0
}

.banners-item__name {
    font-weight: 600;
    color: #890c0c;
    font-size: 15px;
    margin-bottom: 20px
}

.banners-item__text {
    width: 100%;
    height: 80px;
    border-radius: 5px;
    font-family: Nunito;
    border: 2px solid #e0e1ed;
    padding-top: 15px;
    padding-left: 25px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09);
    box-shadow: 0 10px 43px 0 rgba(3, 0, 117, .09)
}

.banners-item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.banners-item__bottom .btn {
    height: 35px;
    font-size: 16px;
    margin: 0 20px 15px 0;
    white-space: nowrap;
    padding: 0 30px
}

@media screen and (max-width:360px) {
    .banners-item__bottom .btn {
        font-size: 15px;
        padding: 0 20px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 0 10px 10px 0
    }

    .banners-item__bottom .btn:last-child {
        margin-right: 0
    }
}

.banners-item__bottom .btn svg {
    width: 14px;
    height: 14px;
    margin-right: 10px;
    margin-left: -5px
}

.banners-item__banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

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

.banners-item__banner img {
    max-width: calc(100% - 100px)
}

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

.banners-item__banner-size {
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100px
}

@media screen and (max-width:767px) {
    .banners-item__banner-size {
        margin-left: 0;
        width: 100%
    }
}

.social-radio-group__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px
}

.social-radio-group__title {
    margin-bottom: 15px;
    font-size: 16px
}

.social-radio-group__title strong {
    font-weight: 700
}

.social-radio-group .social-radio {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(25% - 20px)
}

.social-radio__button {
    border: 2px solid #d9dbef;
    border-radius: 12px;
    background: #fff;
    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;
    height: 85px;
    cursor: pointer;
    -webkit-box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    box-shadow: 0 14px 73px 0 rgba(3, 0, 117, .14);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

@media screen and (max-width:767px) {
    .social-radio__button {
        height: 60px
    }
}

@media screen and (max-width:360px) {
    .social-radio__button {
        height: 50px
    }
}

.social-radio__button:hover svg {
    fill: #890c0c
}

.social-radio input {
    display: none
}

.social-radio input:checked+span {
    background: #890c0c;
    border-color: #890c0c
}

.social-radio input:checked+span svg {
    fill: #fff
}

.social-radio svg {
    width: 37px;
    height: 37px;
    fill: #b1b8d8
}

@media screen and (max-width:767px) {
    .social-radio svg {
        width: 25px;
        height: 25px
    }
}

@media screen and (max-width:360px) {
    .social-radio svg {
        width: 20px;
        height: 20px
    }
}

#send-bounty .modal-inner {
    max-width: 560px
}

.answer-icon {
    width: 20px;
    height: 20px;
    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;
    background: #890c0c;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    vertical-align: top;
    cursor: pointer
}

.tooltipster-base {
    max-width: 250px;
    background: #fff;
    color: #000;
    -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, .29);
    box-shadow: 0 0 60px rgba(0, 0, 0, .29);
    border: 2px solid #d1d6e8
}

.tooltipster-content {
    line-height: 1.4 !important;
    font-family: Nunito !important;
    padding: 20px !important
}

.dropdown-image {
    height: 25px;
    margin: 5px 0
}

.navigation-label {
    background: #890c0c;
    color: #fff;
    border-radius: 13px;
    font-size: 9px;
    text-transform: uppercase;
    padding: 3px 7px
}