﻿:root {
    --blue:#007bff;
    --indigo:#6610f2;
    --purple:#6f42c1;
    --pink:#e83e8c;
    --red:#dc3545;
    --orange:#fd7e14;
    --yellow:#ffc107;
    --green:#28a745;
    --teal:#20c997;
    --cyan:#17a2b8;
    --white:#fff;
    --gray:#6c757d;
    --gray-dark:#343a40;
    --primary:#2e3192;
    --secondary:#6c757d;
    --success:#39b54a;
    --info:#128785;
    --warning:#fcbf00;
    --danger:#cc0000;
    --light:#f8f9fa;
    --dark:#303030;
    --breakpoint-xs:0;
    --breakpoint-sm:576px;
    --breakpoint-md:768px;
    --breakpoint-lg:992px;
    --breakpoint-xl:1200px;
    --font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

*, ::after, ::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

aside, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: .5rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

strong {
    font-weight: bolder;
}

a {
    color: #2e3192;
    text-decoration: none;
    background-color: transparent;
}

img {
    vertical-align: middle;
    border-style: none;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

button, input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button {
    text-transform: none;
}

[type=button], button {
    -webkit-appearance: button;
}

    [type=button]::-moz-focus-inner, button::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

.h6, h1, h2, h3, h4, h5 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.375rem;
}

@media (max-width:1200px) {
    h1 {
        font-size: calc(1.3625rem + 1.35vw);
    }
}

h2 {
    font-size: 1.9rem;
}

@media (max-width:1200px) {
    h2 {
        font-size: calc(1.315rem + .78vw);
    }
}

h3 {
    font-size: 1.6625rem;
}

@media (max-width:1200px) {
    h3 {
        font-size: calc(1.29125rem + .495vw);
    }
}

h4 {
    font-size: 1.425rem;
}

@media (max-width:1200px) {
    h4 {
        font-size: calc(1.2675rem + .21vw);
    }
}

h5 {
    font-size: 1.1875rem;
}

.h6 {
    font-size: .95rem;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

.small {
    font-size: 80%;
    font-weight: 400;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container, .container-lg {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container, .container-lg {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container, .container-lg {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > [class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }

.col-1, .col-4, .col-6, .col-lg-10, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-6, .col-lg-8, .col-md, .col-md-12, .col-md-4, .col-md-5, .col-md-7, .col-sm-3, .col-sm-5, .col-sm-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

@media (min-width:576px) {
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
}

@media (min-width:768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-0 {
        order: 0;
    }
}

@media (min-width:992px) {
    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #495057;
    }

    .form-control::-moz-placeholder {
        color: #6c757d;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #6c757d;
        opacity: 1;
    }

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: .25rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

    .form-row > [class*=col-] {
        padding-right: 5px;
        padding-left: 5px;
    }

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}

    .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
        color: #6c757d;
    }

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem;
}

    .form-check-inline .form-check-input {
        position: static;
        margin-top: 0;
        margin-right: .3125rem;
        margin-left: 0;
    }

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: .95rem;
    line-height: 1.5;
    border-radius: .25rem;
}

.btn-primary {
    color: #fff;
    background-color: #2e3192;
    border-color: #2e3192;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-success {
    color: #fff;
    background-color: #39b54a;
    border-color: #39b54a;
}

.btn-danger {
    color: #fff;
    background-color: #c00;
    border-color: #c00;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.1875rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .83125rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: .95rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0;
    }

    .input-group:not(.has-validation) > .form-control:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

.tab-content > .tab-pane {
    display: none;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
}

    .navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

.navbar-brand {
    display: inline-block;
    padding-top: .321875rem;
    padding-bottom: .321875rem;
    margin-right: 1rem;
    font-size: 1.1875rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.1875rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}

@media (max-width:1199.98px) {
    .navbar-expand-xl > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-expand-xl > .container {
            flex-wrap: nowrap;
        }

        .navbar-expand-xl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xl .navbar-toggler {
            display: none;
        }
}

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5);
}

.navbar-light .navbar-nav .active > .nav-link {
    color: rgba(0,0,0,.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);
}

.close {
    float: right;
    font-size: 1.425rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

@media (max-width:1200px) {
    .close {
        font-size: calc(1.2675rem + .21vw);
    }
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
}

.modal.fade .modal-dialog {
    transform: translate(0,-50px);
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - 1rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        content: "";
    }

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

    .modal-header .close {
        padding: 1rem 1rem;
        margin: -1rem -1rem -1rem auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

    .modal-footer > * {
        margin: .25rem;
    }

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

        .modal-dialog-centered::before {
            height: calc(100vh - 3.5rem);
            height: -webkit-min-content;
            height: -moz-min-content;
            height: min-content;
        }
}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transform: none;
}

.align-middle {
    vertical-align: middle !important;
}

.bg-primary {
    background-color: #2e3192 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #303030 !important;
}

.bg-white {
    background-color: #fff !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.rounded {
    border-radius: .25rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive::before {
        display: block;
        content: "";
    }

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.align-self-center {
    align-self: center !important;
}

@media (min-width:768px) {
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
}

@media (min-width:992px) {
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-100 {
    height: 100% !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mr-1 {
    margin-right: .25rem !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}

.mx-2 {
    margin-right: .5rem !important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: .25rem !important;
}

.px-1 {
    padding-right: .25rem !important;
}

.py-1 {
    padding-bottom: .25rem !important;
}

.pl-1, .px-1 {
    padding-left: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.py-2 {
    padding-top: .5rem !important;
}

.px-2 {
    padding-right: .5rem !important;
}

.py-2 {
    padding-bottom: .5rem !important;
}

.px-2 {
    padding-left: .5rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
}

.py-5 {
    padding-bottom: 3rem !important;
}

.py-7 {
    padding-top: 12rem !important;
}

.py-7 {
    padding-bottom: 12rem !important;
}

.mr-n2 {
    margin-right: -.5rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

@media (min-width:576px) {
    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .p-sm-2 {
        padding: .5rem !important;
    }

    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
    }
}

@media (min-width:768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mb-md-2 {
        margin-bottom: .5rem !important;
    }

    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .px-md-2 {
        padding-right: .5rem !important;
    }

    .px-md-2 {
        padding-left: .5rem !important;
    }

    .pb-md-6 {
        padding-bottom: 6rem !important;
    }

    .pt-md-8 {
        padding-top: 24rem !important;
    }
}

@media (min-width:992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .p-lg-1 {
        padding: .25rem !important;
    }

    .pt-lg-2 {
        padding-top: .5rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .px-lg-5 {
        padding-left: 3rem !important;
    }
}

@media (min-width:1200px) {
    .mr-xl-0 {
        margin-right: 0 !important;
    }

    .px-xl-1 {
        padding-right: .25rem !important;
    }

    .px-xl-1 {
        padding-left: .25rem !important;
    }

    .px-xl-2 {
        padding-right: .5rem !important;
    }

    .px-xl-2 {
        padding-left: .5rem !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #2e3192 !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-danger {
    color: #c00 !important;
}

.text-dark {
    color: #303030 !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.bg-gray {
    background-color: #d1d1d1 !important;
}

.text-gray-dark {
    color: #acacac;
}

.text-gray-darker {
    color: #697077;
}

a {
    color: inherit;
}

    a:not(.btn):not(.nav-link):not(.badge):not(.dropdown-item):not(.link-dark):not([data-toggle=collapse]):not(.phpdebugbar-tab) {
        text-decoration: underline;
    }

.link-dark {
    color: #303030;
}

.redactor-title {
    line-height: 1.25;
}

.text-11 {
    font-size: .6875rem;
}

.text-12 {
    font-size: .75rem;
}

.text-13 {
    font-size: .8125rem;
}

.text-14 {
    font-size: .875rem;
}

.text-15 {
    font-size: .9375rem;
}

.text-18 {
    font-size: 1.125rem;
}

.text-19 {
    font-size: 1.1875rem;
}

.text-20 {
    font-size: 1.25rem;
}

.text-30 {
    font-size: 1.875rem;
}

@media (min-width:576px) {
    .text-sm-28 {
        font-size: 1.75rem;
    }
}

@media (min-width:768px) {
    .text-md-23 {
        font-size: 1.4375rem;
    }
}

@media (min-width:768px) {
    .text-md-36 {
        font-size: 2.25rem;
    }
}

@media (min-width:992px) {
    .text-lg-17 {
        font-size: 1.0625rem;
    }
}

.text-lg {
    font-size: 2rem;
}

@media (min-width:576px) {
    .text-lg {
        font-size: 2rem;
    }
}

@media (min-width:768px) {
    .text-lg {
        font-size: 2.5rem;
    }
}

@media (min-width:992px) {
    .text-lg {
        font-size: 3rem;
    }
}

@media (min-width:1200px) {
    .text-lg {
        font-size: 3.5rem;
    }
}

.small-2 {
    font-size: .875rem;
}

.small-3 {
    font-size: .813rem;
}

.small-4 {
    font-size: .75rem;
}

red {
    color: #c00;
}

.bg-center {
    background-position: center;
}

.outline-0 {
    outline: 0 !important;
}

.border-right {
    border-right: 1px solid #dee2e6;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

@media (min-width:992px) {
    .border-lg-left {
        border-left: 1px solid #dee2e6;
    }
}

@media (min-width:1200px) {
    .border-xl-right {
        border-right: 1px solid #dee2e6;
    }
}

a[data-toggle=dropdown] {
    outline: 0;
}

@media (min-width:992px) {
    #collapsingNavbar .dropdown .dropdown-menu {
        max-height: 0;
        display: block;
        overflow: hidden;
        opacity: 0;
    }
}

.bg-hover-darken {
    filter: saturate(100%);
}

.line-height-1 {
    line-height: 1;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.icon-40 {
    width: 40px;
    height: auto;
    max-height: 40px;
}

@media (min-width:576px) {
    .icon-sm-40 {
        width: 40px;
        height: auto;
        max-height: 40px;
    }
}

@media (min-width:992px) {
    .icon-lg-48 {
        width: 48px;
        height: auto;
        max-height: 48px;
    }
}

@media (min-width:768px) {
    .icon-md-56 {
        width: 56px;
        height: auto;
        max-height: 56px;
    }
}

@media (min-width:992px) {
    .icon-lg-64 {
        width: 64px;
        height: auto;
        max-height: 64px;
    }
}

.min-width-192 {
    min-width: 192px;
}

.max-width-640 {
    max-width: 640px;
}

.z-index-1 {
    z-index: 1;
}

.z-index-3 {
    z-index: 3;
}

.z-index-9 {
    z-index: 9;
}

.z-index-10 {
    z-index: 10;
}

@media (min-width:768px) {
    .swiper-hero-slider .gallery-thumbs .swiper-slide {
        background-color: rgba(17,17,17,.7);
    }
}

.marvel-device {
    display: inline-block;
    position: relative;
    box-sizing: content-box !important;
}

    .marvel-device .screen {
        width: 100%;
        position: relative;
        height: 100%;
        z-index: 3;
        background: #fff;
        overflow: hidden;
        display: block;
        border-radius: .063em;
        box-shadow: 0 0 0 .188em #111;
    }

    .marvel-device.iphone-x {
        width: 23.438em;
        height: 50.75em;
        padding: 1.625em;
        background: #fdfdfd;
        box-shadow: inset 0 0 .688em 0 #000;
        border-radius: 4.125em;
    }

        .marvel-device.iphone-x .overflow {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 4.125em;
            overflow: hidden;
        }

        .marvel-device.iphone-x .shadow {
            border-radius: 100%;
            width: 5.625em;
            height: 5.625em;
            position: absolute;
            background: radial-gradient(ellipse at center,rgba(0,0,0,.6) 0,rgba(255,255,255,0) 60%);
        }

        .marvel-device.iphone-x .shadow--tl {
            top: -1.25em;
            left: -1.25em;
        }

        .marvel-device.iphone-x .shadow--tr {
            top: -1.25em;
            right: -1.25em;
        }

        .marvel-device.iphone-x .shadow--bl {
            bottom: -1.25em;
            left: -1.25em;
        }

        .marvel-device.iphone-x .shadow--br {
            bottom: -1.25em;
            right: -1.25em;
        }

        .marvel-device.iphone-x:before {
            width: calc(100% - .625em);
            height: calc(100% - .625em);
            position: absolute;
            top: .313em;
            content: "";
            left: .313em;
            border-radius: 3.813em;
            background: #000;
            z-index: 1;
        }

        .marvel-device.iphone-x .inner-shadow {
            width: calc(100% - 1.25em);
            height: calc(100% - 1.25em);
            position: absolute;
            top: .625em;
            overflow: hidden;
            left: .625em;
            border-radius: 3.5em;
            box-shadow: inset 0 0 .938em 0 rgba(255,255,255,.66);
            z-index: 1;
        }

            .marvel-device.iphone-x .inner-shadow:before {
                box-shadow: inset 0 0 1.25em 0 #fff;
                width: 100%;
                height: 116%;
                position: absolute;
                top: -8%;
                content: "";
                left: 0;
                border-radius: 12.5em/7em;
                z-index: 2;
            }

    .marvel-device.note8 {
        width: 25em;
        height: 51.375em;
        background: #000;
        border-radius: 2.125em;
        padding: 2.813em .625em;
    }

        .marvel-device.note8 .overflow {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 2.125em;
            overflow: hidden;
        }

        .marvel-device.note8 .speaker {
            height: .5em;
            width: 3.5em;
            left: 50%;
            position: absolute;
            top: 1.563em;
            margin-left: -1.75em;
            background: #171818;
            z-index: 1;
            border-radius: .5em;
        }

        .marvel-device.note8 .camera {
            height: 1.125em;
            width: 1.125em;
            left: 5.375em;
            position: absolute;
            top: 1.125em;
            background: #212b36;
            z-index: 1;
            border-radius: 100%;
        }

            .marvel-device.note8 .camera:before {
                content: "";
                height: .5em;
                width: .5em;
                left: -1.375em;
                position: absolute;
                top: .313em;
                background: #212b36;
                z-index: 1;
                border-radius: 100%;
            }

        .marvel-device.note8 .sleep {
            width: .125em;
            height: 3.5em;
            background: #000;
            position: absolute;
            top: 18em;
            right: -.125em;
        }

        .marvel-device.note8 .volume {
            width: .125em;
            height: 7.5em;
            background: #000;
            position: absolute;
            top: 10.5em;
            left: -.125em;
        }

            .marvel-device.note8 .volume:before {
                content: "";
                top: 10.5em;
                width: .125em;
                position: absolute;
                left: 0;
                background: #000;
                height: 3.5em;
            }

        .marvel-device.note8 .inner {
            width: 100%;
            height: calc(100% - .5em);
            position: absolute;
            top: .125em;
            content: "";
            left: 0;
            border-radius: 2.125em;
            border-top: .125em solid #9fa0a2;
            border-bottom: .125em solid #9fa0a2;
            background: #000;
            z-index: 1;
            box-shadow: inset 0 0 .375em 0 rgba(255,255,255,.5);
        }

        .marvel-device.note8 .shadow {
            box-shadow: inset 0 0 3.75em 0 #fff,inset 0 0 1.875em 0 rgba(255,255,255,.5),0 0 1.25em 0 #fff,0 0 1.25em 0 rgba(255,255,255,.5);
            height: 101%;
            position: absolute;
            top: -.5%;
            content: "";
            width: calc(100% - 1.25em);
            left: .625em;
            border-radius: 2.375em;
            z-index: 5;
        }

        .marvel-device.note8 .screen {
            border-radius: .875em;
            box-shadow: none;
        }

    .marvel-device.tablet {
        width: 36em;
        height: 48em;
        padding: 3.625em 1.563em;
        background: #242324;
        border-radius: 1.75em;
    }

        .marvel-device.tablet:before {
            width: calc(100% - .5em);
            height: calc(100% - .5em);
            position: absolute;
            content: "";
            display: block;
            top: .25em;
            left: .25em;
            border-radius: 2.5em;
            background: #1e1e1e;
        }

        .marvel-device.tablet .camera {
            background: #3c3d3d;
            width: .625em;
            height: .625em;
            position: absolute;
            top: 1.6em;
            left: 50%;
            margin-left: -.313em;
            border-radius: 100%;
        }

        .marvel-device.tablet .home {
            background: #242324;
            border-radius: 2.25em;
            width: 3.125em;
            height: 3.125em;
            position: absolute;
            left: 50%;
            margin-left: -1.563em;
            bottom: 1.375em;
        }

            .marvel-device.tablet .home:after {
                width: .938em;
                height: .938em;
                margin-top: -.5em;
                margin-left: -.5em;
                border: .063em solid rgba(255,255,255,.1);
                border-radius: .25em;
                position: absolute;
                display: block;
                content: "";
                top: 50%;
                left: 50%;
            }

.dot {
    display: none;
    margin: auto auto;
    width: 2%;
    height: 2%;
    position: relative;
}

.centraldot {
    width: 4px;
    height: 4px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    background: #c00;
    border-radius: 30px;
    position: absolute;
    -webkit-animation: animationDotCentral linear 1.5s;
    animation: animationDotCentral linear 1.5s;
    transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.wave {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    background: #c00;
    border-radius: 20px;
    position: absolute;
    opacity: 0;
    -webkit-animation: animationWave cubic-bezier(0,.54,.53,1) 1.5s;
    animation: animationWave cubic-bezier(0,.54,.53,1) 1.5s;
    transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.wave2 {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    background: #c00;
    border-radius: 20px;
    position: absolute;
    opacity: 0;
    -webkit-animation: animationWave cubic-bezier(0,.54,.53,1) 1.5s;
    animation: animationWave cubic-bezier(0,.54,.53,1) 1.5s;
    transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes animationDotCentral {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    5% {
        transform: scale(2);
    }

    10% {
        transform: scale(.9);
        opacity: 1;
    }

    11% {
        transform: scale(1.5);
    }

    12% {
        transform: scale(1);
    }

    28% {
        background: #c00;
    }

    29% {
        background: #c00;
    }

    31% {
        background: #c00;
    }

    33% {
        background: #c00;
    }

    35% {
        background: #c00;
    }

    90% {
        opacity: .8;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animationDotCentral {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    5% {
        transform: scale(2);
    }

    10% {
        transform: scale(.9);
        opacity: 1;
    }

    11% {
        transform: scale(1.5);
    }

    12% {
        transform: scale(1);
    }

    28% {
        background: #c00;
    }

    29% {
        background: #c00;
    }

    31% {
        background: #c00;
    }

    33% {
        background: #c00;
    }

    35% {
        background: #c00;
    }

    90% {
        opacity: .8;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes animationWave {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    1% {
        opacity: .8;
    }

    10% {
        background: #c00;
    }

    100% {
        transform: scale(1);
        background: #c00;
    }
}

@keyframes animationWave {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    1% {
        opacity: .8;
    }

    10% {
        background: #c00;
    }

    100% {
        transform: scale(1);
        background: #c00;
    }
}

.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.flag-icon {
    position: relative;
    display: inline-block;
    width: 1.3333333333em;
    line-height: 1em;
}

    .flag-icon:before {
        content: " ";
    }

: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-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
}

.swiper-wrapper {
    transform: translate3d(0,0,0);
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

:root {
    --swiper-navigation-size:44px;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translate3d(0,0,0);
    z-index: 10;
}

::-moz-placeholder {
    font-size: .875rem;
}

:-ms-input-placeholder {
    font-size: .875rem;
}

::placeholder {
    font-size: .875rem;
}

body.default .navbar-main .dropdown-menu-full {
    padding: 0;
    margin-bottom: .5rem;
}

body.default .navbar-main .navbar-nav {
    padding: .5rem 0 .85rem 0;
}

    body.default .navbar-main .navbar-nav .nav-item {
        font-size: .875rem;
    }

    body.default .navbar-main .navbar-nav .nav-link .icon-toggle {
        display: inline-block;
        position: relative;
        width: .75rem;
        height: .75rem;
    }

        body.default .navbar-main .navbar-nav .nav-link .icon-toggle span {
            background-color: #2e3192;
            position: absolute;
        }

        body.default .navbar-main .navbar-nav .nav-link .icon-toggle.icon-toggle-plus-minus span {
            border-radius: .25rem;
            top: 50%;
            height: 2px;
            width: 80%;
        }

            body.default .navbar-main .navbar-nav .nav-link .icon-toggle.icon-toggle-plus-minus span:nth-child(2) {
                transform: rotate(90deg);
            }

@media (max-width:767.98px) {
    body.default .navbar-main {
        max-height: 100vh;
        overflow-y: auto;
    }
}

@media (min-width:1200px) {
    body.default .navbar-main {
        padding: 0;
    }

        body.default .navbar-main .dropdown-menu-full {
            border-top: 0;
            border-bottom: .35rem solid #2e3192;
            margin-top: 0;
            margin-left: 1rem;
            max-width: 1110px;
            width: 100%;
        }

        body.default .navbar-main .navbar-nav {
            padding: 0;
        }

            body.default .navbar-main .navbar-nav .nav-item {
                border-top: .2rem solid transparent;
                border-bottom: .2rem solid transparent;
                font-size: .875rem;
                padding: 1.75rem 0;
            }

                body.default .navbar-main .navbar-nav .nav-item .icon-toggle {
                    display: none;
                }

        body.default .navbar-main .button-group {
            padding: 1.75rem 0;
        }
}

.navbar-toggler {
    border-color: transparent !important;
    position: relative;
}

.navbar-toggler {
    position: relative;
    width: 3.5rem;
    height: 3rem;
    padding: .5rem .75rem;
    font-size: 1.25rem;
    line-height: 2rem;
    border-radius: .25rem;
}

    .navbar-toggler span {
        display: block;
        position: absolute;
        height: 3px;
        width: 50%;
        background: #303030;
        border-radius: .25rem;
        opacity: 1;
        left: 25%;
        transform: rotate(0);
    }

        .navbar-toggler span:nth-child(1) {
            top: 33%;
        }

        .navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
            top: 50%;
        }

        .navbar-toggler span:nth-child(4) {
            top: 67%;
        }

.sticky-support-sidebar {
    top: 4.05rem;
    right: 3.5rem;
}

    .sticky-support-sidebar .support {
        top: 19.8rem;
        height: 3.5rem;
        min-width: 3.5rem;
    }

.fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-circle:before {
    content: "\f111";
}

.fa-headset:before {
    content: "\f590";
}

.fa-lock:before {
    content: "\f023";
}

.fa-search:before {
    content: "\f002";
}

.fa-vk:before {
    content: "\f189";
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.fal {
    font-weight: 300;
}

.fal, .far {
    font-family: "Font Awesome 5 Pro";
}

.far {
    font-weight: 400;
}

.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}
