html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0D1B2A;
    color: #FFFFFF;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about_service {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.as-shadow {
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: -1px -5px 100px 50px rgba(13, 197, 139, 0.579);
    z-index: -1;
}

.as-text h1 {
    font-size: 36px;
    margin: 0 0 10px;
}

.as-text p {
    color: #B0BEC5;
}

.about {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 150px;
}

.about-shadow {
    position: absolute;
    top: 150px;
    left: 0;
    box-shadow: -1px -5px 140px 75px rgba(13, 197, 185, 0.579);
    z-index: -1;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.aboutC {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #0A1725;
    padding: 60px 20px;
    border-radius: 5px;
}

.aboutC img {
    height: 250px;
    width: 350x;
}

.hAbout {
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: -1px;
    display: flex;
    flex-wrap: wrap;
}

.hAbout span {
    color: #00D1C1;
    position: relative;
}

.hAbout span p {
    display: inline-block;
    word-wrap: break-word;
}

.hAbout span p:first-child {
    opacity: 1;
    animation: hAbout_1 8s linear infinite;
    transform: translateY(0%);
}

.hAbout span p:last-child {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    opacity: 0;

    animation: hAbout_2 8s linear infinite;
    transform: translateY(-10%);
}

.tAbout {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #B0BEC5;
}

.contentAbout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aAbout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    padding: 15px 30px;
    color: #5b5b5b;
    background: #eee;
    border-radius: 5px;

    font-weight: bold;
    font-size: 13px;
    line-height: normal;
    text-decoration: none;

    transition: all 0.4s ease;
}

.aAbout:hover {
    color: black;
}

.icons {
    padding: 20px;
    position: fixed;
    right: -1px;
    bottom: 50px;
    font-size: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.userSection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px 15px;
    background-color: #0A1725;
    border-radius: 5px;
}

.user {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    font-size: 25px;
    transition: all 0.2s ease;
}

.user:hover,
.logoutIC:hover {
    cursor: pointer;
    color: #00D1C1;
}

.user i {
    font-size: 40px;
}

.logoutIC {
    transition: all 0.2s ease;
    font-size: 25px;
}

#disabled {
    color: grey;
}

#disabled:hover {
    color: grey;
}

@keyframes hAbout_1 {
    0% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }

    2%,
    50% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }

    52%,
    100% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }
}

@keyframes hAbout_2 {

    0%,
    4% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }

    6%,
    38% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }

    40%,
    100% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }
}

.downloads {
    position: fixed;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
    width: 250px;
    background-color: #112330;
    /* height: 100px; */
    padding: 5px 10px;
    z-index: 9999999;
}

.downloadInfo {
    color: white;
    position: relative;
    top: 0;
    left: 0;
    display: grid;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    grid-template-columns: auto 1fr auto;
}

.downloadIcon {
    /* border: 1px solid white; */

    position: relative;
    border-radius: 50%;
    padding: 5px 10px;
    height: fit-content;
}

.downloadProgress {
    font-size: 12px;
    color: #B0BEC5;
}

.downloadCancel {
    padding: 2px 8px;
    border-radius: 50%;
}

.downloadCancel:hover {
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
}

.downloadIcon i {
    animation: disAppear 2s linear infinite;
}

.downloadText {
    overflow: hidden;
}

.downloadFileName {
    font-size: 14px;
    font-weight: bold;
    color: white;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.downloadFileName:hover {
    cursor: pointer;
    color: #00D1C1;
}

@keyframes disAppear {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.circular-progress {
    --size: 35px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 2px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
    animation: progress-animation 5s linear 0s 1 forwards;

    position: absolute;
    top: 0;
    left: 0;
}

.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: round;
}

.circular-progress circle.bg {
    stroke: white;
}

.circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.3s linear 0s;
    stroke: #53d5fd;
}

@property --progress {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

.alert {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: #0000007b;
    z-index: 99999999;
}

.alertBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #112330;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
}

.alertH {
    font-size: 20px;
    font-weight: bold;
}

.alertM {
    font-size: 15px;
    color: #bababa;
}

.alertB {
    padding: 5px 10px;
    width: fit-content;
}

.alertB:hover {
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
}

/* html, body {height: 100%;}
body {
    font-family: "Maven Pro", sans-serif;
    background-color: #0c0c0d;
    color: white;
}

.mainContent {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.about {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 50px 0 10px 0;
}

.aboutC {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.aboutC img {
    height: 350px;
    width: 450px;
}

.hAbout {
    font-size: 2.8em;
    font-weight: bold;
    letter-spacing: -1px;
    display: flex;
    flex-wrap: wrap;
}

.hAbout span {
    color: #ffc200;
    position: relative;
}

.hAbout span p {
    display: inline-block;
    word-wrap: break-word;
}

.hAbout span p:first-child {
    opacity: 1;
    animation: hAbout_1 8s linear infinite;
    transform: translateY(0%);
}

.hAbout span p:last-child {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    opacity: 0;

    animation: hAbout_2 8s linear infinite;
    transform: translateY(-10%);
}

.tAbout {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #5b5b5b;
}

.contentAbout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aAbout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    padding: 15px 30px;
    color: #5b5b5b;
    background: #eee;
    border-radius: 5px;

    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;

    transition: all 0.4s ease;
}

.aAbout:hover {
    color: black;
}

.icons {
    padding: 20px;
    position: fixed;
    right: -1px;
    bottom: -1px;
    font-size: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.container {
    width: 100%;
    margin: 0 100px;
}

.aAbout_n {
    display: none;
}

@keyframes hAbout_1 {
    0% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }
    2%, 50% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }
    52%, 100% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }
}

@keyframes hAbout_2 {
    0%, 4% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }
    6%, 38% {
        opacity: 1;
        transform: translateY(0%);
        user-select: text;
        z-index: 99;
    }
    40%, 100% {
        opacity: 0;
        transform: translateY(-50%);
        user-select: none;
        z-index: -1;
    }
}

@media screen and (max-width: 1100px) {
    .aboutC img {
        height: 250px;
        width: 350px;
    }
    .contentAbout {
        width: 400px;
    }
    .hAbout {
        font-size: 2.5em;
    }
    .tAbout {
        font-size: 18px;
    }
}

@media screen and (max-width: 1000px) {
    .aboutC {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .aboutC img {
        display: flex;
        align-self: flex-end;
        height: 300px;
        width: 400px;
    }
    .contentAbout {
        width: 80%;
    }
    .about {
        margin: 125px 0 10px 0;
    }
    .aAbout_o {
        display: none;
    }
    .aAbout_n {
        display: flex;
        align-self: flex-start;
    }
}

@media screen and (max-width: 900px) {
    .container {
        margin: 0 50px;
    }
}

@media screen and (max-width: 800px) {
    .container {
        margin: 0 25px;
    }
}

@media screen and (max-width: 700px) {
    .aboutC img {
        align-self: center;
    }
    .hAbout {
        font-size: 2.1em;
    }
    .tAbout {
        font-size: 17px;
    }
    .aAbout_n {
        align-self: center;
    }
}

@media screen and (max-width: 550px) {
    .hAbout {
        width: 300px;
    }
    .contentAbout {
        width: 100%;
    }
    .about {
        justify-content: flex-start;
    }
    .aboutC img {
        height: 250px;
        width: 350px;
    }
}

@media screen and (max-width: 450px) {
    .aboutC img {
        height: 250px;
        width: 300px;
    }
}

@media screen and (max-width: 400px) {
    .container {
        margin: 0 0;
    }
    .aboutC img {
        padding: 0 5px;
    }
    .contentAbout {
        align-items: center;
    }
    .hAbout {
        width: 90%;
    }
    .tAbout {
        width: 90%;
    }
} */