@import url("https://fonts.googleapis.com/css?family=Fira+Mono|Signika&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@font-face {
    font-family: "Product Sans Regular";
    font-style: normal;
    font-weight: normal;
    src: local("Product Sans Regular"), url("../assets/fonts/ProductSans/ProductSans-Regular.woff") format("woff");
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    -webkit-text-emphasis: none;
    text-emphasis: none;
}
a:focus {
    outline: none;
}
input,
button:focus {
    outline: none;
}
body {
    overflow: hidden;
    background: #040020;
}
section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}
input:focus,
textarea:focus {
    outline: none;
}
textarea {
    resize: none;
}
.content {
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    scroll-behavior: smooth;
}
.content.appear {
    display: block;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
}
.loading-overlay img {
    width: 5rem;
    -webkit-animation: rotate-logo 5s ease 0s infinite normal;
    animation: rotate-logo 5s ease 0s infinite normal;
}
.loading-overlay.dissappear {
    display: none;
}
@-webkit-keyframes rotate-logo {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(356deg);
        transform: rotate(356deg);
    }
}
@keyframes rotate-logo {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(356deg);
        transform: rotate(356deg);
    }
}
::-webkit-scrollbar {
    height: 1.7rem;
    width: 0.7rem;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    cursor: pointer;
    background: #020011;
}
::-webkit-scrollbar-thumb {
    background: #ad0000;
}
@media screen and (max-width: 1165px) {
    ::-webkit-scrollbar {
        height: 0;
        width: 0;
        cursor: unset;
    }
    ::-webkit-scrollbar-track {
        cursor: pointer;
        background: unset;
    }
    ::-webkit-scrollbar-thumb {
        background: unset;
    }
}
.container {
    width: 100%;
    max-width: 60rem;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 7rem 0;
}
@media screen and (max-width: 1552px) {
    .container {
        margin: 5rem 0;
        max-width: 60rem;
    }
}
@media screen and (max-width: 1165px) {
    .container {
        margin: 5rem 0;
        max-width: 45rem;
    }
}
@media screen and (max-width: 769px) {
    .container {
        margin: 5rem 1rem;
        max-width: 35rem;
    }
}
@media screen and (max-width: 600px) {
    .container {
        margin-top: 15rem;
        margin: 5rem 1rem;
        padding: 0 1rem;
        max-width: 23rem;
    }
}
.home h1 {
    font-family: "Product Sans Regular", "Open Sans", sans-serif;
    color: #64edfb;
    font-size: 5rem;
    font-stretch: semi-expanded;
    opacity: 0;
    -webkit-animation: appear 0.5s ease-out 0.25s 1 normal forwards;
    animation: appear 0.5s ease-out 0.25s 1 normal forwards;
    margin-bottom: 2 rem;
}
.home h4 {
    font-family: "Fira Mono";
    color: #2e9bcd;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 1.3rem;
    opacity: 0;
    -webkit-animation: appear 0.5s ease-out 0s 1 normal forwards;
    animation: appear 0.5s ease-out 0s 1 normal forwards;
    margin-left: 4px;
}
.home h2 {
    font-family: "Product Sans Regular", "Open Sans", sans-serif;
    color: #2e9bcd;
    font-size: 4rem;
    opacity: 0;
    -webkit-animation: appear 0.5s ease-out 0.5s 1 normal forwards;
    animation: appear 0.5s ease-out 0.5s 1 normal forwards;
    margin-top: 0.5rem;
}
.home p {
    margin-top: 3rem;
    color: #64edfb;
    font-family: "Fira Mono";
    font-size: 1.3rem;
    line-height: 30px;
    opacity: 0;
    -webkit-animation: appear 0.5s ease-out 0.75s 1 normal forwards;
    animation: appear 0.5s ease-out 0.75s 1 normal forwards;
    padding-right: 15rem;
}
.home button {
    display: none;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: "Fira Mono";
    margin-top: 5rem;
    background: none;
    color: #2e9bcd;
    border: #2e9bcd solid 1px;
    border-radius: 0.2rem;
    cursor: pointer;
    opacity: 0;
    -webkit-animation: appear 0.5s ease-out 1s 1 normal forwards;
    animation: appear 0.5s ease-out 1s 1 normal forwards;
    -webkit-transition: background ease-in 0.1s;
    transition: background ease-in 0.1s;
}
.home button:hover {
    background: rgba(255, 255, 255, 0.1);
}
.home button:focus {
    background: rgba(255, 255, 255, 0.2);
}
.home__contact {
    -webkit-animation: appear 0.5s ease-out 1s 1 normal forwards;
    animation: appear 0.5s ease-out 1s 1 normal forwards;
    margin-top: 2rem;
    opacity: 0;
}
.home__contact a {
    width: 3rem;
    height: 3rem;
}
.home__contact a:not(:last-child) {
    margin-right: 1.5rem;
}
.home__contact a img {
    width: 2rem;
    height: 2rem;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.home__contact a img:hover {
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
}
@media screen and (max-width: 1552px) {
    .home h1 {
        font-size: 4.5rem;
    }
    .home h2 {
        font-size: 3.2rem;
    }
    .home p {
        font-size: 1rem;
        padding-right: 10rem;
    }
}
@media screen and (max-width: 1165px) {
    .home h1 {
        font-size: 4.3rem;
        margin-bottom: 3.3rem;
        margin-bottom: 1rem;
    }
    .home h2 {
        font-size: 3rem;
    }
    .home h4,
    .home p {
        font-size: 1.3rem;
    }
    .home p {
        padding-right: 10rem;
    }
}
@media screen and (max-width: 769px) {
    .home h1 {
        font-size: 3.6rem;
    }
    .home h2 {
        font-size: 2.8rem;
    }
    .home p {
        padding-right: 5rem;
    }
}
@media screen and (max-width: 600px) {
    .home h1 {
        font-size: 2.2rem;
    }
    .home h2 {
        font-size: 1.7rem;
    }
    .home h4,
    .home p {
        font-size: 1rem;
    }
    .home p {
        padding-right: 0;
    }
}
@-webkit-keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2rem);
        transform: translateY(2rem);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2rem);
        transform: translateY(2rem);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.contact {
    opacity: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
    -webkit-transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s, -webkit-transform ease 0.9s;
    font-family: "Signika", sans-serif;
}
.contact.visible {
    -webkit-transform: translateX(0rem);
    transform: translateX(0rem);
    opacity: 1;
}
.contact h1 {
    font-family: "Product Sans Regular";
    color: #64edfb;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.contact__form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 3rem;
    border-radius: 0.3rem;
}
.contact__form .input-group {
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 1.5rem 0rem;
    border-radius: 0.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact__form .input-group input,
.contact__form .input-group textarea {
    width: 100%;
    border-radius: 0.3rem;
}
.contact__form .input-group input:focus + .input-group__placeholder,
.contact__form .input-group input:valid + .input-group__placeholder,
.contact__form .input-group textarea:focus + .input-group__placeholder,
.contact__form .input-group textarea:valid + .input-group__placeholder {
    -webkit-transform: translate(0.2rem, -3.5rem);
    transform: translate(0.2rem, -3.5rem);
}
.contact__form .input-group input:focus,
.contact__form .input-group textarea:focus {
    -webkit-box-shadow: 0 0 3pt 1pt rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 3pt 1pt rgba(255, 255, 255, 0.4);
}
.contact__form .input-group__placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    position: absolute;
    top: 1.7rem;
    -webkit-transform: translate(1rem, -50%);
    transform: translate(1rem, -50%);
    -webkit-transition: -webkit-transform ease 0.3s;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.contact__form input,
.contact__form textarea {
    background: none;
    border: none;
    padding: 1rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}
.contact__form .button {
    margin-top: 2rem;
    width: 35%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
@media screen and (max-width: 1165px) {
    .contact h1 {
        font-size: 1.6rem;
    }
    .contact__form {
        padding: 0rem;
        margin: 0rem;
    }
}
.about {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
    transform: translateX(-2rem);
    -webkit-transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s, -webkit-transform ease 0.9s;
}
.about.visible {
    -webkit-transform: translateX(0rem);
    transform: translateX(0rem);
    opacity: 1;
}
.about h1 {
    font-family: "Product Sans Regular";
    color: #64edfb;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.about p {
    color: #64edfb;
    font-family: "Fira Mono";
    font-size: 1rem;
    line-height: 30px;
}
.about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about__content .about__image__container {
    width: 20rem;
    margin-right: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about__content .about__image__container__image {
    margin-left: 1.3rem;
    margin-top: 1.3rem;
    border: solid 1px white;
}
.about__content .about__image__container img {
    width: 20rem;
    height: 20rem;
    -webkit-transform: translate(-1.3rem, -1.3rem);
    transform: translate(-1.3rem, -1.3rem);
}
.about__content .about__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.about__content .about__text .about__technologies {
    margin-top: 1rem;
    color: #64edfb;
}
.about__content .about__text .about__technologies__grid {
    display: -ms-grid;
    display: grid;
    padding-left: 2rem;
    grid-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.about__content .about__text .about__technologies__grid ul {
    margin-top: 1rem;
    color: #64edfb;
    font-family: "Fira Mono";
    font-size: 0.8rem;
    line-height: 30px;
}
.about__content .about__text .about__technologies__grid ul li {
    padding-left: 0.2rem;
}
@media screen and (max-width: 1165px) {
    .about h1 {
        font-size: 1.6rem;
    }
    .about p {
        font-size: 1rem;
    }
    .about__content {
        display: block;
    }
    .about__content .about__image__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-right: unset;
        margin-bottom: 2rem;
    }
    .about__content .about__image__container img {
        width: 20rem;
    }
}
@media screen and (max-width: 600px) {
    .about p {
        font-size: 1rem;
    }
}
.experience {
    opacity: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
    -webkit-transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, -webkit-transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s;
    transition: opacity ease 0.9s, transform ease 0.9s, -webkit-transform ease 0.9s;
}
.experience.visible {
    -webkit-transform: translateX(0rem);
    transform: translateX(0rem);
    opacity: 1;
}
.experience h1 {
    font-family: "Product Sans Regular";
    color: #64edfb;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.experience__grid {
    width: 100%;
    height: 75%;
    display: -ms-grid;
    display: grid;
    color: #64edfb;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    background: rgba(0, 0, 0, 0.1);
    grid-template-areas: "employers details details details";
}
.experience__grid .experience__employers {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: employers;
    font-family: "Product Sans Regular", sans-serif;
}
.experience__grid .experience__employers .experience__button {
    background: none;
    border: none;
    color: #64edfb;
    font-family: "Product Sans Regular", sans-serif;
    padding: 1rem;
    display: inline-block;
    width: 100%;
    -webkit-transition: background ease 0.3s;
    transition: background ease 0.3s;
    position: relative;
}
.experience__grid .experience__employers .experience__button.selected {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}
.experience__grid .experience__employers .experience__button::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    background-color: #2e9bcd;
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
}
.experience__grid .experience__employers .experience__button:hover {
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
.experience__grid .experience__employers .experience__button:hover::after {
    opacity: 1;
}
.experience__grid .experience__details {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-area: details;
    padding: 1rem;
    padding-left: 3rem;
    background: rgba(0, 0, 0, 0.2);
    font-family: "Roboto";
    font-weight: 200;
}
.experience__grid .experience__details .experience__title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: -1rem;
    margin-bottom: 0.3rem;
    font-family: "Product Sans Regular", sans-serif;
}
.experience__grid .experience__details .experience__title span {
    color: #2e9bcd;
}
.experience__grid .experience__details .experience__duration {
    margin-left: -1rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    color: #2e9bcd;
}
.experience__grid .experience__details li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.experience__grid .experience__details li span {
    font-weight: bold;
}
@media screen and (max-width: 1165px) {
    .experience h1 {
        font-size: 1.6rem;
    }
    .experience__grid {
        padding: 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "employers" "details";
    }
    .experience__grid .experience__employers .experience__button {
        width: unset;
    }
    .experience__grid .experience__details {
        padding-left: 2rem;
    }
}
@media screen and (max-width: 600px) {
    .experience p {
        font-size: 1rem;
    }
}
#projects {
    font-family: "Product Sans Regular", "Open Sans", sans-serif;
    font-weight: 200;
    text-align: center;
    background-color: #040020;
    height: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}
#projects h2 {
    padding: 15px;
    padding-top: 25px;
    color: white;
}
#projects h1 {
    color: #64edfb;
    font-size: 3rem;
    margin-bottom: 2rem;
}
#projects .projects__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    top: 100px;
    gap: 20px;
    margin-bottom: 70px;
}
#projects #projects-group {
    top: 300px;
    z-index: 10;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}
#projects #projects-group .project-parent {
    width: 280px;
    height: 280px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 3px 5px 7px -1px #517281;
    box-shadow: 3px 5px 7px -1px #517281;
    margin: 20px 10px;
    margin-top: 0;
}
#projects #projects-group .project-parent:hover {
    width: 290px;
    height: 290px;
    margin: 10px 0;
    margin-top: 0;
    bottom: 3px;
    right: 3px;
    -webkit-box-shadow: 6px 6px 15px 0px #517281;
    box-shadow: 6px 6px 15px 0px #517281;
}
#projects #projects-group .project-parent .project-content {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    opacity: 1;
}
#projects #projects-group .project-parent .project-content:hover {
    width: 290px;
    height: 290px;
}
#projects #projects-group .project-parent .project-content p,
#projects #projects-group .project-parent .project-content a,
#projects #projects-group .project-parent .project-content h3 {
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.63);
}
#projects #projects-group .project-parent .project-content .project-bg-overlay {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    background: linear-gradient(150deg, #016972 0%, #032130 80%);
    position: absolute;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
}
#projects #projects-group .project-parent .project-content:hover .project-bg-overlay {
    width: 290px;
    height: 290px;
    opacity: 0.8;
}
#projects #projects-group .project-parent .project-content img {
    z-index: 1;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    height: 280px;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
#projects #projects-group .project-parent .project-content:hover img {
    height: 290px;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
#projects #projects-group .project-parent .project-content .project-info {
    z-index: 100;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 280px;
    height: 280px;
}
#projects #projects-group .project-parent .project-content .project-info .proj-title-desc {
    position: relative;
    width: 100%;
    padding-top: 30px;
    bottom: 180px;
}
#projects #projects-group .project-parent .project-content .project-info .proj-title-desc h3 {
    color: #e3b505;
    font-size: 25px;
    padding-bottom: 15px;
}
#projects #projects-group .project-parent .project-content .project-info .proj-title-desc p {
    color: white;
    width: 280px;
    padding: 0 10px;
}
#projects #projects-group .project-parent .project-content .project-info:hover .proj-title-desc {
    bottom: 0;
}
#projects #projects-group .project-parent .project-content .project-info .concepts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 240px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-height: 125px;
    padding-bottom: 20px;
    list-style: none;
    color: white;
    position: relative;
    top: 130px;
}
#projects #projects-group .project-parent .project-content .project-info .concepts p {
    padding-bottom: 2.5px;
}
#projects #projects-group .project-parent .project-content .project-info:hover .concepts {
    top: 0;
}
#projects #projects-group .project-parent .project-content .project-info .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 280px;
    min-height: 45px;
}
#projects #projects-group .project-parent .project-content .project-info .icons .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 45px;
    min-height: 45px;
    position: absolute;
    margin: auto;
}
#projects #projects-group .project-parent .project-content .project-info .icons .icon .nolink {
    color: #5e5e5e;
}
#projects #projects-group .project-parent .project-content .project-info .icons .icon .nolink-cross {
    color: #fb3640;
}
#projects #projects-group .project-parent .project-content .project-info .icons .icon a {
    color: #e3b505;
    text-decoration: none;
    font-size: 35px;
    position: absolute;
    margin: auto;
}
#projects #projects-group .project-parent .project-content .project-info .icons .project-link {
    left: 350px;
}
#projects #projects-group .project-parent .project-content .project-info .icons .code-link {
    right: 350px;
}
#projects #projects-group .project-parent .project-content .project-info:hover .icons .code-link {
    right: 200px;
}
#projects #projects-group .project-parent .project-content .project-info:hover .icons .project-link {
    left: 200px;
}
@media screen and (min-width: 635px) {
    #projects #projects-group {
        padding: 0 15px !important;
        -ms-grid-columns: (1fr) [2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media screen and (min-width: 950px) {
    #projects #projects-group {
        -ms-grid-columns: (1fr) [3] !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
.button {
    padding: 0.8rem;
    font-size: 1rem;
    font-family: "Fira Mono";
    background: none;
    color: #2e9bcd;
    border: #2e9bcd solid 1px;
    border-radius: 0.2rem;
    cursor: pointer;
    -webkit-transition: background ease 0.3s;
    transition: background ease 0.3s;
}
.button:hover {
    background: rgba(255, 255, 255, 0.1);
}
.projects .projects__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 50px !important;
}
.projects .projects__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0px;
    width: 120px;
}
.projects h1 {
    text-align: left;
    color: #444;
    letter-spacing: 0.05em;
    margin: 0 0 0.4em;
    font-size: 1em;
}
.projects p {
    text-align: left;
    color: #444;
    letter-spacing: 0.05em;
    font-size: 0.8em;
    margin: 0 0 2em;
}
.projects .projects__btn {
    letter-spacing: 0.1em;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
.projects .projects__btn:hover {
    text-decoration: none;
}
.projects .projects__effect01 {
    color: #fff;
    border: 4px solid #900;
    -webkit-box-shadow: 0px 0px 0px 1px #900 inset;
    box-shadow: 0px 0px 0px 1px #900 inset;
    background-color: #fb3640;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.projects .projects__effect01:hover {
    border: 4px solid #666;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 0px 4px #eee inset;
    box-shadow: 0px 0px 0px 4px #eee inset;
}
.projects .projects__effect01 span {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 2;
}
.projects .projects__effect01:hover span {
    letter-spacing: 0.13em;
    color: #333;
}
.projects .projects__effect01:after {
    background: #fff;
    border: 0px solid #000;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.8;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    width: 50px;
    -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 1;
}
.projects .projects__effect01:hover:after {
    background: #fff;
    border: 20px solid #000;
    opacity: 0;
    left: 120%;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}
.projects .projects__buttons-active .projects__btn {
    text-decoration: none !important;
}
.projects .projects__buttons-active .projects__effect01 {
    border: 4px solid #666 !important;
    background-color: #fff !important;
    -webkit-box-shadow: 0px 0px 0px 4px #eee inset !important;
    box-shadow: 0px 0px 0px 4px #eee inset !important;
}
.projects .projects__buttons-active .projects__effect01 > span {
    letter-spacing: 0.13em !important;
    color: #333 !important;
}
.projects .projects__buttons-active .projects__effect01:after {
    background: #fff !important;
    border: 20px solid #000 !important;
    opacity: 0 !important;
    left: 120% !important;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.projectDetails {
    max-width: 900px !important; 
    margin: auto !important; 
    padding: 50px !important;
}

.projectDetails a {
    background-color: #AD0000;
    color: white;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    padding: 0 8rem;
    background: #040020;
    z-index: 100;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.nav.bg-toggle {
    background: #050025;
    -webkit-box-shadow: 4px 4px 20px rgba(24, 22, 22, 0.2);
    box-shadow: 4px 4px 20px rgba(24, 22, 22, 0.2);
}
.nav .nav__brand {
    color: #64edfb;
    font-size: 2.2rem;
    opacity: 0;
    -webkit-animation: nav-appear 0.6s ease-out 0s 1 normal forwards;
    animation: nav-appear 0.6s ease-out 0s 1 normal forwards;
    font-family: "Fira Mono";
}
.nav .nav__toggle {
    display: none;
}
.nav .nav__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    list-style: none;
    font-size: 0.9rem;
    opacity: 0;
    -webkit-animation: nav-appear 0.6s ease-out 0s 1 normal forwards;
    animation: nav-appear 0.6s ease-out 0s 1 normal forwards;
}
.nav .nav__links li {
    position: relative;
}
.nav .nav__links li a {
    font-family: "Fira Mono";
    color: #64edfb;
}
.nav .nav__links li:not(:last-child) {
    margin-right: 2.5rem;
}
.nav .nav__links li:not(:last-child)::after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #64edfb;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.nav .nav__links li:not(:last-child):hover::after,
.nav .nav__links li:not(:last-child).visible::after {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.nav .nav__links__contact {
    display: none;
    margin-top: 2rem;
    -webkit-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
}
.nav .nav__links__contact a {
    width: 3rem;
    height: 3rem;
}
.nav .nav__links__contact a:not(:last-child) {
    margin-right: 1.5rem;
}
.nav .nav__links__contact a img {
    width: 2rem;
    height: 2rem;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.nav .nav__links__contact a img:hover {
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
}
.nav .button {
    font-size: 0.8rem;
}
@media screen and (max-width: 1552px) {
    .nav {
        padding: 0 4rem;
        height: 4rem;
    }
    .nav .nav__brand {
        font-size: 1.6rem;
    }
    .nav .button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 1165px) {
    .nav {
        padding: 0 2rem;
        height: 4rem;
    }
    .nav .nav__brand {
        font-size: 1.7rem;
        opacity: 0;
    }
    .nav .nav__links {
        font-size: 1rem;
    }
    .nav .nav__toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 2.5rem;
        width: 3rem;
        margin-left: auto;
        background: none;
        padding: 0;
        border: #64edfb;
        position: relative;
    }
    .nav .nav__toggle .nav__hamburger {
        position: relative;
        z-index: 7;
        height: 3px;
        width: 3rem;
        border: 1px solid #2e9bcd;
        border-radius: 2px;
    }
    .nav .nav__toggle .nav__hamburger:nth-child(1) {
        position: relative;
        width: 1.5rem;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }
    .nav .nav__toggle .nav__hamburger:nth-child(3) {
        position: relative;
        width: 1.5rem;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }
    .nav .nav__toggle.toggled .nav__hamburger:nth-child(1) {
        -webkit-transform: translateX(13px) translateY(5px) rotate(30deg);
        transform: translateX(13px) translateY(5px) rotate(30deg);
    }
    .nav .nav__toggle.toggled .nav__hamburger:nth-child(3) {
        -webkit-transform: translateX(13px) translateY(-4px) rotate(-30deg);
        transform: translateX(13px) translateY(-4px) rotate(-30deg);
    }
    .nav .nav__links {
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 5;
        background-color: #05002a;
        height: 100vh;
        width: 80%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: -webkit-transform ease 0.5s;
        transition: -webkit-transform ease 0.5s;
        transition: transform ease 0.5s;
        transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    }
    .nav .nav__links__contact {
        display: unset;
    }
    .nav .nav__links__contact a {
        width: 2rem;
        height: 2rem;
    }
    .nav .nav__links__contact a:not(:last-child) {
        margin-right: 1.2rem;
    }
    .nav .nav__links__contact a img {
        height: 100%;
    }
    .nav .nav__links li {
        margin-right: 0 !important;
    }
    .nav .nav__links.toggled {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@-webkit-keyframes nav-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes nav-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5rem;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #64edfb;
    margin-top: 4rem;
    font-size: 0.9rem;
    font-family: "Roboto", sans-serif;
}
.footer a {
    color: white;
    font-weight: 500;
}
.loading {
    display: none;
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.loading:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}
.loading:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.loading:not(:required):after {
    content: "";
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#nav-btn-anim a::before,
#nav-btn-anim a::after {
    position: absolute;
    width: 25px;
    height: 1.5px;
    background: #fff;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}
#nav-btn-anim a::after {
    opacity: 1;
}
#nav-btn-anim a::before {
    top: 6px;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 3px;
    transform-origin: 0 3px;
}
#nav-btn-anim a::after {
    right: 0;
    bottom: 8px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 3px;
    transform-origin: 100% 3px;
}
#nav-btn-anim a:hover::before,
#nav-btn-anim a:hover::after,
#nav-btn-anim a:focus::before,
#nav-btn-anim a:focus::after {
    background: #e3b505;
    width: 20px;
}
#nav-btn-anim a:hover::before,
#nav-btn-anim a:focus::before {
    margin-top: -5px;
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
}
#nav-btn-anim a:hover::after,
#nav-btn-anim a:focus::after {
    margin-bottom: -8px;
    right: 50%;
    -webkit-transform: rotate(0deg) translateX(50%);
    transform: rotate(0deg) translateX(50%);
}
.bot-btn-anim a::before,
.bot-btn-anim a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}
.bot-btn-anim a::before {
    margin-right: 10px;
    content: "[";
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
.bot-btn-anim a::after {
    margin-left: 10px;
    content: "]";
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}
.bot-btn-anim a:hover::before,
.bot-btn-anim a:hover::after,
.bot-btn-anim a:focus::before,
.bot-btn-anim a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
#circles {
    pointer-events: none;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: auto;
}
@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
#circles #circle1 {
    width: 25vw;
    height: 25vw;
    border-top: white 2px solid;
    border-radius: 100%;
    margin: auto;
    position: absolute;
    -webkit-animation: rotation 6s infinite linear;
    animation: rotation 6s infinite linear;
}
#circles #circle2 {
    width: 47vw;
    height: 47vw;
    border-bottom: white 2px solid;
    border-radius: 100%;
    margin: auto;
    position: absolute;
    -webkit-animation: rotation 10s infinite linear;
    animation: rotation 10s infinite linear;
    animation-direction: reverse;
}
#circles #circle3 {
    width: 70vw;
    height: 70vw;
    border-top: white 2px solid;
    border-radius: 100%;
    margin: auto;
    position: absolute;
    -webkit-animation: rotation 15s infinite linear;
    animation: rotation 15s infinite linear;
    background-color: none;
}
@-webkit-keyframes arrow {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-15px, -15px);
        transform: rotate(45deg) translate(-15px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(0px, 0px);
        transform: rotate(45deg) translate(0px, 0px);
    }
}
@keyframes arrow {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-15px, -15px);
        transform: rotate(45deg) translate(-15px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(0px, 0px);
        transform: rotate(45deg) translate(0px, 0px);
    }
}
@-webkit-keyframes show-hidden-anim {
    0% {
        opacity: 0;
    }
}
@keyframes show-hidden-anim {
    0% {
        opacity: 0;
    }
}
.box-anim-in {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.box-anim-out {
    -webkit-transition: 0.4s ease-in-out 0.2s;
    transition: 0.4s ease-in-out 0.2s;
}
.desc-anim-in {
    -webkit-transition: all 0.25s ease-in-out 0.05s;
    transition: all 0.25s ease-in-out 0.05s;
}
.desc-anim-out {
    -webkit-transition: all 0.2s ease-in-out 0.21s;
    transition: all 0.2s ease-in-out 0.21s;
}
.conc-anim-in {
    -webkit-transition: all 0.25s ease-in-out 0.15s;
    transition: all 0.25s ease-in-out 0.15s;
}
.conc-anim-out {
    -webkit-transition: all 0.2s ease-in-out 0.12s;
    transition: all 0.2s ease-in-out 0.12s;
}
.icon-anim-in {
    -webkit-transition: all 0.25s ease-in-out 0.2s;
    transition: all 0.25s ease-in-out 0.2s;
}
.icon-anim-out {
    -webkit-transition: all 0.18s ease-in-out 0s;
    transition: all 0.18s ease-in-out 0s;
}
.spin-out {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transform: rotate(180deg) scale(0.5);
    transform: rotate(180deg) scale(0.5);
    opacity: 0;
}
.return-ico {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    opacity: 1;
}
/*# sourceMappingURL=style.min.css.map */
