/*
Black: #0D0221
Red: #FF5964
White: #FFFFFF
Orangey: #F9A03F
Purple: #6153CC
Offwhite: #E4E4E4
Mint White: #F3F7F0
*/

:root {
    --red: #FF5964;
    --orange: #FF570A;
    --white: #FFFFFF;
    --off-black: #0D0221;
    --eerie-black: #1E1E1F;
    --off-white: #E4E4E4;
    --mint-white: #F3F7F0;
    --jade: #59A96A;
    --jade2: #0DAB76;
    --jade3: #00A878;
    --purple: #735CDD;
}

@font-face {
    font-family: LexendDeca;
    src: url("LexendDeca.ttf")
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: LexendDeca;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    font-family: LexendDeca;
    letter-spacing: -0.2px;
    word-spacing: -1.2px;
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    background-color: var(--eerie-black);
    padding-bottom: 4em;
}

.glass {
    z-index: 1;
    position: fixed;
    transition: all 0.2s ease-in-out;
}

.glass:hover #nav_links {
    display: flex;
}

.content_headers {
    border: 10px;
    padding: 10px;
    font-family: LexendDeca;
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
}

#header {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 0 25px 25px 25px;
    padding: 1em;
    box-shadow: -2px 0px 10px #111;
    color: var(--off-white);
}

#header_link {
    color: #0D0221;
    text-decoration: none !important;
}

#header_logo {
    vertical-align: top;
}

#header_text {
    font-size: 50px;
    color: #0D0221;
    font-weight: normal;
}

#nav_links {
    margin-left: 0.5em;
    display: none;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1366px) {
    #nav_links {
        margin-left: 0.5em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#nav_links a {
    text-decoration: none !important;
    font-size: 24px;
    padding: 0 0.5em;
    animation: linkHover_rev 0.1s ease both;
}

#nav_links a:hover {
    animation: linkHover 0.1s ease both;
}

@keyframes linkHover {
    0% {
        color: var(--off-black);
    }

    100% {
        color: var(--red);
    }
}

@keyframes linkHover_rev {
    0% {
        color: var(--red);
    }

    100% {
        color: #0D0221;
    }
}

.fun_hover {
    background-image: linear-gradient(135deg, #FC5869 0%, #FC5869 35%, #F8F7FF 35%, #F8F7FF 58%, #FF00FF 58%, #FF00FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    animation: funHover_rev 0.25s ease forwards;
}

.fun_hover:hover {
    animation: funHover 0.25s ease forwards;
}

@keyframes funHover {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 280%;
    }
}

@keyframes funHover_rev {
    0% {
        background-size: 280%;
    }

    100% {
        background-size: 100%;
    }
}

.indent {
    margin-left: 1em;
}

.fade-in {
    animation: fadeIn 1s both;
}

.fade-in-from-left {
    animation: fadeInFromLeft 1s both;
}

.fade-in-from-right {
    animation: fadeInFromRight 1s both;
}

.fade-in-to-left {
    animation: fadeInToLeft 1s both;
}

.delay-animation {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInFromLeft {
    0% {
        margin-left: -4em;
        opacity: 0;
    }

    100% {
        margin-left: 0em;
        opacity: 1;
    }
}

@keyframes fadeInFromRight {
    0% {
        margin-right: -4em;
        opacity: 0;
    }

    100% {
        margin-right: 0em;
        opacity: 1;
    }
}

@keyframes fadeInToLeft {
    0% {
        margin-left: 4em;
        margin-right: -4em;
        opacity: 0;
    }

    100% {
        margin-left: 0em;
        margin-right: 0em;
        opacity: 1;
    }
}

@media screen and (max-width: 1366px) {
    .center-if-mobile {
        text-align: center;
    }
}

.page-block {
    display: flex;
    color: #fff;
    padding: 10em 2em 4em;
    overflow: auto;
    justify-content: space-between;
    align-items: center;
}

.page-section {
    display: flex;
    color: #fff;
    padding: 1em 3em;
    overflow: auto;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1366px) {
    .page-section {
        display: flex;
        color: #fff;
        padding: 3em 1em;
        overflow: auto;
        justify-content: center;
        align-items: center;
    }
}

.showcase-section {
    color: #fff;
    background-color: var(--eerie-black);
    padding: 3em;
    overflow: auto;
    align-items: center;
    text-align: center;
}

.showcase-paragraph {
    font-size: 28px;
    text-shadow: #000000 3px 3px 5px;
}

.showcase-paragraph p {
    padding: 1em 0em;
}

.widget {
    margin: 0em 1.5em;
}

#services_info {
    flex-direction: row;
}

@media screen and (max-width: 1366px) {
    #services_info {
        flex-direction: column;
    }
}

.elements-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.no-left {
    padding-left: 0em !important;
}

@media screen and (max-width: 1366px) {
    .elements-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .rem-left {
        padding-left: 0em !important;
    }

    .rem-right {
        padding-right: 0em !important;
    }

    .rem-top {
        padding-top: 0em !important;
    }

    .rem-bottom {
        padding-bottom: 0em !important;
    }

}

.lg-view {
    display: flex;
}

.sm-view {
    display: none;
}

@media screen and (max-width: 1366px) {
    .lg-view {
        display: none !important;
    }

    .sm-view {
        display: flex !important;
    }
}

.page-element-text {
    font-size: 5em;
    white-space: nowrap;
    padding: 0em 0.15em 0.15em 0.15em;
}

.flex-array {
    display: flex;
    flex-direction: column;
    text-align: center;
    vertical-align: middle;
    margin-left: 0em;
}

@media screen and (max-width: 1366px) {
    .flex-array {
        display: flex;
        flex-direction: row;
        text-align: center;
        vertical-align: middle;
        margin-left: 0em;
    }
}

.array-block {
    background-color: var(--mint-white);
    color: #000;
    padding: 1.5em 1.5em;
    font-size: 28px;
    text-decoration: none !important;
}

.array-top {
    border-radius: 15px 15px 0px 0px;
}

.array-bottom {
    border-radius: 0px 0px 15px 15px;
}

@media screen and (max-width: 1366px) {
    .array-top {
        border-radius: 15px 0px 0px 15px;
    }

    .array-bottom {
        border-radius: 0px 15px 15px 0px;
    }
}

.array-block.selected {
    text-align: center;
    background-color: var(--off-black) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.array-block:hover {
    background-color: #6153CC;
    color: #fff;
    text-decoration: underline;
}

.array-click-text {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 28px;
}

.array-click-text p {
    text-align: left;
    padding: 1em;
    color: #000;
    background-color: var(--mint-white);
    border-radius: 15px 0px 0px 15px;
    overflow: auto;
}

@media screen and (max-width: 1366px) {
    .array-click-text {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        font-size: 28px;
    }

    .array-click-text p {
        text-align: center;
        padding: 1em;
        color: #000;
        background-color: var(--mint-white);
        border-radius: 15px 15px 0px 0px;
        overflow: auto;
    }
}

.index-info {
    max-width: 30em;
    max-height: 25em;
}

.image-label {
    font-size: 32px;
    text-align: center;
    color: #fff;
    text-decoration: none !important;
}

.image-label:hover {
    color: #6153CC;
}

.image-row {
    display: flex;
    flex-direction: row;
    border-radius: 15px 15px 15px 15px;
    align-items: center;
}

.image-row a {
    text-decoration: none !important;
}

.image-row img {
    width: 128px;
    height: 128px;
    padding: 1.5em;
}

.image-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: var(--mint-white);
    border-radius: 0px 15px 15px 0px;
}

@media screen and (max-width: 1366px) {
    .image-column {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        background-color: var(--mint-white);
        border-radius: 0px 0px 15px 15px;
    }
}


.image-column img {
    width: 3em;
    height: 3em;
    padding: 0.5em 0.5em;
}

.bg-red {
    background: linear-gradient(to right, var(--red) 50%, var(--eerie-black) 50%);
    background-size: 200%;
    animation: highlight-intro ease 1s both;
    -moz-animation: highlight-intro ease 1s both;
    -webkit-animation: highlight-intro ease 1s both;
}

.bg-purple {
    background: linear-gradient(to right, var(--purple) 50%, var(--eerie-black) 50%);
    background-size: 200%;
    animation: highlight-intro ease 1s both;
    -moz-animation: highlight-intro ease 1s both;
    -webkit-animation: highlight-intro ease 1s both;
}

.bg-green {
    background: linear-gradient(to right, var(--jade3) 50%, var(--eerie-black) 50%);
    background-size: 200%;
    animation: highlight-intro ease 1s both;
    -moz-animation: highlight-intro ease 1s both;
    -webkit-animation: highlight-intro ease 1s both;
}

.bg-orange {
    background: linear-gradient(to right, var(--orange) 50%, var(--eerie-black) 50%);
    background-size: 200%;
    animation: highlight-intro ease 1s both;
    -moz-animation: highlight-intro ease 1s both;
    -webkit-animation: highlight-intro ease 1s both;
}



@keyframes highlight-intro {
    0% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }
}

.left-box {
    display: inline-block;
    text-align: left;
    padding: 2em;
    color: inherit;
}

.right-box {
    display: inline-block;
    text-align: right;
    padding: 2em;
    color: inherit;
}

.giant-text {
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.2em;
    margin-right: 1em;
    font-size: 6em;
}

.bottom-left-shadow {
    text-shadow: #212121 -3px 3px 5px;
}

.email-link {
    text-decoration: none;
    color: var(--red);
}

.email-link:hover {
    text-decoration: underline;
    color: #F9A03F;
}

@keyframes flicker {

    /* flame pulses */
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.in-out-fade {
    animation: flicker 1s infinite;
}

.content-header {
    font-size: 72px;

}

.content-paragraph {
    color: #F8F7FF;
    font-size: 20px;
    padding: 1em 1em;
}

.subcontent-header {
    color: #F8F7FF;
    font-size: 24px;

}

.separating_dot {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    font-size: 48px;
    color: darkgrey;
    animation: dotFadeIn ease 1s 1.1s both;
    text-shadow: 0px 2px 5px #111;
}

@keyframes dotFadeIn {
    0% {
        opacity: 0;
        margin-top: -1em;
        margin-bottom: 0em;
    }

    100% {
        opacity: 1;
        margin-top: 0.35em;
        margin-bottom: 0em;
    }
}

#copyright {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-top: 2em;
    text-align: center;
    font-size: 12px;
    padding: 6px;
    background-color: #000;
    color: white;
}

.clear_button {
    display: inline-block;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.button-link {
    text-decoration: none;
    font-size: 24px;
    padding: 0.5em 1.5em;
    color: #fff;
    background-color: #000;
}

.button-link:hover {
    text-decoration: none;
    background-color: var(--red);
    padding: 0.5em 1.5em;
    color: #fff;
}

input {
    padding: 0.25em;
    margin-bottom: 1em;
    background-color: #E4E4E4;
}

textarea {
    padding: 0.25em;
    margin-bottom: 1em;
    background-color: #E4E4E4;
}

.shell>.footer {
    bottom: 80px;
}

tr,
th,
td {
    padding: 1em;
}