@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* global */

* {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #3d3d3d;
}

::-webkit-scrollbar-thumb {
    margin: 2px;
    border-radius: 10px;
    background-color: #222222;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #1f1f1f;
}

/* autoinput styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #ffa600;
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #ffa6000c inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* all-site */

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.emoji {
    font-family: 'Noto Color Emoji', sans-serif;
}

/* navbar */

.nav-container {
    position: fixed;
    top: 2vh;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 10;

    height: 7vh;
    min-height: 70px;
    width: 95%;
    max-width: 2000px;

    border-radius: 20px;
    background-color: #222222;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: .4s cubic-bezier(0.75, 0, 0, 1);
}

.nav-container.top {
    width: 98%;
    max-width: 2200px;
    background-color: #22222200;
}

.nav-colors.first {
    position: absolute;
    top: -100px;
    left: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);
}

.nav-colors.second {
    position: absolute;
    top: -75px;
    left: 75px;

    width: 425px;
    height: 175px;

    border-radius: 50%;

    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);
}

.nav-colors.third {
    position: absolute;
    top: 50px;
    left: -150px;

    width: 275px;
    height: 300px;

    border-radius: 50%;

    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);
}

.nav-colors.c1 {
    background-color: #FFC70025;
}

.nav-colors.c2 {
    background-color: #FFA80045;
}

.nav-colors.c3 {
    background-color: #ff770045;
}

.nav-colors.c4 {
    background-color: #FF5C0035;
}

.nav-colors.c5 {
    background-color: #FF990025;
}

.nav-colors.c6 {
    background-color: #FFAA0040;
}

.nav-colors.c7 {
    background-color: #FF770020;
}

.nav-colors.c8 {
    background-color: #FFB30030;
}

.nav-colors.c9 {
    background-color: #FF990035;
}

.nav-colors.c10 {
    background-color: #FF9D0035;
}

.nav-logo {
    margin-left: 2%;
    height: 100%;
    width: 25%;
    position: relative;
}

.nav-logo img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.nav-menu {
    width: 46%;
    font-size: 1.75rem;
    text-align: center;
    font-weight: 500;

    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-menu-button {
    display: inline-block;
    vertical-align: top;
    padding-bottom: 10px;
    position: relative;
}

.nav-menu ul li {
    display: inline-block;
    list-style: none;
    position: relative;

}

.nav-menu ul li.main {
    margin: 10px;
}

.nav-menu ul.nav-menu-submenu {
    display: none;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    left: -65px;

    width: 260px;
    height: auto;

    flex-direction: row-reverse;
    gap: 15px;
}

.nav-menu ul li:hover .nav-menu-submenu {
    display: flex;
}

.nav-menu-submenu-window {
    position: relative;
    top: 40px;
    height: auto;
    width: 100%;

    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;

    font-size: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-menu-submenu-window::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);

    border-style: solid;
    border-width: 0 25px 25px;
    border-color: rgba(30, 30, 30, 0.8) transparent;
}

.nav-menu-submenu-window a {
    padding: 10px;
    border-radius: 15px;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-menu-submenu-window a:hover {
    background-color: #333333;
}

.nav-menu ul li.main:hover::before {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);

    height: 7px;
    width: 28px;

    content: '';
    border-radius: 16px;
    background: #ffa600;
}

.nav-menu ul li.active {
    font-weight: 700;
}

.nav-menu ul li.active::before {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);

    height: 7px;
    width: 28px;

    content: '';
    border-radius: 16px;
    background: #ffda00;

    transition: .15s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-menu ul li.active:hover::before {
    background: #ffa600;
}

.nav-menu ul li.more:hover {
    cursor: default;
}

.nav-action {
    width: 25%;
    margin-right: 2%;

    text-align: right;

    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.nav-action-btn {
    width: fit-content;

    padding: .75rem;

    border: 2px solid #ffda00;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition:
        .25s cubic-bezier(0.42, 0, 0.32, 1) border,
        .25s cubic-bezier(0.42, 0, 0.32, 1) background-color;
}

.nav-action-btn.survey {
    margin-top: 25px;
    font-size: 1.5rem;
}

.nav-action-btn:hover {
    border: 2px solid #ff9500;
    background-color: #ff9500;
}

.nav-action-btn.full {
    border: none;
    background-color: #ffbf00;
    border: 2px solid #ffbf00;
    font-weight: 600;
    color: #000000;
}

.nav-action-btn.full:hover {
    border: 2px solid #ff9500;
    background-color: #ff9500;
}

.nav-mobile {
    height: 100%;
    width: 25%;

    display: none;
}

.nav-mobile-hamburger {
    display: block;
    position: relative;

    user-select: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.nav-mobile-hamburger span {
    position: relative;
    transform-origin: 0 0;
    z-index: 1;

    width: 33px;
    height: 4px;
    margin-bottom: 5px;

    background-color: #ffffff;
    border-radius: 6px;

    display: block;

    transition: 0.4s;
}


.nav-mobile-hamburger:hover span:nth-child(1) {
    background-color: #828282;
}

.nav-mobile-hamburger:hover span:nth-child(2) {
    background-color: #828282;
}

.nav-mobile-hamburger:hover span:nth-child(3) {
    background-color: #828282;
}

.nav-mobile-hamburger.is-active span:nth-child(1) {
    transform: translate(0, -2px) rotate(45deg);
}

.nav-mobile-hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
    transform: (15px);
}

.nav-mobile-hamburger.is-active span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

.nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    z-index: 9;

    min-height: 100vh;
    padding-top: 20vh;

    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgba(12, 12, 12, 0.9);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25vh;

    transition: .5s;
}

.nav-mobile-menu.is-active {
    left: 0;
}

.nav-mobile-menu-mainbtn {
    display: inline-block;
    width: 90%;
    list-style: none;
    margin-left: 0;

    transition: 0.25s;
}

.nav-mobile-menu-mainbtn.hidden {
    opacity: 0;
    visibility: hidden;
    margin-left: 50px;
}

.nav-mobile-menu-morebtn {
    position: absolute;

    display: inline-block;
    width: 90%;
    list-style: none;
    margin-left: 0;

    transition: 0.25s;
}

.nav-mobile-menu-morebtn.hidden {
    opacity: 0;
    margin-left: -50px;
    visibility: hidden;
}

.nav-mobile-menu-mainbtn li a {
    color: #c5c5c5;
    font-size: 2rem;
    font-weight: 700;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-mobile-menu-mainbtn li a:hover {
    color: #ffffff;
}

.nav-mobile-menu-mainbtn li.active a {
    color: #ffffff;
    font-weight: 800;
}

.nav-mobile-menu-mainbtn li.mobile-more {
    color: #c5c5c5;
    font-size: 2rem;
    font-weight: 700;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-mobile-menu-mainbtn li.mobile-more:hover {
    color: #ffffff;
    cursor: pointer;
}

.nav-mobile-menu-morebtn li a {
    color: #c5c5c5;
    font-size: 1.5rem;
    font-weight: 700;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-mobile-menu-morebtn li a:hover {
    color: #ffffff;
}

.nav-mobile-menu-morebtn li.mobile-more-back {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-mobile-menu-morebtn li.mobile-more-back {
    cursor: pointer;
}

.nav-mobile-menu-loginbtn {
    display: inline-block;
    width: 90%;
    list-style: none;
}

.nav-mobile-menu-loginbtn li a {
    color: #c5c5c5;
    font-size: 2rem;
    font-weight: 700;
    transition: .2s cubic-bezier(0.42, 0, 0.32, 1);
}

.nav-mobile-menu-loginbtn li a:hover {
    color: #ffffff;
}

.nav-mobile-menu-loginbtn li.header {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
}

.nav-mobile-menu-app {
    position: sticky;
    bottom: 2vh;

    width: 90%;
    height: 50px;
    padding: 10px;

    background-color: #222222;
    border-radius: 10px;

}

.nav-mobile-menu-loginbtn-mask {
    position: absolute;
    left: 0;
    bottom: 0;

    height: 100%;
    width: 50%;

    background-color: #4d3d15;
    border-radius: 10px;

    mask: url(static/graphics/default/additions-3.webp);
    -webkit-mask: url(static/graphics/default/additions-3.webp);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 0%;
    -webkit-mask-position: 0%;
    mask-size: 50% 100%;
    -webkit-mask-size: 50% 100%;
    z-index: 1;
}

.nav-mobile-menu-loginbtn-text {
    position: relative;
    z-index: 2;
    font-weight: 800;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.nav-mobile-menu-loginbtn-text img {
    height: 2rem;
    max-width: 100%;
}

.nav-mobile-menu-loginbtn-text-desc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 3.5vw;
}

.nav-mobile-menu-login {
    height: auto;
    min-height: 150px;
    max-height: 20vh;
    width: 90%;

    border-radius: 15px;
    background-color: #ffbf00;
    position: relative;
    text-align: center;
}

.nav-mobile-menu-login-mask-top {
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 100%;

    background-color: #ffaa00;
    border-radius: 15px;

    mask: url(static/graphics/default/additions-2.webp);
    -webkit-mask: url(static/graphics/default/additions-2.webp);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 0%;
    -webkit-mask-position: 0%;
    mask-size: 50% 100%;
    -webkit-mask-size: 50% 100%;
}

.nav-mobile-menu-login-mask-bottom {
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 100%;

    background-color: #ffaa00;
    border-radius: 15px;

    mask: url(static/graphics/default/additions-1.webp);
    -webkit-mask: url(static/graphics/default/additions-1.webp);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 125%;
    -webkit-mask-position: 125%;
    mask-size: 50% 100%;
    -webkit-mask-size: 50% 100%;
}

.nav-mobile-menu-login-text {
    position: absolute;

    width: 100%;
    height: 100%;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-mobile-menu-login-btnwrapper {
    height: auto;
    width: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-mobile-menu-login-btn {
    padding: 10px;
    background-color: #553800;
    border-radius: 15px;
}

.nav-mobile-menu-btns {
    height: auto;
    min-height: 150px;
    max-height: 60vh;
    width: 90%;

    border-radius: 15px;
    background-color: #333333;
    position: relative;
    text-align: center;
}

.nav-mobile-menu-btns-main {
    height: auto;
    width: 100%;
    margin-top: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.nav-mobile-menu-btns-main a {
    width: 45%;
    max-height: 25vh;
    aspect-ratio: 1 / 1;
}

.nav-mobile-menu-btns-more {
    height: auto;
    width: 100%;
    margin: 15px 0 15px 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-mobile-menu-btns-more a {
    width: 30%;
    max-height: 12vh;
    aspect-ratio: 3 / 2;
}

.nav-mobile-menu-btns-opt {
    height: 100%;
    width: 100%;

    background-color: #444444;
    font-weight: 500;
    font-size: .7rem;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    transition: .2s cubic-bezier(0.5, 0, 0, 1);
    ;
}

.nav-mobile-menu-btns-opt img {
    width: 2rem;
    aspect-ratio: 1 / 1;
}

.nav-mobile-menu-btns-opt:hover {
    background-color: #666666;
}

.nav-mobile-menu-btns-opt.main {
    width: 100%;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.15rem;
}

.nav-mobile-menu-btns-opt.main img {
    width: 4rem;
}

.nav-mobile-menu-btns-opt.main:hover {
    background-color: #666666;
}

.nav-mobile-menu-btns-opt.main.active {
    background-color: #555555;
    font-weight: 800;
}

.nav-mobile-menu-btns-opt.main.active:hover {
    background-color: #666666;
}


/* language selection */

.langselect {
    display: none;
    position: fixed;

    width: 100%;
    height: 100vh;
    z-index: 99999;
}

.langselect-background {
    width: 100%;
    height: 100%;

    border: none;
    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgba(12, 12, 12, 0.9);
}

.langselect.show {
    display: block;
}

.langselect-window {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    width: 950px;
    height: 575px;
    padding: 25px;

    border-radius: 10px;
    background-color: #1a1a1a;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.langselect-window-header {
    height: 15%;
    width: 100%;

    display: flex;
}

.langselect-window-header-text {
    height: 100%;
    width: 90%;
}

.langselect-window-header-text h1 {
    font-size: 2.5rem;
}

.langselect-window-header-text h2 {
    font-size: 1.5rem;
    opacity: .65;
}

.langselect-window-header-close {
    height: 100%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.langselect-window-header-close button {
    background-color: transparent;
    border: none;
}

.langselect-window-header-close button {
    width: 50%;
}

.langselect-window-header-close img {
    width: 100%;
    opacity: .5;

    transition: .2s cubic-bezier(0.5, 0, 0, 1);
}

.langselect-window-header-close img:hover {
    cursor: pointer;
    opacity: 1;
}

.langselect-window-content {
    height: 80%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.langselect-window-content-lang {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
}

.langselect-window-content-lang-wrapper {
    width: 100%;
    height: 85%;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-around;
    justify-content: flex-start;
    gap: 15px;
}

.langselect-window-content-lang.current {
    height: 100%;
    width: 33%;
    border-radius: 15px;
    background-color: #1d1d1d;
}

.langselect-window-content-lang.other {
    height: 100%;
    width: 65%;
}

.langselect-window-content-header {
    height: 15%;
    width: 100%;
    text-align: center;
}

.langselect-window-content-lang-card {
    height: 120px;
    width: 275px;

    padding: 10px;
    border-radius: 10px;
    background-color: #222222;

    display: flex;
    flex-direction: column;
    gap: 10px;

    transition: .2s cubic-bezier(0.5, 0, 0, 1);
}

.langselect-window-content-lang-card:hover {
    background-color: #333333;
}

.langselect-window-content-lang-card-header {
    height: 3.5rem;
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
}

.langselect-window-content-lang-card-header h1 {
    font-size: 1.5rem;
}

.langselect-window-content-lang-card-header h2 {
    font-size: 1rem;
    font-weight: 600;
    opacity: .75;
}

.langselect-window-content-lang-card-header img {
    height: 50%;
}

/* 404 */

.container404 {
    height: auto;
    min-height: 100vh;
    width: 100%;
    background-color: #1a1a1a;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container404 img {
    width: 250px;
    max-height: 100%;
}

.container404 h1 {
    margin: 25px 0 25px;
    font-size: 5rem;
}

.container404 a {
    padding: .75rem;

    border: 2px solid #ffda00;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 500;
    transition:
        .25s cubic-bezier(0.42, 0, 0.32, 1) border,
        .25s cubic-bezier(0.42, 0, 0.32, 1) background-color;
}

.container404 a:hover {
    border: 2px solid #ff9500;
    background-color: #ff9500;
}

/* containers */

.container {
    height: auto;
    min-height: 100vh;
    width: 100%;
    background-color: #111111;
}

.clear-container {
    height: 12vh;
    min-height: 100px;
}

.main-container {
    position: relative;
    margin: auto;
    max-width: 2000px;
    z-index: 1;
}

.center-container {
    height: fit-content;
    width: 92%;
    margin: 7vh auto 7vh auto;
}

.center-container.full {
    width: 100%;
}

.main-card {
    height: 80vh;
    min-height: 600px;
    max-height: 1080px;
    width: 95%;

    margin: auto;
    z-index: 1;

    background-color: #252525;
    border-radius: 25px;
}

.main-card.hshort {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.half-card {
    height: 80vh;
    max-height: 1080px;
    width: 49%;

    z-index: 1;

    background-color: #252525;
    border-radius: 25px;
}

.half-card.hshort {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.half-card.hlong {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.half-card.wlong {
    width: 60%;
}

.flex-card {
    height: 80vh;
    max-height: 1080px;
    width: 49%;

    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.flex-card.hshort {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.flex-card.hlong {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.flex-card.wshort {
    width: 39%;
}

.flex-card-child {
    width: 100%;

    z-index: 1;

    background-color: #252525;
    border-radius: 25px;
}

.flex-card-child.no-bg {
    background-color: transparent;
}

.flex-card-split {
    height: auto;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-card-split .flex-card-child {
    width: 48%;
}

.flex-card-child.h75 {
    height: 75vh;
}

.flex-card-child.h70 {
    height: 70vh;
}

.flex-card-child.h60 {
    height: 60vh;
}

.flex-card-child.h55 {
    height: 55vh;
}

.flex-card-child.h50 {
    height: 50vh;
}

.flex-card-child.h40 {
    height: 40vh;
}

.flex-card-child.h30 {
    height: 30vh;
}

.flex-card-child.h20 {
    height: 20vh;
}

.part-card-wrapper {
    width: 95%;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-additions {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.card-addition {
    position: absolute;
    width: 45%;
    height: 50%;
}

.card-image {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    border-radius: 25px;
}

.card-image-source {
    position: absolute;
    bottom: 5%;
    left: 3%;
    opacity: .1;
}

.card-addition.img1 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-addition.img1 img {
    position: relative;
    opacity: 6%;
    max-width: 100%;
    max-height: 100%;
    animation: card-addition-left-in 1.5s;
}

@keyframes card-addition-left-in {
    0% {
        opacity: 0;
        left: -100px;
    }

    30% {
        opacity: 0;
        left: -100px;
    }

    100% {
        opacity: 6%;
        left: 0;
    }
}

.card-addition.img2 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.card-addition.img2 img {
    position: relative;
    opacity: 6%;
    max-width: 100%;
    max-height: 100%;
    animation: card-addition-right-in 1s;
}

@keyframes card-addition-right-in {
    0% {
        opacity: 0;
        right: -100px;
    }

    30% {
        opacity: 0;
        right: -100px;
    }

    100% {
        opacity: 6%;
        right: 0;
    }
}

.card-addition.img3 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.card-addition.img3 img {
    position: relative;
    opacity: 6%;
    max-width: 100%;
    max-height: 100%;
    animation: card-addition-left-in 1s;
}

.card-addition.img4 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.card-addition.img4 img {
    position: relative;
    opacity: 6%;
    max-width: 100%;
    max-height: 100%;
    animation: card-addition-right-in 1s;
}

.card-addition.top {
    top: 0;
}

.card-addition.bottom {
    bottom: 0;
}

.card-addition.left {
    left: 0;
}

.card-addition.right {
    right: 0;
}

.sticky-rail {
    height: 4000px;
    width: 100%;

    margin: auto;
}

.blank-screen {
    height: 100vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* landing main card */

.landing-main-card-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.landing-main-card-content {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.landing-main-card-text {
    height: 100%;
    width: 50%;
}

.landing-main-card-header {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 4rem;
    font-weight: 700;
}

.landing-main-card-header p {
    font-size: 2rem;
    font-weight: 400;
    color: #888888;
}

.landing-main-card-header img {
    height: 3rem;
}

.landing-main-card-icons {
    position: absolute;
    left: 30px;
    bottom: 25px;

    height: 120px;
    width: fit-content;

    font-size: 1rem;
    font-weight: 500;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.landing-main-card-icons.mobile {
    display: none;

    position: static;
    height: 120px;
    width: 95%;

    /*display: flex;*/
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.landing-main-card-icons-item {
    height: 100%;
    width: 125px;

    font-size: 0.7rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-main-card-icons-item b {
    font-size: 1.8rem;
}

.landing-main-card-icons-item.text-large {
    font-size: 1rem;
    width: 225px;
    margin: 0 10px 0 10px;
}

.landing-main-card-icons-item.text-large b {
    font-size: 1.25rem;
}

.landing-main-card-icons-item img {
    width: 45px;
    margin-bottom: 10px;
}

.landing-main-card-icons-item img.large {
    width: 75px;
    margin-bottom: 0;
}

.landing-main-card-icons-item span.small {
    font-size: 0.6rem;
}

.landing-main-card-icons-divider {
    height: 70%;
    width: 3px;

    background-color: #333333;
}

.landing-main-card-icons-divider.mobile {
    height: 60%;

    background-color: #222222;
}

.landing-main-card-image {
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.landing-main-card-image img {
    max-height: 102%;
    max-width: 100%;
}

.landing-main-card-image-benef {
    position: absolute;
    z-index: 50;


    height: 80px;
    width: 300px;

    background-color: rgba(80, 80, 80, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
}

.landing-main-card-image-benef-icon {
    position: relative;
    top: 5px;
    left: 5px;

    height: 70px;
    width: 70px;

    border-radius: 35px;
    background-color: rgba(100, 100, 100, 0.3);

    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-main-card-image-benef-icon img {
    height: 70%;
    width: 70%;
}

.landing-main-card-image-benef.left {
    left: 5%;
    bottom: 10%;
    opacity: 1;
    animation: benef-move-left 1.3s;
}

@keyframes benef-move-left {
    0% {
        opacity: 0;
        bottom: 5%;
    }

    40% {
        opacity: 0;
        bottom: 5%;
    }

    100% {
        opacity: 1;
        bottom: 10%;
    }
}

.landing-main-card-image-benef.right {
    right: 2%;
    bottom: 45%;
    opacity: 1;
    animation: benef-move-right 1.3s;
}

@keyframes benef-move-right {
    0% {
        opacity: 0;
        bottom: 40%;
    }

    40% {
        opacity: 0;
        bottom: 40%;
    }

    100% {
        opacity: 1;
        bottom: 45%;
    }
}

.landing-main-card-image-main {
    z-index: 49;
    animation: fade-in 5s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.landing-main-card-image-benef p {
    position: absolute;
    top: 5px;
    left: 80px;

    height: 70px;
    width: 200px;

    font-size: 1.1rem;
    font-weight: 600;

    display: flex;
    align-items: center;
}

.landing-main-card-mobile-title {
    height: 100%;
    width: 100%;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    font-weight: 700;
    color: #a4a4a4;
}

.landing-main-card-mobile-title b {
    font-size: 2.75rem;
    color: #ffffff;
}

/* landing info */

.landing-info {
    width: 95%;
    height: 75px;

    margin: auto;
    font-size: 1.5rem;
    font-weight: 600;

    text-align: center;
    border-radius: 25px;
    background-color: #222222;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .2s cubic-bezier(0.5, 0, 0, 1);
}

.landing-info:hover {
    background-color: #333333;
}

/* advantages */

.advan-wrapper {
    min-height: 700px;
    display: flex;
    flex-direction: row;
}

.advan-wrapper.reversed {
    flex-direction: row-reverse;
}

.advan-desc {
    width: 75%;
    margin-left: 4%;

    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}

.advan-desc h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.advan-desc h2 {
    font-size: 2rem;
}

.advan-desc p {
    font-size: 1rem;
}

.advan-desc-gradientheader {
    font-size: 1.25rem;
    font-weight: 700;
    background-image: linear-gradient(90deg, #FF9900, #FFB74A);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.advan-tiles {
    font-size: 1.2rem;

    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
}

.advan-tile-element-wrapper {
    width: 100%;

    display: flex;
    gap: 15px;
}

.advan-tile-element {
    width: 100%;

    display: flex;
    gap: 5px;
    flex-direction: column;
}

.advan-tile-element span.emoji {
    font-size: 2.5rem;
}

.advan-image-slider-wrapper {
    width: 25%;
}

.advan-wrapper.reversed .advan-image-slider-wrapper {
    width: 22%;
}

.advan-wrapper.reversed .advan-desc {
    width: 78%;
    margin-left: auto;
    margin-right: 6%;
}

.advan-wrapper.reversed .advan-image img {
    left: -20px;
}

.advan-image-slider {
    position: sticky;
    top: 13vh;
    height: 85%;
    width: 100%;
}

.advan-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.advan-image img {
    position: absolute;
    left: 150px;
    height: 100%;

    border-radius: 30px;
}

.advan-image-slider-restspot {
    display: none;
    width: 100%;
    height: 250px;
}

/* mockup */

.mockup-wrapper {
    height: auto;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.mockup-wrapper h1 {
    font-size: 5rem;
    text-align: center;
}

.mockup-wrapper h2 {
    font-size: 2rem;
    text-align: center;
    color: #9a9a9a;
}

.mockup-wrapper img {
    max-height: 500px;
    max-width: 100%;
    margin: 50px 0 50px 0;
}

.mockup-options {
    height: 125px;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.mockup-options a {
    max-height: 125px;
}

.mockup-options img {
    max-height: 125px;
    max-width: 100%;
    margin: 0;
}

/* faq */

h1.faq {
    font-size: 3.5rem;
    font-weight: 700;
}

h2.faq {
    font-size: 1.5rem;
    color: #9a9a9a;
}

.faq-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.faq-wrapper a {
    color: #ffdd9e;
}

hr.faq-breakline {
    width: 3px;
    height: auto;
    border-width: 0;
    color: #444444;
    background-color: #444444;

}

.faq-divider {
    width: 48%;
    text-align: center;

    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background-color: #222222;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.faq-item-header {
    min-height: 3.5rem;
    padding: 0.5rem 3rem 0.5rem 1rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: left;
    border-radius: 0.5rem;
    background-color: #333333;

    display: flex;
    align-items: center;
    position: relative;
    transition: .2s cubic-bezier(0.5, 0, 0, 1);
}

.faq-item-header:hover {
    background-color: #444444;
    cursor: pointer;
}

.faq-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.faq-item-header.active::after {
    content: "\2212";
}

.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s cubic-bezier(0.5, 0, 0, 1);
}

.faq-item-content {
    text-align: left;
    padding: 1rem;
}

/* footer */

.footer {
    height: 350px;
    width: 95%;
    max-width: 1800px;
    margin: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

hr.footer-break {
    width: 95%;
    height: 2px;
    border-width: 0;
    color: #333333;
    background-color: #333333;
}

.footer-block {
    height: 90%;
    width: 25%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-block img {
    width: 315px;
}

.footer-block img.gpbadge {
    width: 130px;
}

.footer-block h1 {
    font-size: 2.5rem;
}

.footer-block a {
    font-size: 1.5rem;
    opacity: .75;
    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.footer-block a:hover {
    opacity: 1;
}

.footer-block a.footer-block-gpbagde-link {
    opacity: 1;
}

a.footer-logo {
    opacity: 1;
}

.footer-block-slogan {
    width: auto;

    font-size: 1.75rem;
    font-weight: 700;
}

.footer-block-slogan img {
    height: 1.4rem;
    width: auto;
}

.footer-block-socialmedia {
    width: auto;
    margin-top: 15px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-block-socialmedia img {
    width: 1.75rem;
    opacity: .5;
    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.footer-block-socialmedia img:hover {
    cursor: pointer;
    opacity: 1;
}

.footer-block-sponsors {
    width: auto;
    margin-top: 5px;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-block-sponsors img {
    height: 3rem;
    width: auto;
    padding: .5rem;

    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);

    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.footer-block-sponsors img.sponsor-small {
    height: 3rem;
}

.footer-block-sponsors img:hover {
    transform: scale(1.1);

    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.footer-block-language {
    height: 2rem;
    width: 10rem;
    padding: 5px;

    background-color: #111111;
    border: 2px #333333;
    border-radius: 5px;
    border-style: solid;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.footer-block-language img {
    height: 1rem;
    width: 1rem;
}

.footer-block-language:hover {
    cursor: pointer;
    background-color: #222222;
}

.footer-mobile-extrabar {
    display: none;
}

button.footer-block-language.desktop {
    display: flex;
}

/* about */

.about-media-slider-wrapper {
    position: relative;
    height: 12vh;
    max-height: 140px;
    width: 95%;

    margin: 10px auto 10px;
    overflow: hidden;
}

.about-media-slider-wrapper::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
    background: linear-gradient(to right, #111111 0%, #11111100 100%);
}

.about-media-slider-wrapper::before {
    left: 0;
    top: 0;
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
    background: linear-gradient(to right, #111111 0%, #11111100 100%);
}

.about-media-slider-track {
    height: 100%;
    width: calc(350px * 22);

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;

    animation: scroll 90s linear infinite;
}

.about-media-slider-element {
    height: 100px;
    width: 250px;

    border-radius: 10px;
    padding: 10px;

    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-filter: grayscale(100%) brightness(1.25);
    filter: grayscale(100%) brightness(1.25);

    transition: .4s cubic-bezier(0.75, 0, 0, 1);
}

.about-media-slider-element img {
    max-height: 100%;
    max-width: 100%;
}

.about-media-slider-element:hover {
    background-color: #1b1b1b;
    -webkit-filter: grayscale(0%) brightness(1);
    filter: grayscale(0%) brightness(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 11))
    }
}

@keyframes scroll-mobile225 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-225px * 11))
    }
}

@keyframes scroll-mobile175 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-175px * 11))
    }
}

.about-half-card-header {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 4rem;
    font-weight: 700;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-half-card-header span.header-small {
    font-size: 2.5rem;
    font-weight: 600;
    color: #dadada;
}

.about-half-card-header.survey {
    font-size: 3.5rem;
}

.about-half-card-header.survey span.header-small {
    font-size: 2rem;
}

.about-desc h1 {
    font-weight: 500;
    font-size: 3.5rem;
    color: #e0e0e0;
    text-align: center;
}

.about-desc h1 b {
    font-weight: 800;
    color: #ffffff;
}

.about-desc h2 {
    font-weight: 500;
    font-size: 2rem;
    color: #e0e0e0;
    text-align: center;
}

.about-desc-image {
    width: 100%;
    height: 250px;
    border-radius: 35px;
    margin: 25px 0 25px 0;
    background-color: #222222;
    background-image: url(static/graphics/about/about-desc-panel.webp);
    background-position: bottom 65% left 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-desc-image img {
    width: 100%;
}

.about-desc-stats {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: space-between;
}

.about-desc-stats-element {
    height: 400px;
    width: 30%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
}

.about-desc-stats-element span.emoji {
    font-size: 6rem;
    text-align: center;
}

.about-desc-stats-element h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}

.about-desc-stats-element h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;
}

h1.about-team {
    font-size: 3.5rem;
    font-weight: 700;
}

h2.about-team {
    font-size: 1.5rem;
    color: #9a9a9a;
}

.about-team-wrapper {
    height: auto;
    width: 100%;

    display: flex;
    flex-direction: column;
}

.about-team-cardsshow {
    height: 250px;
    width: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.about-team-cardsshow.highlight {
    justify-content: space-between;
}

.about-team-card {
    height: 150px;
    width: 400px;

    background-color: #222222;
    border-radius: 25px;

    display: flex;
    gap: 10px;
}

.about-team-card:hover {
    background-color: #333333;
}

.about-team-card.highlight {
    height: 175px;
    width: 475px;
}

.about-team-card-image img {
    height: 150px;
    width: 150px;
    border-radius: 25px;
}

.about-team-card.highlight .about-team-card-image img {
    height: 175px;
    width: 175px;
}

.about-team-card-text {
    padding: 5px 0 5px 0;
    display: flex;
    flex-direction: column;
}

.about-team-card-text h1 {
    font-weight: 700;
    font-size: 1.5rem;
}

.about-team-card-text h2 {
    font-weight: 600;
    font-size: 1.1rem;
}

.about-team-card-text h3 {
    font-weight: 400;
    font-size: 1rem;
    color: #a5a5a5;

    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}

.about-team-card-text h3 img {
    height: 1rem;
    width: 1rem;
    opacity: .6;
}

.about-team-card-text p {
    flex: auto;
    font-size: .8rem;
    color: #c2c2c2;
}

.about-team-card.highlight .about-team-card-text h1 {
    font-weight: 700;
    font-size: 2rem;
}

.about-team-card.highlight .about-team-card-text h2 {
    font-weight: 600;
    font-size: 1.25rem;
}

.about-team-card.highlight .about-team-card-text h3 {
    font-weight: 400;
    font-size: 1.1rem;
    color: #a5a5a5;

    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}

.about-team-card.highlight .about-team-card-text h3 img {
    height: 1.1rem;
    width: 1.1rem;
    opacity: .6;
}

.about-team-card.highlight .about-team-card-text p {
    flex: auto;
    font-size: 1rem;
    color: #c2c2c2;
}

h1.about-partners {
    font-size: 3.5rem;
    font-weight: 700;
}

h2.about-partners {
    font-size: 1.5rem;
    color: #9a9a9a;
}

.about-partners-wrapper {
    height: 250px;
    width: 100%;
    margin: 30px 0 30px 0;
    padding: 0 40px 0 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about-partners-card {
    height: 250px;
    width: 32%;
    background-color: #1d1d1d;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.about-partners-card:hover {
    background-color: #2d2d2d;
}

.about-partners-card-imgwrapper {
    height: 150px;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-partners-card-imgwrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.about-partners-card-text {
    text-align: center;
}

.about-partners-card-text h1 {
    font-size: 1.5rem;
}

.about-partners-card-text h2 {
    font-weight: 600;
    font-size: 1rem;
    color: #9a9a9a;
}

/* contact */

.contact-half-card-header {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 5rem;
    font-weight: 700;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-half-card-header span.header-small {
    font-size: 3rem;
    font-weight: 600;
    color: #dadada;
}

.contact-form-wrapper {
    height: 100%;
    width: 100%;

    padding: 0 20px 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 80%;
    margin: 0 auto;
}

.contact-form a {
    color: #ffdd9e;
}

.contact-form-input {
    padding: 10px;
    margin-bottom: .5rem;

    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #444444;
}

.contact-form-input:hover {
    border: 2px solid #555555;
}

.contact-form-input#name {
    float: left;
    width: 49%;
}

.contact-form-input#email {
    float: right;
    width: 49%;
}

.contact-form-input#subject {
    width: 100%;
}

.contact-form-input#message {
    height: 150px;
    width: 100%;
}

.contact-form-input-notice-wrapper {
    float: left;
    height: 2.5rem;
    width: 2.5rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-form-input-checkbox {
    height: 1.5rem;
    width: 1.5rem;

    accent-color: #ffa600;
}

.contact-form-input-notice {
    width: 90%;
    float: right;
    text-align: left;

    margin-bottom: .5rem;
}

.contact-form-input-submit-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-input#submit {
    width: 25%;
}

.contact-form-input#submit:hover {
    cursor: pointer;
}

.contact-other-wrapper {
    padding: 20px;
}

.contact-other-wrapper a {
    color: #ffdd9e;
}

.contact-other-wrapper img {
    height: 16px;
}

.contact-sm-wrapper {
    height: 150px;
    width: 95%;
    margin: 5vh auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-sm-wrapper a {
    height: 150px;
    width: 18%;

    background-color: #222222;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.contact-sm-wrapper a:hover {
    background-color: #333333;
    transform: scale(1.05);
}

.contact-sm-card {
    font-size: 1.25rem;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-sm-card.text-only {
    font-size: 2.5rem;
}

.contact-sm-card img {
    height: 3rem;
}

/* docs */

h1.docs-header {
    font-size: 4rem;
}

h2.docs-header {
    font-size: 1rem;
    font-weight: 500;
    color: #828282;
}

h2.docs-header:hover {
    color: #ffffff;
}

hr.docs-break {
    width: 100%;
    height: 3px;
    border-width: 0;
    color: #444444;
    background-color: #444444;
}

.docs-menu {
    height: initial;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.docs-menu-element {
    width: 280px;
    height: 250px;

    border-radius: 10px;
    background-color: #333333;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    transition: .2s cubic-bezier(0.75, 0, 0, 1);
}

.docs-menu-element span.emoji {
    font-size: 4rem;
}

.docs-menu-element.small {
    height: 150px;
    width: 225px;
    background-color: #252525;
    font-size: 1.25rem;
    font-weight: 500;
}

.docs-menu-element:hover {
    background-color: #444444;
}

.docs-content {
    width: 98%;
    margin: 0 auto 2rem;
}

.docs-content h1 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.docs-content h1:first-child {
    margin-top: 0.5rem;
}

.docs-content li {
    padding-left: 10px;
}

.docs-content ul {
    padding-left: 25px;
}

.docs-content table {
    margin: 10px auto 10px;
}

.docs-content table b {
    font-size: 1.75rem;
}

.docs-content th {
    padding: 5px;
    background-color: #333333;
}

.docs-content td {
    padding: 20px;
    background-color: #222222;
}

.docs-content a {
    color: #ffdd9e;
}

@media screen and (min-width: 1420px) {
    .nav-mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 1610px) and (min-width: 1420px) {
    .nav-action-btn {
        font-size: 1.1rem;
    }

    .about-team-cardsshow {
        height: 200px;
    }

    .about-team-card {
        height: 120px;
        width: 310px;
        border-radius: 25px;
    }

    .about-team-card.highlight {
        height: 150px;
        width: 415px;
    }

    .about-team-card-image img {
        height: 120px;
        width: 120px;
        border-radius: 25px;
    }

    .about-team-card.highlight .about-team-card-image img {
        height: 150px;
        width: 150px;
    }

    .about-team-card-text h1 {
        font-size: 1.1rem;
    }

    .about-team-card-text h2 {
        font-size: .9rem;
    }

    .about-team-card-text h3 {
        font-size: .75rem;
        gap: 5px;
    }

    .about-team-card-text h3 img {
        height: .75rem;
        width: .75rem;
    }

    .about-team-card-text p {
        font-size: .6rem;
    }

    .about-team-card.highlight .about-team-card-text h1 {
        font-size: 1.8rem;
    }

    .about-team-card.highlight .about-team-card-text h2 {
        font-size: 1.1rem;
    }

    .about-team-card.highlight .about-team-card-text h3 {
        font-size: 1rem;
    }

    .about-team-card.highlight .about-team-card-text h3 img {
        height: 1rem;
        width: 1rem;
    }

    .about-team-card.highlight .about-team-card-text p {
        font-size: .8rem;
    }
}


@media screen and (max-width: 1420px) and (min-width: 1023px) {
    .nav-colors.first {
        top: -125px;
        left: -125px;

        width: 300px;
        height: 300px;
    }

    .nav-colors.nav-colors.second {
        top: -75px;
        left: 100px;

        width: 300px;
        height: 150px;
    }

    .nav-colors.nav-colors.third {
        top: 75px;
        left: -150px;

        width: 275px;
        height: 250px;
    }

    .nav-logo {
        width: 20%;
    }

    .nav-menu {
        font-size: 1.55rem;
    }

    .nav-action-btn {
        font-size: 0.75rem;
    }

    .nav-action-btn.survey {
        font-size: 1rem;
    }

    .nav-mobile-menu {
        display: none;
    }

    .half-card.wlong {
        width: 49%;
    }

    .flex-card.wshort {
        width: 49%;
    }

    .landing-main-card-header {
        font-size: 3rem;
    }

    .landing-main-card-header p {
        font-size: 1.5rem;
    }
    .landing-main-card-header img {
        height: 2.5rem;
    }

    .landing-main-card-icons-item.small {
        width: 100px;
    }

    .landing-main-card-icons-item.text-large {
        font-size: .75rem;
        width: 175px;
        margin: 0 5px 0 5px;
    }

    .landing-main-card-icons-item.text-large b {
        font-size: 1rem;
    }

    .landing-main-card-icons-item img.large {
        width: 60px;
    }

    .landing-main-card-mobile-title {
        display: none;
    }

    .landing-main-card-image-benef {
        height: 60px;
        width: 225px;
        background-color: rgba(80, 80, 80, 0.5);
        border-radius: 30px;
    }

    .landing-main-card-image-benef-icon {
        top: 5px;
        left: 5px;
        height: 50px;
        width: 50px;
        border-radius: 25px;
        background-color: rgba(100, 100, 100, 0.3);
    }

    .landing-main-card-image-benef p {
        top: 5px;
        left: 60px;
        height: 50px;
        width: 155px;
        font-size: .8rem;
    }

    h1.faq {
        font-size: 3rem;
    }

    h2.faq {
        font-size: 1.5rem;
    }

    .footer-block img {
        width: 250px;
    }

    .footer-block img.gpbadge {
        width: 120px;
    }

    .footer-block h1 {
        font-size: 2rem;
    }

    .footer-block a {
        font-size: 1rem;
    }

    .footer-block-slogan {
        font-size: 1.2rem;
    }

    .footer-block-slogan img {
        height: 1rem;
        width: auto;
    }

    .footer-block-socialmedia {
        gap: 15px;
    }

    .footer-block-socialmedia img {
        width: 1.5rem;
    }

    .footer-block-sponsors {
        gap: 10px;
    }

    .footer-block-sponsors img {
        height: 3.5rem;
        width: auto;
        padding: .5rem;
    }

    .footer-block-language {
        height: 2rem;
        width: 10rem;
        padding: 5px;
        font-size: .75rem;
    }

    .footer-block-language img {
        height: 1rem;
        width: 1rem;
    }

    .contact-form-input#message {
        height: 125px;
    }

    .contact-form-input-notice {
        width: 85%;
        font-size: .7rem;
    }

    .contact-other-wrapper h1 {
        font-size: 1.5rem;
    }

    .contact-sm-card {
        font-size: 1rem;
        gap: 10px;
    }

    .contact-sm-card.text-only {
        font-size: 2rem;
        gap: 10px;
    }

    .contact-sm-card img {
        height: 1.75rem;
    }

    .about-half-card-header {
        font-size: 3rem;
    }

    .about-half-card-header span.header-small {
        font-size: 1.5rem;
    }

    .about-half-card-header.survey {
        font-size: 2rem;
    }

    .about-half-card-header.survey span.header-small {
        font-size: 1.25rem;
    }

    .about-desc-image {
        height: 200px;
    }

    .about-desc h1 {
        font-size: 2.25rem;
    }

    .about-desc h2 {
        font-size: 1.75rem;
    }

    .about-desc-stats {
        height: 300px;
    }

    .about-desc-stats-element {
        height: 300px;
    }

    .about-desc-stats-element h1 {
        font-size: 3rem;
    }

    .about-desc-stats-element h2 {
        font-size: 1.25rem;
    }

    .about-desc-stats-element span.emoji {
        font-size: 4.5rem;
    }

    .about-team-cardsshow {
        height: 150px;
    }

    .about-team-card {
        height: 95px;
        width: 230px;
        border-radius: 15px;
    }

    .about-team-card.highlight {
        height: 110px;
        width: 300px;
    }

    .about-team-card-image img {
        height: 90px;
        width: 90px;
        border-radius: 15px;
    }

    .about-team-card.highlight .about-team-card-image img {
        height: 110px;
        width: 110px;
    }

    .about-team-card-text h1 {
        font-size: .85rem;
    }

    .about-team-card-text h2 {
        font-size: .7rem;
    }

    .about-team-card-text h3 {
        font-size: .6rem;
        gap: 5px;
    }

    .about-team-card-text h3 img {
        height: .6rem;
        width: .6rem;
    }

    .about-team-card-text p {
        font-size: .5rem;
    }

    .about-team-card.highlight .about-team-card-text h1 {
        font-size: 1.3rem;
    }

    .about-team-card.highlight .about-team-card-text h2 {
        font-size: .9rem;
    }

    .about-team-card.highlight .about-team-card-text h3 {
        font-size: .7rem;
    }

    .about-team-card.highlight .about-team-card-text h3 img {
        height: .7rem;
        width: .7rem;
    }

    .about-team-card.highlight .about-team-card-text p {
        font-size: .6rem;
    }

}

@media screen and (max-width: 1023px) and (min-width: 501px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container404 img {
        width: 200px;
    }

    .container404 h1 {
        margin: 25px 0 25px;
        font-size: 2.5rem;
    }

    .container404 a {
        font-size: 1rem;
    }


    .nav-colors.first {
        top: -100px;
        left: -100px;

        width: 250px;
        height: 250px;
    }

    .nav-colors.nav-colors.second {
        top: -75px;
        left: 100px;

        width: 250px;
        height: 125px;
    }

    .nav-colors.nav-colors.third {
        top: 75px;
        left: -100px;

        width: 200px;
        height: 200px;
    }

    .nav-logo {
        width: 50%;
    }

    .nav-menu {
        display: none;
    }

    .nav-action {
        display: none;
    }

    .nav-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 10%;
    }

    .nav-mobile-menu {
        display: fixed;
    }

    .part-card-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .half-card {
        height: 40vh;
        width: 100%;
    }

    .half-card.wlong {
        width: inherit;
    }

    .half-card.hshort {
        min-height: 150px;
        height: 20vh;
    }

    .half-card.hlong {
        min-height: 150px;
        height: 20vh;
    }

    .flex-card {
        height: auto;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .flex-card.wshort {
        width: inherit;
    }

    .flex-card.hshort {
        height: 50vh;
    }

    .flex-card.hlong {
        height: 75vh;
    }

    .flex-card-child.h40 {
        height: 30vh;
    }

    .flex-card-child.h30 {
        height: 20vh;
    }

    .landing-main-card-content {
        flex-direction: column;
    }

    .landing-main-card-text {
        width: 100%;
        height: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-main-card-header {
        font-size: 3rem;
        position: initial;
        top: initial;
        transform: initial;
    }

    .landing-main-card-header p {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .landing-main-card-header img {
        height: 2.5rem;
    }

    .landing-main-card-icons {
        display: none;
    }

    .landing-main-card-icons.mobile {
        display: flex;
    }

    .landing-main-card-image {
        width: 100%;
        height: 70%;
    }

    .landing-main-card-mobile-title {
        display: flex;
        font-size: 1.75rem;
    }

    .landing-main-card-mobile-title b {
        font-size: 2.5rem;
    }

    .landing-main-card-image-benef {
        height: 60px;
        width: 225px;
        background-color: rgba(80, 80, 80, 0.5);
        border-radius: 30px;
    }

    .landing-main-card-image-benef-icon {
        top: 5px;
        left: 5px;
        height: 50px;
        width: 50px;
        border-radius: 25px;
        background-color: rgba(100, 100, 100, 0.3);
    }

    .landing-main-card-image-benef p {
        top: 5px;
        left: 60px;
        height: 50px;
        width: 155px;
        font-size: .8rem;
    }

    .landing-info {
        font-size: 1.25rem;
    }

    h1.faq {
        font-size: 2.75rem;
        text-align: center;
    }

    h2.faq {
        font-size: 1.5rem;
        text-align: center;
    }

    .faq-wrapper {
        flex-direction: column;
    }

    .faq-divider {
        width: 98%;
    }

    .faq-item-header {
        font-size: 1rem;
    }

    .faq-item-content {
        font-size: .8rem;
    }

    .footer {
        height: auto;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-block {
        width: 45%;
    }

    .footer-block img {
        width: 225px;
    }

    .footer-block img.gpbadge {
        width: 100px;
    }

    .footer-block h1 {
        font-size: 1.25rem;
    }

    .footer-block a {
        font-size: .85rem;
    }

    .footer-block-slogan {
        font-size: 1.1rem;
    }

    .footer-block-slogan img {
        height: .9rem;
        width: auto;
    }

    .footer-block-socialmedia {
        gap: 10px;
    }

    .footer-block-socialmedia img {
        width: 1rem;
    }

    .footer-block-sponsors {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-block-sponsors img {
        height: 4rem;
        width: auto;
        padding: .5rem;
    }

    .footer-block-sponsors.desktop {
        display: none;
    }

    .footer-block-language {
        height: 2rem;
        width: 10rem;
        padding: 5px;
        font-size: .75rem;
    }

    .footer-block-language img {
        height: 2rem;
        width: 2rem;
    }

    button.footer-block-language.desktop {
        display: none;
    }

    .footer-mobile-extrabar {
        display: block;
    }

    .contact-form.faq {
        width: 100%;
    }

    .contact-half-card-header {
        align-items: center;
    }

    .contact-form-input#message {
        height: 150px;
    }

    .contact-form-input-notice {
        width: 85%;
        font-size: .7rem;
    }

    .contact-form-input-notice.faq {
        width: 90%;
        font-size: 1rem;
    }

    .contact-other-wrapper {
        text-align: center;
        display: flex;

        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-other-wrapper h1 {
        font-size: 1.5rem;
    }

    .contact-sm-wrapper {
        height: 100px;
        margin: 2vh auto;
    }

    .contact-sm-wrapper a {
        height: 90px;
    }

    .contact-sm-wrapper.m0 {
        margin: 0 auto;
    }

    .contact-sm-card h2 {
        display: none;
    }

    .contact-sm-card.text-only {
        font-size: 1.25rem;
    }

    .contact-sm-card img {
        height: 2.5rem;
    }

    .docs-content {
        font-size: .8rem;
    }

    .docs-content h1 {
        font-size: 2rem;
    }

    h1.docs-header {
        font-size: 2.5rem;
    }

    .advan-desc h1 {
        font-size: 2.5rem;
    }

    .advan-desc h2 {
        font-size: 1.5rem;
    }

    .advan-tile-element span.emoji {
        font-size: 1.5rem;
    }

    .advan-desc p {
        font-size: .8rem;
    }

    .advan-desc {
        width: 65%;
    }

    .advan-tile-element-wrapper {
        flex-direction: column;
    }

    .advan-image-slider-wrapper {
        width: 35%;
    }

    .advan-image img {
        left: 50px;
    }

    .mockup-wrapper h1 {
        font-size: 2.5rem;
    }

    .mockup-wrapper h2 {
        font-size: 1.75rem;
    }

    .mockup-options {
        height: 75px;
        width: 80%;
        gap: 15px;
    }

    .mockup-options a {
        height: 75px;
    }

    .mockup-options img {
        max-height: 100%;
        max-width: 100%;
        margin: 0;
    }



    .about-half-card-header {
        font-size: 3.5rem;
        align-items: center;
    }

    .about-half-card-header span.header-small {
        font-size: 3rem;
    }

    .about-media-slider-track {
        width: calc(225px * 22);
        gap: 25px;
        animation: scroll-mobile225 70s linear infinite;
    }

    .about-media-slider-element {
        width: 200px;
    }

    .about-desc-image {
        height: 175px;
        border-radius: 25px;
    }

    .about-desc h1 {
        font-size: 2.25rem;
    }

    .about-desc h2 {
        font-size: 1.75rem;
    }

    .about-desc-stats {
        height: 225px;
    }

    .about-desc-stats-element {
        height: 225px;
        width: 33%;
    }

    .about-desc-stats-element h1 {
        font-size: 5vw;
    }

    .about-desc-stats-element h2 {
        font-size: 2vw;
    }

    .about-desc-stats-element span.emoji {
        font-size: 4rem;
    }

    h1.about-team {
        font-size: 2.5rem;
        text-align: center;
    }

    h2.about-team {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .about-team-cardsshow {
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-team-cardsshow.highlight {
        justify-content: center;
    }

    .about-team-card {
        height: 85px;
        width: 210px;
        border-radius: 10px;
    }

    .about-team-card.highlight {
        height: 85px;
        width: 210px;
    }

    .about-team-card-image img {
        height: 85px;
        width: 85px;
        border-radius: 10px;
    }

    .about-team-card.highlight .about-team-card-image img {
        height: 85px;
        width: 85px;
    }

    .about-team-card-text h1 {
        font-size: .75rem;
    }

    .about-team-card-text h2 {
        font-size: .65rem;
    }

    .about-team-card-text h3 {
        font-size: .5rem;
        gap: 5px;
    }

    .about-team-card-text h3 img {
        height: .5rem;
        width: .5rem;
    }

    .about-team-card-text p {
        font-size: .4rem;
    }

    .about-team-card.highlight .about-team-card-text h1 {
        font-size: .8rem;
    }

    .about-team-card.highlight .about-team-card-text h2 {
        font-size: .65rem;
    }

    .about-team-card.highlight .about-team-card-text h3 {
        font-size: .55rem;
    }

    .about-team-card.highlight .about-team-card-text h3 img {
        height: .55rem;
        width: .55rem;
    }

    .about-team-card.highlight .about-team-card-text p {
        font-size: .5rem;
    }

    h1.about-partners {
        font-size: 2.25rem;
        text-align: center;
    }

    h2.about-partners {
        font-size: 1.75rem;
        text-align: center;
    }

    .docs-menu-element {
        height: 180px;
        width: 180px;
        font-size: 1rem;
    }

    .docs-menu-element span.emoji {
        font-size: 2.5rem;
    }

    .docs-menu-element.small {
        height: 120px;
        width: 160px;
        font-size: .8rem;
    }
}


@media screen and (max-width: 500px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container404 img {
        width: 150px;
    }

    .container404 h1 {
        margin: 25px 0 25px;
        font-size: 2rem;
    }

    .container404 a {
        font-size: 1rem;
    }

    .nav-colors.first {
        top: -100px;
        left: -100px;

        width: 250px;
        height: 250px;
    }

    .nav-colors.nav-colors.second {
        top: -50px;
        left: 75px;

        width: 200px;
        height: 100px;
    }

    .nav-colors.nav-colors.third {
        top: 50px;
        left: -75px;

        width: 150px;
        height: 150px;
    }

    .nav-logo {
        width: 65%;
        margin-left: 5%;
    }

    .nav-menu {
        display: none;
    }

    .nav-action {
        display: none;
    }

    .nav-mobile {
        width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-mobile-menu {
        display: fixed;
    }

    .langselect-window {
        width: 330px;
        height: 275px;
        padding: 20px;
    }

    .langselect-window-header-text h1 {
        font-size: 1.25rem;
    }

    .langselect-window-header-text h2 {
        font-size: .65rem;
    }

    .langselect-window-header-close button {
        width: 75%;
    }

    .langselect-window-content-header {
        height: 12%;
    }

    .langselect-window-content-header h1 {
        font-size: 1rem;
    }

    .langselect-window-content-lang-card {
        height: 75px;
        width: 135px;
        padding: 5px;
        font-size: .6em;
    }

    .langselect-window-content-lang.current {
        width: 48%;
    }

    .langselect-window-content-lang.other {
        width: 48%;
    }

    .langselect-window-content-lang-card-header {
        height: 1.7rem;
        width: 100%;
    }

    .langselect-window-content-lang-card-header h1 {
        font-size: .95rem;
    }

    .langselect-window-content-lang-card-header h2 {
        font-size: .75rem;
    }

    .landing-main-card-content {
        flex-direction: column;
    }

    .landing-main-card-text {
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-main-card-header {
        font-size: 2rem;
        position: initial;
        top: initial;
        transform: initial;
    }

    .landing-main-card-header p {
        font-size: 1rem;
        text-align: center;
    }

    .landing-main-card-header img {
        height: 1.5rem;
    }

    .landing-main-card-image {
        width: 100%;
        height: 60%;
    }

    .landing-main-card-icons {
        display: none;
    }

    .landing-main-card-icons.mobile {
        display: flex;
    }

    .landing-main-card-icons-item {
        font-size: 0.6rem;
    }

    .landing-main-card-icons-item b {
        font-size: 1.5rem;
    }

    .landing-main-card-icons-item img {
        width: 35px;
        margin-bottom: 7px;
    }

    .landing-main-card-icons-item span.small {
        font-size: 0.58rem;
    }

    .landing-main-card-mobile-title {
        display: flex;
        font-size: 1.15rem;
    }

    .landing-main-card-mobile-title b {
        font-size: 1.75rem;
    }

    .landing-main-card-image-benef {
        height: 50px;
        width: 190px;
        background-color: rgba(80, 80, 80, 0.5);
        border-radius: 25px;
    }

    .landing-main-card-image-benef-icon {
        top: 5px;
        left: 5px;
        height: 40px;
        width: 40px;
        border-radius: 20px;
        background-color: rgba(100, 100, 100, 0.3);
    }

    .landing-main-card-image-benef p {
        top: 5px;
        left: 50px;
        height: 40px;
        width: 140px;
        font-size: .75rem;
    }

    .landing-info {
        font-size: 4vw;
    }

    h1.faq {
        font-size: 1.8rem;
        text-align: center;
    }

    h2.faq {
        font-size: 1.25rem;
        text-align: center;
    }

    .faq-wrapper {
        flex-direction: column;
    }

    .faq-divider {
        width: 98%;
    }

    .faq-item-header {
        font-size: .75rem;
    }

    .faq-item-content {
        font-size: .75rem;
    }

    .part-card-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .half-card {
        height: 40vh;
        width: 100%;
    }

    .half-card.wlong {
        width: inherit;
    }

    .half-card.hshort {
        min-height: 100px;
        height: 15vh;
    }

    .half-card.hlong {
        min-height: 100px;
        height: 25vh;
    }

    .flex-card {
        height: auto;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .flex-card.wshort {
        width: inherit;
    }

    .flex-card.hshort {
        height: 50vh;
    }

    .flex-card.hlong {
        height: 55vh;
    }

    .flex-card-child.h40 {
        height: 30vh;
    }

    .flex-card-child.h30 {
        height: 20vh;
    }

    .card-image-source {
        font-size: .75rem;
    }

    .footer {
        height: auto;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-block {
        width: 45%;
    }

    .footer-block img {
        width: 150px;
    }

    .footer-block img.gpbadge {
        width: 100px;
    }

    .footer-block h1 {
        font-size: 1.25rem;
    }

    .footer-block a {
        font-size: .85rem;
    }

    .footer-block-slogan {
        font-size: 1rem;
    }

    .footer-block-slogan img {
        height: .8rem;
        width: auto;
    }

    .footer-block-socialmedia {
        gap: 10px;
    }

    .footer-block-socialmedia img {
        width: 1rem;
    }

    .footer-block-sponsors {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-block-sponsors img {
        height: 3.5rem;
        width: auto;
        padding: .5rem;
    }

    .footer-block-sponsors.desktop {
        display: none;
    }

    .footer-block-language {
        height: 2rem;
        width: 10rem;
        padding: 5px;
        font-size: .75rem;
    }

    .footer-block-language img {
        height: 2rem;
        width: 2rem;
    }

    button.footer-block-language.desktop {
        display: none;
    }

    .footer-mobile-extrabar {
        display: block;
    }

    .contact-form-wrapper h1 {
        font-size: 1.25rem;
    }

    .contact-form.faq {
        width: 100%;
    }

    .contact-half-card-header {
        font-size: 3.5rem;
        align-items: center;
    }

    .contact-half-card-header span.header-small {
        font-size: 3rem;
    }

    .contact-form-input#message {
        height: 125px;
    }

    .contact-form-input-notice {
        width: 80%;
        font-size: .7rem;
    }

    .contact-form-input-notice.faq {
        width: 80%;
        font-size: .65rem;
    }

    .contact-other-wrapper {
        text-align: center;
        font-size: .8rem;
        display: flex;

        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-other-wrapper h1 {
        font-size: 1.25rem;
    }

    .contact-sm-wrapper {
        height: 100px;
        margin: 2vh auto;
    }

    .contact-sm-wrapper a {
        height: 90px;
    }

    .contact-sm-wrapper.m0 {
        margin: 0 auto;
    }

    .contact-sm-card h2 {
        display: none;
    }

    .contact-sm-card.text-only {
        font-size: 1.25rem;
    }

    .contact-sm-card img {
        height: 2.5rem;
    }

    .docs-content {
        font-size: .7rem;
    }

    .docs-content h1 {
        font-size: 1.75rem;
    }

    h1.docs-header {
        font-size: 2rem;
    }

    .docs-content table b {
        font-size: 1rem;
    }

    .advan-wrapper {
        flex-direction: column;
        position: relative;
    }

    .advan-desc {
        width: 100%;
        margin: 0;
        padding: 25px;
    }

    .advan-desc-gradientheader {
        text-align: center;
        font-size: 1rem;
        display: block;
        width: 100%;
    }

    .advan-tiles {
        gap: 0;
    }

    .advan-tile-element {
        margin: 0 0 20px 0;
    }

    .advan-desc h1 {
        font-size: 2.25rem;
        text-align: center;
    }

    .advan-desc h2 {
        font-size: 1.5rem;
    }

    .advan-desc p {
        font-size: 0.75rem;
    }

    .advan-image-slider-wrapper {
        display: block;
        position: absolute;
        height: calc(100% - 160px);
        width: 100%;
        top: 160px;
    }

    .advan-image-slider {
        height: 20%;
        width: 100%;
        top: 85%;
    }

    .advan-image {
        mask-image: linear-gradient(rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    }

    .advan-image img {
        left: 0;
        height: auto;
        width: 100%;
    }

    .advan-tile-element-wrapper {
        display: block;
    }

    .advan-image-slider-restspot {
        display: block;
    }

    .mockup-wrapper h1 {
        font-size: 1.8rem;
    }

    .mockup-wrapper h2 {
        font-size: 1.25rem;
    }

    .mockup-wrapper img {
        margin: 25px 0 25px 0;
        width: 100%;
    }

    .mockup-options {
        height: 75px;
        width: 80%;
        gap: 15px;
    }

    .mockup-options a {
        max-height: 75px;
    }

    .mockup-options img {
        max-height: 100%;
        max-width: 100%;
        margin: 0;
    }


    .about-desc-image {
        height: 125px;
        border-radius: 20px;
    }

    .about-desc h1 {
        font-size: 1.8rem;
    }

    .about-desc h2 {
        font-size: 1.2rem;
    }

    .about-desc-stats {
        height: 200px;
    }

    .about-desc-stats-element {
        height: 200px;
        width: 33%;
    }

    .about-desc-stats-element h1 {
        font-size: 5vw;
    }

    .about-desc-stats-element h2 {
        font-size: 2vw;
    }

    .about-desc-stats-element span.emoji {
        font-size: 3rem;
    }

    h1.about-team {
        font-size: 2.25rem;
        text-align: center;
    }

    h2.about-team {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .about-media-slider-track {
        width: calc(175px * 22);
        gap: 25px;
        animation: scroll-mobile175 50s linear infinite;
    }

    .about-media-slider-element {
        width: 150px;
    }

    .about-team-cardsshow {
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-team-cardsshow.highlight {
        justify-content: center;
    }

    .about-team-card {
        height: 85px;
        width: 90vw;
        border-radius: 10px;
    }

    .about-team-card.highlight {
        height: 100px;
        width: 90vw;
    }

    .about-team-card-image img {
        height: 85px;
        width: 85px;
        border-radius: 10px;
    }

    .about-team-card.highlight .about-team-card-image img {
        height: 100px;
        width: 100px;
    }

    .about-team-card-text h1 {
        font-size: .9rem;
    }

    .about-team-card-text h2 {
        font-size: .7rem;
    }

    .about-team-card-text h3 {
        font-size: .6rem;
        gap: 5px;
    }

    .about-team-card-text h3 img {
        height: .6rem;
        width: .6rem;
    }

    .about-team-card-text p {
        font-size: .5rem;
    }

    .about-team-card.highlight .about-team-card-text h1 {
        font-size: 1.1rem;
    }

    .about-team-card.highlight .about-team-card-text h2 {
        font-size: .9rem;
    }

    .about-team-card.highlight .about-team-card-text h3 {
        font-size: .65rem;
    }

    .about-team-card.highlight .about-team-card-text h3 img {
        height: .65rem;
        width: .65rem;
    }

    .about-team-card.highlight .about-team-card-text p {
        font-size: .6rem;
    }

    h1.about-partners {
        font-size: 2rem;
        text-align: center;
    }

    h2.about-partners {
        font-size: 1.25rem;
        text-align: center;
    }

    .about-partners-wrapper {
        height: auto;
        padding: 0;
        flex-direction: column;
        gap: 15px;
    }

    .about-partners-card {
        width: 100%;
        height: 100px;
        padding: 10px;
        flex-direction: row;
    }

    .about-partners-card-text {
        width: 75%;
    }

    .about-partners-card-text h1 {
        font-size: 1rem;
    }

    .about-partners-card-text h2 {
        font-size: .75rem;
    }

    .about-partners-card-imgwrapper {
        height: 60px;
        width: 25%;
    }

    .docs-menu {
        justify-content: space-between;
    }

    .docs-menu-element {
        height: 160px;
        width: 42vw;
        font-size: 1rem;
    }

    .docs-menu-element span.emoji {
        font-size: 2.5rem;
    }

    .docs-menu-element.small {
        height: 100px;
        width: 42vw;
        font-size: .8rem;
    }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
    .langselect-window {
        width: 700px;
        height: 475px;
        padding: 20px;
    }

    .langselect-window-header-text h1 {
        font-size: 2rem;
    }

    .langselect-window-header-text h2 {
        font-size: 1rem;
    }

    .langselect-window-content-header {
        height: 10%;
    }

    .langselect-window-content-header h1 {
        font-size: 1.5rem;
    }

    .langselect-window-content-lang-card {
        height: 90px;
        width: 185px;
        padding: 5px;
        font-size: .75rem;
    }

    .langselect-window-content-lang-card-header {
        height: 2.5rem;
        width: 100%;
    }

    .langselect-window-content-lang-card-header h1 {
        font-size: 1rem;
    }

    .langselect-window-content-lang-card-header h2 {
        font-size: .75rem;
    }
}

@media screen and (max-width: 768px) and (min-width: 501px) {
    .langselect-window {
        width: 425px;
        height: 275px;
        padding: 20px;
    }

    .langselect-window-header-text h1 {
        font-size: 1.5rem;
    }

    .langselect-window-header-text h2 {
        font-size: .75rem;
    }

    .langselect-window-content-header {
        height: 12%;
    }

    .langselect-window-content-header h1 {
        font-size: 1rem;
    }

    .langselect-window-content-lang-card {
        height: 75px;
        width: 125px;
        padding: 5px;
        font-size: .55rem;
    }

    .langselect-window-content-lang-card-header {
        height: 1.75rem;
        width: 100%;
    }

    .langselect-window-content-lang-card-header h1 {
        font-size: .75rem;
    }

    .langselect-window-content-lang-card-header h2 {
        font-size: .65rem;
    }
}

@media screen and (min-width: 500px) {
    .nav-mobile-menu-loginbtn-text-desc {
        font-size: 1.25rem;
    }
}