@media (max-width: 991px){
    .show-991{
        display: none;
    }
}
@media (min-width: 992px){
    .hide-991{
        display: none;
    }
}
fieldset[disabled] .multiselect {
    pointer-events: none;
}
.multiselect__spinner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 48px;
    height: 35px;
    background: #fff;
    display: block;
}
.multiselect__spinner:after,
.multiselect__spinner:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 2px solid transparent;
    border-top-color: #41b883;
    box-shadow: 0 0 0 1px transparent;
}
.multiselect__spinner:before {
    animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
    animation-iteration-count: infinite;
}
.multiselect__spinner:after {
    animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
    animation-iteration-count: infinite;
}
.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}
.multiselect__loading-enter,
.multiselect__loading-leave-active {
    opacity: 0;
}
.multiselect,
.multiselect__input,
.multiselect__single {
    font-family: inherit;
    font-size: 16px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
.multiselect {
    box-sizing: content-box;
    display: block;
    position: relative;
    width: 100%;
    min-height: 40px;
    text-align: left;
    color: #35495e;
}
.multiselect * {
    box-sizing: border-box;
}
.multiselect:focus {
    outline: none;
}
.multiselect--disabled {
    background: #ededed;
    pointer-events: none;
    opacity: 0.6;
}
.multiselect--active {
    z-index: 50;
}
.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.multiselect--active .multiselect__select {
    transform: rotate(180deg);
}
.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.multiselect__input,
.multiselect__single {
    position: relative;
    display: inline-block;
    min-height: 20px;
    line-height: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 0 0 0 5px;
    width: 100%;
    transition: border 0.1s ease;
    box-sizing: border-box;
    margin-bottom: 8px;
    vertical-align: top;
}
.multiselect__input:-ms-input-placeholder {
    color: #35495e;
}
.multiselect__input::placeholder {
    color: #35495e;
}
.multiselect__tag ~ .multiselect__input,
.multiselect__tag ~ .multiselect__single {
    width: auto;
}
.multiselect__input:hover,
.multiselect__single:hover {
    border-color: #cfcfcf;
}
.multiselect__input:focus,
.multiselect__single:focus {
    border-color: #a8a8a8;
    outline: none;
}
.multiselect__single {
    padding-left: 5px;
    margin-bottom: 8px;
}
.multiselect__tags-wrap {
    display: inline;
}
.multiselect__tags {
    min-height: 40px;
    display: block;
    padding: 8px 40px 0 8px;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
}
.multiselect__tag {
    position: relative;
    display: inline-block;
    padding: 4px 26px 4px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #fff;
    line-height: 1;
    background: #41b883;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
}
.multiselect__tag-icon {
    cursor: pointer;
    margin-left: 7px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 700;
    font-style: normal;
    width: 22px;
    text-align: center;
    line-height: 22px;
    transition: all 0.2s ease;
    border-radius: 5px;
}
.multiselect__tag-icon:after {
    content: '\D7';
    color: #266d4d;
    font-size: 14px;
}
.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
    background: #369a6e;
}
.multiselect__tag-icon:focus:after,
.multiselect__tag-icon:hover:after {
    color: #fff;
}
.multiselect__current {
    min-height: 40px;
    overflow: hidden;
    padding: 8px 30px 0 12px;
    white-space: nowrap;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
}
.multiselect__current,
.multiselect__select {
    line-height: 16px;
    box-sizing: border-box;
    display: block;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}
.multiselect__select {
    position: absolute;
    width: 40px;
    height: 38px;
    right: 1px;
    top: 1px;
    padding: 4px 8px;
    text-align: center;
    transition: transform 0.2s ease;
}
.multiselect__select:before {
    position: relative;
    right: 0;
    top: 65%;
    color: #999;
    margin-top: 4px;
    border-color: #999 transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0;
    content: '';
}
.multiselect__placeholder {
    color: #adadad;
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 2px;
}
.multiselect--active .multiselect__placeholder {
    display: none;
}
.multiselect__content-wrapper {
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 50;
    -webkit-overflow-scrolling: touch;
}
.multiselect__content {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 100%;
    vertical-align: top;
}
.multiselect--above .multiselect__content-wrapper {
    bottom: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    border-top: 1px solid #e8e8e8;
}
.multiselect__content::webkit-scrollbar {
    display: none;
}
.multiselect__element {
    display: block;
}
.multiselect__option {
    display: block;
    padding: 12px;
    min-height: 40px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}
.multiselect__option:after {
    top: 0;
    right: 0;
    position: absolute;
    line-height: 40px;
    padding-right: 12px;
    padding-left: 20px;
    font-size: 13px;
}
.multiselect__option--highlight {
    background: #41b883;
    outline: none;
    color: #fff;
}
.multiselect__option--highlight:after {
    content: attr(data-select);
    background: #41b883;
    color: #fff;
}
.multiselect__option--selected {
    background: #f3f3f3;
    color: #35495e;
    font-weight: 700;
}
.multiselect__option--selected:after {
    content: attr(data-selected);
    color: silver;
}
.multiselect__option--selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
}
.multiselect__option--selected.multiselect__option--highlight:after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
}
.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select {
    background: #ededed;
    color: #a6a6a6;
}
.multiselect__option--disabled {
    background: #ededed !important;
    color: #a6a6a6 !important;
    cursor: text;
    pointer-events: none;
}
.multiselect__option--group {
    background: #ededed;
    color: #35495e;
}
.multiselect__option--group.multiselect__option--highlight {
    background: #35495e;
    color: #fff;
}
.multiselect__option--group.multiselect__option--highlight:after {
    background: #35495e;
}
.multiselect__option--disabled.multiselect__option--highlight {
    background: #dedede;
}
.multiselect__option--group-selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
}
.multiselect__option--group-selected.multiselect__option--highlight:after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
}
.multiselect-enter-active,
.multiselect-leave-active {
    transition: all 0.15s ease;
}
.multiselect-enter,
.multiselect-leave-active {
    opacity: 0;
}
.multiselect__strong {
    margin-bottom: 8px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
}
[dir='rtl'] .multiselect {
    text-align: right;
}
[dir='rtl'] .multiselect__select {
    right: auto;
    left: 1px;
}
[dir='rtl'] .multiselect__tags {
    padding: 8px 8px 0 40px;
}
[dir='rtl'] .multiselect__content {
    text-align: right;
}
[dir='rtl'] .multiselect__option:after {
    right: auto;
    left: 0;
}
[dir='rtl'] .multiselect__clear {
    right: auto;
    left: 12px;
}
[dir='rtl'] .multiselect__spinner {
    right: auto;
    left: 1px;
}
@keyframes spinning {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(2turn);
    }
}
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    min-width: 32rem;
    margin: 0;
}
*,
:active,
:focus,
:hover {
    outline: none !important;
}
a {
    color: initial;
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    background: transparent;
}
a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
}
*,
:after,
:before {
    box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none !important;
}
b,
strong {
    font-weight: 700;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
mark {
    color: #fff;
}
small {
    font-size: 80%;
}
sub {
    bottom: -0.25em;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
img {
    vertical-align: middle;
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 4rem;
}
hr {
    box-sizing: content-box;
    height: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 0.1rem solid #eee;
}
textarea {
    resize: none;
}
pre,
textarea {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-size: 1em;
    font-family: monospace, monospace;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}
optgroup {
    font-weight: 700;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    cursor: pointer;
    -webkit-appearance: button;
}
[role='button'] {
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
input {
    line-height: normal;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
input[type='checkbox'],
input[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    height: auto;
}
input[type='search'] {
    box-sizing: content-box;
}
input::-webkit-search-cancel-button,
input::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    margin: 0 0.2rem;
    padding: 0.35em 0.625em 0.75em;
    border: 0.1rem solid silver;
}
legend {
    padding: 0;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
input::-webkit-input-placeholder {
    color: #535358;
}
input:-moz-placeholder,
input::-moz-placeholder {
    color: #535358;
}
input:-ms-input-placeholder {
    color: #535358;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
}
input:focus:-moz-placeholder,
input:focus::-moz-placeholder {
    opacity: 0;
}
input:focus:-ms-input-placeholder {
    opacity: 0;
}
input[type='number'] {
    -moz-appearance: textfield;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
@font-face {
    font-weight: 400;
    font-family: Montserrat;
    font-style: normal;
    src: url(/css/fonts/Montserrat/Montserrat-Regular.woff) format('woff'), url(/css/fonts/Montserrat/Montserrat-Regular.woff2) format('woff2');
}
@font-face {
    font-weight: 500;
    font-family: Montserrat;
    font-style: normal;
    src: url(/css/fonts/Montserrat/Montserrat-Medium.woff) format('woff'), url(/css/fonts/Montserrat/Montserrat-Medium.woff2) format('woff2');
}
@font-face {
    font-weight: 600;
    font-family: Montserrat;
    font-style: normal;
    src: url(/css/fonts/Montserrat/Montserrat-SemiBold.woff) format('woff'), url(/css/fonts/Montserrat/Montserrat-SemiBold.woff2) format('woff2');
}
@font-face {
    font-weight: 400;
    font-family: ALSRubl;
    font-style: normal;
    src: url(/css/fonts/ALSRubl/ALSRubl.woff) format('woff'), url(/css/fonts/ALSRubl/ALSRubl.woff2) format('woff2');
}
.rouble {
    font-family: ALSRubl;
}
@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 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
    content: '';
    flex-shrink: 0;
    order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    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;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}
.grid {
    display: grid;
    grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
    grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
    gap: var(--bs-gap, 1.5rem);
}
.grid .g-col-1 {
    grid-column: auto/span 1;
}
.grid .g-col-2 {
    grid-column: auto/span 2;
}
.grid .g-col-3 {
    grid-column: auto/span 3;
}
.grid .g-col-4 {
    grid-column: auto/span 4;
}
.grid .g-col-5 {
    grid-column: auto/span 5;
}
.grid .g-col-6 {
    grid-column: auto/span 6;
}
.grid .g-col-7 {
    grid-column: auto/span 7;
}
.grid .g-col-8 {
    grid-column: auto/span 8;
}
.grid .g-col-9 {
    grid-column: auto/span 9;
}
.grid .g-col-10 {
    grid-column: auto/span 10;
}
.grid .g-col-11 {
    grid-column: auto/span 11;
}
.grid .g-col-12 {
    grid-column: auto/span 12;
}
.grid .g-start-1 {
    grid-column-start: 1;
}
.grid .g-start-2 {
    grid-column-start: 2;
}
.grid .g-start-3 {
    grid-column-start: 3;
}
.grid .g-start-4 {
    grid-column-start: 4;
}
.grid .g-start-5 {
    grid-column-start: 5;
}
.grid .g-start-6 {
    grid-column-start: 6;
}
.grid .g-start-7 {
    grid-column-start: 7;
}
.grid .g-start-8 {
    grid-column-start: 8;
}
.grid .g-start-9 {
    grid-column-start: 9;
}
.grid .g-start-10 {
    grid-column-start: 10;
}
.grid .g-start-11 {
    grid-column-start: 11;
}
@media (min-width: 576px) {
    .grid .g-col-sm-1 {
        grid-column: auto/span 1;
    }
    .grid .g-col-sm-2 {
        grid-column: auto/span 2;
    }
    .grid .g-col-sm-3 {
        grid-column: auto/span 3;
    }
    .grid .g-col-sm-4 {
        grid-column: auto/span 4;
    }
    .grid .g-col-sm-5 {
        grid-column: auto/span 5;
    }
    .grid .g-col-sm-6 {
        grid-column: auto/span 6;
    }
    .grid .g-col-sm-7 {
        grid-column: auto/span 7;
    }
    .grid .g-col-sm-8 {
        grid-column: auto/span 8;
    }
    .grid .g-col-sm-9 {
        grid-column: auto/span 9;
    }
    .grid .g-col-sm-10 {
        grid-column: auto/span 10;
    }
    .grid .g-col-sm-11 {
        grid-column: auto/span 11;
    }
    .grid .g-col-sm-12 {
        grid-column: auto/span 12;
    }
    .grid .g-start-sm-1 {
        grid-column-start: 1;
    }
    .grid .g-start-sm-2 {
        grid-column-start: 2;
    }
    .grid .g-start-sm-3 {
        grid-column-start: 3;
    }
    .grid .g-start-sm-4 {
        grid-column-start: 4;
    }
    .grid .g-start-sm-5 {
        grid-column-start: 5;
    }
    .grid .g-start-sm-6 {
        grid-column-start: 6;
    }
    .grid .g-start-sm-7 {
        grid-column-start: 7;
    }
    .grid .g-start-sm-8 {
        grid-column-start: 8;
    }
    .grid .g-start-sm-9 {
        grid-column-start: 9;
    }
    .grid .g-start-sm-10 {
        grid-column-start: 10;
    }
    .grid .g-start-sm-11 {
        grid-column-start: 11;
    }
}
@media (min-width: 768px) {
    .grid .g-col-md-1 {
        grid-column: auto/span 1;
    }
    .grid .g-col-md-2 {
        grid-column: auto/span 2;
    }
    .grid .g-col-md-3 {
        grid-column: auto/span 3;
    }
    .grid .g-col-md-4 {
        grid-column: auto/span 4;
    }
    .grid .g-col-md-5 {
        grid-column: auto/span 5;
    }
    .grid .g-col-md-6 {
        grid-column: auto/span 6;
    }
    .grid .g-col-md-7 {
        grid-column: auto/span 7;
    }
    .grid .g-col-md-8 {
        grid-column: auto/span 8;
    }
    .grid .g-col-md-9 {
        grid-column: auto/span 9;
    }
    .grid .g-col-md-10 {
        grid-column: auto/span 10;
    }
    .grid .g-col-md-11 {
        grid-column: auto/span 11;
    }
    .grid .g-col-md-12 {
        grid-column: auto/span 12;
    }
    .grid .g-start-md-1 {
        grid-column-start: 1;
    }
    .grid .g-start-md-2 {
        grid-column-start: 2;
    }
    .grid .g-start-md-3 {
        grid-column-start: 3;
    }
    .grid .g-start-md-4 {
        grid-column-start: 4;
    }
    .grid .g-start-md-5 {
        grid-column-start: 5;
    }
    .grid .g-start-md-6 {
        grid-column-start: 6;
    }
    .grid .g-start-md-7 {
        grid-column-start: 7;
    }
    .grid .g-start-md-8 {
        grid-column-start: 8;
    }
    .grid .g-start-md-9 {
        grid-column-start: 9;
    }
    .grid .g-start-md-10 {
        grid-column-start: 10;
    }
    .grid .g-start-md-11 {
        grid-column-start: 11;
    }
}
@media (min-width: 992px) {
    .grid .g-col-lg-1 {
        grid-column: auto/span 1;
    }
    .grid .g-col-lg-2 {
        grid-column: auto/span 2;
    }
    .grid .g-col-lg-3 {
        grid-column: auto/span 3;
    }
    .grid .g-col-lg-4 {
        grid-column: auto/span 4;
    }
    .grid .g-col-lg-5 {
        grid-column: auto/span 5;
    }
    .grid .g-col-lg-6 {
        grid-column: auto/span 6;
    }
    .grid .g-col-lg-7 {
        grid-column: auto/span 7;
    }
    .grid .g-col-lg-8 {
        grid-column: auto/span 8;
    }
    .grid .g-col-lg-9 {
        grid-column: auto/span 9;
    }
    .grid .g-col-lg-10 {
        grid-column: auto/span 10;
    }
    .grid .g-col-lg-11 {
        grid-column: auto/span 11;
    }
    .grid .g-col-lg-12 {
        grid-column: auto/span 12;
    }
    .grid .g-start-lg-1 {
        grid-column-start: 1;
    }
    .grid .g-start-lg-2 {
        grid-column-start: 2;
    }
    .grid .g-start-lg-3 {
        grid-column-start: 3;
    }
    .grid .g-start-lg-4 {
        grid-column-start: 4;
    }
    .grid .g-start-lg-5 {
        grid-column-start: 5;
    }
    .grid .g-start-lg-6 {
        grid-column-start: 6;
    }
    .grid .g-start-lg-7 {
        grid-column-start: 7;
    }
    .grid .g-start-lg-8 {
        grid-column-start: 8;
    }
    .grid .g-start-lg-9 {
        grid-column-start: 9;
    }
    .grid .g-start-lg-10 {
        grid-column-start: 10;
    }
    .grid .g-start-lg-11 {
        grid-column-start: 11;
    }
}
@media (min-width: 1200px) {
    .grid .g-col-xl-1 {
        grid-column: auto/span 1;
    }
    .grid .g-col-xl-2 {
        grid-column: auto/span 2;
    }
    .grid .g-col-xl-3 {
        grid-column: auto/span 3;
    }
    .grid .g-col-xl-4 {
        grid-column: auto/span 4;
    }
    .grid .g-col-xl-5 {
        grid-column: auto/span 5;
    }
    .grid .g-col-xl-6 {
        grid-column: auto/span 6;
    }
    .grid .g-col-xl-7 {
        grid-column: auto/span 7;
    }
    .grid .g-col-xl-8 {
        grid-column: auto/span 8;
    }
    .grid .g-col-xl-9 {
        grid-column: auto/span 9;
    }
    .grid .g-col-xl-10 {
        grid-column: auto/span 10;
    }
    .grid .g-col-xl-11 {
        grid-column: auto/span 11;
    }
    .grid .g-col-xl-12 {
        grid-column: auto/span 12;
    }
    .grid .g-start-xl-1 {
        grid-column-start: 1;
    }
    .grid .g-start-xl-2 {
        grid-column-start: 2;
    }
    .grid .g-start-xl-3 {
        grid-column-start: 3;
    }
    .grid .g-start-xl-4 {
        grid-column-start: 4;
    }
    .grid .g-start-xl-5 {
        grid-column-start: 5;
    }
    .grid .g-start-xl-6 {
        grid-column-start: 6;
    }
    .grid .g-start-xl-7 {
        grid-column-start: 7;
    }
    .grid .g-start-xl-8 {
        grid-column-start: 8;
    }
    .grid .g-start-xl-9 {
        grid-column-start: 9;
    }
    .grid .g-start-xl-10 {
        grid-column-start: 10;
    }
    .grid .g-start-xl-11 {
        grid-column-start: 11;
    }
}
@media (min-width: 1400px) {
    .grid .g-col-xxl-1 {
        grid-column: auto/span 1;
    }
    .grid .g-col-xxl-2 {
        grid-column: auto/span 2;
    }
    .grid .g-col-xxl-3 {
        grid-column: auto/span 3;
    }
    .grid .g-col-xxl-4 {
        grid-column: auto/span 4;
    }
    .grid .g-col-xxl-5 {
        grid-column: auto/span 5;
    }
    .grid .g-col-xxl-6 {
        grid-column: auto/span 6;
    }
    .grid .g-col-xxl-7 {
        grid-column: auto/span 7;
    }
    .grid .g-col-xxl-8 {
        grid-column: auto/span 8;
    }
    .grid .g-col-xxl-9 {
        grid-column: auto/span 9;
    }
    .grid .g-col-xxl-10 {
        grid-column: auto/span 10;
    }
    .grid .g-col-xxl-11 {
        grid-column: auto/span 11;
    }
    .grid .g-col-xxl-12 {
        grid-column: auto/span 12;
    }
    .grid .g-start-xxl-1 {
        grid-column-start: 1;
    }
    .grid .g-start-xxl-2 {
        grid-column-start: 2;
    }
    .grid .g-start-xxl-3 {
        grid-column-start: 3;
    }
    .grid .g-start-xxl-4 {
        grid-column-start: 4;
    }
    .grid .g-start-xxl-5 {
        grid-column-start: 5;
    }
    .grid .g-start-xxl-6 {
        grid-column-start: 6;
    }
    .grid .g-start-xxl-7 {
        grid-column-start: 7;
    }
    .grid .g-start-xxl-8 {
        grid-column-start: 8;
    }
    .grid .g-start-xxl-9 {
        grid-column-start: 9;
    }
    .grid .g-start-xxl-10 {
        grid-column-start: 10;
    }
    .grid .g-start-xxl-11 {
        grid-column-start: 11;
    }
}
.col {
    flex: 1 0 0%;
}
.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}
.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}
.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}
.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
}
.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}
.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}
.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    flex: 0 0 auto;
    width: 8.33333%;
}
.col-2 {
    flex: 0 0 auto;
    width: 16.66667%;
}
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33333%;
}
.col-5 {
    flex: 0 0 auto;
    width: 41.66667%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-7 {
    flex: 0 0 auto;
    width: 58.33333%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.66667%;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66667%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.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%;
}
.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .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%;
    }
    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }
    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }
    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }
    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }
    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }
    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .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%;
    }
    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }
    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }
    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }
    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }
    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }
    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .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%;
    }
    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }
    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }
    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }
    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }
    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }
    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .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%;
    }
    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }
    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }
    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }
    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }
    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }
    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66667%;
    }
    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }
    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }
    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }
    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }
    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }
    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-grid {
    display: grid !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.d-none {
    display: none !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-grow-0 {
    flex-grow: 0 !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    flex-shrink: 1 !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.justify-content-evenly {
    justify-content: space-evenly !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-baseline {
    align-items: baseline !important;
}
.align-items-stretch {
    align-items: stretch !important;
}
.align-content-start {
    align-content: flex-start !important;
}
.align-content-end {
    align-content: flex-end !important;
}
.align-content-center {
    align-content: center !important;
}
.align-content-between {
    align-content: space-between !important;
}
.align-content-around {
    align-content: space-around !important;
}
.align-content-stretch {
    align-content: stretch !important;
}
.align-self-auto {
    align-self: auto !important;
}
.align-self-start {
    align-self: flex-start !important;
}
.align-self-end {
    align-self: flex-end !important;
}
.align-self-center {
    align-self: center !important;
}
.align-self-baseline {
    align-self: baseline !important;
}
.align-self-stretch {
    align-self: stretch !important;
}
.order-first {
    order: -1 !important;
}
.order-0 {
    order: 0 !important;
}
.order-1 {
    order: 1 !important;
}
.order-2 {
    order: 2 !important;
}
.order-3 {
    order: 3 !important;
}
.order-4 {
    order: 4 !important;
}
.order-5 {
    order: 5 !important;
}
.order-last {
    order: 6 !important;
}
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.m-5 {
    margin: 3rem !important;
}
.m-auto {
    margin: auto !important;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}
.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}
.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}
.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.me-0 {
    margin-right: 0 !important;
}
.me-1 {
    margin-right: 0.25rem !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.me-3 {
    margin-right: 1rem !important;
}
.me-4 {
    margin-right: 1.5rem !important;
}
.me-5 {
    margin-right: 3rem !important;
}
.me-auto {
    margin-right: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.mb-auto {
    margin-bottom: auto !important;
}
.ms-0 {
    margin-left: 0 !important;
}
.ms-1 {
    margin-left: 0.25rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.ms-3 {
    margin-left: 1rem !important;
}
.ms-4 {
    margin-left: 1.5rem !important;
}
.ms-5 {
    margin-left: 3rem !important;
}
.ms-auto {
    margin-left: auto !important;
}
.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}
.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 0.25rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-3 {
    padding-top: 1rem !important;
}
.pt-4 {
    padding-top: 1.5rem !important;
}
.pt-5 {
    padding-top: 3rem !important;
}
.pe-0 {
    padding-right: 0 !important;
}
.pe-1 {
    padding-right: 0.25rem !important;
}
.pe-2 {
    padding-right: 0.5rem !important;
}
.pe-3 {
    padding-right: 1rem !important;
}
.pe-4 {
    padding-right: 1.5rem !important;
}
.pe-5 {
    padding-right: 3rem !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pb-4 {
    padding-bottom: 1.5rem !important;
}
.pb-5 {
    padding-bottom: 3rem !important;
}
.ps-0 {
    padding-left: 0 !important;
}
.ps-1 {
    padding-left: 0.25rem !important;
}
.ps-2 {
    padding-left: 0.5rem !important;
}
.ps-3 {
    padding-left: 1rem !important;
}
.ps-4 {
    padding-left: 1.5rem !important;
}
.ps-5 {
    padding-left: 3rem !important;
}
@media (min-width: 576px) {
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-grid {
        display: grid !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: flex !important;
    }
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
    .d-sm-none {
        display: none !important;
    }
    .flex-sm-fill {
        flex: 1 1 auto !important;
    }
    .flex-sm-row {
        flex-direction: row !important;
    }
    .flex-sm-column {
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-sm-start {
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        justify-content: center !important;
    }
    .justify-content-sm-between {
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        justify-content: space-around !important;
    }
    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-sm-start {
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        align-items: center !important;
    }
    .align-items-sm-baseline {
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        align-items: stretch !important;
    }
    .align-content-sm-start {
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        align-content: center !important;
    }
    .align-content-sm-between {
        align-content: space-between !important;
    }
    .align-content-sm-around {
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        align-self: auto !important;
    }
    .align-self-sm-start {
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        align-self: center !important;
    }
    .align-self-sm-baseline {
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        align-self: stretch !important;
    }
    .order-sm-first {
        order: -1 !important;
    }
    .order-sm-0 {
        order: 0 !important;
    }
    .order-sm-1 {
        order: 1 !important;
    }
    .order-sm-2 {
        order: 2 !important;
    }
    .order-sm-3 {
        order: 3 !important;
    }
    .order-sm-4 {
        order: 4 !important;
    }
    .order-sm-5 {
        order: 5 !important;
    }
    .order-sm-last {
        order: 6 !important;
    }
    .m-sm-0 {
        margin: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-sm-0 {
        margin-top: 0 !important;
    }
    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mt-sm-3 {
        margin-top: 1rem !important;
    }
    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mt-sm-5 {
        margin-top: 3rem !important;
    }
    .mt-sm-auto {
        margin-top: auto !important;
    }
    .me-sm-0 {
        margin-right: 0 !important;
    }
    .me-sm-1 {
        margin-right: 0.25rem !important;
    }
    .me-sm-2 {
        margin-right: 0.5rem !important;
    }
    .me-sm-3 {
        margin-right: 1rem !important;
    }
    .me-sm-4 {
        margin-right: 1.5rem !important;
    }
    .me-sm-5 {
        margin-right: 3rem !important;
    }
    .me-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }
    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }
    .mb-sm-auto {
        margin-bottom: auto !important;
    }
    .ms-sm-0 {
        margin-left: 0 !important;
    }
    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }
    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }
    .ms-sm-3 {
        margin-left: 1rem !important;
    }
    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }
    .ms-sm-5 {
        margin-left: 3rem !important;
    }
    .ms-sm-auto {
        margin-left: auto !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-sm-0 {
        padding-top: 0 !important;
    }
    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pt-sm-3 {
        padding-top: 1rem !important;
    }
    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pt-sm-5 {
        padding-top: 3rem !important;
    }
    .pe-sm-0 {
        padding-right: 0 !important;
    }
    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pe-sm-3 {
        padding-right: 1rem !important;
    }
    .pe-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pe-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }
    .ps-sm-0 {
        padding-left: 0 !important;
    }
    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }
    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }
    .ps-sm-3 {
        padding-left: 1rem !important;
    }
    .ps-sm-4 {
        padding-left: 1.5rem !important;
    }
    .ps-sm-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-grid {
        display: grid !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: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
    .d-md-none {
        display: none !important;
    }
    .flex-md-fill {
        flex: 1 1 auto !important;
    }
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-column {
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-md-wrap {
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        justify-content: center !important;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        justify-content: space-around !important;
    }
    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-md-start {
        align-items: flex-start !important;
    }
    .align-items-md-end {
        align-items: flex-end !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
    .align-items-md-baseline {
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        align-items: stretch !important;
    }
    .align-content-md-start {
        align-content: flex-start !important;
    }
    .align-content-md-end {
        align-content: flex-end !important;
    }
    .align-content-md-center {
        align-content: center !important;
    }
    .align-content-md-between {
        align-content: space-between !important;
    }
    .align-content-md-around {
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        align-content: stretch !important;
    }
    .align-self-md-auto {
        align-self: auto !important;
    }
    .align-self-md-start {
        align-self: flex-start !important;
    }
    .align-self-md-end {
        align-self: flex-end !important;
    }
    .align-self-md-center {
        align-self: center !important;
    }
    .align-self-md-baseline {
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        align-self: stretch !important;
    }
    .order-md-first {
        order: -1 !important;
    }
    .order-md-0 {
        order: 0 !important;
    }
    .order-md-1 {
        order: 1 !important;
    }
    .order-md-2 {
        order: 2 !important;
    }
    .order-md-3 {
        order: 3 !important;
    }
    .order-md-4 {
        order: 4 !important;
    }
    .order-md-5 {
        order: 5 !important;
    }
    .order-md-last {
        order: 6 !important;
    }
    .m-md-0 {
        margin: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mt-md-1 {
        margin-top: 0.25rem !important;
    }
    .mt-md-2 {
        margin-top: 0.5rem !important;
    }
    .mt-md-3 {
        margin-top: 1rem !important;
    }
    .mt-md-4 {
        margin-top: 1.5rem !important;
    }
    .mt-md-5 {
        margin-top: 3rem !important;
    }
    .mt-md-auto {
        margin-top: auto !important;
    }
    .me-md-0 {
        margin-right: 0 !important;
    }
    .me-md-1 {
        margin-right: 0.25rem !important;
    }
    .me-md-2 {
        margin-right: 0.5rem !important;
    }
    .me-md-3 {
        margin-right: 1rem !important;
    }
    .me-md-4 {
        margin-right: 1.5rem !important;
    }
    .me-md-5 {
        margin-right: 3rem !important;
    }
    .me-md-auto {
        margin-right: auto !important;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-md-3 {
        margin-bottom: 1rem !important;
    }
    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
    .mb-md-auto {
        margin-bottom: auto !important;
    }
    .ms-md-0 {
        margin-left: 0 !important;
    }
    .ms-md-1 {
        margin-left: 0.25rem !important;
    }
    .ms-md-2 {
        margin-left: 0.5rem !important;
    }
    .ms-md-3 {
        margin-left: 1rem !important;
    }
    .ms-md-4 {
        margin-left: 1.5rem !important;
    }
    .ms-md-5 {
        margin-left: 3rem !important;
    }
    .ms-md-auto {
        margin-left: auto !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-md-0 {
        padding-top: 0 !important;
    }
    .pt-md-1 {
        padding-top: 0.25rem !important;
    }
    .pt-md-2 {
        padding-top: 0.5rem !important;
    }
    .pt-md-3 {
        padding-top: 1rem !important;
    }
    .pt-md-4 {
        padding-top: 1.5rem !important;
    }
    .pt-md-5 {
        padding-top: 3rem !important;
    }
    .pe-md-0 {
        padding-right: 0 !important;
    }
    .pe-md-1 {
        padding-right: 0.25rem !important;
    }
    .pe-md-2 {
        padding-right: 0.5rem !important;
    }
    .pe-md-3 {
        padding-right: 1rem !important;
    }
    .pe-md-4 {
        padding-right: 1.5rem !important;
    }
    .pe-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-0 {
        padding-bottom: 0 !important;
    }
    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-md-3 {
        padding-bottom: 1rem !important;
    }
    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-md-5 {
        padding-bottom: 3rem !important;
    }
    .ps-md-0 {
        padding-left: 0 !important;
    }
    .ps-md-1 {
        padding-left: 0.25rem !important;
    }
    .ps-md-2 {
        padding-left: 0.5rem !important;
    }
    .ps-md-3 {
        padding-left: 1rem !important;
    }
    .ps-md-4 {
        padding-left: 1.5rem !important;
    }
    .ps-md-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 992px) {
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-grid {
        display: grid !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: flex !important;
    }
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
    .d-lg-none {
        display: none !important;
    }
    .flex-lg-fill {
        flex: 1 1 auto !important;
    }
    .flex-lg-row {
        flex-direction: row !important;
    }
    .flex-lg-column {
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        justify-content: center !important;
    }
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        justify-content: space-around !important;
    }
    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-lg-start {
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        align-items: center !important;
    }
    .align-items-lg-baseline {
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        align-items: stretch !important;
    }
    .align-content-lg-start {
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        align-content: center !important;
    }
    .align-content-lg-between {
        align-content: space-between !important;
    }
    .align-content-lg-around {
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        align-self: auto !important;
    }
    .align-self-lg-start {
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        align-self: center !important;
    }
    .align-self-lg-baseline {
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        align-self: stretch !important;
    }
    .order-lg-first {
        order: -1 !important;
    }
    .order-lg-0 {
        order: 0 !important;
    }
    .order-lg-1 {
        order: 1 !important;
    }
    .order-lg-2 {
        order: 2 !important;
    }
    .order-lg-3 {
        order: 3 !important;
    }
    .order-lg-4 {
        order: 4 !important;
    }
    .order-lg-5 {
        order: 5 !important;
    }
    .order-lg-last {
        order: 6 !important;
    }
    .m-lg-0 {
        margin: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-lg-0 {
        margin-top: 0 !important;
    }
    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mt-lg-3 {
        margin-top: 1rem !important;
    }
    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mt-lg-5 {
        margin-top: 3rem !important;
    }
    .mt-lg-auto {
        margin-top: auto !important;
    }
    .me-lg-0 {
        margin-right: 0 !important;
    }
    .me-lg-1 {
        margin-right: 0.25rem !important;
    }
    .me-lg-2 {
        margin-right: 0.5rem !important;
    }
    .me-lg-3 {
        margin-right: 1rem !important;
    }
    .me-lg-4 {
        margin-right: 1.5rem !important;
    }
    .me-lg-5 {
        margin-right: 3rem !important;
    }
    .me-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }
    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }
    .mb-lg-auto {
        margin-bottom: auto !important;
    }
    .ms-lg-0 {
        margin-left: 0 !important;
    }
    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }
    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }
    .ms-lg-3 {
        margin-left: 1rem !important;
    }
    .ms-lg-4 {
        margin-left: 1.5rem !important;
    }
    .ms-lg-5 {
        margin-left: 3rem !important;
    }
    .ms-lg-auto {
        margin-left: auto !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-lg-0 {
        padding-top: 0 !important;
    }
    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pt-lg-3 {
        padding-top: 1rem !important;
    }
    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pt-lg-5 {
        padding-top: 3rem !important;
    }
    .pe-lg-0 {
        padding-right: 0 !important;
    }
    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pe-lg-3 {
        padding-right: 1rem !important;
    }
    .pe-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pe-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-0 {
        padding-bottom: 0 !important;
    }
    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-lg-5 {
        padding-bottom: 3rem !important;
    }
    .ps-lg-0 {
        padding-left: 0 !important;
    }
    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }
    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }
    .ps-lg-3 {
        padding-left: 1rem !important;
    }
    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }
    .ps-lg-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-grid {
        display: grid !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: flex !important;
    }
    .d-xl-inline-flex {
        display: inline-flex !important;
    }
    .d-xl-none {
        display: none !important;
    }
    .flex-xl-fill {
        flex: 1 1 auto !important;
    }
    .flex-xl-row {
        flex-direction: row !important;
    }
    .flex-xl-column {
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-xl-start {
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        justify-content: center !important;
    }
    .justify-content-xl-between {
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        justify-content: space-around !important;
    }
    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-xl-start {
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        align-items: center !important;
    }
    .align-items-xl-baseline {
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        align-items: stretch !important;
    }
    .align-content-xl-start {
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        align-content: center !important;
    }
    .align-content-xl-between {
        align-content: space-between !important;
    }
    .align-content-xl-around {
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        align-self: auto !important;
    }
    .align-self-xl-start {
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        align-self: center !important;
    }
    .align-self-xl-baseline {
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        align-self: stretch !important;
    }
    .order-xl-first {
        order: -1 !important;
    }
    .order-xl-0 {
        order: 0 !important;
    }
    .order-xl-1 {
        order: 1 !important;
    }
    .order-xl-2 {
        order: 2 !important;
    }
    .order-xl-3 {
        order: 3 !important;
    }
    .order-xl-4 {
        order: 4 !important;
    }
    .order-xl-5 {
        order: 5 !important;
    }
    .order-xl-last {
        order: 6 !important;
    }
    .m-xl-0 {
        margin: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-xl-0 {
        margin-top: 0 !important;
    }
    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xl-3 {
        margin-top: 1rem !important;
    }
    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mt-xl-5 {
        margin-top: 3rem !important;
    }
    .mt-xl-auto {
        margin-top: auto !important;
    }
    .me-xl-0 {
        margin-right: 0 !important;
    }
    .me-xl-1 {
        margin-right: 0.25rem !important;
    }
    .me-xl-2 {
        margin-right: 0.5rem !important;
    }
    .me-xl-3 {
        margin-right: 1rem !important;
    }
    .me-xl-4 {
        margin-right: 1.5rem !important;
    }
    .me-xl-5 {
        margin-right: 3rem !important;
    }
    .me-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-0 {
        margin-bottom: 0 !important;
    }
    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }
    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-xl-5 {
        margin-bottom: 3rem !important;
    }
    .mb-xl-auto {
        margin-bottom: auto !important;
    }
    .ms-xl-0 {
        margin-left: 0 !important;
    }
    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }
    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }
    .ms-xl-3 {
        margin-left: 1rem !important;
    }
    .ms-xl-4 {
        margin-left: 1.5rem !important;
    }
    .ms-xl-5 {
        margin-left: 3rem !important;
    }
    .ms-xl-auto {
        margin-left: auto !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-xl-0 {
        padding-top: 0 !important;
    }
    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pt-xl-3 {
        padding-top: 1rem !important;
    }
    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pt-xl-5 {
        padding-top: 3rem !important;
    }
    .pe-xl-0 {
        padding-right: 0 !important;
    }
    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pe-xl-3 {
        padding-right: 1rem !important;
    }
    .pe-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pe-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-0 {
        padding-bottom: 0 !important;
    }
    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-xl-5 {
        padding-bottom: 3rem !important;
    }
    .ps-xl-0 {
        padding-left: 0 !important;
    }
    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }
    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }
    .ps-xl-3 {
        padding-left: 1rem !important;
    }
    .ps-xl-4 {
        padding-left: 1.5rem !important;
    }
    .ps-xl-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1400px) {
    .d-xxl-inline {
        display: inline !important;
    }
    .d-xxl-inline-block {
        display: inline-block !important;
    }
    .d-xxl-block {
        display: block !important;
    }
    .d-xxl-grid {
        display: grid !important;
    }
    .d-xxl-table {
        display: table !important;
    }
    .d-xxl-table-row {
        display: table-row !important;
    }
    .d-xxl-table-cell {
        display: table-cell !important;
    }
    .d-xxl-flex {
        display: flex !important;
    }
    .d-xxl-inline-flex {
        display: inline-flex !important;
    }
    .d-xxl-none {
        display: none !important;
    }
    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }
    .flex-xxl-row {
        flex-direction: row !important;
    }
    .flex-xxl-column {
        flex-direction: column !important;
    }
    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }
    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }
    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }
    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }
    .justify-content-xxl-center {
        justify-content: center !important;
    }
    .justify-content-xxl-between {
        justify-content: space-between !important;
    }
    .justify-content-xxl-around {
        justify-content: space-around !important;
    }
    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }
    .align-items-xxl-start {
        align-items: flex-start !important;
    }
    .align-items-xxl-end {
        align-items: flex-end !important;
    }
    .align-items-xxl-center {
        align-items: center !important;
    }
    .align-items-xxl-baseline {
        align-items: baseline !important;
    }
    .align-items-xxl-stretch {
        align-items: stretch !important;
    }
    .align-content-xxl-start {
        align-content: flex-start !important;
    }
    .align-content-xxl-end {
        align-content: flex-end !important;
    }
    .align-content-xxl-center {
        align-content: center !important;
    }
    .align-content-xxl-between {
        align-content: space-between !important;
    }
    .align-content-xxl-around {
        align-content: space-around !important;
    }
    .align-content-xxl-stretch {
        align-content: stretch !important;
    }
    .align-self-xxl-auto {
        align-self: auto !important;
    }
    .align-self-xxl-start {
        align-self: flex-start !important;
    }
    .align-self-xxl-end {
        align-self: flex-end !important;
    }
    .align-self-xxl-center {
        align-self: center !important;
    }
    .align-self-xxl-baseline {
        align-self: baseline !important;
    }
    .align-self-xxl-stretch {
        align-self: stretch !important;
    }
    .order-xxl-first {
        order: -1 !important;
    }
    .order-xxl-0 {
        order: 0 !important;
    }
    .order-xxl-1 {
        order: 1 !important;
    }
    .order-xxl-2 {
        order: 2 !important;
    }
    .order-xxl-3 {
        order: 3 !important;
    }
    .order-xxl-4 {
        order: 4 !important;
    }
    .order-xxl-5 {
        order: 5 !important;
    }
    .order-xxl-last {
        order: 6 !important;
    }
    .m-xxl-0 {
        margin: 0 !important;
    }
    .m-xxl-1 {
        margin: 0.25rem !important;
    }
    .m-xxl-2 {
        margin: 0.5rem !important;
    }
    .m-xxl-3 {
        margin: 1rem !important;
    }
    .m-xxl-4 {
        margin: 1.5rem !important;
    }
    .m-xxl-5 {
        margin: 3rem !important;
    }
    .m-xxl-auto {
        margin: auto !important;
    }
    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }
    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }
    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-xxl-0 {
        margin-top: 0 !important;
    }
    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xxl-3 {
        margin-top: 1rem !important;
    }
    .mt-xxl-4 {
        margin-top: 1.5rem !important;
    }
    .mt-xxl-5 {
        margin-top: 3rem !important;
    }
    .mt-xxl-auto {
        margin-top: auto !important;
    }
    .me-xxl-0 {
        margin-right: 0 !important;
    }
    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }
    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }
    .me-xxl-3 {
        margin-right: 1rem !important;
    }
    .me-xxl-4 {
        margin-right: 1.5rem !important;
    }
    .me-xxl-5 {
        margin-right: 3rem !important;
    }
    .me-xxl-auto {
        margin-right: auto !important;
    }
    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }
    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }
    .mb-xxl-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-xxl-5 {
        margin-bottom: 3rem !important;
    }
    .mb-xxl-auto {
        margin-bottom: auto !important;
    }
    .ms-xxl-0 {
        margin-left: 0 !important;
    }
    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }
    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }
    .ms-xxl-3 {
        margin-left: 1rem !important;
    }
    .ms-xxl-4 {
        margin-left: 1.5rem !important;
    }
    .ms-xxl-5 {
        margin-left: 3rem !important;
    }
    .ms-xxl-auto {
        margin-left: auto !important;
    }
    .p-xxl-0 {
        padding: 0 !important;
    }
    .p-xxl-1 {
        padding: 0.25rem !important;
    }
    .p-xxl-2 {
        padding: 0.5rem !important;
    }
    .p-xxl-3 {
        padding: 1rem !important;
    }
    .p-xxl-4 {
        padding: 1.5rem !important;
    }
    .p-xxl-5 {
        padding: 3rem !important;
    }
    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .pt-xxl-0 {
        padding-top: 0 !important;
    }
    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }
    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }
    .pt-xxl-3 {
        padding-top: 1rem !important;
    }
    .pt-xxl-4 {
        padding-top: 1.5rem !important;
    }
    .pt-xxl-5 {
        padding-top: 3rem !important;
    }
    .pe-xxl-0 {
        padding-right: 0 !important;
    }
    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }
    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }
    .pe-xxl-3 {
        padding-right: 1rem !important;
    }
    .pe-xxl-4 {
        padding-right: 1.5rem !important;
    }
    .pe-xxl-5 {
        padding-right: 3rem !important;
    }
    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }
    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }
    .pb-xxl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-xxl-5 {
        padding-bottom: 3rem !important;
    }
    .ps-xxl-0 {
        padding-left: 0 !important;
    }
    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }
    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }
    .ps-xxl-3 {
        padding-left: 1rem !important;
    }
    .ps-xxl-4 {
        padding-left: 1.5rem !important;
    }
    .ps-xxl-5 {
        padding-left: 3rem !important;
    }
}
@media print {
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-grid {
        display: grid !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: flex !important;
    }
    .d-print-inline-flex {
        display: inline-flex !important;
    }
    .d-print-none {
        display: none !important;
    }
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body,
html {
    height: 100%;
}
body {
    position: relative;
    overflow-x: hidden;
    color: #56666f;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    line-height: 1.5;
    direction: ltr;
    background: #fff;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    -osx-font-smoothing: grayscale;
    padding-top: 100px;
}
@media (max-width: 991.98px){
    body{
        padding-top: 75px;
    }
}
body.menu_open {
    overflow: hidden;
}
a {
    cursor: pointer;
    transition: opacity 0.4s ease;
}
body.noscroll,
section {
    overflow: hidden;
}
body.noscroll {
    height: 100vh;
}
.overflow-hidden {
    overflow: hidden;
}
.about-block .section-header,
.about-picture,
.about-text,
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xs,
.container-xxl,
.container-xxxl,
.header-content,
.header-mobile,
.hero-content,
.top-links-content {
    width: 100%;
    max-width: 1340px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}
.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
.container-xs {
    max-width: 0;
}
.container-sm {
    max-width: 57.6em;
}
.container-md {
    max-width: 76.9em;
}
.container-lg {
    max-width: 99.2em;
}
.container-xl {
    max-width: 120.1em;
}
.container-xxl {
    max-width: 134em;
}
.container-xxxl {
    max-width: 140.1em;
}
h1 {
    font-weight: 500;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}
h2,
h3,
h4,
h5 {
    font-weight: 400;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30rem;
    height: 5rem;
    max-width: 100%;
    color: #fff;
    font-size: 1.6rem;
    white-space: nowrap;
    text-align: center;
    border: 0.1rem solid #1d334a;
    background-color: #1d334a;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}
@media (max-width: 575.98px) {
    .button {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .button:hover:hover {
        background-color: #1d334a;
    }
}
.checkbox {
    position: relative;
    display: flex;
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (max-width: 575.98px) {
    .checkbox {
        margin-bottom: 3rem;
    }
}
.checkbox-wrap {
    position: relative;
    display: flex;
    padding: 2rem 0;
}
.checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
    opacity: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    border: 0.1rem solid #dee2ed;
    border-radius: 0.2rem;
}
.checkmark.invalid {
    border: 0.1rem solid red;
}
.checkmark:after {
    position: absolute;
    display: none;
    content: '';
}
.checkbox input:checked ~ .checkmark:after {
    display: block;
}
.checkbox .checkmark:after {
    width: 100%;
    height: 100%;
    background: url(/assets/img/icons/check-g.svg) 50% no-repeat;
}
p {
    margin: 0 0 0.57em;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.h1,
h1 {
    font-size: 4.6rem;
    line-height: 6rem;
    margin: 0 0 2.5rem;
    color: #1d334a;
}
@media (max-width: 767.98px) {
    .h1,
    h1 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
}
.h2,
h2 {
    font-size: 4.2rem;
    line-height: 5.1rem;
    color: #1d334a;
}
@media (min-width: 992px) {
    .h2,
    h2 {
        font-size: 4.2rem;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .h2,
    h2 {
        font-size: 2.4rem;
        line-height: 2.9rem;
    }
}
.h3,
h3 {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 1399.98px) {
    .h3,
    h3 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}
@media (max-width: 991.98px) {
    .h3,
    h3 {
        font-size: 1.5rem;
        line-height: 2.4rem;
    }
}
p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #56666f;
}
@media (max-width: 1399.98px) {
    p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
.input-group {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}
.input-group:last-of-type {
    margin-bottom: 0;
}
.input-group .input-placeholder {
    padding-top: 1.2rem;
}
.input-placeholder {
    position: absolute;
    left: 2.1rem;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    color: #1d334a;
}
.input-placeholder.hidden {
    display: none;
}
.input-error {
    position: absolute;
    bottom: -2rem;
    padding-top: 0.5rem;
    color: red;
    font-size: 1.2rem;
    line-height: 1.6rem;
}
input {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 5rem;
    padding-left: 2.1rem;
    border: 0.1rem solid #d3d4d6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-transform: uppercase;
}
input.invalid {
    border: 0.1rem solid red;
}
.policy {
    display: block;
    color: #56666f;
    line-height: 2rem;
    padding: 2.2rem 0 3rem;
    font-size: 1.4rem;
    line-height: 160%;
}
.policy a {
    text-decoration: underline;
}
.policy a,
.policy a:visited {
    color: #56666f;
}
.section {
    padding: 7rem 0;
}
.section.mt0{
    margin-top: 0;
    padding-top: 0;
}
.section_page {
    padding: 2.5rem 0 7rem;
}
.section-header {
    margin-bottom: 7rem;
}

@media (max-width: 767.98px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}
.section-lead {
    display: block;
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin-bottom: 2.4rem;
    color: #0c59b5;
}
@media (max-width: 767.98px) {
    .section-lead {
        margin-bottom: 0.6rem;
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}
.section-heading {
    margin-bottom: 3.1rem;
    color: #1d334a;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .section-heading {
        margin-bottom: 2.4rem;
    }
}
.section-line {
    width: 10.6rem;
    height: 0.2rem;
    background-color: #0c59b5;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .section-line {
        height: 0.1rem;
    }
}
.breadcrumbs {
    margin-bottom: 3rem;
}
.breadcrumbs-item {
    font-size: 1.6rem;
    line-height: 120%;
    color: #56666f;
}
.breadcrumbs-item.active {
    color: #8e8e92;
    opacity: 0.5;
}
.breadcrumbs-separator {
    display: inline-block;
    font-size: 1.6rem;
    color: #56666f;
    padding: 0 0.5rem;
}
.pagination {
    display: flex;
    justify-content: flex-end;
    margin-right: -1.2rem;
}
@media (max-width: 575.98px) {
    .pagination {
        justify-content: center;
        margin-right: 0;
    }
}
.pagination-next .pagination-icon svg {
    transform: rotate(180deg);
}
.pagination-icon,
.pagination-icon svg {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-icon svg {
    width: 0.6rem;
    height: 1.2rem;
    fill: transparent;
    stroke: #1d334a;
}
.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    color: #1d334a;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.pagination-item:not(:last-of-type) {
    margin-right: 1rem;
}
.pagination-item.active {
    color: #fff;
    background: #1d334a;
}
@media (min-width: 992px) {
    .pagination-item:hover:hover {
        color: #fff;
        background: #1d334a;
    }
    .pagination-item:hover:hover svg {
        stroke: #fff;
    }
}
.hidden {
    opacity: 0;
    transform: translateY(6rem);
    transition: transform 0.6s, opacity 0.6s;
}
.hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 575.98px) {
    .hidden {
        opacity: 1;
        transform: translateY(0);
    }
}
.header {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    padding: 2.9rem 0;
    transition: 0.25s;
}
@media (min-width: 992px) {
    header.header.menu-shrink {
        box-shadow: 0 0.3rem 0.8rem rgba(4, 36, 127, 0.05);
        padding: 1rem 0;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }
}

@media (max-width: 1199px) {
    .header {
        display: none;
    }
}
.header-mobile {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
    display: none;
    background: #fff;
    box-shadow: 0 0.3rem 0.8rem rgba(4, 36, 127, 0.05);
    padding: 0.7rem 2rem;
}
@media (max-width: 1199px) {
    .header-mobile {
        display: flex;
        justify-content: space-between;
    }
}
.header-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-lead {
    color: cl(lead);
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: -0.01em;
}
@media (max-width: 1199.98px) {
    .header-lead {
        font-size: 1.5rem;
    }
}
.header-info {
    display: flex;
    align-items: center;
}
.header-mail {
    display: inline-block;
    margin-right: 4rem;
    color: cl(lead);
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1399.98px) {
    .header-mail {
        margin-right: 2rem;
    }
}
@media (max-width: 1199.98px) {
    .header-mail {
        font-size: 1.4rem;
    }
}
@media (min-width: 992px) {
    .header-mail:hover:hover {
        color: #56666f;
    }
}
.header-phone {
    margin-right: 4rem;
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
    font-weight: 600;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}
@media (max-width: 1399.98px) {
    .header-phone {
        margin-right: 2rem;
    }
}
@media (max-width: 1199.98px) {
    .header-phone {
        font-size: 1.4rem;
    }
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left,
.header-right {
    display: flex;
}
.header-logo {
    margin-right: 10rem;
    padding-bottom: 1rem;
}
@media (max-width: 1399.98px) {
    .header-logo {
        margin-right: 3rem;
    }
    .header-logo img {
        width: 100%;
    }
}
@media (max-width: 1199.98px) {
    .header-logo {
        width: 12rem;
    }
}
@media (max-width: 1199px) {
    .header-logo {
        display: flex;
        align-items: center;
        width: 15rem;
        margin-right: 0;
        padding-bottom: 0.5rem;
    }
}
.header-menu {
    display: flex;
    align-items: center;
}
.header-menu-item {
    margin-right: 5.5rem;
}
@media (max-width: 1399.98px) {
    .header-menu-item {
        margin-right: 4.4rem;
    }
}
@media (max-width: 1199.98px) {
    .header-menu-item {
        margin-right: 2.2rem;
    }
}
.header-menu-link {
    position: relative;
    color: #56666f;
    font-size: 1.5rem;
    line-height: 2.4rem;
}
@media (max-width: 1199.98px) {
    .header-menu-link {
        font-size: 1.4rem;
    }
}
.header-menu-link:visited {
    color: #56666f;
}
.header-menu-link:after {
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    height: 0.1rem;
    width: 0;
    background: #56666f;
    content: '';
    transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
    .header-menu-link:hover:after {
        width: 100%;
    }
}
.header-item {
    display: flex;
    align-items: center;
}
.header-item:not(:last-of-type) {
    margin-right: 8rem;
}
@media (max-width: 1399.98px) {
    .header-item:not(:last-of-type) {
        margin-right: 6rem;
    }
}
@media (max-width: 1199.98px) {
    .header-item:not(:last-of-type) {
        margin-right: 3rem;
    }
}
.header-item-text {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 600;
}
@media (max-width: 1366px) {
    .header-item-text {
        display:none
    }
}
@media (max-width: 1199.98px) {
    .header-item-text {
        font-size: 1.4rem;
    }
}
.header-icon {
    margin-right: 1rem;
}
@media (max-width: 991.98px) {
    .header-icon {
        margin-right: 0;
    }
}
.header-icon_phone {
    width: 3rem;
}
.mobile-menu {
    position: fixed;
    top: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10rem 2.4rem 2.4rem;
    background: #fff;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}
.mobile-menu_active {
    transform: translateX(0);
}
@media (max-width: 1199px) {
    .mobile-menu {
        display: flex;
    }
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
.mobile-menu-item {
    margin-bottom: 2.8rem;
    color: #56666f;
    font-weight: 500;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    line-height: 2.4rem;
    text-transform: uppercase;
}
.mobile-menu-item:visited {
    color: #56666f;
}
.mobile-menu-phone {
    margin-bottom: 1.5rem;
    color: cl(text-head);
    font-weight: 500;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    line-height: 1.3rem;
}
.mobile-menu-bg,
.mobile-menu-picture {
    position: absolute;
    right: 0;
    bottom: 0;
}
.mobile-menu-picture {
    display: flex;
    align-items: flex-end;
}
.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 6rem;
}
@media (max-width: 1199px) {
    .burger {
        display: flex;
    }
}
@media all and (orientation: landscape) {
    .burger{
        height: auto;
    }
}
.burger_open .burger-line_bottom,
.burger_open .burger-line_middle,
.burger_open .burger-line_top {
    opacity: 0;
}
.burger_open .burger-line_open {
    opacity: 1;
}
.burger_open .burger-line_open_top {
    transform: rotate(45deg);
}
.burger_open .burger-line_open_bottom {
    transform: rotate(-45deg);
}
.burger-lines {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 2.2rem;
    height: 1.8rem;
}
.burger-line {
    width: 100%;
    height: 0.2rem;
    background: #111;
    border-radius: 0.8rem;
    transition: all 0.3s ease-in-out;
}
.burger-line_top {
    position: absolute;
    top: 0;
}
.burger-line_bottom {
    position: absolute;
    bottom: 0;
}
.burger-line_open_bottom,
.burger-line_open_top {
    position: absolute;
    opacity: 0;
}
.footer-info {
    display: flex;
    align-items: center;
}
@media (max-width: 991.98px) {
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
    }
}
.footer-item {
    display: flex;
    align-items: center;
}
.footer-item:not(:last-of-type) {
    margin-right: 8rem;
}
@media (max-width: 1399.98px) {
    .footer-item:not(:last-of-type) {
        margin-right: 6rem;
    }
}
@media (max-width: 1199.98px) {
    .footer-item:not(:last-of-type) {
        margin-right: 3rem;
    }
}
@media (max-width: 991.98px) {
    .footer-item:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 2.5rem;
    }
}
.footer-item-text {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 600;
}
@media (max-width: 1199.98px) {
    .footer-item-text {
        font-size: 1.4rem;
    }
}
.footer-icon {
    margin-right: 1rem;
}
.footer-icon_phone {
    width: 3rem;
}
.footer-top {
    padding: 3rem 0;
    border-top: 0.1rem solid #f1f2f6;
    border-bottom: 0.1rem solid #f1f2f6;
}
.footer-top-content {
    display: flex;
    justify-content: space-between;
}
@media (min-width: 992px) {
    .footer-top-content {
        display: flex;
        align-items: center;
    }
}
@media (max-width: 991.98px) {
    .footer-top-content {
        flex-direction: column;
    }
}
.footer-top__logo {
    margin-bottom: 4rem;
}
@media (min-width: 992px) {
    .footer-top__logo {
        margin-bottom: 0;
    }
}
@media (max-width: 991.98px) {
    .footer-top__logo {
        margin-bottom: 5rem;
    }
}
@media (min-width: 992px) {
    .footer-top__menu {
        flex: 1;
        margin-right: 4rem;
        margin-left: 10rem;
    }
}
@media (min-width: 992px) {
    .footer-top__menu ul {
        display: flex;
        justify-content: space-between;
    }
}
.footer-top__menu ul li {
    margin-bottom: 2rem;
}
@media (min-width: 992px) {
    .footer-top__menu ul li {
        margin-bottom: 0;
    }
}
.footer-top__contact {
    font-weight: 600;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}
@media (min-width: 992px) {
    .footer-top__contact {
        margin-right: 4rem;
    }
}
.footer-top__button {
    display: none;
}
@media (min-width: 992px) {
    .footer-top__button {
        display: block;
    }
}
.footer-bottom {
    padding: 1.7rem 0;
}
.footer-bottom-content {
    position: relative;
    display: flex;
    flex-direction: column;
}
@media (min-width: 1200px) {
    .footer-bottom-content {
        align-items: center;
    }
}
@media (min-width: 992px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-bottom__part:nth-child(2) {
    margin-bottom: 4rem;
}
@media (min-width: 992px) {
    .footer-bottom__part:nth-child(2) {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .footer-bottom__part {
        display: flex;
    }
}
@media (max-width: 991.98px) {
    .footer-bottom__part {
        margin-bottom: 3rem;
    }
    .footer-bottom__part:last-of-type {
        margin-bottom: 0;
    }
}
.footer-bottom__left {
    display: flex;
    align-items: center;
}
.footer-bottom__partners {
    display: flex;
}
.footer-bottom__partners-item {
    margin-right: 4.5rem;
}

.footer-bottom__partners-item_x2 {
    width: 12rem;
}
.footer-bottom__partners-item_x2 img {
    width: 100%;
}
.footer-bottom__partners-item_abm {
    width: 8.3rem;
}
.footer-bottom__partners-item_abm img {
    width: 100%;
}
.footer-bottom__copy {
    margin-bottom: 0.5rem;
    color: #56666f;
    font-size: 1.5rem;
    line-height: 120%;
}
@media (min-width: 992px) {
    .footer-bottom__copy {
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
}
@media (max-width: 991.98px) {
    .footer-bottom__copy {
        margin-bottom: 0;
        margin-right: 0.5rem;
        font-size: 1.4rem;
        line-height: 120%;
    }
}
.footer-bottom__info {
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

.footer-bottom__info a {
    color: #56666f;
}
@media (max-width: 991.98px) {
    .footer-bottom__socials {
        position: absolute;
        top: 0;
        right: 0;
    }
}
.footer-bottom__socials li svg .logo {
    fill: #2fd567;
}
.footer-bottom__socials li svg .outer {
    stroke: #2fd567;
}
@media (min-width: 992px) {
    .footer-socials {
        display: flex;
        align-items: center;
    }
}
.footer-socials__title {
    margin-bottom: 0.5rem;
    color: cl('light-gray');
}
@media (min-width: 992px) {
    .footer-socials__title {
        margin-right: 2.4rem;
        margin-bottom: 0;
    }
}
.footer-socials__list {
    display: flex;
}
.footer-socials__list li:not(:last-child) {
    margin-right: 1.4rem;
}
@media (max-width: 991.98px) {
    .footer-socials__list li:not(:last-child) {
        margin-right: 0.9rem;
    }
}
.footer-socials__list li a {
    display: block;
    width: 4.3rem;
    height: 4.3rem;
    background-size: cover;
}
.footer-socials__list li a img {
    width: 100%;
}
@media (max-width: 991.98px) {
    .footer-socials__list li a {
        width: 5rem;
        height: 5rem;
    }
}
.popup {
    padding: 4.2rem;
}
@media (max-width: 575.98px) {
    .popup {
        padding: 3.2rem 2.5rem;
    }
}
.popup h2 {
    margin-top: 0;
    margin-bottom: 2.7rem;
    font-size: 4.2rem;
    line-height: 5.1rem;
    font-weight: 400;
    color: #1d334a;
}
@media (max-width: 575.98px) {
    .popup h2 {
        margin-bottom: 1.5rem;
    }
}
.popup p {
    margin-bottom: 2.4rem;
}
@media (max-width: 575.98px) {
    .popup p {
        margin-bottom: 1.5rem;
    }
}
.popup-more {
    position: relative;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .popup-more.desktop {
        display: none;
    }
}
.popup-more.mobile {
    display: none;
}
@media (max-width: 767.98px) {
    .popup-more.mobile {
        display: block;
    }
}
.popup-more-link {
    display: inline-block;
    margin: 1rem 0;
    color: #6c7b85;
    border-bottom: 0.1rem dashed rgba(108, 123, 133, 0.5);
}
.popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0.5rem;
}
.popup textarea {
    width: 100%;
    padding-top: 1.8rem;
    padding-right: 1.8rem;
}
.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}
.popup-rating {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.3rem;
}
@media (max-width: 575.98px) {
    .popup-rating {
        flex-wrap: wrap;
    }
}
@media (max-width: 575.98px) {
    .popup-rating-item {
        display: flex;
        justify-content: flex-start;
        width: 20%;
    }
}
.popup-rating-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
}
.popup-rating-wrap:hover .popup-rating-number {
    color: cl(secondary);
}
.popup-rating-wrap.active {
    border: 0.1rem solid cl(secondary);
}
.popup-rating-wrap.active .popup-rating-number {
    color: cl(secondary);
}
.popup-rating-number {
    transition: all 0.3s ease-in-out;
}
.popup .button {
    width: 100%;
    border-radius: 0;
}
.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}
@media (max-width: 575.98px) {
    .popup-buttons {
        flex-direction: column;
    }
}
.popup-buttons .button {
    width: 48%;
}
@media (max-width: 575.98px) {
    .popup-buttons .button {
        width: 100%;
        margin-bottom: 2rem;
    }
    .popup-buttons .button:last-of-type {
        margin-bottom: 0;
    }
}
.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40rem;
    padding: 10% 3%;
    border-radius: 1.5rem;
    box-shadow: -1rem 1rem 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 575.98px) {
    .success {
        padding: 20% 0;
    }
}
.success-icon {
    margin-bottom: 3rem;
}
.success-heading {
    margin-bottom: 1rem;
    color: #333;
    font-size: 4.2rem;
    line-height: 5rem;
    text-align: center;
}
@media (max-width: 575.98px) {
    .success-heading {
        font-size: 2.8rem;
        line-height: 3.6rem;
    }
}
.success-lead {
    color: #707473;
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: center;
}
@media (max-width: 575.98px) {
    .success-lead {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}
.success-bubles {
    position: absolute;
    top: 10%;
    left: 20%;
}
.success-bubles-img {
    width: 100%;
}
.success-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.button #circleG {
    width: 6.6rem;
    margin: auto;
}
.button .circleG {
    float: left;
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 0.7rem;
    background-color: cl(secondary);
    border-radius: 2rem;
    -webkit-animation-name: bounce_circleG;
    animation-name: bounce_circleG;
    -webkit-animation-duration: 1.12s;
    animation-duration: 1.12s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
}
.button #circleG_1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.button #circleG_2 {
    -webkit-animation-delay: 0.225s;
    animation-delay: 0.225s;
}
.button #circleG_3 {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
@-webkit-keyframes bounce_circleG {
    50% {
        background-color: #fff;
    }
}
@keyframes bounce_circleG {
    50% {
        background-color: #fff;
    }
}
.basket-item #circleG,
.order-form__btns #circleG,
.product-reg-private-buy #circleG {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 6.6rem;
    height: 1.4rem;
    margin: auto;
}
.hero {
    position: relative;
}
.hero-content {
    display: flex;
}
@media (max-width: 991.98px) {
    .hero-content {
        flex-direction: column;
        padding: 0;
    }
}
.hero-info {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}
@media (max-width: 991.98px) {
    .hero-info {
        padding: 3.3rem 2rem;
        flex-direction: column;
    }
    .hero-info img{
        margin-bottom: 20px;
    }
}
.hero-info--text{
    width: 50%;
    flex-shrink: 0;
    margin-right: 50px;
}
@media (max-width: 991.98px) {
    .hero-info--text{
        width: auto;
        flex-shrink: 0;
        margin-right: 0;
    }
}
.hero-picture {
    width: 50%;
}
@media (min-width: 992.98px) {
    .hero-info--img{
        width: calc(50% - 50px);
    }
}
@media (max-width: 991.98px) {
    .hero-picture {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
.hero-picture img {
    height: 53rem;
}
@media (max-width: 991.98px) {
    .hero-picture img {
        width: 75.5rem;
        max-width: 100%;
        height: auto;
    }
}
.hero h1 {
    color: #1d334a;
}
.hero p {
    font-size: 1.6rem;
    line-height: 2.6rem;
}
.hero ul {
    margin-bottom: 1.6rem;
}
.hero ul li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.6rem;
    line-height: 2.6rem;
}
.top-links {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
}
.top-links-list {
    display: flex;
    height: 34rem;
}
@media (max-width: 991.98px) {
    .top-links-list {
        flex-direction: column;
        height: auto;
    }
}
.top-links-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30rem;
    background: #f1f2f6;
    padding: 6rem 6.8rem 6.9rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: auto;
}

.top-links-item--disabled:hover {
    background: #f1f2f6 !important;
    height: auto !important;
}
.top-links-item--disabled .top-links-icon svg,
.top-links-item--disabled:hover .top-links-icon svg {
    fill: #999 !important;
}
.top-links-item--disabled:hover {
    background: #f1f2f6;
    height: 30rem !important;
}
.top-links-item--disabled .top-links-heading,
.top-links-item--disabled .top-links-text {
    color: #999 !important;
}
@media (max-width: 991px) {
    .top-links-item--disabled:hover {
        height: auto !important;
    }
}
@media (min-width: 992px) {
    .top-links-item:hover:hover {
        background: #1d334a;
        height: 34rem;
    }
    .top-links-item:hover:hover .top-links-text {
        color: #fff;
    }
    .top-links-item:hover:hover .top-links-icon svg {
        fill: #fff;
    }
    .top-links-item:hover:hover h3 {
        color: #fff;
    }
}
@media (max-width: 991.98px) {
    .top-links-item {
        flex-direction: row;
        padding: 2.4rem 1.4rem;
        margin: initial;
        height: auto;
    }
    .top-links-item:not(:last-of-type) {
        margin-bottom: 1rem;
    }
}
.top-links-icon {
    width: 4.8rem;
    height: 5.2rem;
    margin-bottom: 3.4rem;
}
@media (max-width: 991.98px) {
    .top-links-icon {
        margin-bottom: 0;
        margin-right: 1.5rem;
        width: 3.2rem;
        height: 2.9rem;
    }
}
.top-links-icon svg {
    width: 100%;
    height: 100%;
    fill: #0c59b5;
}
.top-links h3 {
    margin-top: 0;
    margin-bottom: 2.2rem;
    color: #1d334a;
}
.top-links h3:visited {
    color: #1d334a;
}
@media (max-width: 991.98px) {
    .top-links h3 {
        margin-bottom: 0;
    }
}
.top-links-text {
    transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
    .top-links-text {
        display: none;
    }
}
.top-links-arrow {
    display: none;
    width: 1.7rem;
    height: 1.1rem;
    margin-left: auto;
}
.top-links-arrow svg {
    width: 100%;
    fill: #56666f;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
    .top-links-arrow {
        display: flex;
    }
}
@media (max-width: 575.98px) {
    .top-links-heading {
        text-align: left;
    }
}
.top-links-heading br {
    display: none;
}
@media (max-width: 575.98px) {
    .top-links-heading br {
        display: block;
    }
}
@media (max-width: 992px){
    .section.advantages{
        padding-bottom: 30px;
    }
}
.advantages-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 5rem;
}
@media (max-width: 992px) {
    .advantages-icon {
        width: 8rem;
        height: 8rem;
        margin-bottom: 3.7rem;
    }
}
.advantages-icon svg {
    width: 100%;
    height: 100%;
    fill: #0c59b5;
}
.advantages-list .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    
}
@media (max-width: 992px) {
    .advantages-list .swiper-wrapper {
        flex-wrap: nowrap;
        height: 326px;
    }
}
.advantages-list-pagination {
    display: none;
    width: 20rem;
    height: 0.3rem;
    background: #f1f2f6;
    margin: 2.5rem auto 0;
}
@media (max-width: 992px) {
    .advantages-list-pagination {
        display: flex;
    }
}
.advantages-list-pagination .swiper-pagination-bullet {
    flex: 1;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.advantages-list-pagination .swiper-pagination-bullet-active {
    background: #0c59b5;
}
.advantages-item {
    display: flex;
    flex-direction: column;
    transform: translateY(6rem);
    /* opacity: 0; */
    transition: transform 0.6s, opacity 0.6s;
    margin-bottom: 10px;
}
.advantages-item.revealed {
    transform: translateY(0);
    opacity: 1;
}
.advantages-item:first-of-type,
.advantages-item:nth-of-type(2),
.advantages-item:nth-of-type(3) {
    margin-bottom: 6rem;
}
@media (max-width: 992px) {
    .advantages-item:first-of-type,
    .advantages-item:nth-of-type(2),
    .advantages-item:nth-of-type(3) {
        margin-bottom: 2rem;
    }
}
@media (max-width: 992px) {
    .advantages-item {
        transform: translateY(0);
        opacity: 1;
        padding: 2rem 4rem 2rem 2rem;
        background: #f1f2f6;
    }
}

.advantages-heading {
    color: #1d334a;
    margin: 0 0 2rem;
}
@media (max-width: 992px) {
    .advantages-heading {
        margin: 0 0 0.9rem;
    }
}
.advantages-text {
    margin-bottom: 3rem;
}
.advantages-count {
    display: none;
}
@media (max-width: 992px) {
    .advantages-count {
        margin-top: auto;
        display: block;
    }
}
.catalog-block-content {
    display: flex;
    overflow: hidden;
    min-height: 500px;
}
@media (max-width: 991.98px) {
    .catalog-block-content {
        overflow: visible;
    }
}

.catalog-block-list {
    display: grid;
    grid-auto-rows: minmax(auto, auto);
    grid-auto-flow: dense;
    grid-gap: 0.3rem;
    grid-template-columns: repeat(2, 1fr);
}
.catalog-block-list_left {
    margin-right: 0.3rem;
}
.catalog-block-list_right {
    margin-left: 0.3rem;
}
.catalog-item-filter .catalog-content .col-6.col-md-3{
    width: 100%;
}
@media (max-width: 991.98px) {
    .section.catalog-block,
    .section.objects-block{
        display: none;
    }
}
.catalog-block-item {
    padding: 2.4rem 3rem;
    color: #1d334a;
    background-color: #f1f2f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
@media (min-width: 992px) {
    .catalog-block-item:hover:hover {
        background: #2fd567;
    }
    .catalog-block-item:hover:hover .catalog-block-arrow {
        opacity: 1;
    }
    .catalog-block-item:hover:hover .catalog-block-name {
        color: #fff;
    }
}
.catalog-block-name {
    font-size: 2.2rem;
    line-height: 2.4rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.catalog-block-arrow {
    opacity: 0;
    width: 2.2rem;
    height: 1.4rem;
    color: #fff;
    margin-top: auto;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}
.catalog-block-arrow svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
    .catalog-block-arrow {
        display: flex;
    }
}
.catalog-block-hero-list{
    position: relative;
}
@media (max-width: 991.98px) {
    .catalog-block-hero-list {
        display: none;
    }
}
.catalog-block-hero-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
    min-height: 50rem;
    transition: 0.3s ease-out;
    opacity: 0;
}
.catalog-block-hero-item.active{
    transition: 0.3s ease-in-out;
    opacity: 1;
    transition-delay: 0.15s;
}
.catalog-block-hero-item .catalog-block-hero-picture img{
    transform: scale(0.8);
    transition: 0.5s ease-in;
    
}
.catalog-block-hero-item.active .catalog-block-hero-picture img{
    transform: scale(1);
    transition: 0.5s ease-in-out;
}
@media (max-width: 991.98px) {
    .catalog-block-hero-item {
        height: 40rem;
    }
}
@media (min-width: 992px) {
    .catalog-block-hero-item:hover:hover .catalog-block-hero-arrow-icon {
        transform: translateX(1rem);
    }
    .catalog-block-hero-item:hover:hover .catalog-block-hero-picture {
        transform: scale(1.05);
    }
}
.catalog-block-hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.catalog-block-hero-picture:before{
    content:'';
    background: rgba(29, 51, 74, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:2;
}
.catalog-block-hero-picture img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.catalog-block-hero-bg {
    background: rgba(29, 51, 74, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.catalog-block-hero-info {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding: 3.9rem 4.9rem;
}
.catalog-block-hero-heading {
    color: #fff;
    font-weight: 600;
    line-height: 2.4rem;
    margin: 0 0 1.9rem;
    text-transform: uppercase;
}
.catalog-block-hero-lead {
    font-size: 2rem;
    line-height: 3.2rem;
    color: #fff;
    margin-bottom: 7.3rem;
}
.catalog-block-hero-arrow {
    display: flex;
    align-items: center;
}
.catalog-block-hero-arrow-icon {
    width: 2.2rem;
    height: 1.4rem;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.catalog-block-hero-arrow-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
    .catalog-block-hero-arrow-icon {
        display: flex;
    }
}
.catalog-block-hero-arrow-text {
    display: block;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #fff;
    margin-right: 1.4rem;
}
.catalog-block-swiper {
    display: none;
}
.catalog-block-swiper-item {
    position: relative;
    margin-bottom: 10px;
}
@media (max-width: 991.98px) {
    .catalog-block-swiper {
        display: flex;
        flex-wrap: wrap;
    }
    .catalog-block-swiper .swiper-wrapper {
        display: flex;
    }
}
@media (max-width: 992px) {
    .catalog-block-swiper-item {
        height: 31rem;
    }
}
.catalog-block-swiper-info {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.catalog-block-swiper-picture {
    position: relative;
    overflow: hidden;
}
.catalog-block-swiper-picture img {
    width: 100%;
}
@media (max-width: 576px) {
    .catalog-block-swiper-picture img {
        height: 31rem;
        object-fit: cover;
    }
}
@media (max-width: 992px) {
    .catalog-block-swiper-picture img {
        height: 42rem;
        object-fit: cover;
    }
}
.catalog-block-swiper-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 51, 74, 0.2);
}
.catalog-block-swiper-heading {
    color: #fff;
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
}
.catalog-block-swiper-count {
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.4rem;
}
.catalog-block-swiper-pagination {
    display: none;
    width: 20rem;
    height: 0.3rem;
    background: #f1f2f6;
    margin: 2.5rem auto 0;
}
@media (max-width: 992px) {
    .catalog-block-swiper-pagination {
        display: flex;
    }
}
.catalog-block-swiper-pagination .swiper-pagination-bullet {
    flex: 1;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.catalog-block-swiper-pagination .swiper-pagination-bullet-active {
    background: #0c59b5;
}
.tech {
    background-color: #f1f2f6;
}
.tech .section-header {
    margin-bottom: 8.5rem;
}
.tech-content {
    display: flex;
}
@media (max-width: 991.98px) {
    .tech-content {
        flex-direction: column;
    }
}
.tech-item:not(:last-of-type) {
    margin-bottom: 7rem;
}
.tech-heading {
    display: block;
    margin-bottom: 2.4rem;
    color: #1d334a;
}
.tech-heading span {
    color: #0c59b5;
}
.tech-picture {
    position: relative;
    top: -13rem;
    margin-bottom: -13rem;
}
@media (max-width: 991.98px) {
    .tech-picture {
        top: auto;
        margin-top: 7rem;
        margin-bottom: 0;
    }
}
.tech-picture img {
    width: 100%;
}
.tech-picture svg {
    width: 67.1%;
}
.tech-text {
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.tech-svg {
    position: absolute;
    top: 0;
    left: 21%;
}
.tech-svg.revealed .tech-svg-1,
.tech-svg.revealed .tech-svg-2,
.tech-svg.revealed .tech-svg-3,
.tech-svg.revealed .tech-svg-4 {
    opacity: 1;
    transform: translateY(0);
}
.tech-svg-1,
.tech-svg-2,
.tech-svg-3,
.tech-svg-4 {
    transition: all 1s ease-in-out;
    opacity: 0;
    transform: translateY(-100%);
}
.tech-svg-1.revealed,
.tech-svg-2.revealed,
.tech-svg-3.revealed,
.tech-svg-4.revealed {
    opacity: 1;
    transform: translateY(0);
}
.tech-svg-2 {
    transition-delay: 0.4s;
}
.tech-svg-3 {
    transition-delay: 0.8s;
}
.tech-svg-4 {
    transition-delay: 1.2s;
}
.video {
    background-image: url(/assets/img/pics/video-bg.jpg);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 58rem;
}
.video-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video .container {
    height: 100%;
}
.video iframe {
    width: 100%;
    height: 45vw;
}
.video-popup-content {
    height: 45vw;
}
.video .popup-close {
    top: 0;
    right: -4rem;
}
@media (max-width: 575.98px) {
    .video .popup-close {
        right: -2rem;
    }
}
.video .vm--modal {
    overflow: visible;
}
.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}
.video-heading {
    color: #fff;
    text-align: center;
    width: auto;
    max-width: 100%;
    margin-bottom: 3.3rem;
}
@media (max-width: 767.98px) {
    .video-heading {
        margin-bottom: 5.4rem;
    }
}

.catalog-selects {
    display: flex;
}
@media (max-width: 767.98px) {
    .catalog-selects {
        flex-direction: column;
    }
}
.catalog-selects-item ul {
    left: auto;
}
.catalog-selects-item ul li {
    margin-bottom: 0;
}
.catalog-selects-item ul li span {
    left: auto;
}
.catalog-selects-item input {
    height: auto;
    padding-left: 0;
    border: none;
}
.catalog-selects-item.multiselect {
    height: 5rem;
    padding: 0;
}
.catalog-selects-item.multiselect.multiselect--active .catalog-selects-icon img {
    transform: rotate(180deg);
}
.catalog-selects-item.multiselect:not(:last-of-type) .multiselect__tags {
    border-right: none;
}
@media (max-width: 767.98px) {
    .catalog-selects-item.multiselect:not(:last-of-type) .multiselect__tags {
        border-right: 0.1rem solid #d3d4d6;
        border-bottom: none;
    }
}
.catalog-selects-item .multiselect__content-wrapper {
    z-index: 10;
}
.catalog-selects-item .multiselect__placeholder {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    color: #1d334a;
    margin-bottom: 0;
    padding-top: 0;
}
.catalog-selects-item .multiselect__tags {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0 0 2.1rem;
    border-radius: 0;
    border-color: #d3d4d6;
}
.catalog-selects-item .multiselect__single {
    margin-bottom: 0;
    color: #56666f;
    font-size: 1.5rem;
    line-height: 2.1rem;
    background: #fff;
    padding-left: 0;
}
.catalog-selects-item .multiselect__select {
    display: none;
}
.catalog-selects-item .multiselect__option {
    color: #56666f;
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding-left: 2.1rem;
    background: #fff;
}
.catalog-selects-item .multiselect__option--highlight,
.catalog-selects-item .multiselect__option--selected,
.catalog-selects-item .multiselect__option--selected.multiselect__option--highlight {
    color: #56666f;
    background: #fff;
}
.catalog-selects-icon {
    position: absolute;
    right: 2rem;
    z-index: 50;
    display: flex;
    align-items: center;
    width: 1rem;
    height: 100%;
}
@media (max-width: 575.98px) {
    .catalog-selects-icon {
        right: 2.1rem;
    }
}
.catalog-selects-icon img {
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.catalog-selects-clear {
    display: block;
    min-height: 4rem;
    text-decoration: none;
    text-transform: none;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding: 1.2rem 1.2rem 1.2rem 2.1rem;
    color: #56666f;
    background: #fff;
}
.catalog-results {
    margin: 7rem 0;
    row-gap: 7rem;
}
@media (max-width: 767.98px) {
    .catalog-results {
        margin: 5rem 0;
        --bs-gap: 1rem;
        row-gap: 3.5rem;
    }
}
.catalog-results-item {
    display: flex;
    flex-direction: column;
}
.catalog-results-picture {
    margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
    .catalog-results-picture {
        margin-bottom: 0.8rem;
    }
}
.catalog-results-picture img {
    width: 100%;
}
.catalog-results-type {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #8e8e92;
    margin-bottom: 0.2rem;
}
@media (max-width: 767.98px) {
    .catalog-results-type {
        font-size: 1.2rem;
        line-height: 2.4rem;
    }
}
.catalog-results-name {
    display: inline-block;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #1d334a;
}
@media (max-width: 767.98px) {
    .catalog-results-name {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}
.catalog-results-availability {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 0.8rem;
    color: #56666f;
}
@media (max-width: 767.98px) {
    .catalog-results-availability {
        font-size: 1.2rem;
        line-height: 2.4rem;
        margin-top: 0.4rem;
    }
}
.product-content {
    display: flex;
}
@media (max-width: 767.98px) {
    .product-content {
        flex-direction: column;
    }
}
.product-info {
    margin-right: 3.5rem;
}
@media (max-width: 767.98px) {
    .product-info {
        order: 2;
        display: flex;
        flex-direction: column;
    }
}
.product-info-item {
    padding: 3rem 0;
    border-bottom: 0.1rem solid #d3d4d6;
    max-width: 53rem;
    width: 100%;
}
.product-info-item:first-of-type {
    border-top: 0.1rem solid #d3d4d6;
}
.product-info-item:first-of-type.active .product-info-content {
    margin-top: 0;
}
.product-info-item.active .product-info-header {
    margin-bottom: 2rem;
    transition: all 0.3s ease-in-out;
}
.product-info-item.active .product-info-heading {
    color: #56666f;
}
.product-info-item.active .product-info-content {
    max-height: 100rem;
}
.product-info-item.active .product-info-header-icon {
    transform: rotate(180deg);
}
.product-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out 0.3s;
    cursor: pointer;
}
.product-info-header-icon {
    fill: transparent;
    stroke: #56666f;
    transition: all 0.3s ease-in-out;
}
.product-info-header-icon svg {
    width: 1.4rem;
    height: 0.6rem;
}
.product-info-heading {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #babfc3;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.product-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}
.product h1 {
    font-size: 4.6rem;
    line-height: 6rem;
    margin-bottom: 3rem;
    color: #1d334a;
}
@media (max-width: 767.98px) {
    .product h1 {
        font-size: 3.2rem;
        line-height: 3.9rem;
        margin-bottom: 2rem;
    }
}
.product-lead {
    display: block;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1d334a;
    margin-bottom: 3.7rem;
}
@media (max-width: 767.98px) {
    .product-lead {
        font-size: 1.8rem;
        line-height: 2.4rem;
        margin-bottom: 2rem;
    }
}
.product .button {
    margin-top: 4rem;
}
/*@media (max-width: 767.98px) {*/
/*    .product .button {*/
/*        order: -1;*/
/*        margin-top: 0;*/
/*        margin-bottom: 4rem;*/
/*    }*/
/*}*/
@media (max-width: 767.98px) {
    .product-visual {
        order: 1;
        margin-bottom: 5rem;
    }
}
.product-visual-content {
    margin-bottom: 1.5rem;
}
.product-visual-textures,
.product-visual-textures-item {
    display: flex;
    align-items: center;
}
.product-visual-textures-item {
    width: 5rem;
    height: 5rem;
    justify-content: center;
    border-radius: 50%;
    border: 0.1rem solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.product-visual-textures-item:not(:last-of-type) {
    margin-right: 2rem;
}
@media (max-width: 767.98px) {
    .product-visual-textures-item:not(:last-of-type) {
        margin-right: 1rem;
    }
}
@media (max-width: 767.98px) {
    .product-visual-textures-item {
        width: 2.6rem;
        height: 2.6rem;
    }
}
.product-visual-textures-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.product-visual-textures-item.active {
    border-color: #d3d4d6;
}
.product-visual-textures-item.active img {
    transform: scale(0.8);
}
.product-visual-textures-name p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .product-visual-textures-name p {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}
.product-visual-image img {
    width: 100%;
}
.objects-list {
    margin: 7rem 0;
}
@media (max-width: 575.98px) {
    .objects-list {
        margin: 2rem 0;
    }
}
.objects-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 53rem;
    overflow: hidden;
}
.objects-item:not(:last-of-type) {
    margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
    .objects-item {
        height: 40rem;
    }
}
@media (max-width: 575.98px) {
    .objects-item {
    	position: relative;
        height: auto;
    }
}
@media (min-width: 992px) {
    .objects-item:hover .objects-item-bg img {
        transform: scale(1.05);
    }
    .objects-item:hover .objects-item-arrow-icon {
        transform: translateX(1rem);
    }
}
.objects-item-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}
@media (max-width: 575.98px) {
    .objects-item-bg {
        position: relative;
    }
}
.objects-item-bg img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.objects-item-bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(178deg, #181B1D 0%, rgba(24, 27, 29, 0) 80%);
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 575.98px) {
    .objects-item-bg img {
        width: 100%;
        height: auto;
    }
    .objects-item-bg:before {
    	opacity: 0.8;
    	height: 50%;
    }
}
@media (max-width: 575.98px) {
    .objects-item-bg img.desktop {
        display: none;
    }
}
.objects-item-bg img.mobile {
    display: none;
}
@media (max-width: 575.98px) {
    .objects-item-bg img.mobile {
        display: block;
    }
}
.objects-item-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    padding: 4rem 5rem;
    height: 100%;
    background: none;
}
@media (max-width: 575.98px) {
    .objects-item-info {
        background: none;
        padding: 10px 15px;
        position: absolute;
        left: 0;
        top: 0;
    }
}
.objects-item-heading {
    color: #fff;
    line-height: 2.4rem;
    margin: 0;
    padding: 10px 0 35px 0;
}
@media (max-width: 767.98px) {
	.objects-item-heading {
		padding-bottom: 20px;
	}
}
@media (max-width: 575.98px) {
    .objects-item-heading {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0;
    }
}
@media (max-width: 399px) {
    .objects-item-heading {
        font-size: 20px;
    }
}
@media (max-width: 349px) {
    .objects-item-heading {
        font-size: 18px;
    }
}
.objects-item-lead {
    font-size: 2rem;
    line-height: 3.2rem;
    color: #fff;
    margin-bottom: 7.3rem;
}
@media (max-width: 575.98px) {
    .objects-item-lead {
        color: #56666f;
        margin-bottom: 0;
        font-size: 1.6rem;
        line-height: 140%;
    }
}
.objects-item-arrow {
    display: flex;
    align-items: center;
}
@media (max-width: 575.98px) {
    .objects-item-arrow {
        display: none;
    }
}
.objects-item-arrow-icon {
    width: 2.2rem;
    height: 1.4rem;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.objects-item-arrow-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
    .objects-item-arrow-icon {
        width: 17px;
    	height: 12px;
    }
}
@media (max-width: 991.98px) {
    .objects-item-arrow-icon {
        display: flex;
    }
}
.objects-item-arrow-text {
    display: block;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #fff;
    margin-right: 1.4rem;
}
@media (max-width: 767.98px) {
    .objects-item-arrow-text {
        font-size: 16px;
        font-weight: normal;
    }
}
.object-poster {
    margin-bottom: 6rem;
}
.object-poster img {
    width: 100%;
}
.object-text {
    margin: 6rem 0;
}
.object h3 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-top: 0;
    margin-bottom: 2.4rem;
    color: #0c59b5;
}
.object-gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.6rem;
}
@media (min-width: 992px){
    .object-gallery{
        
    }
    .object-gallery-item img{
        max-width: 75%;
        max-height: 570px;
    }
}
@media (max-width: 575.98px) {
    .object-gallery {
        overflow: visible;
    }
}
.object-gallery-item {
    overflow: hidden;
    text-align: center;
}
.object-gallery-item img {
    width: 100%;
}
@media (max-width: 575.98px) {
    .object-gallery-item img.desktop {
        display: none;
    }
}
.object-gallery-item img.mobile {
    display: none;
}
@media (max-width: 575.98px) {
    .object-gallery-item img.mobile {
        display: block;
    }
}
@media (max-width: 575.98px) {
    .object-gallery-item {
        height: 33rem;
    }
    .object-gallery-item img {
        width: auto;
        height: 100%;
    }
}
.object-gallery-pagination {
    display: none;
    width: 20rem;
    height: 0.3rem;
    background: #f1f2f6;
    margin: 2.5rem auto 0;
}
@media (max-width: 575.98px) {
    .object-gallery-pagination {
        display: flex;
    }
}
.object-gallery-pagination .swiper-pagination-bullet {
    flex: 1;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.object-gallery-pagination .swiper-pagination-bullet-active {
    background: #0c59b5;
}
.object-gallery-next,
.object-gallery-prev {
    position: absolute;
    width: auto;
    height: 40px;
    z-index: 10;
    cursor: pointer;
}
@media (max-width: 575.98px) {
    .object-gallery-next,
    .object-gallery-prev {
        display: none;
    }
}
.object-gallery-next svg,
.object-gallery-prev svg {
    width: 100%;
    height: 100%;
}
.object-gallery-next {
    right: 2rem;
}
.object-gallery-prev svg {
    transform: rotate(180deg);
}
.object-gallery-prev {
    left: 2rem;
}
.object-previews {
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .object-previews {
        display: none;
    }
}
.object-previews-item {
    position: relative;
}
.object-previews-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease-in-out;
}
.object-previews-item.swiper-slide-thumb-active .object-previews-item-bg {
    opacity: 0;
}
.object-previews-item img {
    width: 100%;
}
.about-picture {
    margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
    .about-picture {
        padding: 0;
    }
}
.about-picture img {
    width: 100%;
}
.contacts-list {
    display: flex;
    margin-top: 6rem;
    margin-bottom: 10rem;
}
@media (max-width: 767.98px) {
    .contacts-list {
        flex-direction: column;
    }
}
.contacts-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 2.5rem;
}
.contacts-icon img {
    width: 100%;
}
.contacts-item {
    display: flex;

}
@media (max-width: 767.98px) {
    .contacts-item:not(:last-of-type) {
        margin-bottom: 5rem;
    }
}
.contacts-text {
    font-size: 2.4rem;
    line-height: 120%;
    color: #1d334a;
}
.contacts #map {
    height: 53rem;
}
.footer-bottom__info a:hover {
    text-decoration: underline;
}
.form-select {
    font-size: 1.1rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    color: #1d334a;
    margin-bottom: 0;
    padding-top: 0;
    display: block;
    width: 100%;
    padding: 0.775rem 2.25rem 0.775rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select-bold {
    font-size: 1.3rem;
    font-weight: 900 !important;
}

.form-select option {
    font-weight: normal;
    text-transform: none;
}

/*рестайлинг страницы Контакты*/
.section-map {
    height: 400px;
    position: relative;
}

@media (max-width: 991px) {
    .section-map {
        height: auto;
    }
}

.section-map--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 83.75em;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

@media (max-width: 767px) {
    .section-map--wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

.section-map .map-area {
    height: 400px;
    width: 60%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .section-map .map-area {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section-map .map-area {
        height: 300px;
    }
}

.section-map .map-area--iframe {
    height: 100%;
}

.section-map .map-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 70px 0 70px 40px;
}

@media (max-width: 991px) {
    .section-map .map-contacts {
        display: none;
    }
}

.section-map .map-contacts--point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-map .map-contacts--point-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 20px;
}

.section-map .map-contacts--point-icon img {
    width: 100%;
}

.section-map .map-contacts--point-text {
    font-size: 21px;
    line-height: 1.2;
    color: #1d334a;
}

.section-map .map-contacts--point a:hover {
    text-decoration: underline;
}

#wrapMap {
    position: relative;
    cursor: help;
    overflow: hidden;
}

#wrapMap .mapTitle {
    position: absolute;
    z-index: 1000;
    display: none;
    padding: 5px 20px;
    border-radius: 5px;
    background: #fefefe;
}
@media (max-width: 991px) {
    .section_page.contacts {
        padding-bottom: 0;
    }
}
/*/рестайлинг страницы Контакты*/


/*стрелка наверх*/
@media (min-width: 577px) {
    .toTop {
        position: fixed;
        right: 100px;
        bottom: 100px;
        cursor: pointer;
        z-index: 50;
        display: none;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        background-color: #fff;
        border-radius: 50%;
        border: 2px solid #2FD567;
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }
}

@media (min-width: 577px) and (max-width: 1599px) {
    .toTop {
        right: 50px;
        bottom: 50px;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .toTop {
        right: 30px;
        bottom: 90px;
    }
}

@media (min-width: 577px) {
    .toTop svg {
        height: 24px;
    }

    .toTop svg path {
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }

    .toTop:hover {
        background-color: #2FD567;
    }

    .toTop:hover svg path {
        fill: white;
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }

    .toTop.active {
        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: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .toTop,
    .toTop.active {
        height: 0;
        width: 0;
        display: none;
    }
}
/*/стрелка наверх*/


/*проверка чекбокса*/
/*.modal-check {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: start;*/
/*    -ms-flex-align: start;*/
/*    align-items: flex-start;*/
/*    font-size: 15px;*/
/*    font-weight: 300;*/
/*    margin-bottom: 0;*/
/*    color: #363E40;*/
/*}*/

/*@media (max-width: 650px) {*/
/*    .modal-check {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/

/*@media (max-width: 499px) {*/
/*    .modal-check {*/
/*        font-size: 12px;*/
/*    }*/
/*}*/

.modal-check a{
    text-decoration: underline;
}
.modal-check a:hover{
    text-decoration: none;
}

.modal-check.trembling {
    -webkit-animation: 1.2s ease-in-out 0s normal none running trembling-animation;
    animation: 1.2s ease-in-out 0s normal none running trembling-animation;
}
input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label,
input[type=checkbox] + span {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

input[type=checkbox] + label:before,
input[type=checkbox] + span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(29, 51, 74, 0.5);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

input[type=checkbox] + label:hover:before,
input[type=checkbox] + span:hover:before {
    border-color: #1d334a;
}

input[type=checkbox]:checked + span:before,
input[type=checkbox]:checked + label:before {
    /*background-color: #009B40;*/
    border-color: #1d334a;
    background-image: url("/assets/img/ico-check.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.js-btn-submit.js-disabled:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 10;
}


.modal-button button:disabled {
    opacity: 0.5;
    -webkit-transition: none;
    transition: none;
    cursor: no-drop;
    border-color: transparent;
}
.modal-button button:disabled:after,
.modal-button button:disabled:before {
    display: none;
}

.label-agreement{
    display: flex;
    align-items: flex-start;
}
.label-agreement--text{
    color:#56666f;
    font-style: normal;
    font-size: 12px;
}

@keyframes trembling-animation {
    0%, 50%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1.0);
    }
}
/*/проверка чекбокса*/


/*соцсети в модалке*/
.modal-soc{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.modal-soc--link{
    transition: 0.25s;
    width: 20%;
    flex-shrink: 0;
    text-align: right;
    transition: 0.25s;
}
.modal-soc--link:hover {
    transform: scale(1.1);
    transition: 0.25s;
}
.telegram-link img{
    width: 40px;
    border: 2px solid #2197c9;
    border-radius: 12px;
    padding: 6px;
}
/*/соцсети в модалке*/

.hero-info--wrap{
    display: flex;
}
@media (max-width: 991px){
    .hero-info--wrap{
        flex-direction: column;
    }
    .hero-info--wrap img{
        margin-bottom: 20px;
    }
}


/*галерея на странице Примеры*/
.fancybox-button[disabled]{
    display:none;
}
.objects-galery{
    display: flex;
    flex-wrap: wrap;
}
.objects-galery--link{
    margin: 5px;
    width: calc(20% - 10px);
    overflow: hidden;
    position: relative;
}
.objects-galery--link:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}
.objects-galery--link:hover:before{
    background-color: transparent;
}
.objects-galery--link img {
    width: 100%;
    transition: 0.25s;
}
.objects-galery--link:hover img{
    transition: 0.25s;
    transform: scale(1.1);
}
@media (max-width: 991px){
    .objects-galery--link{
        width: calc(25% - 10px);
    }
}
@media (max-width: 767px){
    .objects-galery--link{
        width: calc((100%/3) - 10px);
    }
}
@media (max-width: 576px){
    .objects-galery--link{
        width: calc(50% - 10px);
    }
}
/*/галерея на странице Примеры*/


/* Nichiha в мире */
.insta-list{
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px;
    width: calc(100% + 30px);
}
.insta-list--point{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 15px;
    width: calc((100% / 6) - 30px);

}
.insta-list--point img{
    flex-grow: 1;
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 150px;
}
.insta-list--point span{
    font-size: 14px;
    color: #56666f;
    min-height: 42px;
}
@media (max-width: 1199px){
    .insta-list--point{
        width: calc((100% / 5) - 30px);
    }
}
@media (max-width: 991px){
    .insta-list--point{
        width: calc((100% / 4) - 30px);
    }
}
@media (max-width: 767px){
    .insta-list--point{
        width: calc((100% / 3) - 30px);
    }
}
@media (max-width: 576px){
    .insta-list--point{
        width: calc((100% / 2) - 30px);
    }
}
@media (max-width: 349px){
    .insta-list--point{
        width: calc(50% - 10px);
        margin: 5px;
    }
}
/*/Nichiha в мире */


/*Недостатки традиционных отделочных материалов*/
.disadvantages__point{
    display: flex;
    margin-bottom: 40px;
}
.disadvantages__point:last-child{
    margin-bottom: 0;
}
.disadvantages__img{
    padding-right: 20px;
    width: 25%;
    min-width: 300px;
    flex-shrink: 0;
}
.disadvantages__title-color-blue{
    color: #1d334a; 
    margin-bottom: 10px;
}
.disadvantages__about{
    padding-top: 30px;
}
@media (max-width: 767px){
    .disadvantages__point{
        flex-direction: column;
        margin-bottom: 15px;
    }
    .disadvantages__img{
        width: auto;
        padding-right: 0;
    }
    .disadvantages__about{
        padding-top: 15px;
    }
}
@media (max-width: 576px){
    .hero .disadvantages ul li{
        font-size: 14px;
    }
}
/*/Недостатки традиционных отделочных материалов*/


/*страница 404*/
.section-error{
    padding-bottom: 50px;
}
.section-error__content{
    display: flex;
    justify-content: space-between;
}
.section-error__img{
    width: 50%;
    padding-left: 30px;
    min-height: 440px;
}
.section-error__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 50%;
}
.section-error .button {
    margin-top: 8rem;
}
@media (min-width: 992px){
    .section-error,
    section.full-height{
        min-height: calc(100vh - 295px)       
    }
}
@media (max-width: 991px){
    .section-error{
        padding-top: 30px;
    }
    .section-error__content{
        flex-direction: column;
    }
    .section-error__img{
        width: auto;
        padding-left: 0;
        padding-top: 40px;
        min-height: inherit;
    }
    .section-error .button {
        margin-top: 2rem;
    }
}
/*страница 404*/


/*очиста фильтра*/
.filter-clear {
    height: 25px;
    margin-bottom: 5px;
    text-align: right;
}
.filter-clear span{
    cursor: pointer;
    color: #1d334a;
    transition: 0.25s;
}
.filter-clear span:hover{
    color: #3f7ebf;
    transition: 0.25s;
}
.js-filter-clear.search-clear.form1-clear.form2-clear{
    display:none;
}
.catalog-item-filter .filter-clear{
    display:none;
}
@media (max-width: 767px){
    .filter-clear span{
        font-size:14px;
    }
}
/*/очиста фильтра*/

.section_page.section-about .hero-info{
    display: block;
}
@media (max-width: 992px) {
    .section_page.section-about{
        padding-bottom: 30px;
    }
}
@media (min-width: 992px){
    .section.contacts {
        min-height: calc(100vh - 270px)       
    }
}

/*модальное окно*/
body.overflow {
	height: 100vh;
	overflow: hidden;
}
#callbackSuccess{
    margin-bottom: 20px;
}

@media (min-width: 520px) {
	.modal-dialog.modal-sm {
		width: 500px;
	}
}

.modal {
	overflow: hidden;
	opacity: 0;
	position: fixed;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal .close {
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 24px;
	height: 24px;
	opacity: 0.6;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal .close:hover {
	opacity: 1;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-dialog {
	position: absolute;
	left: 50%;
	top: -100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: auto;
	width: calc(100vw - 30px);
	background-color: #fff;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

@media (min-width: 1150px) {
	.modal-dialog {
		max-width: 1000px;
		width: 100%;
	}
}

.modal.modal-open {
	display: block;
	overflow: visible;
	opacity: 1;
	z-index: 100;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal.modal-open .modal-dialog {
	top: 75px;
	-webkit-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

@media (max-width: 1399px) {
	.modal.modal-open .modal-dialog {
		top: 60px;
	}
}

.modal.modal-open .modal-dialog.modal-sm {
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal .js-btn-submit.js-disabled:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	z-index: 10;
}

.modal-img picture {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modal-img-head {
	max-width: 90%;
}

.modal-content {
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

@media (max-width: 991px) {
	.modal-content {
		max-height: calc(100vh - 150px);
	}
}

@media (min-width: 992px) {
	.modal-content::-webkit-scrollbar {
		width: 6px;
		height: 0;
	}

	.modal-content::-webkit-scrollbar-button {
		display: none;
		height: 0;
	}

	.modal-content::-webkit-scrollbar-track {
		background-color: #999;
	}

	.modal-content::-webkit-scrollbar-track-piece {
		background-color: #2F3641;
	}

	.modal-content::-webkit-scrollbar-thumb {
		height: 50px;
		background-color: #EA3863;
	}

	.modal-content::-webkit-scrollbar-corner {
		background-color: #999;
	}

	.modal-content::-webkit-resizer {
		background-color: #666;
	}
}

.modal-header {
	padding: 30px 30px 0 30px;
	border: 0;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.modal-header {
		margin-bottom: 15px;
	}
}

@media (max-width: 499px) {
	.modal-header {
		padding: 15px 15px 0 15px;
	}
}

.modal-body {
	padding: 0 30px 30px 30px;
}

@media (max-width: 499px) {
	.modal-body {
		padding: 0 15px 30px 15px;
	}
}

.modal-title {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 10px;
	font-weight: 600;
	color: #1D334A;
}

@media (max-width: 767px) {
	.modal-title {
		font-size: 20px;
	    padding-right: 35px;
	}
}

.modal-text {
	padding-top: 15px;
}

.modal-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.modal-button button:disabled {
	opacity: 0.5;
	-webkit-transition: none;
	transition: none;
	cursor: no-drop;
	font-weight: 400;
}

.modal-button button:disabled:after, .modal-button button:disabled:before {
	display: none;
}

.modal-button .page-btn {
	padding: 11px 15px;
	width: 100%;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 499px) {
	.modal-button .page-btn {
		width: 100%;
	}
}

.modal-form {
	margin-top: 24px;
}

@media (max-width: 991px) {
	.modal-form {
		margin-top: 10px;
	}
}

.modal-form--wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 20px;
}

.modal-input {
	width: 100%;
}

.modal-input input {
	width: 100%;
	border: 1px solid rgba(211, 212, 214, 0.5);
	padding: 12px 15px;
	background-color: transparent;
	color: #363E40;
	border-radius: 0;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input:hover, .modal-input input:focus {
	border-color: #009B40;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input::-webkit-input-placeholder {
	color: rgba(54, 62, 64, 0.5);
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input:-ms-input-placeholder {
	color: rgba(54, 62, 64, 0.5);
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input::-ms-input-placeholder {
	color: rgba(54, 62, 64, 0.5);
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input::placeholder {
	color: rgba(54, 62, 64, 0.5);
	-webkit-transition: 0.25s;
	transition: 0.25s;
}

.modal-input input.error {
	border-color: red;
}

.modal-input--label {
	font-size: 14px;
	margin-bottom: 5px;
}
@media (max-width: 991px) {
    .modal-input--label {
        font-size: 12px;
    }
}

.modal-check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	/*font-size: 14px;*/
	font-weight: 300;
	/*margin-bottom: 30px;*/
}

/*@media (max-width: 650px) {*/
/*	.modal-check {*/
/*		font-size: 14px;*/
/*	}*/
/*}*/

/*@media (max-width: 499px) {*/
/*	.modal-check {*/
/*		font-size: 12px;*/
/*	}*/
/*}*/

.modal-check a {
	color: initial;
}

.modal-check input[type=checkbox] {
	display: none;
}

.modal-check input[type=checkbox] + label {
	position: relative;
	padding-left: 30px;
}

.modal-check input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -1px;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #57B9D8;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.modal-check input[type=checkbox]:checked + label:before {
	background-color: #57B9D8;
	background-image: url("../img/ico-check.svg");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border-color: #57B9D8;
}

.modal-check.trembling {
	-webkit-animation: 1.2s ease-in-out 0s normal none running trembling-animation;
	animation: 1.2s ease-in-out 0s normal none running trembling-animation;
}

.label-agreement {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media (max-width: 499px) {
	.modal-dialog.modal-sm .modal-body {
		padding: 0 15px 20px 15px;
	}
}

@-webkit-keyframes trembling-animation {
	0%, 50%, 100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	10%, 30% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	20%, 40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes trembling-animation {
	0%, 50%, 100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	10%, 30% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	20%, 40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.header-logo-img{
    max-width:150px;
}
.footer-top__logo img{
    max-width: 150px;
}
/*/модальное окно*/

/*start footer*/
.footer-top-content {
	position: relative;
}

.footer-top__logo {
	flex-grow: 1;
}

.footer-icon {
	flex-shrink: 0;
}

.footer-bottom__socials {
	margin-left: 8rem;
}
@media (max-width: 1399px) {
	.footer-bottom__socials {
		margin-left: 6rem;
	}
}
@media (max-width: 1199px) {
	.footer-bottom__socials {
		margin-left: 3rem;
	}
}
@media (max-width: 991px) {
	.footer-bottom__socials {
		margin-left: 0;
		top: -7px;
	}
}

.labelKITE {
	font-size: 12px;
	line-height: normal;
	flex-grow: 1;
	text-align: right;
	margin: 0;
}
@media (max-width: 767px) {
	.labelKITE {
		text-align: left;
	}
}

.footer-bottom__info {
	flex-direction: row;
	flex-grow: 1;
	justify-content: space-between;
}
@media (max-width: 1399px) {
	.footer-bottom__info {
		flex-grow: unset;
	}
}
@media (max-width: 1199px) {
	.footer-bottom__info {
		padding-top: 20px;
	}
}
@media (max-width: 991px) {
	.footer-bottom__info {
		padding-top: 0;
	}
}
@media (max-width: 767px) {
	.footer-bottom__info {
		flex-direction: column;
	}
}
.footer-bottom__info > a {
	margin-right: 20px;
}
@media (max-width: 767px) {
	.footer-bottom__info > a {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 1199px) {
	.footer-bottom-content {
		flex-direction: column;
	}
}

.footer-bottom__partners {
	margin-right: 55px;
}
@media (max-width: 767px) {
	.footer-bottom__partners {
		margin-right: 0;
	}
}
@media (max-width: 379px) {
	.footer-bottom__partners {
		justify-content: space-between;
	}
}

@media (max-width: 379px) {
	.footer-bottom__partners-item {
		margin-right: 0;
	}
}

/*end footer*/