@charset "UTF-8";
: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;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align);
}
hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: 0.25;
}
hr:not([size]) {
    height: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
h1 {
    font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}
h2 {
    font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}
h3 {
    font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}
h4 {
    font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
p {
    margin-bottom: 1rem;
    margin-top: 0;
}
abbr[data-bs-original-title],
abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem;
}
ol,
ul {
    padding-left: 2rem;
}
dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 0.875em;
}
mark {
    background-color: #fcf8e3;
    padding: 0.2em;
}
sub,
sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #0d6efd;
    text-decoration: underline;
}
a:hover {
    color: #0a58ca;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
code,
kbd,
pre,
samp {
    direction: ltr;
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    unicode-bidi: bidi-override;
}
pre {
    display: block;
    font-size: 0.875em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto;
}
pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal;
}
code {
    word-wrap: break-word;
    color: #d63384;
    font-size: 0.875em;
}
a > code {
    color: inherit;
}
kbd {
    background-color: #212529;
    border-radius: 0.2rem;
    color: #fff;
    font-size: 0.875em;
    padding: 0.2rem 0.4rem;
}
kbd kbd {
    font-size: 1em;
    font-weight: 700;
    padding: 0;
}
figure {
    margin: 0 0 1rem;
}
img,
svg {
    vertical-align: middle;
}
table {
    border-collapse: collapse;
    caption-side: bottom;
}
caption {
    color: #6c757d;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    text-align: left;
}
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit;
}
label {
    display: inline-block;
}
button {
    border-radius: 0;
}
button:focus:not(:focus-visible) {
    outline: 0;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}
button,
select {
    text-transform: none;
}
[role="button"] {
    cursor: pointer;
}
select {
    word-wrap: normal;
}
select:disabled {
    opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
    display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
textarea {
    resize: vertical;
}
fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}
legend {
    float: left;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
    margin-bottom: 0.5rem;
    padding: 0;
    width: 100%;
}
@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}
legend + * {
    clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}
::-webkit-inner-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
    padding: 0;
}
::file-selector-button {
    font: inherit;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
output {
    display: inline-block;
}
iframe {
    border: 0;
}
summary {
    cursor: pointer;
    display: list-item;
}
progress {
    vertical-align: baseline;
}
[hidden] {
    display: none !important;
}
@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    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");
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    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 {
    -webkit-transform-style: preserve-3d;
    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 {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-css-mode > .swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: 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 {
    -ms-flex-negative: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    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%;
    min-height: 1px;
    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 {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
}
:root {
    --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    text-transform: none;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: 50%;
    display: inline-block;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet:only-child {
    display: none !important;
}
.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: top 0.2s, -webkit-transform 0.2s;
    transition: top 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: left 0.2s, -webkit-transform 0.2s;
    transition: left 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, left 0.2s;
    transition: transform 0.2s, left 0.2s;
    transition: transform 0.2s, left 0.2s, -webkit-transform 0.2s;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: right 0.2s, -webkit-transform 0.2s;
    transition: right 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, right 0.2s;
    transition: transform 0.2s, right 0.2s;
    transition: transform 0.2s, right 0.2s, -webkit-transform 0.2s;
}
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%;
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px;
}
.swiper-pagination-lock {
    display: none;
}
.swiper-scrollbar {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
}
.swiper-horizontal > .swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50;
}
.swiper-vertical > .swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50;
}
.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
.swiper-lazy-preloader {
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10;
}
.swiper-slide-visible .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
    margin: 0 auto;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.swiper-grid > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-fade.swiper-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube {
    overflow: visible;
}
.swiper-cube .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}
.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0;
}
.swiper-cube .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
    background: #000;
    bottom: 0;
    content: "";
    -webkit-filter: blur(50px);
    filter: blur(50px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.swiper-flip {
    overflow: visible;
}
.swiper-flip .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0;
}
.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transition-property: opacity, height, -webkit-transform;
    transition-property: opacity, height, -webkit-transform;
    -o-transition-property: transform, opacity, height;
    transition-property: transform, opacity, height;
    transition-property: transform, opacity, height, -webkit-transform;
}
.swiper-cards {
    overflow: visible;
}
.swiper-cards .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@font-face {
    font-family: jbm;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/JetBrainsMono-ExtraLight.woff2) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/Montserrat-ExtraLight.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/Montserrat-ExtraLightItalic.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Montserrat-Medium.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/Montserrat-MediumItalic.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Montserrat-SemiBold.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Montserrat-Bold.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/Montserrat-ExtraBold.otf) format("woff2");
}
@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Montserrat-Black.otf) format("woff2");
}
::-webkit-input-placeholder {
    color: #666;
}
::-moz-placeholder {
    color: #666;
}
:-ms-input-placeholder {
    color: #666;
}
::-ms-input-placeholder {
    color: #666;
}
::placeholder {
    color: #666;
}
::-moz-selection {
    background-color: rgba(55, 66, 77, 0.75);
    color: #fff;
}
::selection {
    background-color: rgba(55, 66, 77, 0.75);
    color: #fff;
}
input,
textarea {
    outline: none;
}
input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red;
}
input:required:valid,
textarea:required:valid {
    border-color: green;
}
body {
    color: #37424d;
    font-family: montserrat, sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.65;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}
.meta {
    background-color: #37424d;
    border-bottom: 1px solid #fff;
    border-radius: 8.8px;
    border-right: 1px solid #fff;
    -webkit-box-shadow: 3px 3px 6px -3px #37424d;
    box-shadow: 3px 3px 6px -3px #37424d;
    color: #fff;
    display: none;
    font-family: jbm, sans-serif;
    margin-bottom: 26.4px;
    max-width: 992px;
    overflow: hidden;
    padding: 26.4px;
}
.meta span {
    color: #559dd7;
}
.meta .light-blue {
    color: #9bdafb;
}
.meta .brown {
    color: #cf9279;
}
.top_bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-columns: 1fr 960px 1fr;
    align-items: center;
    background-image: url(default_bg_1.jpg);
    background-position-y: 90%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 3px 18px 6px rgba(55, 66, 77, 0.3), inset 0 -3px 12px -6px #37424d;
    box-shadow: 0 3px 18px 6px rgba(55, 66, 77, 0.3), inset 0 -3px 12px -6px #37424d;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -ms-grid;
    display: grid;
    font-weight: 500;
    grid-template-columns: 1fr 960px 1fr;
    justify-content: center;
    min-height: 79.2px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 3;
}
.top_bottom:before {
    background-color: rgba(55, 66, 77, 0.1);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
.top_bottom:last-of-type {
    background-position-y: 10%;
    -webkit-box-shadow: 0 -3px 18px 6px rgba(55, 66, 77, 0.3), inset 0 3px 12px -6px #37424d;
    box-shadow: 0 -3px 18px 6px rgba(55, 66, 77, 0.3), inset 0 3px 12px -6px #37424d;
    position: absolute;
    top: auto;
}
@media (max-width: 991.98px) {
    .top_bottom {
        -ms-grid-columns: 16px 1fr 16px;
        grid-template-columns: 16px 1fr 16px;
    }
}
h1 {
    font-weight: 900;
    margin: 0 0 66px;
}
h1,
h2 {
    font-size: 32px;
    position: relative;
}
h2 {
    font-weight: 800;
    margin: 0 0 52.8px;
}
h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 26.4px;
    position: relative;
    text-shadow: #fff 0 0 3px, #fff 0 0 3px, #fff 0 0 3px, #fff 0 0 3px, #fff 0 0 3px, #fff 0 0 3px;
}
h3:before {
    background-image: url(default_bg_1.jpg);
    background-position-y: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -2.9333333333px;
    -webkit-box-shadow: inset 0 -3px 12px -4px #37424d, inset 0 3px 12px -4px #37424d;
    box-shadow: inset 0 -3px 12px -4px #37424d, inset 0 3px 12px -4px #37424d;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -2.9333333333px;
    width: 100%;
    z-index: -2;
}
h3:after {
    bottom: -3.9333333333px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -3.9333333333px;
    width: 100%;
    z-index: -1;
}
h3 + .col_1 {
    margin-top: -17.16px;
}
h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6.6px;
}
@media (max-width: 575.98px) {
    h1,
    h2,
    h3,
    h4 {
        text-align: center;
    }
}
.headingType_1:after {
    background: -o-linear-gradient(320deg, #fff 25%, hsla(0, 0%, 100%, 0.2) 65%, hsla(0, 0%, 100%, 0.2) 70%, #fff 95%);
    background: linear-gradient(130deg, #fff 25%, hsla(0, 0%, 100%, 0.2) 65%, hsla(0, 0%, 100%, 0.2) 70%, #fff 95%);
}
.headingType_2:after {
    background: -o-linear-gradient(320deg, #fff 15%, hsla(0, 0%, 100%, 0.2) 30%, hsla(0, 0%, 100%, 0.2) 40%, #fff 75%);
    background: linear-gradient(130deg, #fff 15%, hsla(0, 0%, 100%, 0.2) 30%, hsla(0, 0%, 100%, 0.2) 40%, #fff 75%);
}
.headingType_3:after {
    background: -o-linear-gradient(50deg, #fff 5%, hsla(0, 0%, 100%, 0.2) 20%, hsla(0, 0%, 100%, 0.2) 30%, #fff 60%);
    background: linear-gradient(40deg, #fff 5%, hsla(0, 0%, 100%, 0.2) 20%, hsla(0, 0%, 100%, 0.2) 30%, #fff 60%);
}
.headingType_4:after {
    background: -o-linear-gradient(50deg, hsla(0, 0%, 100%, 0.2) 0, #fff 40%, #fff 80%, hsla(0, 0%, 100%, 0.2) 120%);
    background: linear-gradient(40deg, hsla(0, 0%, 100%, 0.2), #fff 40%, #fff 80%, hsla(0, 0%, 100%, 0.2) 120%);
}
.headingType_5:after {
    background: -o-linear-gradient(320deg, hsla(0, 0%, 100%, 0.2) -20%, #fff 10%, #fff 60%, hsla(0, 0%, 100%, 0.2) 100%);
    background: linear-gradient(130deg, hsla(0, 0%, 100%, 0.2) -20%, #fff 10%, #fff 60%, hsla(0, 0%, 100%, 0.2));
}
h1 span:not(.strike),
h2 span:not(.strike),
h3 span:not(.strike),
h4 span:not(.strike) {
    font-size: 12px;
    font-style: italic;
    margin: auto 0;
    padding: 0 26.4px;
}
.article_title {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(55, 66, 77, 0.6);
    border-bottom: 1px solid #fff;
    border-radius: 8.8px;
    border-right: 1px solid #fff;
    -webkit-box-shadow: 3px 3px 6px -3px #37424d;
    box-shadow: 3px 3px 6px -3px #37424d;
    display: none;
    margin: auto;
    padding: 13.2px 26.4px;
    position: relative;
    z-index: 1;
}
.article_title,
.logo {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2/3;
    overflow: hidden;
}
.logo {
    background-image: url(lekom_logo_blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 -3px 6px 0 rgba(55, 66, 77, 0.1), inset 0 -3px 12px -6px #37424d;
    box-shadow: 0 -3px 6px 0 rgba(55, 66, 77, 0.1), inset 0 -3px 12px -6px #37424d;
    height: 79.2px;
    position: absolute;
    width: 132px;
}
.logo:before {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: hsla(0, 0%, 100%, 0.25);
    -webkit-box-shadow: 0 0 26.4px 26.4px #fff;
    box-shadow: 0 0 26.4px 26.4px #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.logo:after {
    background-color: hsla(0, 0%, 100%, 0.75);
    -webkit-box-shadow: 0 0 26.4px 26.4px #fff;
    box-shadow: 0 0 26.4px 26.4px #fff;
    content: "";
    left: 26.4px;
    position: absolute;
    right: 26.4px;
    top: 40.92px;
    z-index: -2;
}
article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    max-width: 992px;
    min-height: 100vh;
    padding: 16px 16px 0;
}
article,
section {
    position: relative;
}
section {
    margin: 0 0 52.8px;
}
p {
    margin: -6.6px 0 33px;
    text-align: justify;
}
li > a,
p > a {
    display: inline-block;
    position: relative;
    text-decoration: none;
}
li > a:link,
p > a:link {
    color: blue;
}
li > a:visited,
p > a:visited {
    color: purple;
}
li > a:active,
p > a:active {
    color: #fff;
}
li > a:before,
p > a:before {
    background-color: #37424d;
    content: "";
    height: 0.5px;
    left: 0;
    position: absolute;
    top: 22.4px;
    -webkit-transition: width 0.1s ease-in;
    -o-transition: width 0.1s ease-in;
    transition: width 0.1s ease-in;
    width: 0;
}
section:hover a:before {
    width: 100%;
}
.num {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #37424d;
    border: 1px solid #fff;
    border-radius: 8.8px;
    -webkit-box-shadow: 3px 3px 6px -3px #37424d;
    box-shadow: 3px 3px 6px -3px #37424d;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 48px;
    font-weight: 900;
    height: 79.2px;
    justify-content: center;
    margin: auto 0 34.32px auto;
    text-align: center;
    width: 79.2px;
}
.num:before {
    background-color: #37424d;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 105.6px;
    width: 100%;
}
.strike {
    color: rgba(55, 66, 77, 0.5);
    position: relative;
}
.strike:before {
    background-color: red;
    content: "";
    height: 3px;
    position: absolute;
    top: 48%;
    width: 100%;
}
img {
    border-radius: 8.8px;
    max-width: 100%;
}
.menu .img_holder {
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.menu .img_holder:before {
    background-color: rgba(55, 66, 77, 0.5);
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.menu .img_holder:hover {
    -webkit-box-shadow: 6px 6px 12px -6px #37424d;
    box-shadow: 6px 6px 12px -6px #37424d;
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075);
}
.menu .img_holder:hover:before {
    background-color: rgba(55, 66, 77, 0.1);
}
.menu .article_title {
    display: none;
}
.img_holder {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-line-pack: center;
    align-content: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    border-radius: 8.8px;
    border-right: 1px solid #fff;
    -webkit-box-shadow: 3px 3px 6px -3px #37424d;
    box-shadow: 3px 3px 6px -3px #37424d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: -ms-grid;
    display: grid;
    font-weight: 500;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.img_holder:before {
    background-color: rgba(55, 66, 77, 0.05);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
.img_holder.align_top {
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: normal;
}
@media screen and (max-width: 698px) {
    p + .img_holder:not(.float_left, .float_right) {
        margin-top: -6.6px;
    }
    .img_holder:not(.float_left, .float_right) + p {
        margin-top: -6.6px;
    }
}
.clickableImg {
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
}
.clickableImg:before {
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.clickableImg:after {
    background-image: url(magnifying-glass-white.png);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 26.4px;
    content: "";
    height: 26.4px;
    left: 26.4px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 26.4px;
    top: 26.4px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 26.4px;
}
.clickableImg .this_is {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    -ms-grid-column-align: center;
    align-self: center;
    justify-self: center;
    opacity: 0;
    padding: 26.4px;
    pointer-events: none;
    position: absolute;
    text-align: center;
    text-shadow: #37424d 0 0 1px, #37424d 0 0 1px, #37424d 0 0 1px, #37424d 0 0 1px, #37424d 0 0 1px, #37424d 0 0 1px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.clickableImg:hover {
    -webkit-box-shadow: 6px 6px 12px -6px rgba(55, 66, 77, 0.75);
    box-shadow: 6px 6px 12px -6px rgba(55, 66, 77, 0.75);
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.clickableImg:hover:before {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(55, 66, 77, 0.5);
}
.clickableImg:hover:after {
    opacity: 1;
}
.clickableImg:hover .this_is {
    opacity: 1;
}
@media (max-width: 575.98px) {
    .clickableImg {
        font-size: 12px;
    }
    .clickableImg:after {
        height: 19.8px;
        width: 19.8px;
    }
}
.col2 .clickableImg:hover,
.col3 .clickableImg:hover,
.col4 .clickableImg:hover {
    -webkit-box-shadow: 6px 6px 12px -6px #37424d;
    box-shadow: 6px 6px 12px -6px #37424d;
}
.fullSize {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(55, 66, 77, 0.5);
    bottom: 105.6px;
    -webkit-box-shadow: 18px 18px 36px 6px rgba(55, 66, 77, 0.5);
    box-shadow: 18px 18px 36px 6px rgba(55, 66, 77, 0.5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 26.4px;
    margin: auto;
    padding: 26.4px;
    position: fixed;
    right: 26.4px;
    top: 105.6px;
    -webkit-transition: all 1s ease-in;
    -o-transition: all 1s ease-in;
    transition: all 1s ease-in;
    z-index: 1;
}
.fullSize .this_is {
    display: none;
}
.fullSize img {
    border-radius: 8.8px;
    max-height: 100%;
}
.fullSize:hover {
    -webkit-box-shadow: 18px 18px 36px 6px rgba(55, 66, 77, 0.5);
    box-shadow: 18px 18px 36px 6px rgba(55, 66, 77, 0.5);
}
.fullSize:hover:before {
    -webkit-backdrop-filter: initial;
    backdrop-filter: none;
    background-color: rgba(55, 66, 77, 0.1);
}
.col_1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -ms-grid;
    display: grid;
    gap: 26.4px;
    justify-content: center;
    margin: auto auto 39.6px;
}
.col_2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.col_2,
.col_3 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -ms-grid;
    display: grid;
    gap: 26.4px;
    justify-content: center;
    margin-bottom: 39.6px;
}
.col_3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.col_4 {
    grid-template-columns: repeat(auto-fit, minmax(192px, 1fr));
}
.col_4,
.col_5 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -ms-grid;
    display: grid;
    gap: 26.4px;
    justify-content: center;
    margin-bottom: 39.6px;
}
.col_5 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.col_9 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -ms-grid;
    display: grid;
    gap: 26.4px;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    justify-content: center;
    margin-bottom: 39.6px;
}
.col_1 .def,
.col_2 .def,
.col_3 .def,
.col_4 .def,
.col_5 .def {
    padding: 26.4px 0;
}
.col_1 p,
.col_1 ul,
.col_2 p,
.col_2 ul,
.col_3 p,
.col_3 ul,
.col_4 p,
.col_4 ul,
.col_5 p,
.col_5 ul {
    margin: -6.6px 0 0;
}
.col_1 div h3:not(:first-child),
.col_1 div p + p,
.col_2 div h3:not(:first-child),
.col_2 div p + p,
.col_3 div h3:not(:first-child),
.col_3 div p + p,
.col_4 div h3:not(:first-child),
.col_4 div p + p,
.col_5 div h3:not(:first-child),
.col_5 div p + p {
    margin-top: 26.4px;
}
.col_1 .col_1,
.col_1 .col_2,
.col_1 .col_3,
.col_1 .col_4,
.col_1 .col_5,
.col_2 .col_1,
.col_2 .col_2,
.col_2 .col_3,
.col_2 .col_4,
.col_2 .col_5,
.col_3 .col_1,
.col_3 .col_2,
.col_3 .col_3,
.col_3 .col_4,
.col_3 .col_5,
.col_4 .col_1,
.col_4 .col_2,
.col_4 .col_3,
.col_4 .col_4,
.col_4 .col_5,
.col_5 .col_1,
.col_5 .col_2,
.col_5 .col_3,
.col_5 .col_4,
.col_5 .col_5 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
}
.col_1 .width_1:not(.float_left, .float_right),
.col_1 .width_2:not(.float_left, .float_right),
.col_1 .width_3:not(.float_left, .float_right),
.col_1 .width_4:not(.float_left, .float_right),
.col_1 .width_6:not(.float_left, .float_right),
.col_2 .width_1:not(.float_left, .float_right),
.col_2 .width_2:not(.float_left, .float_right),
.col_2 .width_3:not(.float_left, .float_right),
.col_2 .width_4:not(.float_left, .float_right),
.col_2 .width_6:not(.float_left, .float_right),
.col_3 .width_1:not(.float_left, .float_right),
.col_3 .width_2:not(.float_left, .float_right),
.col_3 .width_3:not(.float_left, .float_right),
.col_3 .width_4:not(.float_left, .float_right),
.col_3 .width_6:not(.float_left, .float_right),
.col_4 .width_1:not(.float_left, .float_right),
.col_4 .width_2:not(.float_left, .float_right),
.col_4 .width_3:not(.float_left, .float_right),
.col_4 .width_4:not(.float_left, .float_right),
.col_4 .width_6:not(.float_left, .float_right),
.col_5 .width_1:not(.float_left, .float_right),
.col_5 .width_2:not(.float_left, .float_right),
.col_5 .width_3:not(.float_left, .float_right),
.col_5 .width_4:not(.float_left, .float_right),
.col_5 .width_6:not(.float_left, .float_right) {
    margin: auto;
}
.x2_first {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
}
.x3_first {
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
}
.x2_second {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
}
.x3_second {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
}
@media (max-width: 767.98px) {
    .x2_first,
    .x2_second {
        -ms-grid-columns: initial;
        grid-template-columns: none;
    }
}
@media (max-width: 575.98px) {
    .x3_first,
    .x3_second {
        -ms-grid-columns: initial;
        grid-template-columns: none;
    }
}
.youtube:before {
    background-color: rgba(55, 66, 77, 0.25);
    background-image: url(youtube_dark.png);
    background-position: 52.5%;
    background-repeat: no-repeat;
    background-size: 79.2px;
    content: "";
    opacity: 0.9;
    position: absolute;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.youtube:after {
    background-image: url(youtube.png);
    background-position: 52.5%;
    background-repeat: no-repeat;
    background-size: 79.2px;
    content: "";
    height: 100%;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 100%;
}
.youtube:hover:before {
    background-color: rgba(55, 66, 77, 0.05);
    background-size: 92.4px;
}
.youtube:hover:after {
    background-image: url(youtube.png);
    background-size: 92.4px;
    opacity: 1;
}
.article:before,
.case:before,
.news:before,
.translation:before {
    background-image: url(news.png);
    background-position-x: 9.1034482759px;
    background-position-y: 9.6px;
    background-repeat: no-repeat;
    background-size: 13.2px;
    content: "";
    position: absolute;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    z-index: 2;
}
.article:after,
.case:after,
.news:after,
.translation:after {
    background-color: rgba(55, 66, 77, 0.75);
    border-radius: 100px;
    content: "";
    left: 6.6px;
    opacity: 1;
    padding: 9.6px;
    position: absolute;
    top: 6.6px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.article:hover:before,
.case:hover:before,
.news:hover:before,
.translation:hover:before {
    background-size: 26.4px;
}
.article:hover:after,
.case:hover:after,
.news:hover:after,
.translation:hover:after {
    opacity: 0;
    padding: 0;
}
.article:before {
    background-image: url(article.png);
}
.case:before {
    background-image: url(case.png);
}
.translation:before {
    background-image: url(translation.png);
}
p + ul {
    margin-top: -30.36px;
}
ul ul {
    margin-left: 27.72px;
}
ul + .img_holder:not(.icon) {
    margin-top: -13.2px;
}
ul {
    counter-reset: counter;
    list-style: none;
    margin-bottom: 33px;
    padding: 0;
    text-align: justify;
}
ul li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    counter-increment: counter;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 2px;
}
ul li:before {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #37424d;
    border: 1px solid #fff;
    border-radius: 2.2px;
    -webkit-box-shadow: 1px 1px 3px -1px #37424d;
    box-shadow: 1px 1px 3px -1px #37424d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    content: counter(counter);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 8.8px;
    font-weight: 600;
    height: 14.52px;
    justify-content: center;
    margin: 5.3333333333px 13.2px auto 0;
    min-width: 14.52px;
    text-align: center;
}
ul.bullet li:before,
ul.question li:before {
    content: "✓";
}
ul.question li:before {
    content: "?";
}
ul.cross li:before {
    content: "❌";
}
.float_left {
    float: left;
    margin: 0 26.4px 0 0;
}
.float_right {
    float: right;
    margin: 0 0 0 26.4px;
}
@media (max-width: 575.98px) {
    .float_left:not(.icon, .height_1-5),
    .float_right:not(.icon, .height_1-5) {
        float: none;
    }
}
.table {
    display: -ms-grid;
    display: grid;
    gap: 4.4px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    margin-top: 4.4px;
}
.table + p {
    margin-top: 13.2px;
}
.table .cell {
    background-color: rgba(55, 66, 77, 0.1);
    border-radius: 8.8px;
    -webkit-box-shadow: 1px 1px 3px -1px #37424d;
    box-shadow: 1px 1px 3px -1px #37424d;
    overflow: hidden;
    padding: 13.2px;
    position: relative;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.table .cell:nth-child(2n-2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(55, 66, 77, 0.75);
    border-bottom-left-radius: 8.8px;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8.8px;
    border-top-right-radius: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 200;
    justify-content: center;
    text-align: center;
}
.table .cell:nth-child(2n-2):hover {
    background-color: rgba(55, 66, 77, 0.1);
    color: #37424d;
}
.table .cell:nth-child(4n-4):hover {
    background-color: rgba(55, 66, 77, 0.15);
}
.table .cell:nth-child(2n-1) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8.8px;
    border-top-left-radius: 0;
    border-top-right-radius: 8.8px;
}
.table .cell:nth-child(2n-1):hover {
    background-color: rgba(55, 66, 77, 0.75);
    color: #fff;
}
.table .cell:nth-child(4n-3) {
    background-color: rgba(55, 66, 77, 0.15);
}
.table .cell:first-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(55, 66, 77, 0.75);
    border-radius: 8.8px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 800;
    grid-column: 1/-1;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
}
.table ul {
    margin: 0;
    text-align: left;
}
.table ul li:before {
    background-color: rgba(55, 66, 77, 0.75);
}
@media screen and (max-width: 676px) {
    .table .cell {
        border-radius: 8.8px !important;
        pointer-events: none;
    }
    .table .cell:nth-child(4n-3):not(:first-child) {
        background-color: rgba(55, 66, 77, 0.1);
    }
}
.height_1-5,
.icon {
    border-radius: 4.4px;
    -webkit-box-shadow: 1px 1px 2px -1px #37424d;
    box-shadow: 1px 1px 2px -1px #37424d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    grid-auto-rows: 39.6px;
    margin: 0 15.84px 0 0;
    max-height: 39.6px;
    max-width: 39.6px;
    padding: 3px 2px 2px 3px;
}
.height_1-5 img,
.icon img {
    border-radius: initial;
}
.height_1-5 {
    padding: initial;
}
.height_1-5.float_right {
    margin: 0 0 0 15.84px;
}
.width_1 {
    max-width: 933.6px;
}
.width_2 {
    max-width: 466.8px;
}
.width_3 {
    max-width: 311.2px;
}
.width_4 {
    max-width: 233.4px;
}
.width_6 {
    max-width: 155.6px;
}
@media (max-width: 767.98px) {
    .width_2 {
        margin: 26.4px auto;
        max-width: 933.6px;
    }
    .width_2.float_left,
    .width_2.float_right {
        float: none;
    }
}
@media (max-width: 575.98px) {
    .width_2,
    .width_3,
    .width_4,
    .width_6 {
        margin: auto auto 26.4px;
    }
}
.height_3 {
    grid-auto-rows: 79.2px;
}
.height_6 {
    grid-auto-rows: 158.4px;
}
.height_9 {
    grid-auto-rows: 237.6px;
}
.height_12 {
    grid-auto-rows: 316.8px;
}
.height_15 {
    grid-auto-rows: 396px;
}
@media (max-width: 575.98px) {
    .height_12:not(.presentation, .locked),
    .height_15:not(.presentation, .locked),
    .height_3:not(.menu, .locked),
    .height_6:not(.presentation, .locked),
    .height_9:not(.presentation, .locked) {
        grid-auto-rows: auto;
    }
}
.def {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(55, 66, 77, 0.75);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    justify-content: center;
    margin: -6.6px 0 52.8px;
    position: relative;
    text-align: center;
    text-shadow: #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px;
}
.def:after,
.def:before {
    bottom: 0;
    content: "";
    height: 13.2px;
    left: 0;
    margin: auto;
    opacity: 0.5;
    position: absolute;
    right: 0;
    z-index: -1;
}
.def:before {
    top: -35.64px;
}
.def:after {
    top: 3.96px;
}
.def_1:before {
    background-color: aqua;
    -webkit-box-shadow: 105.6px 39.6px #f0f;
    box-shadow: 105.6px 39.6px #f0f;
    left: -22%;
    width: 42%;
}
.def_1:after {
    background-color: #ff0;
    -webkit-box-shadow: -52.8px 39.6px #000;
    box-shadow: -52.8px 39.6px #000;
    left: -18%;
    width: 32%;
}
.def_2:before {
    background-color: #f0f;
    -webkit-box-shadow: 132px 39.6px aqua;
    box-shadow: 132px 39.6px aqua;
    left: -15%;
    width: 40%;
}
.def_2:after {
    background-color: #000;
    -webkit-box-shadow: -105.6px 39.6px #ff0;
    box-shadow: -105.6px 39.6px #ff0;
    left: 6%;
    width: 32%;
}
.def_3:before {
    background-color: #ff0;
    -webkit-box-shadow: 105.6px 39.6px #f0f;
    box-shadow: 105.6px 39.6px #f0f;
    left: -13%;
    width: 33%;
}
.def_3:after {
    background-color: aqua;
    -webkit-box-shadow: 79.2px 39.6px #000;
    box-shadow: 79.2px 39.6px #000;
    left: -21%;
    width: 42%;
}
.def_4:before {
    background-color: #000;
    -webkit-box-shadow: -79.2px 39.6px #f0f;
    box-shadow: -79.2px 39.6px #f0f;
    left: -15%;
    width: 35%;
}
.def_4:after {
    background-color: #ff0;
    -webkit-box-shadow: -52.8px 39.6px aqua;
    box-shadow: -52.8px 39.6px aqua;
    left: 20%;
    width: 40%;
}
.display_none {
    display: none !important;
}
.display_initial {
    display: initial !important;
}
.aspect_ratio {
    height: 540.0002362501px;
}
@media (max-width: 767.98px) {
    .aspect_ratio {
        height: 405.0001771876px;
    }
}
@media (max-width: 575.98px) {
    .aspect_ratio {
        height: 303.7501328907px;
    }
}
.ppc_os_logos_holder {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.ppc_os_logos_holder .icon {
    margin: 0 2px;
}
.ppc_os_logos_holder .icon:first-child {
    margin-left: 0;
}
.ppc_os_logos_holder .icon:last-child {
    margin-right: 0;
}
.choice .img_holder:hover {
    -webkit-box-shadow: 6px 6px 12px -6px rgba(55, 66, 77, 0.75);
    box-shadow: 6px 6px 12px -6px rgba(55, 66, 77, 0.75);
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.flexCenter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flexB,
.flexCenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
}
.flexB {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.slider_container {
    height: 100%;
    position: absolute;
    width: 100%;
}
.slider_container .slider-img {
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.slider_container .slider-img:before {
    background-color: rgba(55, 66, 77, 0.05);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.slider_container .slider-img__slide {
    height: 100%;
    overflow: hidden;
}
.slider_container .slider-img__bg {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
}
.slider_container .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(55, 66, 77, 0.5);
    height: 6px;
    margin: 0 6px;
    opacity: 1;
    width: 6px;
}
@media (max-width: 575.98px) {
    .slider_container .swiper-pagination .swiper-pagination-bullet {
        height: 2px;
        margin: 0 4px;
        width: 2px;
    }
}
.slider_container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(55, 66, 77, 0.75);
    position: relative;
}
.slider_container .swiper-pagination .swiper-pagination-bullet-active:before {
    border: 2px solid rgba(55, 66, 77, 0.75);
    border-radius: 100%;
    content: "";
    left: -3px;
    padding: 4px;
    position: absolute;
    top: -3px;
}
@media (max-width: 575.98px) {
    .slider_container .swiper-pagination .swiper-pagination-bullet-active:before {
        border: 1px solid rgba(55, 66, 77, 0.75);
        left: -2px;
        padding: 2px;
        top: -2px;
    }
}
.slider_container .swiper-scrollbar {
    background-color: rgba(55, 66, 77, 0.5);
}
.slider_container .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: rgba(55, 66, 77, 0.75);
}
.slider_container .swiper-button-next,
.slider_container .swiper-button-prev {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background-color: rgba(55, 66, 77, 0.1);
    border-bottom: 1px solid #fff;
    border-radius: 6.6px;
    border-right: 1px solid #fff;
    bottom: 0;
    -webkit-box-shadow: 3px 3px 6px -3px #37424d;
    box-shadow: 3px 3px 6px -3px #37424d;
    color: rgba(55, 66, 77, 0.2);
    height: 52.8px;
    margin: auto 0;
    top: 0;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 52.8px;
}
.slider_container .swiper-button-next:after,
.slider_container .swiper-button-prev:after {
    color: #fff;
    font-size: 13.2px;
}
.slider_container .swiper-button-next:hover,
.slider_container .swiper-button-prev:hover {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(55, 66, 77, 0.2);
    border: 1px solid rgba(55, 66, 77, 0.75);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.slider_container .swiper-button-next:hover:after,
.slider_container .swiper-button-prev:hover:after {
    color: rgba(55, 66, 77, 0.75);
}
@media (max-width: 575.98px) {
    .slider_container .swiper-button-next,
    .slider_container .swiper-button-prev {
        height: 39.6px;
        width: 39.6px;
    }
}
.slider_container .swiper-button-next {
    padding-left: 3.96px;
}
.slider_container .swiper-button-prev {
    padding-left: -3.96px;
}
.swiper_holder .slider-img {
    height: 100vh;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.swiper_holder .slider-img:before {
    background-color: rgba(55, 66, 77, 0.05);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.swiper_holder .slider-img__slide {
    height: 100%;
    overflow: hidden;
}
.swiper_holder .slider-img__bg {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
}
.swiper_holder .slider-txt {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 3;
}
.swiper_holder .slider-txt__content {
    padding: 79.2px;
    text-align: right;
}
.swiper_holder .slider-txt__heading {
    float: right;
    font-family: montserrat, sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 120%;
    max-width: 900px;
    text-transform: uppercase;
}
.swiper_holder .slider-txt__desc {
    clear: both;
    float: right;
    max-width: 300px;
}
.swiper_holder .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(55, 66, 77, 0.5);
    height: 10px;
    margin: 0 10px;
    opacity: 1;
    width: 10px;
}
.swiper_holder .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(55, 66, 77, 0.75);
    position: relative;
}
.swiper_holder .swiper-pagination .swiper-pagination-bullet-active:before {
    border: 2px solid rgba(55, 66, 77, 0.75);
    border-radius: 100%;
    content: "";
    left: -3px;
    padding: 6px;
    position: absolute;
    top: -3px;
}
.swiper_holder .swiper-scrollbar {
    background-color: rgba(55, 66, 77, 0.5);
}
.swiper_holder .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: rgba(55, 66, 77, 0.75);
}
.swiper_holder .swiper-button-next,
.swiper_holder .swiper-button-prev {
    color: rgba(55, 66, 77, 0.75);
    padding: 26.4px;
}
.swiper_holder .swiper-button-next:after,
.swiper_holder .swiper-button-prev:after {
    font-size: 80px;
}
