@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');

/* User Preferences */
@media screen and (prefers-reduced-motion: reduce) {  
    * {
      /* Very short durations means JavaScript that relies on events still works */
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }

/* colors */

:root {
    --background-color: #0E2025;

    --P1: #D5E1E4;
    --P2: #B2B8BA;
    --P3: #656A6B;

    --A1: #DED95F;
    --A2: #D73838;
    --A3: #72D94E;

    --A1_clicked: #B7B34E;
    --A2_clicked: #A82A2A;
    --A3_clicked: #5CB23E;
}

.background_color { color: var(--background-color); }

.p1 { color: var(--P1); }
.p1.circle { background-color: var(--P1); }
.p1.triangle { border-color: transparent transparent transparent var(--P1); }

.p2 { color: var(--P2); }
.p2.circle { background-color: var(--P2); }
.p2.triangle { border-color: transparent transparent transparent var(--P2); }

.p3 { color: var(--P3); }
.p3.circle { background-color: var(--P3); }
.p3.triangle { border-color: transparent transparent transparent var(--P3); }

.a1 { color: var(--A1); }
.a1.circle { background-color: var(--A1); }
.a1.triangle { border-color: transparent transparent transparent var(--A1); }

.a2 { color: var(--A2); }
.a2.circle { background-color: var(--A2); }
.a2.triangle { border-color: transparent transparent transparent var(--A2); }

.a3 { color: var(--A3); }
.a3.circle { background-color: var(--A3); }
.a3.triangle { border-color: transparent transparent transparent var(--A3); }

/* shapes */

.circle {
    position: relative;
    border-radius: 50%;
}

.semi_circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0E2025 0%, #0E2025 50%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.00) 100%);
}

.triangle {
    position: relative;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: transparent transparent transparent #000000;
    transform: rotate(0deg);
}

.flip_horizontal {
    transform: scale(-1, 1);
}

.flip_vertical {
    transform: scale(1, -1);
}

.flip_horizontal_and_vertical {
    transform: scale(-1, -1);
}

.rotate {
    transform: rotate(90deg);
}

.rotate_and_flip {
    transform: rotate(90deg) scale(-1,1);
}

.shape_decoration {
    width: 30%;
    aspect-ratio: 1;
}

.shape_decoration.triangle {
    width: 0px;
    border-width: 144px 0 0 144px;
}

.img_section .shape_decoration {
    position: absolute;
    top: 0px;
    left: 0px;
}

    @media (max-width: 800px) {
        .shape_decoration {
            width: 120px;
        }

        .shape_decoration.triangle {
            border-width: 120px 0 0 120px;
        }
    }

/* Text */

    /* General */

    * {
        margin: 0px;
        padding: 0px;
        border: 0px;
        cursor: default;
    }

    body, input, select, textarea {
        font-family: 'Azeret Mono', Helvetica, Arial, sans-serif;
        color: var(--P1);
        background-color: var(--background-color);
    }

    .shadow {
        filter: drop-shadow(0px 0px 50px rgba(4, 21, 26, 0.25));
    }

    h1, h2, h3, h4, h5 {
        max-width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Headers */

    h1, h2, h3, h4, h5 {
        font-family: "Azeret Mono", Arial, sans-serif;
        cursor: text;
    }

    h1 {
        font-size: 96px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase; 
    }

    h2 {
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        letter-spacing: 0.1em; 
        text-transform: uppercase;
    }

    h3 {
        font-size: 48px;
        font-style: normal;
        font-weight: 300;
        line-height: normal; 
    }

        @media (max-width: 800px) {
            h3 {
                font-size: 32px;
            }
        }

    h4 {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; 
    }

    h5 {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; 
    }

    h6 {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; 
    }

    /* Primary Text */

    p {
        font-feature-settings: 'ss04' on; 
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 30px */
        letter-spacing: 0.5px;
        cursor: text; 
    }

    .footer {
        font-feature-settings: 'ss04' on;
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        line-height: 150%; /* 24px */ 
        cursor: text;
        color: var(--P2);
        text-align: center;
    }

    .btn_boxed, .btn {
        font-feature-settings: 'ss04' on;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 30px */ 
        letter-spacing: 0.5px;
        cursor: pointer !important;
    }

    .address {
        font-feature-settings: 'ss04' on;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        cursor: text;
    }

    .unemphasized_text {
        opacity: 50%;
    }

    i {
        cursor: text;
    }

/* Misc */

a.underlined_text {
    color: var(--text-color) !important;
    cursor: pointer;

    /* underline effect */
    text-decoration: none;
    font-weight: inherit !important;
    font-size: inherit !important;
    background-image: linear-gradient(#0E2025, #0E2025), /* transparent background color */
        linear-gradient(#D5E1E4, #D5E1E4), /* first line color */
        linear-gradient(#D73838, #D73838); /* second line color */
    background-size: 120px 2px, 100% 2px, 0 2px;
    background-position: calc(120px * -1) 100%, calc(100%) 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 450ms linear, background-position 450ms linear !important;
}

@media (hover: hover) {
    a.underlined_text:hover {
        background-size: 120px 2px, 0 2px, 100% 2px;
        background-position: calc(100% + 120px) 100%, 100% 100%, 0 100%;
    }
}

.hide_transitions_on_page_load * {
    transition: none !important;
}

.hidden {
    display: none !important;
}

.hidden_by_height {
    height: 0px !important;
    min-height: 0px !important;
    overflow: hidden;
}

.hidden_transition {
    opacity: 0 !important;
}

a {
    transition: color ease;
    transition-duration: 150ms;
    width: fit-content;
    color: var(--P1);
    text-decoration: none;
    font-feature-settings: 'ss04' on; 
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: 0.5px; 
}

    a:hover {
        transition: color ease;
        transition-duration: 150ms;
        color: var(--A1);
    }

.underline {
    height: 2px;
    margin-top: 4px;
    margin-bottom: -6px;
    background-color: var(--P1);
    border-radius: 8px;
}

.underline_2 {
    height: 3px;
    margin-top: 4px;
    margin-bottom: -7px;
    background-color: var(--P1);
    border-radius: 8px;
}

#page_wrapper.page_loading {
    display: none;
}

#page_wrapper.page_loaded {
    display: flex;
}

.retain_line_breaks {
    white-space: pre-line;
}

#copyright {
    text-align: center;
}

.copyable {
    position: relative;
}

    .copy_text {
        position: absolute;
        top: 0px;
        right: 0px;
        color: var(--highlight_color);
        opacity: 0;
        animation: copied_animation 1000ms 100ms ease forwards;
    }

    @keyframes copied_animation {
        30% {
            opacity: 1;
            transform: translateY(-32.5px);
        }
        60% {
            opacity: 1;
            transform: translateY(-32.5px);
        }
        100% {
            opacity: 0;
        }
    }

        @media (max-width: 1000px) {
            .copy_text {
                right: 50%;
                transform: translate(170px, 0px);
            }

            @keyframes copied_animation {
                30% {
                    opacity: 1;
                    transform: translate(170px, -32.5px);
                }
                60% {
                    opacity: 1;
                    transform: translate(170px, -32.5px);
                }
                100% {
                    opacity: 0;
                }
            }
        }



/* Body, Main, Header, Footer */

html {
    background-color: var(--background-color);
}

body, #page_wrapper, main, footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    margin: 0px;
    background-color: var(--background-color);
    width: 100%;
    min-height: 100vh;
}

header {
    margin: 0px;
    width: 100%;
}

main {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 24px;
    margin-bottom: 120px;
    gap: 120px;
}

    @media (max-width: 800px) {
        main {
            width: calc(100% - 24px);
            margin-left: 12px;
            margin-right: 12px;
            margin-top: 12px;
            margin-bottom: 64px;
            gap: 64px;
        }
    }

footer {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 24px;
    gap: 120px;
}

    @media (max-width: 800px) {
        footer {
            width: calc(100% - 24px);
            margin-left: 12px;
            margin-right: 12px;
            margin-bottom: 12px;
        }
    }

/* General Block Styling */

.content_box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

    .full_width {
        width: 100%;
    }

.content_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text_img {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

    @media (max-width: 800px) {
        .text_img {
            flex-direction: column;
            gap: 48px;
        }

        .text_img.left_image {
            flex-flow: column-reverse;
        }

        .text_section, .img_section {
            width: 100% !important;
        }

        .img_section {
            max-height: unset !important;
        }
    }

    .text_img .text_section {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 55%;
    }

    .text_img .img_section {
        display: flex;
        flex-direction: column;
        width: 40%;
        min-width: 0px;
        max-height: 90vh;
        gap: 48px;
    }

        .img_section .square_aspect_ratio {
            aspect-ratio: 1;
        }

    .text_img .text_section p {
        white-space: pre-wrap;
    }

.footer_text {
    text-align: right;
    color: var(--P3);
}

.divider {
    height: 4px;
    width: 20%;
    max-width: 200px;
    background-color: var(--A2);
    border-radius: 8px;
}

.row_flex_box {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

    @media (max-width: 800px) {
        .row_flex_box {
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }
    }

.stats_content_box {
    flex-direction: row;
    gap: 48px
}

    @media (max-width: 800px) {
        .stats_content_box {
            flex-direction: column;
        }
    }

/* Images */

img {
    display: none;
}

img[src] {
   display: block;
}

.cover {
    width: 100%;
    min-width: 0px;
    height: 100%;
    object-fit: cover;
}

.contain {
    width: 100%;
    min-width: 0px;
    height: 100%;
    object-fit: contain;
}

.rounded {
    border-radius: 6px;
}

#background {
    width: 500%;
    height: 500%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    z-index: -1;
}

.full_page_img {
    width: 100vw;
    margin-bottom: 120px;
}

    @media (max-width: 800px) {
        .full_page_img {
            margin-bottom: 64px;
        }
    }

/* Nav Bar */

.nav_bar {
    top: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: row;
    width: calc(100% - 48px);
    justify-content: space-between;
    align-items: center;
    color: var(--P1);
    z-index: 100;
}

    @media (max-width: 800px) {
        .nav_bar {
            width: calc(100% - 24px);
            padding-top: 8px;
            padding-bottom: 8px;
            padding-left: 12px;
            padding-right: 12px;
        }
    }

.nav_bar H6, .nav_bar .btn, .nav_bar #nav_hamburger {
    cursor: pointer;
    user-select: none;
}

    .nav_style_1 {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 30%, rgba(0, 0, 0, 0.70) 100%);
        transition: background 250ms ease;
    }

        .nav_style_1 H6, .nav_style_1 .btn, .nav_style_1 #nav_hamburger {
            color: var(--P1);
            transition: color 250ms ease;
        }

            .nav_style_1 H6:active, .nav_style_1 .btn:active, .nav_style_1 #nav_hamburger:active {
                color: var(--A1);
                transition: color 250ms ease;
            }

        .nav_style_1 .nav_divider {
            height: 2px;
            background-color: var(--P1);
            border-radius: 8px;
        }

            .nav_style_1 .btn:active .nav_divider {
                background-color: var(--A1);
            }

    .nav_style_2 {
        background: var(--background-color);
        transition: background 250ms ease;
    }

        .nav_style_2 H6, .nav_style_2 .btn, .nav_style_2 #nav_hamburger {
            color: var(--P1);
            transition: color 250ms ease;
        }

            .nav_style_2 H6:active, .nav_style_2 .btn:active, .nav_style_2 #nav_hamburger:active {
                transition: color 250ms ease;
            }

        .nav_style_2 .nav_divider {
            height: 2px;
            background-color: var(--P1);
            border-radius: 8px;
        }

.pages, .home_page {
    display: flex;
    flex-direction: row;
    width: fit-content;
    align-items: center;
    gap: 24px;
}

    .pages .btn, .home_page .btn {
        display: flex;
        flex-direction: column;
    }

        .home_page .btn .text_and_icon, .home_page .btn .text_and_icon i {
            cursor: pointer !important;
        }

.hamburger_inactive #nav_hamburger {
    display: none;
}

    .hamburger_active #nav_hamburger {
        display: block;
    }

    .suppressTransformTransition {
        transition: transform 0ms !important;
    }

    .hamburger_active .pages {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0px;
        transform: translateY(-120vh);
        left: 0px;
        z-index: -1;
        display: flex;
        flex-direction: column;
        transition: transform 250ms ease-in-out, background 250ms ease;
    }

        .hamburger_active.revealed .home_page {
            visibility: hidden;
        }

            .home_page_drop_down {
                visibility: hidden;
            }

                .hamburger_active.revealed .home_page_drop_down {
                    visibility: visible;
                }

        .hamburger_active.revealed .pages {
            transform: translateY(0px);
            background: var(--background-color);
        }

        .hamburger_active.revealed H6, .hamburger_active.revealed .btn, .hamburger_active.revealed #nav_hamburger {
            color: var(--P1);
            transition: color 250ms ease;
        }

        .hamburger_active.revealed .nav_divider {
            height: 2px;
            background-color: var(--P1);
            border-radius: 8px;
        }

    #nav_pages .btn, #nav_home_page .btn {
        transition: color ease 250ms;
    }

        #nav_pages .about_link:hover {
            color: var(--A1);
        }

            .about_link:hover .nav_divider {
                background-color: var(--A1);
            }

        #nav_pages .projects_link:hover {
            color: var(--A2);
        }

            .projects_link:hover .nav_divider {
                background-color: var(--A2);
            }

        #nav_pages .contact_link:hover {
            color: var(--A3);
        }

            .contact_link:hover .nav_divider {
                background-color: var(--A3);
            }

/* buttons & clickables */

.btn_boxed {
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
    border: 1.5px solid;
    display: inline-flex;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    transition: color ease, background-color ease, content ease, border ease;
    transition-duration: 250ms;
}

.btn_boxed.style1 {
    color: var(--A3);
    background-color: var(--background-color);
    border-color: var(--A3);
}

    .btn_boxed.style1:hover {
        border-color: var(--background-color);
        background-color: var(--A3);
        color: var(--background-color);
    }

    .btn_boxed.style1:active {
        border-color: var(--background-color);
        background-color: var(--A3_clicked);
        color: var(--background-color);
    }

.btn_boxed.style2 {
    color: var(--A2);
    background-color: var(--background-color);
    border-color: var(--A2);
}

    .btn_boxed.style2:hover {
        border-color: var(--background-color);
        background-color: var(--A2);
        color: var(--background-color);
    }

    .btn_boxed.style2:active {
        border-color: var(--background-color);
        background-color: var(--A2_clicked);
        color: var(--background-color);
    }

.input_style1 {
    cursor: text;
    user-select: none;
    border-radius: 5px;
    border: 1.5px solid;
    display: inline-flex;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    font-feature-settings: 'ss04' on; 
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 0.5px;
    color: var(--P2);
    background-color: var(--background-color);
    border-color: var(--A3);
    transition: color ease, background-color ease, content ease, border ease;
    transition-duration: 250ms;
}

    .input_style1:focus {
        outline: none;
    }

/* home page styling */

#home_mobile_layout {
    width: 80vw;
    height: fit-content;
    padding-top: 10vw;
    padding-bottom: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#home_mobile_layout .block_width_1 { width: 20vw; height: 20vw; }
#home_mobile_layout .block_width_2 { width: 40vw; height: 20vw; }
#home_mobile_layout .block_width_3 { width: 60vw; height: 20vw; }
#home_mobile_layout .block_width_4 { width: 80vw; height: 20vw; }

#home_mobile_layout .triangle.block_width_1 { width: 0vw; height: 0vw; border-width: 20vw 0 0 20vw; }

    @media (min-width: 800px) {
        #home_mobile_layout {
            display: none;
        }
    }

#home_desktop_layout {
    width: 80vw;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#home_desktop_layout .block_width_1 { width: 10vw; height: 10vw; }
#home_desktop_layout .block_width_2 { width: 20vw; height: 10vw; }
#home_desktop_layout .block_width_3 { width: 30vw; height: 10vw; }
#home_desktop_layout .block_width_4 { width: 40vw; height: 10vw; }
#home_desktop_layout .block_width_5 { width: 50vw; height: 10vw; }

#home_desktop_layout .triangle.block_width_1 { width: 0vw; height: 0vw; border-width: 10vw 0 0 10vw; }

    @media (max-width: 800px) {
        #home_desktop_layout {
            display: none;
        }
    }

    @media (min-width: 1000px) {
        #home_desktop_layout {
            width: 800px;
        }

        #home_desktop_layout .block_width_1 { width: 100px; height: 100px; }
        #home_desktop_layout .block_width_2 { width: 200px; height: 100px; }
        #home_desktop_layout .block_width_3 { width: 300px; height: 100px; }
        #home_desktop_layout .block_width_4 { width: 400px; height: 100px; }
        #home_desktop_layout .block_width_5 { width: 500px; height: 100px; }

        #home_desktop_layout .triangle.block_width_1 { width: 0vw; height: 0vw; border-width: 100px 0 0 100px; }
    }

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

.about_link, .about_link *, .projects_link, .projects_link *, .contact_link, .contact_link * {
    cursor: pointer;
}

@media (min-width: 800px) {
    .evenly_spaced_word.about_link h2, .evenly_spaced_word.projects_link h2, .evenly_spaced_word.contact_link h2 {
        opacity: 0%;
        transition: opacity ease;
        transition-duration: 200ms;
    }

    .about_link, .about_link *, .projects_link, .projects_link *, .contact_link, .contact_link * {
        cursor: default;
        transition: color ease, background-color ease, content ease, border-color ease;
        transition-duration: 150ms;
        z-index: 10;
    }
    
    .about_shapes, .projects_shapes, .contact_shapes {
        display: flex;
    }
    
    .background_shape {
        opacity: 0%;
        transition: opacity ease;
        transition-duration: 200ms;
    }

    .evenly_spaced_word.about_link {
        transform: translateX(-30vw);
        position: absolute;
        flex-direction: row-reverse;
    }

    .evenly_spaced_word.projects_link {
        transform: translateX(-60vw) translateY(-10vw) scale(-1, 1);
        position: absolute;
    }

    .evenly_spaced_word.contact_link {
        transform: translateX(10vw) scale(-1, 1);
        position: absolute;
        flex-direction: row-reverse;
    }

    .about_shapes, .contact_shapes {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1000px) {
    .evenly_spaced_word.about_link {
        transform: translateX(-300px);
        position: absolute;
        flex-direction: row-reverse;
    }

    .evenly_spaced_word.projects_link {
        transform: translateX(-600px) translateY(-100px) scale(-1, 1);
        position: absolute;
    }

    .evenly_spaced_word.contact_link {
        transform: translateX(100px) scale(-1, 1);
        position: absolute;
        flex-direction: row-reverse;
    }
}

.p1:active.clickable, .home_link:active { color: var(--P2) !important; }
.p1:active.clickable.circle, .home_link:active.circle, .circle:has(.p1.clickable.semi_circle:active), .circle:has(.home_link.semi_circle:active) { background-color: var(--P2) !important; }
.p1:active.clickable.triangle, .home_link:active.triangle { border-color: transparent transparent transparent var(--P2) !important; }

.a1:active.clickable, .about_link:active { color: var(--A1_clicked) !important; }
.a1:active.clickable.circle, .about_link:active.circle, .circle:has(.a1.clickable.semi_circle:active), .circle:has(.about_link.semi_circle:active) { background-color: var(--A1_clicked) !important; }
.a1:active.clickable.triangle, .about_link:active.triangle { border-color: transparent transparent transparent var(--A1_clicked) !important; }

.a2:active.clickable, .projects_link:active { color: var(--A2_clicked) !important; }
.a2:active.clickable.circle, .projects_link:active.circle, .circle:has(.a2.clickable.semi_circle:active), .circle:has(.projects_link.semi_circle:active) { background-color: var(--A2_clicked) !important; }
.a2:active.clickable.triangle, .projects_link:active.triangle { border-color: transparent transparent transparent var(--A2_clicked) !important; }

.a3:active.clickable, .contact_link:active { color: var(--A3_clicked) !important; }
.a3:active.clickable.circle, .contact_link:active.circle, .circle:has(.a3.clickable.semi_circle:active), .circle:has(.contact_link.semi_circle:active) { background-color: var(--A3_clicked) !important; }
.a3:active.clickable.triangle, .contact_link:active.triangle { border-color: transparent transparent transparent var(--A3_clicked) !important; }

.home_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}
    .home_icon_wrapper {
        position: absolute;
        width: 100px;
        height: 100px;
        transform: translate(-100px, -100px);
        overflow: hidden;
    }

    .triangle .home_icon {
        transform: translate(-50%, -50%) rotate(-45deg);
        width: 100%;
        height: 100%;
    }

        .triangle .home_icon .icon_mask:nth-of-type(1) i {
            transform: translate(-100%, -50%) rotate(45deg);
        }

        .triangle .home_icon .icon_mask:nth-of-type(2) i {
            transform: translate(0%, -50%) rotate(45deg);
        }

        @media (max-width: 1000px) {

            .home_icon_wrapper {
                position: absolute;
                width: 10vw;
                height: 10vw;
                transform: translate(-10vw, -10vw);
                overflow: hidden;
            }

            .triangle .home_icon {
                transform: translate(-50%, -50%) rotate(-45deg);
                width: 100%;
                height: 100%;
            }

                .triangle .home_icon .icon_mask:nth-of-type(1) i {
                    transform: translate(-100%, -50%) rotate(45deg);
                }

                .triangle .home_icon .icon_mask:nth-of-type(2) i {
                    transform: translate(0%, -50%) rotate(45deg);
                }
        }

    .semi_circle .home_icon {
        transform: translate(-50%, -50%);
    }

.home_icon i {
    position: absolute;
    font-size: 48px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home_icon .icon_mask:nth-of-type(1) {
    position: absolute;
    transform: translateX(100%);
    width: 50%;
    height: 100%;
    overflow: hidden;
}

    .icon_mask:nth-of-type(1) i {
        position: absolute;
        font-size: 48px;
        top: 50%;
        transform: translate(-100%, -50%);
    }

.home_icon .icon_mask:nth-of-type(2) {
    position: absolute;
    transform: translateX(0%);
    width: 50%;
    height: 100%;
    overflow: hidden;
}

    .icon_mask:nth-of-type(2) i {
        position: absolute;
        font-size: 48px;
        top: 50%;
        transform: translate(0%, -50%);
    }

.home_icon_hitbox {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    z-index: 11;
}

/* about styling */

.contact_info_box h2 {
    text-align: right;
}

.condensed_contact_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

    .vertical_contact_list {
        width: fit-content;
    }

    .vertical_contact_list .condensed_contact_list {
        flex-direction: column;
        height: 100%;
        gap: 64px;
    }

    @media (max-width: 1000px) {

        .contact_info_box h2 {
            text-align: center !important;
        }

        .condensed_contact_list {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 48px;
            width: 100%;
        }

        .vertical_contact_list .condensed_contact_list {
            text-align: left;
            justify-content: left;
            align-items: flex-start;
        }
    }

    @media (max-width: 800px) {
        .vertical_contact_list {
            width: 100%;
        }

        .vertical_contact_list .condensed_contact_list {
            text-align: center;
            justify-content: center;
            align-items: center;
        }
    }

    .condensed_contact_list .contact_item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

        .contact_item_content {
            display: flex;
            flex-direction: row;
            gap: 8px;
            color: var(--P1);
            cursor: pointer;
            transition: color ease 250ms;
        }

            .contact_item_content.a1:hover { color: var(--A1); }
            .contact_item_content.a2:hover { color: var(--A2); }
            .contact_item_content.a3:hover { color: var(--A3); }

            .contact_item_content p {
                text-decoration: underline;
                cursor: pointer;
            }

            .contact_item_content i {
                cursor: pointer;
            }

/* animations */

.about_link.reveal, .about_link.reveal *, .projects_link.reveal, .projects_link.reveal *, .contact_link.reveal, .contact_link.reveal * {
    cursor: pointer;
}

h2.reveal { opacity: 100% !important; }
.background_shape.reveal { opacity: 100% !important; }

.about_link h2:nth-of-type(1), .projects_link h2:nth-of-type(1), .contact_link h2:nth-of-type(1) { transition-delay: 0ms !important; }
.about_link h2:nth-of-type(2), .projects_link h2:nth-of-type(2), .contact_link h2:nth-of-type(2) { transition-delay: 100ms !important; }
.about_link h2:nth-of-type(3), .projects_link h2:nth-of-type(3), .contact_link h2:nth-of-type(3) { transition-delay: 200ms !important; }
.about_link h2:nth-of-type(4), .projects_link h2:nth-of-type(4), .contact_link h2:nth-of-type(4) { transition-delay: 300ms !important; }
.about_link h2:nth-of-type(5), .projects_link h2:nth-of-type(5), .contact_link h2:nth-of-type(5) { transition-delay: 400ms !important; }
.about_link h2:nth-of-type(6), .projects_link h2:nth-of-type(6), .contact_link h2:nth-of-type(6) { transition-delay: 500ms !important; }
.about_link h2:nth-of-type(7), .projects_link h2:nth-of-type(7), .contact_link h2:nth-of-type(7) { transition-delay: 600ms !important; }
.about_link h2:nth-of-type(8), .projects_link h2:nth-of-type(8), .contact_link h2:nth-of-type(8) { transition-delay: 700ms !important; }
.about_link h2:nth-of-type(9), .projects_link h2:nth-of-type(9), .contact_link h2:nth-of-type(9) { transition-delay: 800ms !important; }
.about_link h2:nth-of-type(10), .projects_link h2:nth-of-type(10), .contact_link h2:nth-of-type(10) { transition-delay: 900ms !important; }

.background_shape:nth-of-type(1) { transition-delay: 0ms !important; }
.background_shape:nth-of-type(2) { transition-delay: 150ms !important; }
.background_shape:nth-of-type(3) { transition-delay: 300ms !important; }
.background_shape:nth-of-type(4) { transition-delay: 450ms !important; }
.background_shape:nth-of-type(5) { transition-delay: 600ms !important; }
.background_shape:nth-of-type(6) { transition-delay: 750ms !important; }
.background_shape:nth-of-type(7) { transition-delay: 900ms !important; }
.background_shape:nth-of-type(8) { transition-delay: 1050ms !important; }
.background_shape:nth-of-type(9) { transition-delay: 1200ms !important; }
.background_shape:nth-of-type(10) { transition-delay: 1350ms !important; }

    .background_shape.reveal:nth-of-type(1) { transition-delay: 0ms !important; }
    .background_shape.reveal:nth-of-type(2) { transition-delay: 200ms !important; }
    .background_shape.reveal:nth-of-type(3) { transition-delay: 400ms !important; }
    .background_shape.reveal:nth-of-type(4) { transition-delay: 600ms !important; }
    .background_shape.reveal:nth-of-type(5) { transition-delay: 800ms !important; }
    .background_shape.reveal:nth-of-type(6) { transition-delay: 1000ms !important; }
    .background_shape.reveal:nth-of-type(7) { transition-delay: 1200ms !important; }
    .background_shape.reveal:nth-of-type(8) { transition-delay: 1400ms !important; }
    .background_shape.reveal:nth-of-type(9) { transition-delay: 1600ms !important; }
    .background_shape.reveal:nth-of-type(10) { transition-delay: 1800ms !important; }

.animated-divider_full {
    width: 0;
    transition: width 150ms ease, background-color 150ms ease;
}

    .underlined:hover .animated-divider_full {
        width: 100%;
        transition: width 300ms ease, background-color 300ms ease;
    }

.animated-fade_up {
    transform: translateY(24px);
    opacity: 0;
}

    .animated-fade_up-complete {
        transform: translateY(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 000ms;
    }

    .animated-fade_up-complete:nth-child(1) {
        transform: translateY(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 000ms;
    }

    .animated-fade_up-complete:nth-child(2) {
        transform: translateY(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 150ms;
    }

    .animated-fade_up-complete:nth-child(3) {
        transform: translateY(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 300ms;
    }

    .animated-fade_up-complete:nth-child(4) {
        transform: translateY(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 450ms;
    }

.animated-fade_right {
    transform: translateX(-40px);
    opacity: 0;
}

    .animated-fade_right-complete {
        transform: translateX(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 000ms;
    }

    .animated-fade_right-complete:nth-child(1) {
        transform: translateX(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 000ms;
    }

    .animated-fade_right-complete:nth-child(2) {
        transform: translateX(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 150ms;
    }

    .animated-fade_right-complete:nth-child(3) {
        transform: translateX(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 300ms;
    }

    .animated-fade_right-complete:nth-child(4) {
        transform: translateX(0px);
        opacity: 1;
        transition: opacity ease, transform ease;
        transition-duration: 800ms;
        transition-delay: 450ms;
    }