:root {

    --cursor: url(/_Assets/Images/Cursor/cursor.png);
    --cursor-hover: url(/_Assets/Images/Cursor/cursor-hover.png);
    --color-bg: #fffdf5;
    --color-green: #327057;
    --color-dark-green: #1e2924;

}

::selection {
    background-color: var(--color-green);
    color: var(--color-bg);
}

@font-face {
    font-family: "Sonder";
    src: url("/_Assets/Fonts/Sonder/SonderRegular.otf") format("opentype");
}

@font-face {
    font-family: "Yipes";
    src: url("/_Assets/Fonts/Yipes/Yipes.otf") format("opentype");
}

@font-face {
    font-family: "VVDS";
    src: url("/_Assets/Fonts/VVDS/VVDS_Organum_Thin.otf") format("opentype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--color-bg);
    cursor: var(--cursor),auto;

    -ms-overflow-style: none; 
    scrollbar-width: none; 
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none; 
}





/* LOADER */





#preloader {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

#num {
    font-size: 5vw;
    font-family: "Sonder";
    color: var(--color-bg);
}




/* TRANSITION */



#opTransition {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: nav-menu-op 1.2s cubic-bezier(.74,0,.32,1) forwards;
    z-index: 3;
}

#transition {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: nav-menu-en 1.2s cubic-bezier(.74,0,.32,1) forwards;
    z-index: 3;
}


/* HEADER */


header {
    display: flex;
    justify-content: space-between;
    width: 100vw;
    height: 15vh;
    position: fixed;
    z-index: 2;
}
  
#logo, #menu {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo a {
    width: 15%;
    cursor: var(--cursor-hover),auto;
}

#menu-wrap {
    width: 20%;
    height: calc((100vw * 20/100)*20/100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7%;
    background-color: hsl(153, 16%, 14%, 0);
    border-radius: 50%;
    opacity: 1;
    transition: .6s ease-in-out;
    cursor: var(--cursor-hover),auto;
    z-index: 1;
    backdrop-filter: blur(5px);
}

#menu-wrap:hover {
    background-color: hsl(153, 16%, 14%, 0.10);
}

#menu-top, #menu-bottom {
    width: 40%;
    height: 5%;
    background-color: var(--color-green);
    border-radius: 3px;
    transition: .6s cubic-bezier(0.680, -0.550, 0.265, 1.550);
}


/* NAV */



.nav-menu {
    height: 100vh;
    width: 100vw;
    transform: translateY(-100vh);
    position: fixed;
    background-color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes nav-menu-op {
    
    0% {
        transform: scaleX(3) translateY(-100vh); border-radius: 0;
    }

    50% {
        border-radius: 0 0 50% 50%/0 0 100% 100%;
    }

    100% {
        transform: scaleX(3) translateY(0);
    }

}

@keyframes nav-menu-en {
    
    0% {
        transform: scaleX(3) translateY(0); border-radius: 0;
    }

    50% {
        border-radius: 50% 50% 0 0/100% 100% 0 0;
    }

    100% {
        transform: scaleX(3) translateY(100vh);
    }

}

.nav-menu ul {
    width: 25vw;
    height: 50vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
}

.nav-menu li {
    transform: scaleX(calc(1/3));
    list-style: none;
    font-family: "Sonder";
    font-size: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--color-bg);
    cursor: var(--cursor-hover), auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
}

.projets-letters, .about-letters, .contact-letters  {
    margin: 0 -0.25vw;
}

.about-letters:nth-of-type(1) {
    margin: 0 1vw;
}

.nav-letters:nth-of-type(2) {
    position: relative;
    left: -0.25vw;
}


@keyframes letters-op {
    
    0% {
        transform: translateY(-20vh);
    }

    /* 50% {
        opacity: 0;
    } */

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes letters-end {
    
    0% {
        transform: translateY(0);
    }

    /* 50% {
        opacity: 0;
    } */

    100% {
        opacity: 0;
        transform: translateY(20vh);
    }

}

.nav-letters {
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

.nav-menu ul:has(.active) > .nav-letters:not(.active){
    opacity: 0.5;
}




/* PROJETS SCROLL */


#projets-scroll-container {
    width: 100vw;
    height: 200%;
    position: absolute;
    z-index: -1;
}




/* INFORMATIONS PROJETS */


.projets-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

.projets-info {
    width: 60vw;
    height: calc(60vw / (16/11));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

#projets-categories-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#projets-categories {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

#projets-categories ul {
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Sonder";
    font-size: 2vw;
    gap: 10%;
}

#projets-categories ul li {
    color: var(--color-dark-green);
    cursor: var(--cursor-hover),auto;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#projets-categories ul .selected {
    color: var(--color-green);
}

#projets-categories:has(.active-cat) > ul li:not(.active-cat) {
    opacity: .5;
}

.numerotation {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 10vw;
    font-family: "Yipes";
    color: var(--color-dark-green);
    transition: opacity .6s cubic-bezier(.67,.01,.27,1);
}

.nom {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    font-size: 5vw;
    font-family: "Yipes";
    color: var(--color-dark-green);
    transition: opacity .6s cubic-bezier(.67,.01,.27,1);
}

.progress {
    width: 100%;
    height: 25%;
    display: flex;
}


.num-start, .num-end {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Yipes";
    font-size: 1.5vw;
    color: var(--color-dark-green);
}

.progress-bar {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-unfill {
    width: 85%;
    height: 1.5%;
    background-color: hsl(153, 15%, 14%, 25%);
    border-radius: 10px;
}

.progress-bar-fill {
    max-width: 100%;
    height: 100%;
    background-color: var(--color-dark-green);
    border-radius: 10px;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}





/* SLIDER */


.slider {
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 10%;
    z-index: -1;
}

.item {
    min-width: 30%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview {
    width: 0%;
    height: 100%;
    flex-grow: 0;
    transition: .6s cubic-bezier(.67,.01,.27,1);
    cursor: var(--cursor-hover),auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
    position: relative;
}

.preview img {
    min-width: 30vw;
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

.preview .preview-img{
    z-index: 1;
}

.preview:hover {
    flex-grow: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}







/* PROJECTS */

#template-container {
    width: 100%;
    height: 200%;
    position: absolute;
}

#template-content-container {
    width: 100vw;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#template-preview-container {
    width: 80%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30vh;
    gap: 10vh;
}

#template-preview-title {
    width: 100%;
    height: 33.3%;
    font-family: "Yipes";
    font-size: 7vw;
    color: var(--color-dark-green);
    display: flex;
    align-items: flex-end;
}

#template-preview-file {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    gap: 10vh;
}




#template-preview-file .video-horizontal {
    max-width: 75%;
    cursor: var(--cursor-hover),auto;
}

#template-preview-file .video-vertical {
    max-width: 35%;
    cursor: var(--cursor-hover),auto;
}

#template-preview-file .video-square {
    max-width: 50%;
    cursor: var(--cursor-hover),auto;
}



#template-preview-file .img-horizontal {
    max-width: 75%;
}

#template-preview-file .img-vertical {
    max-width: 35%;
}

#template-preview-file .img-square {
    max-width: 50%;
}





#template-text-container {
    width: 80%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 10vh;
    margin-top: 10%;
}

#template-text-details {
    width: 100%;
    height: 25%;
    font-family: "Yipes";
    font-size: 5vw;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
}

#template-details-explanation {
    width: 100%;
    min-height: auto;
    display: flex;
}

#template-details-summary {
    width: 75%;
    height: 100%;
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-dark-green);
    text-align: justify;
}

#template-details-specs {
    width: 25%;
    /* height: 50vh; */
    display: flex;
    justify-content: flex-end;
}

#template-specs {
    width: auto;
    height: 100%;
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vh;
}

.template-specs-title {
    width: 100%;
    height: auto;
    font-weight: bold;
}

.template-specs-res {
    width: 100%;
    height: 100%;
    font-weight: 400;
}








#template-styleframes-container {
    width: 80%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20vh;
    margin-top: 10%;
}

#template-styleframes-title {
    width: 100%;
    height: 25%;
    font-family: "Yipes";
    font-size: 5vw;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
}

.template-styleframes-cover {
    width: 100%;
    min-height: auto;
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-dark-green);
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}

.template-styleframes-cover .img-horizontal {
    max-width: 75%;
}

.template-styleframes-cover .img-vertical {
    max-width: 35%;
}

.template-styleframes-cover .img-square {
    max-width: 50%;
}











#template-nextproject-container {
    width: 80%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#template-nextproject-container a {
    display: block;
    width: auto;
    height: 12.5vh;
    cursor: var(--cursor-hover),auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-family: "VVDS";
    font-size: 5vw;
    color: var(--color-dark-green);
    gap: 3vw;
}

#nextproject-arrow-back {
    height: 100%;
    width: calc((12.5vh * 100/100));
    border-radius: 50%;
    background-color: var(--color-green);
}

#nextproject-arrow-front {
    height: 100%;
    width: 100%;
    border: 2px solid var(--color-green);
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1vh);
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#nextproject-arrow-front svg {
    fill: var(--color-green);
    width: 50%;
    height: 50%;
}

#template-nextproject-container a:hover .link-front {
    transform: translateY(-.5vh);
}



#template-scrollup-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 20vw;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#template-scrollup-wrap {
    width: 20%;
    height: calc(20vw * 20/100);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(153, 16%, 14%, 0);
    border-radius: 50%;
    opacity: 1;
    transition: .6s ease-in-out;
    cursor: var(--cursor-hover),auto;
    z-index: 1;
    backdrop-filter: blur(5px);
}

#template-scrollup-wrap:hover {
    background-color: hsl(153, 16%, 14%, 0.10);
}

#template-scrollup-wrap svg {
    width: 40%;
    fill: var(--color-green);
    transform: rotate(-90deg);
}
















/* PAGE ABOUT */


#about-container {
    width: 100%;
    height: 200%;
    position: absolute;
}

#about-content-container {
    width: 100%;
    height: fit-content;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
}

#about-introduction-container, #about-hobbies-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 10%;
}

#introduction-picture {
    width: 25%;
    height: 25vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#introduction-picture img, #hobbies-picture img {
    height: 100%;
    width: auto;
    object-fit: cover;
    position: relative;
    top: 0;
}

#introduction-presentation,#hobbies-presentation {
    width: 50%;
    height: 60%;
    display: flex;
    flex-direction: column;
}

#introduction-presentation-title, #hobbies-presentation-title {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    font-family: "Yipes";
    font-size: 7vw;
    color: var(--color-dark-green);
}

#introduction-presentation-text, #hobbies-presentation-text {
    width: 100%;
    height: 75%;
    font-family: "VVDS";
    font-size: 1.5vw;
    text-align: justify;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
}

#hobbies-picture {
    width: 25%;
    height: 75%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


  













/* PAGE CONTACT */



#contact-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#contact-title {
    width: 100%;
    height: 75%;
    font-family: "Yipes";
    font-size: 10vw;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    padding: 5% 10%;
}

#contact-link {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: flex-start;
    padding-left: 10%;
    gap: 5%;
}

#contact-link a {
    display: block;
    height: 12.5vh;
    width: 12.5vh;
    border-radius: 50%;
    cursor: var(--cursor-hover),auto;
}

#contact-link-ytb-back, #contact-link-linkedin-back, #contact-arrow-back {
    height: 100%;
    width: 12.5vh;
    border-radius: 50%;
    background-color: var(--color-green);
}

#contact-link-ytb-front, #contact-link-linkedin-front, #contact-arrow-front {
    height: 100%;
    width: 12.5vh;
    border: 2px solid var(--color-green);
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1vh);
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#contact-link a:last-of-type {
    width: auto;
    height: 12.5vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5%;
    font-size: 4vw;
    color: var(--color-dark-green);
    text-decoration: none;
    font-family: "VVDS";
    border-radius: 0;
    margin-left: 10%;
}

#contact-arrow-front svg {
    fill: var(--color-green);
    width: 50%;
    height: 50%;
}

#contact-link a:hover .link-front {
    transform: translateY(-.5vh);
}

.link-front svg {
    width: 40%;
    fill: var(--color-green);
}








/* PAGE 404 */

#error-container {
    width: 100vw;
    height: 100vh;
    background-color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Sonder";
    font-size: 10vw;
    text-align: center;
    color: var(--color-bg);
}

#error-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-bg);
    cursor: var(--cursor-hover),auto;
    font-size: 1vw;
    font-family: "VVDS";
}





/* ADMIN */

#admin-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#admin-form {
    width: 25%;
    height: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#admin-input, #admin-valid {
    width: 75%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#admin-input-text {
    font-family: "VVDS";
    font-size: 1.2vw;
    color: var(--color-dark-green);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: 2px solid var(--color-green);
    width: 90%;
    height: 75%;
    display: block;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#admin-input-text::placeholder{
    color: var(--color-dark-green);
}

#admin-input-text:focus {
    outline: none;
}

#admin-valid-submit {
    width: 90%;
    height: 75%;
    font-family: "Sonder";
    font-size: 1.5vw;
    background-color: var(--color-dark-green);
    color: var(--color-bg);
    border: none;
    text-decoration: none;
    cursor: var(--cursor-hover),auto;
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#admin-valid-submit:hover {
    background-color: var(--color-green);
}





#management-container {
    width: 80vw;
    height: 100vh;
    margin: 0 auto;
}

#management-title {
    width: 100%;
    height: 25%;
    font-size: 8vw;
    font-family: "Yipes";
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
}

#management-files {
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: column;
}

#management-files-catgeories {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
}

#management-select {
    appearance: none;
    width: 15%;
    height: 100%;
    font-family: "Sonder";
    font-size: 1.5vw;
    text-align: center;
    color: var(--color-bg);
    border: none;
    cursor: var(--cursor-hover),auto;
    background-color: var(--color-dark-green);
    transition: .6s cubic-bezier(.67,.01,.27,1);
}

#management-select:hover {
    background-color: var(--color-green);
}

#management-select option {
    background-color: var(--color-bg);
    border: 2px solid var(--color-dark-green);
    color: var(--color-dark-green);
}

#management-select:focus {
    outline: none;
}

#management-files-details-container {
    width: 100%;
    height: 90%;
}

#management-details-section {
    position: relative;
    width: 35%;
    height: 15%;
    display: flex;
    align-items: center;
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-dark-green);
}

#management-details-section > *, .management-file-specifics > * {
    position: absolute;
}

#management-details-size {
    position: relative;
    left: 75%;
}

.management-file-size {
    position: relative;
    left: 75%;
}

#management-details-files {
    width: 60%;
    height: auto;
    display: flex;
    flex-flow: column wrap;
    gap: 3vh;
}

.management-file-bar{
    width: 100%;
    height: 10vh;
    border: 2px solid var(--color-green);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.management-file-specifics {
    position: relative;
    width: 58.5%;
    height: 100%;
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.management-file-remove-container {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.management-file-remove {
    width: 75%;
    height: 75%;
    background-color: var(--color-dark-green);
    font-family: "VVDS";
    font-size: 1.5vw;
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s cubic-bezier(.67,.01,.27,1);
    cursor: var(--cursor-hover),auto;
}

.management-file-remove:hover {
    background-color: var(--color-green);
}




#management-files-new {
    width: 50%;
    height: 25%;
}

#form-files-new {
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
}






/* MEDIA QUERY PHONE */

@media (min-width: 320px) and (max-width: 480px){

    #num{
        font-size: 10vw;
    }

    #logo{
        width: 35%;
    }

    #logo a {
        width: 20%;
    }

    #menu {
        width: 35%;
    }

    #menu-wrap {
        width: 35%;
        height: calc((100vw * 35/100)*35/100);
    }

    #menu-top, #menu-bottom {
        border-radius: 1px;
    }

    .nav-menu li {
        font-size: 10vw;
    }

    .projets-info {
        width: 75vw;
        height: calc(75vw / (16/11));
    }

    .numerotation {
        align-items: center;
        font-size: 15vw;
    }

    .nom {
        font-size: 7vw;
    }

    .num-start, .num-end {
        font-size: 3vw;
    }

    .progress {
        display: none;
    }

    .progress-bar-unfill{
        height: 1%;
    }

    #projets-categories ul{
        font-size: 6vw;
    }

    .slider {
        gap: 30%;
    }

    .item {
        min-width: 50%;
        height: 33.33%;
    }











    /* A PROPOS */

 
    #about-introduction-container {
        margin-top: 15vh;
        flex-flow: column-reverse;
    }

    #about-hobbies-container {
        flex-direction: column;
    }

    #about-content-container{
        display: flex;
        flex-direction: column;
        gap: 20vh;
    }
    
    #introduction-picture {
        width: 75%;
        height: auto;
    }
    
    #introduction-presentation,#hobbies-presentation {
        width: 75%;
        gap: 5%;
    }
    
    #introduction-presentation-title, #hobbies-presentation-title {
        font-size: 15vw;
    }
    
    #introduction-presentation-text, #hobbies-presentation-text {
        font-size: 5vw;
    }
    
    #hobbies-picture {
        width: 75%;
        margin-bottom: 10vh;
    }

    #template-scrollup-container {
        display: none;
    }





    /* CONTACT */

    #contact-title {
        height: 50%;
        font-size: 15vw;
    }

    #contact-link {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column-reverse;
        height: 50%;
    }

    #contact-link a, #contact-link a:last-of-type {
        height: 6vh;
        margin: 0;
        font-size: 7vw;
    }

    #contact-link-ytb-back, #contact-link-linkedin-back, #contact-arrow-back {
        width: 6vh;
    }

    #contact-link-ytb-front, #contact-link-linkedin-front, #contact-arrow-front {
        width: 6vh;
        transform: translateY(-.5vh);
        border: 1.5px solid var(--color-green);
    }



    /* PROJECTS */

    #template-preview-container {
        margin-top: 15vh;
        gap: 5vh;
    }

    #template-preview-title {
        font-size: 12vw;
    }

    #template-text-details {
        font-size: 10vw;
    }

    #template-details-explanation {
        flex-flow: column-reverse;
        gap: 10vh;
    }

    #template-preview-file .video-horizontal {
        width: 100%;
        max-width: 100%;
    }
    
    #template-preview-file .video-vertical {
        width: 100%;
        max-width: 100%;
    }
    
    #template-preview-file .video-square {
        width: 100%;
        max-width: 100%;
    }

    #template-preview-file .img-horizontal {
        width: 100%;
        max-width: 100%;
    }
    
    #template-preview-file .img-vertical {
        width: 100%;
        max-width: 100%;
    }
    
    #template-preview-file .img-square {
        width: 100%;
        max-width: 100%;
    }

    #template-text-container {
        margin-top: 30%;
        gap: 5vh;
    }

    #template-details-summary {
        width: 100%;
        font-size: 5vw;
    }

    #template-details-specs {
        width: 50%;
        display: block;
    }

    #template-specs {
        font-size: 5vw;
    }


    .template-styleframes-cover .img-horizontal {
        max-width: 75%;
        width: 75%;
    }
    
    .template-styleframes-cover .img-vertical {
        max-width: 75%;
        width: 75%;
    }
    
    .template-styleframes-cover .img-square {
        max-width: 75%;
        width: 75%;
    }



    #template-nextproject-container a {
        height: 6vh;
        font-size: 8vw;
    }

    #nextproject-arrow-back {
        width: calc((6vh * 100/100));
    }

    #nextproject-arrow-front {
        transform: translateY(-.5vh);
    }

    #nextproject-arrow-front {
        border: 1.5px solid var(--color-green);
    }


}
