body,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd,
pre {
    margin: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
html:focus-within {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
img,
picture {
    max-width: 100%;
    display: block;
}
iframe {
    border: 0;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*,
*:before,
*:after {
    box-sizing: inherit;
    scroll-margin-top: 96px;
}
a {
    text-decoration: none;
}
:root,
body {
    --primary: #146ef5;
    --primary-text: #ffffff;
    --primary-hover: #00339c;
    --primaryVariant: #3700b3;
    --background: #ffffff;
    --surface: #ffffff;
    --newSurface: #f5f5f7;
    --onSecondary: #000000;
    --tablesBackground: #e0e0e0;
    --tabTitlesBackground: #ebebeb;
    --title: #000000;
    --primary-text: #ffffff;
    --surface-2: #eeeeee;
    --gray-menu-bg: #5f6c79;
    --gray-menu-bg-darker: #4f5c68;
    --news: #3399ff;
    --team: #0368c3;
    --md: "@media (max-width: 767px)";
}
[data-theme="server"] {
    --primary: #ed1f24;
    --primary-hover: #a7001c;
    --primary-rgb: 255, 17, 49;
    --primary-darker: #dd001e;
}
[data-theme="password"] {
    --primary: #ff6600;
    --primary-hover: #db3c00;
    --primary-rgb: 225, 119, 23;
    --primary-darker: #e35e00;
}
[data-theme="gateway"] {
    --primary: #9933cc;
    --primary-hover: #570066;
    --primary-rgb: 95, 3, 162;
    --primary-darker: #3e148d;
}
[data-theme="free"] {
    --primary: #3aa3ff;
    --primary-hover: #3aa3ff;
}
[data-theme="pam"] {
    --primary: #68c300;
    --primary-hover: #427d00;
    --primary-rgb: 104, 195, 0;
    --primary-rgb-hover: 0, 153, 0;
}
.article {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 33.33%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
@media (max-width: 767px) {
    .article {
        flex-direction: column;
    }
}
.article p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}
.article p + * {
    margin-top: 8px;
}
.article img {
    height: auto;
    min-width: 100%;
}
.article + * {
    margin-top: 24px;
}
.article > *:first-child {
    flex: 0 0 67.5%;
    max-width: 67.5%;
    margin-right: 30px;
}
@media (max-width: 767px) {
    .article > *:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
}
.article > *:last-child {
    flex: 1;
}
@media (max-width: 767px) {
    .article > *:last-child {
        margin-left: 0;
        margin-top: 16px;
        padding-left: 0;
        margin-right: 0;
    }
}
.carousel {
    display: flex;
    flex-direction: column;
    margin: 70px auto 0 auto;
    padding: 0 100px;
    overflow: hidden;
}
@media (max-width: 719px) {
    .carousel {
        display: none;
    }
}
.carousel .slides-container {
    position: relative;
}
.carousel .slides-container:hover .carousel-control {
    color: #e8e8e8;
}
.carousel .slides-container .slide {
    position: absolute;
    transition: transform 1s;
    display: flex;
    opacity: 0;
    top: 0;
    pointer-events: none;
    max-width: 800px;
    width: 100%;
}
.carousel .slides-container .slide.slide-right {
    transform: translateX(calc(100% + 100px));
    opacity: 1;
}
.carousel .slides-container .slide.slide-left {
    transform: translateX(calc(-100% - 100px));
    opacity: 1;
}
.carousel .slides-container .slide.active {
    transition: transform 1s;
    position: relative;
    opacity: 1;
    pointer-events: visible;
    cursor: pointer;
}
.carousel .slides-container .slide.active.slide-right {
    transition: transform 0s;
    transform: translateX(calc(100% + 100px));
}
.carousel .slides-container .slide.active.slide-left {
    transition: transform 0s;
    transform: translateX(calc(-100% - 100px));
}
.carousel .slides-container img {
    width: 100%;
    vertical-align: middle;
    box-shadow: 0 12px 30px 0 rgba(0, 0, 25, 0.35);
}
.carousel .slides-container .carousel-control {
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    display: flex;
    height: 100%;
    opacity: 1;
    padding: 0 25px;
    position: absolute;
    top: 0;
    transition: 0.6s ease;
    user-select: none;
}
.carousel .slides-container .carousel-control:hover {
    color: #000 !important;
}
.carousel .slides-container .carousel-control svg {
    height: 50px;
    width: 50px;
}
.carousel .slides-container .next {
    right: -100px;
}
.carousel .slides-container .prev {
    left: -100px;
}
.carousel .slides-container .caption {
    position: absolute;
    padding: 10px 40px;
    bottom: 21px;
    z-index: 10;
    text-align: center;
    background-color: #323232;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
    left: 50%;
    width: 100%;
    max-width: 450px;
    transform: translateX(-50%);
    color: #fff;
}
.carousel .slides-container .caption * {
    margin-bottom: 0;
}
.carousel .slides-container .caption * + * {
    margin-top: 16px;
}
.carousel .slides-container .caption a {
    color: #fff;
    text-decoration: underline;
}
.carousel .carousel-indicators {
    width: 100%;
    display: flex;
    justify-content: center;
}
.carousel .carousel-indicators .carousel-indicator {
    display: flex;
    cursor: pointer;
    transition: background-color 0.6s ease;
    max-width: 30px;
    flex: 1 0 auto;
    margin: 20px 3px;
    height: 3px;
    width: 100%;
    background-color: #999;
}
.carousel .carousel-indicators .carousel-indicator.active,
.carousel .carousel-indicators .carousel-indicator:hover {
    background-color: #146ef5;
}

.tabs {
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin: 16px 0;
}
@media (max-width: var(--md)) {
    .tabs {
        display: block;
    }
}
.tabs-titles {
    display: flex;
    flex-direction: column;
    max-width: 270px;
    min-width: 180px;
}
@media (max-width: var(--md)) {
    .tabs-titles {
        display: none;
    }
}
.tabs-titles > * {
    flex: 1;
    outline: none;
    background-color: var(--tabTitlesBackground);
    padding: 14px 20px;
    border: 1px solid #fff;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    color: var(--primary);
    text-align: left;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
    cursor: pointer;
}
.tabs-titles > *:first-child {
    border-top: 1px solid #f0f0f0;
}
.tabs-titles > *.active {
    background-color: #f8f8f8;
}
.tabs-titles > *:hover {
    background: rgba(0, 0, 0, 0);
    text-decoration: underline;
    border-color: rgba(0, 0, 0, 0);
}
.tabs-titles button {
    flex: 1;
    outline: none;
    background-color: var(--tabTitlesBackground);
    padding: 14px 20px;
    border: 1px solid #fff;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
    width: 100%;
}
.tabs-titles button:first-child {
    border-top: 1px solid #f0f0f0;
}
.tabs-titles button.active {
    background-color: #f8f8f8;
}
.tabs-titles button:hover {
    background: rgba(0, 0, 0, 0);
    text-decoration: underline;
    border-color: rgba(0, 0, 0, 0);
}
.tabs-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: 100%;
    flex: 1;
}
.tabs-content > div.active {
    height: 100%;
}
.tabs-content > div .tab-title {
    display: none;
}
@media (max-width: var(--md)) {
    .tabs-content > div .tab-title {
        display: flex;
    }
}
.tabs-content > div .tab-contents {
    flex: 1;
    height: 100%;
    border: 1px solid #f0f0f0;
    background-color: #f8f8f8;
    border-top-left-radius: 0;
    align-self: stretch;
    padding: 0 20px;
    display: none;
}
.tabs-content > div .tab-contents.active {
    display: flex;
}