/* ANIMATIONS */
/*
'#379FA9', '#FD8A83', '#50C1EC', '#FEE242', '#1CB59F', '#EB3E49', '#398CB0', '#F8D059'
*/
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'Roboto Medium';
    src: url('../fonts/Roboto-Medium.ttf');
    font-weight: 600;
}
@-webkit-keyframes changeColor {
    0% {
        color: black;
    }
    49% {
        color: black;
    }
    50% {
        color: #E84C3D;
    }
    100% {
        color: #E84C3D;
    }
}
@keyframes changeColor {
    0% {
        color: black;
    }
    49% {
        color: black;
    }
    50% {
        color: #E84C3D;
    }
    100% {
        color: #E84C3D;
    }
}
@-webkit-keyframes grow {
    0% {
        height: 0;
        width: 0;
    }
    100% {
        height: 100vh;
        width: 100vw;
    }
}
@keyframes grow {
    0% {
        height: 0;
        width: 0;
    }
    100% {
        height: 100vh;
        width: 100vw;
    }
}
/* you forgot the 'alt' attribute */
img[alt=""],
img:not([alt]) {
    border: 5px dashed #c00;
}

/* GENERAL */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    position: relative;
    font-family: 'Roboto', sans-serif;
    background-image: url('../img/background.jpg');
    background-position: center;
    background-size: cover;
    cursor: default;
    cursor: url('../img/cursor-mouse.png'), default;
}
main {
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
p {
    line-height: 1.6;
}
a {
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), default;
}
img {
	opacity: 1;
    transition: opacity 0.8s ease;
}
img[data-src] {
	opacity: 0;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.opac::before {
    opacity: 0;
}
[hidden], .hidden {
    display: none !important;
}
.move {
    position: absolute;
}
.nav_basic {
    margin: 0;
    padding-left: 0;
}
.italic {
    font-style: italic;
}
.z1 {
    z-index: 1;
}
.z2 {
    z-index: 2;
}
.z3 {
    z-index: 3;
}
.z4 {
    z-index: 4;
}
.basic_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.desktop-folder__title.drag {
    cursor: move;
    cursor: url('../img/cursor-move.png'), default;
}
.body-overflow-h {
    overflow: hidden;
}
.body-wrap {
    width: 100vw;
    height: 100vh;
    background: url('../img/pattern-grid.png');
    background-size: 105rem;
}
.close {
    position: absolute;
    width: 2rem;
    height: 2.2rem;
    padding: 0.3rem;
    border: 2px solid black;
    background-color: #C1C1BF;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
    z-index: 2;
}
.detail_d-close {
    display: none;
}
.close img {
    pointer-events: none;
}
.scrollbar::-webkit-scrollbar-track {
    border: 2px solid #1D1D1B;
    border-top: none;
    border-right: none;
}
.scrollbar::-webkit-scrollbar {
    width: 1rem;
    background-color: #DADAD3;
}
.scrollbar::-webkit-scrollbar-thumb {
    border: 2px solid #1D1D1B;
    border-right: none;
    background-color: #C1C1BF;
}
.nav_basic li {
    list-style: none;
}
.link_no-style, .link_no-style:visited {
    text-decoration: none;
    color: black;
}
/* If the browser doesn't support these features, the website wont be viewable */
@supports(display: flex) and (flex-wrap: wrap) and (height: 100vh) {
    #browser-old-overlay {
        display: none;
    }
}

/* TOP NAVIGATION */
.top-nav {
    margin: 0 2rem 2rem 2rem;
    margin-left: auto;
    padding-top: 3rem;
    width: auto;
    width: fit-content;
    z-index: 0;
}
.top-nav__item {
    display: inline-block;
    padding-bottom: 1rem;
    width: 7rem;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.top-nav__img {
    padding-left: 0.5rem;
}
.top-nav ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    margin: 2rem;
    padding-left: 0;
    width: auto;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}
.top-nav__item > div {
    position: relative;
}
.top-nav__item img {
    width: 100%;
}
.top-nav__item a {
    padding: 0.2rem;
}
.top-nav__item a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.top-nav__item_selected a, .top-nav__item_selected a:visited {
    color: white;
    background-color: #4C8DE9;
    border-radius: 3px;
}
.top-nav__item .top-nav__title {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0.6rem 0 0 0;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
}

/* DESKTOP FOLDERS */
.folder-wrap {
    -webkit-transform: translate(0);
    transform: translate(0);
    position: fixed;
    top: 0;
    left: 0;
}
.desktop-folder_hidden {
    display: none;
}
.desktop-folder_open {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 6rem;
    top: 6rem;
    width: 52rem;
    height: 40.4rem;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
    z-index: 2;
}
.desktop-folder_center {
    left: -webkit-calc(50vw - 26rem);
    left: calc(50vw - 26rem);
    top: 14vh;
}
.desktop-folder_large-center {
    left: -webkit-calc(50vw - 35rem);
    left: calc(50vw - 35rem);
    top: 15vh;
}
.desktop-folder_large {
    height: 40.6rem;
    width: 70rem;
}
.desktop-folder_narrow {
    height: 49rem;
    width: 37rem;
    -webkit-transform: translate(0);
    transform: translate(0);
}
.desktop-folder_small {
    height: 29rem;
    width: 29rem;
}
.desktop-folder_xsmall {
    height: 28rem;
    width: 17rem;
}
.link_style_desktop {
    color: black;
    text-decoration: none;
}
.link_style_desktop:visited {
    color: black;
}
.desktop-folder__title-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 0.8rem 0 2.5rem;
    height: 4rem;
    background-image: url('../img/window-tres-lineas.svg');
    background-position: 50% 0.4rem;
    background-size: 67rem 1.3rem;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}
.desktop-folder_open .desktop-folder__title,
.device-app_open .desktop-folder__title {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    position: fixed;
    padding: 0.5rem 5rem 1.5rem 6rem;
    width: 52.75rem;
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    background-color: #DADAD3;
    border: 2px solid #1d1e1c;
    z-index: 1;
}
.desktop-folder_open .desktop-folder__title-span {
    pointer-events: none;
    padding: 0 0.5rem;
    background-color: #DADAD3;
}
.desktop-folder_large .desktop-folder__title,
.desktop-folder_large .folder-content.js {
    width: 69.75rem;
}
.desktop-folder_narrow .desktop-folder__title,
.desktop-folder_narrow .folder-content.js {
    width: 36.75rem;
}
.desktop-folder_small .desktop-folder__title,
.desktop-folder_small .folder-content.js {
    width: 28.75rem;
}
.desktop-folder_xsmall .desktop-folder__title, .desktop-folder_xsmall .folder-content.js {
    width: 17rem;
}
.desktop-folder_large .folder-content.js {
    height: 38.75rem;
}
.desktop-folder_narrow .folder-content.js {
    height: 47rem;
}
.desktop-folder_small .folder-content.js {
    height: 27rem;
}
.desktop-folder_xsmall .folder-content.js {
    height: 26rem;
}
.desktop-folder_small .folder-content__wrap-overflow,
.desktop-folder_large .folder-content__wrap-overflow  {
    padding: 0;
}
.desktop-folder_large .folder-content__wrap-overflow,
.gallery__item-first {
    height: 38.5rem;
}
.desktop-folder_xsmall .folder-content__wrap-overflow {
    height: 31.75rem;
}

.logo-wrap {
    position: relative;
    width: 13rem;
    height: 9rem;
}
/* ABOUT */
.about-wrap {
    position: relative;
    height: 21.8rem;
    margin-top: 1.7rem;
    max-width: 46.3rem;
    border: 2px solid black;
    overflow-y: scroll;
}
.tab {
    padding: 2rem;
}
.btn1-list {
    position: fixed;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    z-index: 1;
}
.btn1-list_top {
    width: 46.55rem;
    top: 4.2rem;
}
.btn1-list_bottom {
    width: 46.5rem;
    top: 28.2rem;
}
.btn1-list__item {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    background-color: #DADAD3;
}
.btn1-list__shadow {
    height: 0.5rem;
    border-left: 2px solid black;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    background-color: #C1C1BF;
}
.btn1-list__link {
    display: block;
    padding: 0.2rem;
    border: 2px solid black;
}
.btn1-list__link::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.btn1-list__item_big {
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.btn1-list__item_big .btn1-list__link {
    padding: 0.4rem;
    background-color: #DADAD3;
}
.btn1-list__item:not(:first-child){
    margin-left: -2px;
}
.section2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-top: 1rem;
}
.aboutme-content {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
}
.about__images {
    padding-right: 1.9rem;
    margin: 3rem 0;
}
.aboutme-content p {
    margin: 5rem 0;
}
.head {
    height: 12rem;
    width: 12rem;
}
.title1 {
    font-size: 2.5rem;
}
.title2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: normal;
}
.folder-content__title2 {
    font-size: 1.6rem;
    text-align: center;
}
.about__title {
    display: none;
}
.about-link, .about-link:visited {
    color: black;
}
.about-link_block {
    display: block;
}
.black-background {
    background-color: black;
}
.btn1-list__item_active {
    background-color: #C1C1BF;
}
.btn1-list__item_active .btn1-list__shadow {
    display: none;
}
.arrow-down {
    display: none;
}
#press {
    margin: 0 4rem 0 4rem;
}
#about {
    box-shadow: none;
}
#about .folder-content.js {
    background-color: #DADAD3;
}

/* PORN */
.porn-window {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    position: absolute;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
}
.porn {
    position: relative;
}
.porn__title {
    position: absolute;
    height: 2rem;
    margin: 0;
    top: -2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #DADAD3;
    border-top: 2px solid #1d1e1c;
    border-left: 2px solid #1d1e1c;
    border-right: 2px solid #1d1e1c;
}
.porn .close {
    top: -2rem;
    height: 2rem;
    border-top: 2px solid #1d1e1c;
    border-left: 2px solid #1d1e1c;
    border-right: 2px solid #1d1e1c;
    border-bottom: none;
    z-index: 0;
}
.porn .desktop-folder__title-background {
    height: 2rem;
    z-index: 0;
}
.porn .desktop-folder__title-span {
    background-color: #DADAD3;
    position: absolute;
    padding: 0 0.3rem;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#porn1 {
    width: 60vw;
    left: 50vw;
    top: 50vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#porn2 {
    width: 27vw;
    top: 55vh;
    left: 17vw;
}
#porn3 {
    width: 10vw;
    top: 29vh;
    left: 9vw;
}
#porn4 {
    width: 39vw;
    left: 52vw;
    top: 70vh;
}
#porn5 {
    width: 23vw;
    left: 65vw;
    top: 14vh;
}
#porn6 {
    width: 23vw;
    left: 50vw;
    top: 44vh;
}
#porn7 {
    width: 19vw;
    left: 26vw;
    top: 10vh;
}
.porn-window .porn_img {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: 2px solid black;
}
.porn-window .porn__title {
    width: 100%;
}

/* LATEST PROJECT*/
.btn-link-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: absolute;
    top: 5rem;
    right: -5.5rem;
    height: 10.5rem;
    width: 10.5rem;
    background-image: url('../img/new.png');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
}
.btn-link {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    color: black;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transform: rotate(-20deg) translate(0.2rem, 0.3rem);
    transform: rotate(-20deg) translate(0.2rem, 0.3rem);
}
.latestwork-btn {
    display: block;
    width: 100%;
    height: 100%;
}
.latest-project {
    pointer-events: none;
}
#latestproject {
    top: 18vh;
    left: 35vw;
}
.logo-wrap .landscape-img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    margin-left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#latestproject .folder-content.js {
    overflow: hidden;
}
#latestproject .latest-project {
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
#latestproject .folder-content__wrap-overflow {
    overflow: hidden;
}

/* PHOTOS */
.gallery__item {
    position: relative;
}
.gallery__img {
    display: block;
    width: 100%;
}
.gallery-h3 {
    position: absolute;
    margin: 0;
    left: 2rem;
    top: 2rem;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.6;
}
.gallery-h3_white {
    color: white;
}
.gallery__item-first {
    background-color: #FFF7F0;
}
.gallery__item-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}
.gallery__icon {
    display: block;
    width: 7rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.gallery__title {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
.gallery__p {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* BOTTOM NAVIGATION */
.bottom-nav {
    position: fixed;
    width: 77rem;
    height: 10rem;
    bottom: 0;
    left: 50%;
    padding: 0.5rem;
    background-image: url('../img/icon-table.svg');
    background-size: cover;
    background-position: top;
    border-radius: 8px 8px 0 0;
    -webkit-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    z-index: 3;
}
.bottom-nav__list {
    width: 80%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
}
.bottom-nav__item {
    display: inline-block;
    position: relative;
    width: 7rem;
    padding: 0.2rem;
}
.bottom-nav__tooltip {
    display: none;
    position: absolute;
    width: 100%;
    width: max-content;
    bottom: 7.5rem;
    left: 50%;
    padding: 0.3rem;
    font-size: 1rem;
    text-align: center;
    background-color: white;
    border-radius: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.tooltip__arrow {
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    top: 100%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -14px;
    background-color: white;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: -1;
}
.bottom-nav__item img {
    width: 100%;
}
.bottom-nav__item .bottom-nav__name {
    clip: rect(0, 0, 0, 0);
    font-size: 0;
}
.bottom-nav__item a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.bottom-nav__item:hover .bottom-nav__tooltip {
    display: block;
}

/* MAC BAR */
.mac-bar {
    position: fixed;
    height: 2rem;
    left: 0;
    right: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    background-color: #fad844;
    border-bottom: 2px solid black;
    z-index: 2;
}
.mac-bar_center {
    text-align: center;
    width: 100%;
}
.mac-bar__item {
    position: relative;
    display: inline-block;
    height: 1.3rem;
    font-size: 1rem;
    font-weight: normal;
}
.mac-bar__item_tr {
    -webkit-transform: translateY(-0.2rem);
    transform: translateY(-0.2rem);
}
.mac-bar__item_strong {
    font-weight: bold;
}
.mac-bar__title {
    margin: 0.2rem;
    font-size: 1rem;
}
.time {
    -webkit-transform: translateY(-0.2rem);
    transform: translateY(-0.2rem);
}
.dropdown {
    position: absolute;
    padding: 0;
    width: 10rem;
    left: -0.5rem;
    top: 1.5rem;
    background-color: #DADAD3;
    border-style: solid;
    border-width: 2px;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.dropdown-button {
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    font-size: 1rem;
    background-color: inherit;
    border: none;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.dropdown__item {
    display: block;
    padding: 0.2rem 1rem;
}
.dropdown__item:hover {
    background-color: black;
    color: white;
}
.mac-bar .mac-bar_padding {
    padding: 0.3rem 3rem 0 3rem;
}
.mac-bar_left .mac-bar__item {
    position: static;
    margin-right: 1rem;
    -webkit-transform: translateY(-0.2rem);
    transform: translateY(-0.2rem);
}
.mac-bar_left .mac-bar__item_first {
    width: 1.5rem;
    margin-right: 0.3rem;
    overflow: hidden;
    -webkit-transform: translateY(-0.1rem);
    transform: translateY(-0.1rem);
}
.mac-bar_left .mac-bar__item_first img {
    position: absolute;
    height: 1.3rem;
    left: 0;
    top: 0.3rem;
}
.mac-bar_right .mac-bar__item {
    margin-left: 1rem;
}
.mac-bar_right .mac-bar__img {
    margin: 0 0 0 0.5rem;
}
#icon-home {
    -webkit-transform: translate(-1rem, 0.5rem);
    transform: translate(-1rem, 0.5rem);
}
#icon-mail {
    -webkit-transform: translateX(-0.5rem)
    transform: translateX(-0.5rem)
}
#icon-print {
    -webkit-transform: translateY(0.5rem);
    transform: translateY(0.5rem);
}
#icon-setting {
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
}
#icon-bin {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
}
#icon-eye {
    -webkit-transform: translateY(-0.4rem);
    transform: translateY(-0.4rem);
}
#instagram-small {
    height: 1.3rem;
    -webkit-transform: translateY(0.1rem);
    transform: translateY(0.1rem);
}
#mail-small, #battery-small {
    height: 1.1rem;
}

/* SETTINGS */
.color-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}
.color-list__color {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 0.5rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0;
    border: 2px solid black;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.setting {
    position: relative;
}
.setting__title {
    font-size: 0.8rem;
    letter-spacing: 0.04rem;
    text-align: center;
}
.setting-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 2rem;
    margin-right: 2rem;
}
.setting_first {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 0.5rem;
}
.setting_border {
    padding-bottom: 1rem;
    border-bottom: 2px solid black;
}
.setting_100 {
    -webkit-box-flex: 100%;
    flex: 100%;
}
.setting_50 {
    -webkit-box-flex: -webkit-calc(50% - 0.5rem);
    -webkit-box-flex: calc(50% - 0.5rem);
    flex: -webkit-calc(50% - 0.5rem);
    flex: calc(50% - 0.5rem);
}
.setting_25 {
    -webkit-box-flex: 25%;
    flex: 25%;
}
.setting_50:nth-of-type(1) {
    margin-right: 0.5rem;
}
.setting_50:nth-of-type(2){
    margin-left: 0.5rem;
}
.setting-wrap .setting:last-child {
    margin: 0;
}
.setting__dropdown-button {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding: 0.3rem;
    height: 2rem;
    width: 100%;
    color: black;
    font-size: 1rem;
    text-align: left;
    background-color: #DADAD3;
    border: 2px solid black;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.setting__dropdown {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    background-color: #DADAD3;
    border: 2px solid black;
    border-top: none;
}
.setting__dropdown-wrap {
    position: relative;
}
.dropdown__arrow-wrap {
    position: absolute;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    top: 0;
    right: 0;
    height: 2rem;
    width: 2rem;
    padding: 0.4rem;
    background-color: #c1c1bf;
    border: 2px solid black;
    pointer-events: none;
}
.dropdown__arrow {
    width: 1rem;
}
.setting__dropdown__option,
.setting__dropdown__option:visited {
    display: block;
    padding: 0.3rem;
    color: black;
    text-decoration: none;
}
.setting__dropdown__option:hover {
    color: white;
    background-color: black;
}
.a-slider {
    height: 1.1rem;
    width: -webkit-calc(100% - 0.4rem);
    width: calc(100% - 0.4rem);
    padding: 0.1rem;
    background-color: #DADAD3;
    border: 2px solid black;
    border-radius: 4rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), pointer;
}
.a-slider__circle {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 1.05rem;
    width: 1.05rem;
    margin-left: 0;
    background-color: #C1C1BF;
    border: 2px solid black;
    border-radius: 100%;
    transition: margin-left 0.3s ease;
}
.switch-on {
    background-color: #AFAEA9;
}
.switch-on .a-slider__circle {
    margin-left: -webkit-calc(100% - 1.05rem);
    margin-left: calc(100% - 1.05rem);
}
.range {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 100%;
    background: #DADAD3;
    border: 2px solid black;
    border-radius: 4rem;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 1rem;
    width: 1rem;
    margin-top: 0;
    background-color: #C1C1BF;
    border: 2px solid black;
    border-radius: 100%;
}
.range::-moz-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 1rem;
    width: 1rem;
    margin-top: 0;
    background-color: #C1C1BF;
    border: 2px solid black;
    border-radius: 100%;
}
.range::-ms-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 1rem;
    width: 1rem;
    margin-top: 0;
    background-color: #C1C1BF;
    border: 2px solid black;
    border-radius: 100%;
}
.range::-webkit-slider-runnable-track {
    height: 1.3rem;
    width: 100%;
    padding: 0.15rem;
    background-color: rgba(0, 0, 0, 0);
    background-color: transparent;
    border-radius: 4rem;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), default;
}
.range::-moz-range-track {
    height: 1.3rem;
    width: 100%;
    padding: 0.15rem;
    background-color: rgba(0, 0, 0, 0);
    background-color: transparent;
    border-radius: 4rem;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), default;
}
.range::-ms-track {
    height: 1rem;
    width: 100%;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0);
    background-color: transparent;
    border-radius: 4rem;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), default;
}
.brightness {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: 120vh;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.normal {
    -webkit-filter: none;
    filter: none;
}
.black-white {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.hue-rotate {
    -webkit-filter: hue-rotate(180deg);
    filter: hue-rotate(180deg);
}
.negative {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.setting-wrap .setting {
    padding-top: 0;
}
#shine {
    opacity: 0.4;
    z-index: 1;
}
#stars {
    z-index: 5;
}
#pink, .pink {
    background: #EC9696;
}
#green, .green {
    background: #54B9AD;
}
#yellow, .yellow {
    background: #F8D059;
}
#blue, .blue {
    background: #50C1EC;
}
#black, .black {
    background: black;
}
#grid, .grid {
    background: url('../img/pattern-grid.png');
    background-size: 105rem;
}
#red-cow-pattern, .red-cow-pattern {
    background: url('../img/pattern-redcow.png');
    background-size: 90rem;
}
#space, .space {
    background: url('../img/pattern-space.png');
    background-size: 108rem;
}
#grid,
#red-cow-pattern {
    background-size: 15rem;
}
#space {
    background-size: 67rem;
}
#settings .folder-content {
    background-color: #E8E7E2;
}
#settings .folder-content__wrap-overflow {
    overflow: hidden;
}
.space .link_style_desktop,
.space .link_style_desktop:visited,
.black .link_style_desktop,
.black .link_style_desktop:visited {
    color: white;
}
.normal-cow-pattern .link_style_desktop,
.normal-cow-pattern .link_style_desktop:visited {
    background-color: #F8D059;
}

/* PROJECT LIST */
.project-list {
    /* display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap; */
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: auto auto auto auto auto;
    -moz-grid-template-columns: auto auto auto auto auto;
    -ms-grid-template-columns: auto auto auto auto auto;
    grid-template-columns: auto auto auto auto auto;
}
.folder-content__wrap-overflow {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 38.15rem;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    overflow-y: scroll;
    overflow-x: hidden;
}
.project-list__item {
    display: inline-block;
    width: 19%;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    flex: 1;
    padding: 0.5rem;
    text-align: center;
}
@supports (display: grid){
    .project-list__item {
        width: auto;
    }
}
.project-list__preview {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 50%;
    height: 6rem;
    transition: all 0.5 ease;
    -webkit-transform: translateX(-50%) scale(1.9);
    transform: translateX(-50%) scale(1.9);
}
.project-list__preview-bigger {
    -webkit-transform: translateX(-50%) scale(2.4);
    transform: translateX(-50%) scale(2.4);
}
.folderlink, .folderlink:visited {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1rem;
}
.folder-content.js {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    height: 38.4rem;
    width: 52.75rem;
    margin-top: 2rem;
    background-color: white;
    border: 2px solid #1d1e1c;
    z-index: 2;
}
.project-list__item .folderlink::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.project-list__item .project-list__name {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
}
.folder-content .folder-content__title {
    margin: 0;
}

/* TRASH */
.trash__img {
    position: absolute;
    height: 21rem;
    width: 21rem;
    background-color: white;
    border: 2px solid black;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
    cursor: move;
    cursor: url('../img/cursor-drag.png'), move;
}

/* DETAILS */
.detail {
    position: fixed;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
    z-index: 2;
}
.detail_a {
    height: 55.5rem;
    width: 40rem;
    left: -webkit-calc(50vw - 20rem);
    left: calc(50vw - 20rem);
    top: 6vh;
}
.detail_a .folder-content.js {
    height: 53.55rem;
}
.detail_a .folder-content__wrap-overflow {
    height: 53.3rem;
}
.detail_b {
    height: 47rem;
    width: 86rem;
    left: -webkit-calc(50vw - 43rem);
    left: calc(50vw - 43rem);
    top: 10vh;
}
.detail_b .folder-content.js {
    height: 45rem;
}
.detail_b .folder-content__wrap-overflow {
    height: 44.75rem;
}
.detail_b
.desktop-folder__title-background {
    -webkit-transform: scaleX(1.23);
    transform: scaleX(1.23);
}
.project__desc
.desktop-folder__title-background {
    -webkit-transform: none;
    transform: none;
}
.detail_c {
    height: 53rem;
    width: 52rem;
    left: -webkit-calc(50vw - 26rem);
    left: calc(50vw - 26rem);
    top: 6vh;
}
.detail_c .folder-content.js {
    height: 51rem;
}
.detail_c .folder-content__wrap-overflow {
    height: 50.75rem;
}
.detail_d {
    box-shadow: none;
}
.detail_d_wrap {
    height: 0;
    overflow: hidden;
}
.detail_d > .folder-content.js {
    border: none;
    overflow: hidden;
}
.detail_d .folder-content__wrap-overflow {
    height: 0;
}
.detail_d__horizontal {
    position: fixed;
    top: 11rem;
    left: 6vw;
    width: 58rem;
    height: 34.2rem;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
}
.detail_d__horizontal_center {
    left: 50vw;
    -webkit-transform: translateX(-27rem);
    transform: translateX(-27rem);
}
.detail_d__horizontal .folder-content.js {
    height: 32.25rem;
}
.detail_d__horizontal .folder-content__wrap-overflow {
    height: 32rem;
}
.detail_d__vertical {
    position: fixed;
    top: 5rem;
    left: 62vw;
    width: 37rem;
    height: 52.8rem;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
}
.detail_d__vertical .folder-content.js {
    height: 50.80rem;
}
.detail_d__vertical .folder-content__wrap-overflow {
    height: 50.55rem;
}
.detail_d {
    overflow: hidden;
}
.detail_hidden {
    display: none;
}
.project__desc {
    position: fixed;
    left: 8rem;
    top: 53vh;
    height: 13rem;
    width: 30rem;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
    z-index: 1;
}
.info-icon {
    display: none;
}
.project__desc_small {
    height: 9rem;
}
.project__img {
    display: block;
    max-width: 100%;
}
.project__desc
p {
    padding: 0 2rem;
}
.project-info-close {
    display: none;
}
.detail .desktop-folder__title,
.detail .folder-content.js {
    width: inherit;
}
.detail .folder-content__wrap-overflow {
    padding: 0;
}
.detail__title-big .desktop-folder__title-background {
    background-image: none;
}
.project__desc .detail__title {
    width: 30rem;
}
.project__desc .folder-content.js {
    height: 11rem;
    width: 30rem;
}
.project__desc .folder-content__wrap-overflow {
    height: 10.8rem;
    width: 100%;
}
.project__desc_small .folder-content__wrap-overflow {
    height: 6.8rem;
}
.project__desc_small .folder-content.js {
    height: 7rem;
}
.desktop-folder_open .detail__title-big {
    width: -webkit-calc(100vw - 8rem);
    width: calc(100vw - 8rem);
}

/* EYEBALL */
.eyeball {
    position: absolute;
    right: 15vw;
    bottom: 23vh;
    width: 8rem;
    height: 8rem;
    background-color: #DADAD3;
    background-image: url('../img/icon-eye.svg');
    background-size: cover;
    border-radius: 100%;
    overflow: hidden;
}
.pupil {
    position: absolute;
    width: 4rem;
    height: 3rem;
    left: 34%;
    top: 36%;
    background-color: black;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%) rotate(-60deg);
    transform: translate(-50%, -50%) rotate(-60deg);
}
.gloss {
    background-color: white;
    border: 2px solid black;
    border-radius: 100%;
    position: absolute;
    width: 0.8rem;
    height: 1.1rem;
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    top: -0.1rem;
    right: 0.5rem;
}
.eyeball__link::after {
    position: absolute;
    left: -2rem;
    right: -5rem;
    bottom: -5rem;
    top: -2rem;
    content: '';
}

/* SLIDESHOW */
.fullscreen-folder {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    overflow-x: scroll;
    z-index: 4;
}
.slideshow {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    margin: 0;
    padding: 0;
    width: 1000vw;
}
.slideshow-narrow {
    height: 47rem;
    width: 110.25rem;
}
.slideshow__slide {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.slideshow__pjt-title {
    position: absolute;
    min-width: 10rem;
    left: 2rem;
    top: 2rem;
    font-size: 1.5rem;
    opacity: 0;
    z-index: 1;
}
.slideshow__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slideshow__slide-wrap {
    left: 50%;
    width: 47rem;
    -webkit-animation: visible 0.5s ease;
    animation: visible 0.5s ease;
}
@-webkit-keyframes visible {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes visible {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.slideshow__slide_first {
    background-color: #1D1D1D;
    color: white;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.slideshow__eye {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 7rem;
    /* -webkit-transform: scale(-3, 3);
    transform: scale(-3, 3); */
}
.slideshow__title {
    font-family: 'Roboto Medium', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.2rem;
}
.slideshow__pjt-button {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    padding: 0.8rem;
    text-decoration: none;
    background-color: #DADAD3;
    border: 2px solid black;
    color: black;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slideshow__pjt-button:visited {
    color: black;
}
.slideshow__start-btn {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    width: 6rem;
    height: 3rem;
    font-size: 0;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: url('../img/start-button.svg');
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    cursor: url('../img/cursor-pointer.png'), default;
}
.slideshow__nav-button {
    -webkit-appearance: none;
    appearance: none;
    position: fixed;
    width: 3rem;
    height: 6rem;
    top: 50vh;
    background-color: inherit;
    border: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.fullscreen__close-button {
    padding: 0;
    position: fixed;
    left: 6vw;
    top: 6rem;
    border: none;
    background-color: inherit;
    z-index: 1;
}
.slider-anim_wrap {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 4;
    width: 100vw;
    height: 100vh;
}
.slideshow__pjt-name {
    display: none;
    pointer-events: none;
}
.slideshow__pjt-click {
    pointer-events: none;
}
.slider-anim__circle {
    height: 1vw;
    width: 1vw;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    background-color: #1D1D1D;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 1s ease;
}
.fullscreen__close-button img {
    padding: 0.3rem;
    width: 1rem;
    height: 1rem;
    background-color: #DADAD3;
    border: 2px solid black;
}
.slideshow-narrow .slideshow__slide {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 36.75rem;
    height: 43rem;
    margin: 2rem;
}
.slideshow-narrow .slideshow__img {
    height: 47rem;
}
#prev-button {
    left: 6vw;
}
#next-button {
    left: 92vw;
}
.desktop-folder .slideshow__nav-button {
    top: 55%;
}
.desktop-folder #prev-button {
    left: 2.5rem;
}
.desktop-folder #next-button {
    left: auto;
    right: 2.5rem;
}
#slide1 {
    background-color: #EEC157;
}
#slide2 {
    background-color: #FFF6F0;
}
#slide3 {
    background-color: #3E97CD;
}
#slide4 {
    background-color: #EFEEEC;
}
#slide5 {
    background-color: #3B3C5C;
}
#slide6 {
    background-color: #E64F47;
}
#slide7 {
    background-color: #FCFDFF;
}
#slide8 {
    background-color: #000000;
}
#slide9 {
    background-color: #F2B3B2;
}

/* LOADING SCREEN */
@-webkit-keyframes load {
    0% {
        width: -webkit-calc(3% - 1rem);
        width: calc(3% - 1rem);
    } 20% {
        width: -webkit-calc(10% - 1rem);
        width: calc(10% - 1rem);
    } 80% {
        width: -webkit-calc(90% - 1rem);
        width: calc(90% - 1rem);
    } 100% {
        border-radius: 6px;
        width: -webkit-calc(100% - 1rem);
        width: calc(100% - 1rem);
    }
}
@keyframes load {
    0% {
        width: -webkit-calc(3% - 1rem);
        width: calc(3% - 1rem);
    } 20% {
        width: -webkit-calc(10% - 1rem);
        width: calc(10% - 1rem);
    } 80% {
        width: -webkit-calc(90% - 1rem);
        width: calc(90% - 1rem);
    } 100% {
        border-radius: 6px;
        width: -webkit-calc(100% - 1rem);
        width: calc(100% - 1rem);
    }
}
.loading-screen {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FBD952;
    z-index: 4;
}
.wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 29rem;
    width: 28rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.loading__img-wrap {
    overflow: hidden;
    height: 17rem;
    width: 10rem;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
/* fix weird yellow line in animation */
.loading__img-wrap::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 13rem;
    width: 9rem;
    height: 2rem;
    background-color: black;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 100%;
    z-index: -1;
}
.loading-screen .loading-icon {
    display: block;
    margin: auto;
    margin-bottom: 3rem;
    width: 12rem;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
}
.loading-screen__bar {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    height: 1.5rem;
    width: 70%;
    border: 2px solid black;
    border-radius: 1rem;
    background-color: #DABC47;
}
.loading-screen__text {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
}
.loading-screen__progress {
    height: 0.5rem;
    background-color: black;
    border-radius: 2rem;
    -webkit-animation: load 3s ease;
    animation: load 3s ease;
    margin: 0.4rem;
}
.slideshow__p {
    letter-spacing: 0.1rem;
}
@-webkit-keyframes bounceball {
    0% {
        -webkit-transform: translateY(7rem);
        transition: transform ease-out;
    }
    50% {
        -webkit-transform: translateY(-10rem);
        transition: transform ease-in;
    }
    60% {
        -webkit-transform: translateY(-8rem);
        transition: transform ease-in;
    }
    100% {
        -webkit-transform: translateY(7rem);
    }
}
@keyframes bounceball {
    0% {
        transform: translateY(7rem);
        transition: transform ease-out;
    }
    50% {
        transform: translateY(-10rem);
        transition: transform ease-in;
    }
    60% {
        transform: translateY(-8rem);
        transition: transform ease-in;
    }
    100% {
        transform: translateY(7rem);
    }
}
svg #ball {
    -webkit-animation: bounceball 1s infinite;
    animation: bounceball 1s infinite;
}
/* SOCIAL MEDIA */
.social-media {
    margin-top: 1.9rem;
    height: 100%;
    width: 100%;
}
/* PRINT */
.print {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    border: none;
    z-index: 4;
}
.print__img {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100vw;
}
#print {
    width: 100vw;
    height: 100vh;
    background-color: white;
}
#print::before {
    display: none;
}

/* SCREENSAVER */
.screensaver {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: black;
    z-index: 4;
}
.pendelum-box {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    width: 64vw;
    height: 60vh;
    padding-top: 55vh;
    margin-left: auto;
    margin-right: auto;
}
.pendelum__ball {
    position: relative;
    width: 8vw;
    height: 8vw;
    background-image: url('../img/icon-ball.svg');
    background-size: cover;
    -webkit-transform-origin: 50% -55vh;
    transform-origin: 50% -55vh;
}
.pendelum__ball::before {
    position: absolute;
    height: 56vh;
    width: 0.2rem;
    left: 51%;
    top: -55.5vh;
    content: '';
    background-color: #BD453E;
    border: 2px solid black;
    border-radius: 1rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.pendelum__ball-first {
    -webkit-animation: firstball .9s alternate ease-in infinite;
    animation: firstball .9s alternate ease-in infinite;
}
@-webkit-keyframes firstball{
  0%{
    -webkit-transform: rotate(35deg);
  }
  50%{
    -webkit-transform: rotate(0deg);
  }
}
@keyframes firstball{
  0%{
    transform: rotate(35deg);
  }
  50%{
    transform: rotate(0deg);
  }
}

.pendelum__ball-last{
    -webkit-animation: lastball .9s alternate ease-out infinite;
    animation: lastball .9s alternate ease-out infinite;
}
@-webkit-keyframes lastball{
  50%{
    -webkit-transform: rotate(0deg);
  }
  100%{
    -webkit-transform: rotate(-35deg);
  }
}
@keyframes lastball{
  50%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(-35deg);
  }
}

/* OVERLAYS */
.overlay {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E7E7E1;
    z-index: 999;
}
#orientation-overlay {
    background-color: #EC9696;
}
.overlay__msg {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.browser-msg__section {
    max-width: 33rem;
    background-color: white;
    border: 2px solid black;
}
.browser-msg__h3 {
    padding: 2rem 0;
    font-size: 2rem;
}
.browser-msg__p {
    font-size: 1.2rem;
}
.browser-msg__h3,
.browser-msg__p {
    width: 70%;
    margin: 0 auto;
}
.browser-msg__img {
    width: 10rem;
    margin-top: 2rem;
}
.orient-msg__img {
    width: 34%;
}
.orient-msg__h2 {
    font-weight: normal;
    font-size: 1.3rem;
}
.overlay__msg  .porn__title {
    width: 100%;
}
.overlay__msg .desktop-folder__title-background {
    height: 2rem;
    margin: 0 1rem;
    z-index: 0;
}
.overlay__msg .btn1-list {
    position: static;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4rem;
    min-height: 8rem;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.overlay__msg .btn1-list__item {
    width: 70%;
    margin-top: 3rem;
}

@media screen and (max-height: 66rem) and (orientation: landscape){
    p {
        font-size: 0.9rem;
    }
    .bottom-nav {
        width: 71rem;
        bottom: -1rem;
    }
    .bottom-nav__item {
        width: 6rem;
    }
    .top-nav__item {
        width: 5rem;
    }
    .top-nav__img {
        padding-left: 0.3rem;
    }
    .top-nav__item .top-nav__title {
        font-size: 1rem;
    }
    .folderlink, .folderlink:visited {
        font-size: 0.8rem;
    }
    .mac-bar__item {
        font-size: 0.9rem;
    }
    .dropdown-button {
        font-size: 0.9rem;
    }
    #mail-small, #battery-small {
        height: 1rem;
    }
    #instagram-small {
        height: 1.2rem;
    }
    /* ABOUT */
    .about-wrap {
        height: 15rem;
        max-width: 37.5rem;
        margin-top: 1.2rem;
    }
    .tab {
        padding: 1rem;
    }
    .aboutme-content p {
        margin: 3rem 0;
        font-size: 1.1rem;
    }
    .about__images {
        padding-bottom: 1rem;
        padding-right: 2rem;
        margin: 0.2rem 0 0 0;
    }
    .head {
        width: 10.5rem;
        height: 10.5rem;
    }
    .title1 {
        font-size: 1.9rem;
    }
    .title2 {
        font-size: 1.2rem;
    }
    .btn1-list_bottom {
        top: 20.4rem;
        width: 37.75rem;
    }
    .folder-content__title2 {
        font-size: 1.3rem;
    }
    .btn1-list__item_big {
        font-size: 1rem;
    }
    .btn1-list_top {
        width: 37.75rem;
        top: 3.3rem;
    }
    /* NORMAL WINDOWS */
    .close {
        width: 1.5rem;
        height: 1.7rem;
        padding: 0.25rem 0.2rem;
    }
    .desktop-folder__title-background {
        background-position: 50% 0.3rem;
        background-size: 67rem 0.9rem;
    }
    .desktop-folder_open {
        height: 34.7rem;
        width: 44rem;
    }
    .desktop-folder_center {
        left: -webkit-calc(50vw - 22rem);
        left: calc(50vw - 22rem);
        top: 11vh;
    }
    .folder-content.js {
        height: 33.2rem;
        width: 44rem;
        margin-top: 1.5rem;
    }
    .folder-content__wrap-overflow {
        height: 32.95rem;
    }
    .desktop-folder_open .desktop-folder__title, .device-app_open .desktop-folder__title {
        width: 44rem;
        padding: 0.4rem 5rem 1.5rem 6rem;
    }
    .desktop-folder_open .desktop-folder__title, .device-app_open .desktop-folder__title {
        font-size: 0.7rem;
    }
    /* SMALL WINDOWS */
    .desktop-folder_small {
        height: 25.5rem;
        width: 24rem;
    }
    .desktop-folder_small .folder-content.js {
        width: 24rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        width: inherit;
        height: 24rem;
    }
    .desktop-folder_xsmall {
        width: 15rem;
    }
    /* NARROW WINDOWS */
    .desktop-folder_narrow {
        width: 30rem;
        height: 39rem;
    }
    .desktop-folder_narrow .desktop-folder__title, .desktop-folder_narrow .folder-content.js {
        width: 29.75rem;
    }
    .desktop-folder_narrow .folder-content.js {
        height: 37rem;
    }
    .slideshow-narrow {
        height: 37rem;
        width: 88.25rem;
    }
    .slideshow-narrow .slideshow__slide {
        width: 29.75rem;
        height: 33rem;
    }
    .slideshow-narrow .slideshow__img {
        height: 34rem;
    }
    /* LARGE WINDOWS */
    .desktop-folder_large {
        width: 56rem;
        height: 32.55rem;
    }
    .desktop-folder_large .desktop-folder__title, .desktop-folder_large .folder-content.js {
        width: 56rem;
    }
    .desktop-folder_large-center {
        left: -webkit-calc(50vw - 28rem);
        left: calc(50vw - 28rem);
        top: 10vh;
    }
    .desktop-folder_large .folder-content.js {
        height: 31.05rem;
    }
    .desktop-folder_large .folder-content__wrap-overflow,
    .gallery__item-first {
        height: 30.8rem;
    }
    .desktop-folder_large .desktop-folder__title {
        width: 56rem;
    }
    .project-list__item .project-list__name {
        line-height: 0.9;
    }
    /* PROJECT */
    .detail,
    .detail .folder-content.js {
        height: -webkit-calc(100vh - 16.5rem);
        height: calc(100vh - 16.5rem);
    }
    .detail .folder-content__wrap-overflow {
        height: -webkit-calc(100vh - 16.75rem);
        height: calc(100vh - 16.75rem);
    }
    .desktop-folder_open .detail__title-big {
        width: -webkit-calc(100vw - 8rem);
        width: calc(100vw - 8rem);
    }
    .detail .desktop-folder__title,
    .detail .folder-content.js {
        width: inherit;
    }
    .detail_a {
        height: 37.2rem;
        width: 27rem;
        left: -webkit-calc(50vw - 13.5rem);
        left: calc(50vw - 13.5rem);
        top: 9vh;
    }
    .detail_a .folder-content.js {
        height: 35.7rem;
    }
    .detail_a .folder-content__wrap-overflow {
        height: 35.45rem;
    }
    .detail_b {
        height: 32.75rem;
        width: 60rem;
        left: -webkit-calc(50vw - 30rem);
        left: calc(50vw - 30rem);
    }
    .detail_b
    .folder-content.js {
        height: 31.25rem;
    }
    .detail_b
    .folder-content__wrap-overflow {
        height: 31rem;
    }
    .detail_b
    .desktop-folder__title {
        width: inherit;
    }
    .detail_b
    .desktop-folder__title-background {
        -webkit-transform: scaleX(1.15);
        transform: scaleX(1.15);
    }
    .project__desc .desktop-folder__title-background {
        -webkit-transform: none;
        transform: none;
    }
    .detail_c {
        height: 40.5rem;
        width: 40rem;
        left: -webkit-calc(50vw - 20rem);
        left: calc(50vw - 20rem);
    }
    .detail_c
    .folder-content.js {
        height: 39rem;
    }
    .detail_c
    .folder-content__wrap-overflow {
        height: 38.75rem;
    }
    .detail_c
    .desktop-folder__title {
        width: 40rem;
    }
    .detail .detail_d_wrap {
        height: 0;
    }
    .detail_d__horizontal {
        height: 25.15rem;
        width: 43rem;
        top: 15vh;
    }
    .detail_d .folder-content__wrap-overflow {
        height: 0;
    }
    .detail_d > .folder-content.js {
        height: 0;
    }
    .detail_d__horizontal .folder-content.js {
        height: 23.65rem;
    }
    .detail_d__horizontal .folder-content__wrap-overflow {
        height: 23.4rem;
    }
    .detail_d__vertical {
        width: 26rem;
        height: 36.75rem;
    }
    .detail_d__vertical .folder-content.js {
        height: 35.25rem;
    }
    .detail_d__vertical .folder-content__wrap-overflow {
        height: 35rem;
    }
    .detail_d__horizontal_center {
        -webkit-transform: translateX(-23rem);
        transform: translateX(-23rem);
    }
    .project__img {
        max-height: -webkit-calc(100vh - 8rem);
        max-height: calc(100vh - 8rem);
        margin-top: 0;
    }
    .project__desc {
        width: 27rem;
        height: 12.1rem;
        top: 60vh;
    }
    .project__desc_small {
        height: 8rem;
    }
    .project__desc .detail__title {
        width: 27.75rem;
    }
    .project__desc .folder-content.js {
        height: 10.6rem;
        width: 27.75rem;
    }
    .project__desc .folder-content__wrap-overflow {
        height: 10.4rem;
        width: 27.5rem;
    }
    .project__desc_small .folder-content.js {
        height: 6.5rem;
    }
    .project__desc_small .folder-content__wrap-overflow {
        height: 6.3rem;
    }
    .project-list__preview {
        height: 4.5rem;
    }
    /* SETTINGS */
    .color-list__color {
        width: 2.3rem;
        height: 2.3rem;
    }
    .dropdown__arrow {
        height: 2.1rem;
    }
    .setting__dropdown-button {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    .setting__dropdown {
        font-size: 0.8rem;
    }
    /* TRASH */
    .trash__img {
        width: 18rem;
        height: 18rem;
    }
    /* SLIDESHOW */
    .slideshow__nav-button {
        width: 2.3rem;
        height: 5rem;
    }
    .slideshow__title {
        font-size: 2.4rem;
    }
    .slideshow__pjt-title {
        font-size: 1.2rem;
    }
    .a-slider {
        height: 1rem;
    }
    /* PORN */
    .porn__title {
        height: 1.6rem;
        top: -1.6rem;
    }
    .porn .close {
        height: 1.6rem;
        top: -1.6rem;
    }
    /* GALLERY */
    .gallery__title {
        font-size: 1.6rem;
    }
    .gallery-h3 {
        font-size: 0.7rem;
    }
}

@media screen and (max-height: 54rem) and (orientation: landscape){
    #latestproject {
        left: 39vw;
    }
    /* ABOUT */
    #about {
        width: 44rem;
    }
    #about .desktop-folder__title {
        width: inherit;
    }
    #about .folder-content.js {
        width: 44rem;
        height: 24rem;
    }
    #about .folder-content__wrap-overflow {
        height: 23.8rem;
    }
    /* PROJECTS */
    .desktop-folder_open {
        height: 32.2rem;
        width: 39rem;
    }
    .desktop-folder_center {
        left: -webkit-calc(50vw - 19.5rem);
        left: calc(50vw - 19.5rem);
        top: 10vh;
    }
    .folder-content.js {
        height: 30.75rem;
        width: 39rem;
    }
    .folder-content__wrap-overflow {
        height: 30.5rem;
    }
    .desktop-folder_open .desktop-folder__title, .device-app_open .desktop-folder__title {
        width: 39rem;
        padding: 0.35rem 3rem 1.5rem 4rem;
    }
    .desktop-folder_large {
        width: 50rem;
        height: 29.15rem;
        -webkit-left: calc(50vw - 25rem);
        left: calc(50vw - 25rem);
    }
    .desktop-folder_large .desktop-folder__title {
        width: inherit;
    }
    .desktop-folder_large .folder-content.js {
        height: 27.65rem;
        width: 50rem;
    }
    .desktop-folder_large .folder-content__wrap-overflow,
    .gallery__item-first {
        height: 27.4rem;
    }
    .desktop-folder_small {
        width: 21rem;
        height: 22.5rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        height: 21rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        width: 21rem;
    }
    .desktop-folder_xsmall {
        width: 14rem;
        height: 26rem;
    }
    .desktop-folder_xsmall .desktop-folder__title,
    .desktop-folder_xsmall .folder-content.js {
        width: 14rem;
    }
    .desktop-folder_xsmall .folder-content.js {
        height: 24.5rem;
    }
    .detail_a {
        height: 34.4rem;
        width: 25rem;
        -webkit-left: calc(50vw - 12.5rem);
        left: calc(50vw - 12.5rem);
    }
    .detail_a .folder-content.js {
        height: 32.9rem;
    }
    .detail_a .folder-content__wrap-overflow {
        height: 32.65rem;
    }
    .detail_b {
        height: 28.5rem;
        width: 52rem;
        -webkit-left: calc(50vw - 26rem);
        left: calc(50vw - 26rem);
    }
    .detail_b .desktop-folder__title {
        width: inherit;
    }
    .detail_b .desktop-folder__title-background {
        -webkit-transform: none;
        transform: none;
    }
    .detail_b .folder-content.js {
        height: 27rem;
    }
    .detail_b .folder-content__wrap-overflow {
        height: 26.75rem;
    }
    .detail_c {
        height: 34.5rem;
        width: 34rem;
        left: -webkit-calc(50vw - 17rem);
        left: calc(50vw - 17rem);
    }
    .detail_c .desktop-folder__title {
        width: 34rem;
    }
    .detail_c .folder-content.js {
        height: 33rem;
    }
    .detail_c .folder-content__wrap-overflow {
        height: 32.75rem;
    }
    .detail_d > .folder-content.js {
        height: 0;
    }
    .detail_d__horizontal {
        height: 22.95rem;
        width: 39rem;
        top: 18vh;
    }
    .detail_d__horizontal .folder-content.js {
        height: 21.45rem;
    }
    .detail_d__horizontal .folder-content__wrap-overflow {
        height: 21.2rem;
    }
    .detail_d__vertical {
        width: 23rem;
        height: 32.4rem;
        top: 16vh;
    }
    .detail_d__vertical .folder-content.js {
        height: 30.95rem;
    }
    .detail_d__vertical .folder-content__wrap-overflow {
        height: 30.7rem;
    }
    .detail .desktop-folder__title, .detail .folder-content.js {
        width: inherit;
    }
    .project__desc {
        width: 27.8rem;
        height: 10.7rem;
        top: 57vh;
    }
    /* .project__desc p {
        padding: 0 1rem;
    } */
    .project__desc .detail__title {
        width: 27.75rem;
    }
    .project__desc .folder-content.js {
        height: 9.2rem;
        width: 27.75rem;
    }
    .project__desc .folder-content__wrap-overflow {
        height: 9rem;
    }
    .project__desc_small {
        height: 7.85rem;
    }
    .project__desc_small .folder-content.js {
        height: 6.35rem;
    }
    .project__desc_small .folder-content__wrap-overflow {
        height: 6.1rem;
    }
    /* TRASH */
    .trash__img {
        width: 15rem;
        height: 15rem;
    }
    /* SLIDESHOW */
    .fullscreen__close-button img {
        padding: 0.2rem;
    }
    /* PORN */
    .porn .desktop-folder__title-span {
        font-size: 0.7rem;
    }
    /* GALLERY */
    .gallery__title {
        font-size: 1.4rem;
    }
}
@media screen and (max-height: 46rem) and (orientation: landscape){
    p {
        font-size: 0.8rem;
    }
    .mac-bar__item {
        font-size: 0.8rem;
        height: 1rem;
    }
    .mac-bar__item_tr {
        -webkit-transform: translateY(-0.2rem);
        transform: translateY(-0.2rem);
    }
    .mac-bar_left .mac-bar__item_first {
        width: 1rem;
        -webkit-transform: translateY(0.1rem);
        transform: translateY(0.1rem);
    }
    .mac-bar_right .mac-bar__img {
        margin: 0 0 0 0.3rem;
        -webkit-transform: translateY(-0.1rem);
        transform: translateY(-0.1rem);
    }
    .mac-bar_left .mac-bar__item_first img {
        height: 1rem;
        top: 0;
    }
    .dropdown {
        width: 10rem;
    }
    #mail-small, #battery-small {
        height: 0.8rem;
    }
    #instagram-small {
        height: 0.9rem;
    }
    .dropdown-button {
        font-size: 0.8rem;
    }
    .top-nav__item {
        width: 4.5rem;
    }
    .bottom-nav {
        -webkit-transform: translateX(-50%) scale(0.7);
        transform: translateX(-50%) scale(0.7);
    }
    /* ABOUT */
    #about {
        width: 39rem;
        left: 0;
        top: 18vh;
        -webkit-transform: translateX(-webkit-calc(50vw - 19.5rem));
        transform: translateX(-webkit-calc(50vw - 19.5rem));
        -webkit-transform: translateX(calc(50vw - 19.5rem));
        transform: translateX(calc(50vw - 19.5rem));
    }
    #press {
        margin: 1rem 4rem 0 4rem;
    }
    #about .desktop-folder__title {
        width: inherit;
    }
    #about .folder-content.js {
        width: 39rem;
        height: 21.5rem;
    }
    #about .folder-content__wrap-overflow {
        height: 21.3rem;
    }
    .about-wrap {
        height: 14.5rem;
        margin-top: 1.4rem;
        max-width: 34.5rem;
    }
    .btn1-list_bottom,
    .btn1-list_top {
        width: 34.75rem;
    }
    .btn1-list_top {
        top: 2.5rem;
    }
    .btn1-list_bottom{
        top: 19.1rem;
    }
    .btn1-list__item_big {
        font-size: 0.9rem;
    }
    .about__images {
        margin: 1.2rem 0 0 0;
    }
    .head {
        width: 8rem;
        height: 8rem;
    }
    .aboutme-content p {
        font-size: 1rem;
    }
    .folder-content__title2 {
        margin: 0.5rem 0;
        font-size: 1.2rem;
    }
    /* WINDOWS */
    .folder-content.js {
        width: 35rem;
        height: 23.75rem;
    }
    .folder-content__wrap-overflow {
        padding: 1.5rem;
        height: 23.5rem;
    }
    .folderlink, .folderlink:visited {
        font-size: 0.8rem;
    }
    .desktop-folder_open {
        height: 25.2rem;
        width: 35rem;
    }
    .desktop-folder_center {
        left: -webkit-calc(50vw - 17.5rem);
        left: calc(50vw - 17.5rem);
        top: 12vh;
    }
    .desktop-folder_open .desktop-folder__title, .device-app_open .desktop-folder__title {
        width: 35rem;
    }
    .desktop-folder_large .desktop-folder__title {
        width: inherit;
    }
    .desktop-folder_large {
        height: 26.35rem;
        width: 45rem;
        left: -webkit-calc(50vw - 22.5rem);
        left: calc(50vw - 22.5rem);
    }
    .desktop-folder_large .folder-content.js {
        height: 24.85rem;
        width: 45rem;
    }
    .desktop-folder_large .folder-content__wrap-overflow,
    .gallery__item-first {
        height: 24.6rem;
    }
    .desktop-folder_small {
        width: 18rem;
        height: 19.5rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        height: 18rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        width: 18rem;
    }
    .desktop-folder_small .desktop-folder__title, .desktop-folder_small .folder-content.js {
        width: 18rem;
    }
    .desktop-folder_xsmall {
        width: 14rem;
        height: 25.5rem;
    }
    .desktop-folder_xsmall .desktop-folder__title, .desktop-folder_xsmall .folder-content.js {
        height: 24rem;
        width: 14rem;
    }
    .detail .desktop-folder__title, .detail .folder-content.js {
        width: inherit;
    }
    .detail_a {
        width: 22rem;
        height: 30.3rem;
        -webkit-left: calc(50vw - 11rem);
        left: calc(50vw - 11rem);
    }
    .detail_a .folder-content.js {
        height: 28.8rem;
    }
    .detail_a .folder-content__wrap-overflow {
        height: 28.55rem;
    }
    .detail_b {
        width: 45rem;
        height: 24.7rem;
        -webkit-left: calc(50vw - 22.5rem);
        left: calc(50vw - 22.5rem);
    }
    .detail_b .folder-content.js {
        height: 23.25rem;
    }
    .detail_b .folder-content__wrap-overflow {
        height: 23rem;
    }
    .detail_c {
        height: 29.5rem;
        width: 29rem;
        left: -webkit-calc(50vw - 14.5rem);
        left: calc(50vw - 14.5rem);
    }
    .detail_c .folder-content.js {
        height: 28rem;
    }
    .detail_c .folder-content__wrap-overflow {
        height: 27.75rem;
    }
    .detail_d__horizontal {
        height: 20.15rem;
        width: 34rem;
    }
    .detail_d__horizontal .folder-content.js {
        height: 18.65rem;
    }
    .detail_d__horizontal .folder-content__wrap-overflow {
        height: 18.4rem;
    }
    .detail_d__vertical {
        height: 28.2rem;
        width: 20rem;
    }
    .detail_d__vertical .folder-content.js {
        height: 26.75rem;
    }
    .detail_d__vertical .folder-content__wrap-overflow {
        width: 100%;
        height: 26.5rem;
    }
    .project__desc {
        height: 9.7rem;
    }
    .project__desc .folder-content.js {
        height: 8.2rem;
    }
    .project__desc .folder-content__wrap-overflow {
        height: 8rem;
        width: 100%;
    }
    .project__desc_small {
        height: 5.8rem;
    }
    .project__desc_small .folder-content.js {
        height: 4.35rem;
    }
    .project__desc_small .folder-content__wrap-overflow {
        height: 4.1rem;
    }
    /* LATEST PROJECT */
    .btn-link-wrap {
        top: 3rem;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    /* PROJECTS */
    .project-list__preview {
        height: 4.2rem;
    }
    /* SETTINGS */
    .color-list__color {
        width: 2rem;
        height: 2rem;
    }
    .setting__dropdown-button {
        font-size: 0.8rem;
    }
    .dropdown__arrow {
        height: 1.95rem;
    }
    /* SLIDESHOW */
    .slideshow__slide-wrap {
        width: 33rem;
    }
    .slideshow__eye {
        width: 5rem;
    }
    .slideshow__title {
        margin-bottom: 0;
        font-size: 2rem;
    }
    .slideshow__pjt-title {
        font-size: 1rem;
    }
    .slideshow__nav-button {
        width: 2.5rem;
        height: 3rem;
    }
    .slideshow__pjt-button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    /* GALLERY */
    .gallery__item-wrap {
        width: 95%;
    }
}
@media screen and (orientation: portrait){
    .mac-bar {
        background-color:#DADAD3;
    }
    /* TOUCH DEVICE*/
    .touch {
        overflow: visible;
    }
    .touch .buttons-wrap {
        position: absolute;
        margin-top: -1.5rem;
    }
    .touch .folder-wrap {
        position: absolute;
        -webkit-transform: none;
        transform: none;
        z-index: 4;
    }
    .touch .project-list__item {
        -webkit-box-flex: 1;
        flex: 1;
    }
    .touch #projects > .desktop-folder__title {
        display: none;
    }
    .touch .detail {
        position: absolute;
        top: 1.5rem;
        left: 0;
        right: 0;
        bottom: auto;
        overflow: visible;
    }
    .device-app_open .desktop-folder__title {
        position: static;
        width: initial;
        border-bottom: 3px solid #1d1e1c;
    }
    .touch .detail .project__img {
        margin-bottom: 0;
        margin-top: 0;
    }
    .touch .detail .detail__title, .touch .detail .buttons-wrap {
        display: none;
    }
    .touch #projects.device-app_open {
        max-height: 100vh;
        background-color: inherit;
        border: none;
    }
    .folderlink, .folderlink:visited {
        font-size: 1.3rem;
    }
    /* GENERAL */
    p {
        line-height: 1.3;
    }
    .body-wrap {
        background: #EC9696;
    }
    .mobile-app {
        position: static;
        height: -webkit-calc(100vh - 11rem);
        height: calc(100vh - 11rem);
    }
    .fullscreen-folder,
    .desktop-folder {
        margin-top: 2rem;
    }
    .mac-bar {
        height: 2rem;
        border-bottom: 3px solid black;
    }
    .mac-bar__title {
        position: absolute;
        margin: 0.4rem 0 0 0;
        left: 50%;
        top: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .mac-bar_center {
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        margin: 0 0.4rem;
    }
    .mac-bar-m-icon {
        height: 1.4rem;
    }
    .bottom-nav {
        height: 9rem;
        width: auto;
        padding: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: none;
        background-color: #DADAD3;
        border-radius: 0;
        border-top: 3px solid black;
        -webkit-transform: none;
        transform: none;
    }
    .bottom-nav__list {
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        -webkit-justify-content: space-around;
        -moz-justify-content: space-around;
        justify-content: space-around;
        width: 32rem;
        padding: 0.5rem;
        -webkit-transform: none;
        transform: none;
    }
    .bottom-nav__item-m {
        width: 6rem;
        padding: 0;
    }
    .bottom-nav__item img {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }
    .bottom-nav__item .bottom-nav__name {
        clip: auto;
        margin: 0.2rem 0;
        font-size: 1.1rem;
        text-align: center;
    }
    .hover-img {
        text-decoration: none;
        color: black;
    }
    .folder-content.js {
        margin: 0;
        height: 100%;
        width: 100%;
        border: 0;
    }
    .folder-content__wrap-overflow {
        height: 100%;
    }
    .arrow-down {
        display: block;
        position: fixed;
        width: 3rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 4rem;
    }
    .arrow-down_quickview {
        position: absolute;
        bottom: 2rem;
    }
    /* SLIDESHOW */
    .slideshow-wrap {
        position: static;
        overflow-y: scroll;
        height: -webkit-calc(100vh - 11rem);
        height: calc(100vh - 11rem);
    }
    .slideshow {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        width: auto;
    }
    .slideshow__nav-button {
        display: none;
    }
    .fullscreen__close-button {
        display: none;
    }
    .slideshow__slide {
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        height: auto;
    }
    .slideshow__slide_first {
        height: -webkit-calc(100vh - 11rem);
        height: calc(100vh - 11rem);
    }
    .slideshow__pjt-title {
        display: none;
    }
    .slideshow__img {
        position: static;
        width: 100%;
        -webkit-transform: none;
        transform: none;
    }
    .slideshow__pjt-name {
        display: inline;
    }
    .slideshow__pjt-click {
        display: none;
    }
    /* PROJECTS */
    .project-list__item .project-list__name {
        line-height: 1.4;
    }
    #projects .folder-content.js {
        background-color: rgba(0, 0, 0, 0);
    }
    .desktop-folder > .desktop-folder__title,
    .desktop-folder > .close {
        display: none;
    }
    .project-list__preview {
        height: 8rem;
    }
    .detail > .desktop-folder__title {
        display: none;
    }
    .detail_a,
    .detail_b,
    .detail_c,
    .detail_d {
        height: -webkit-calc(100% - 2rem);
        height: calc(100% - 2rem);
        width: 100%;
        left: 0;
        top: 2rem;
        background-color: white;
        box-shadow: none;
    }
    .detail_a > .folder-content.js,
    .detail_b > .folder-content.js,
    .detail_c > .folder-content.js,
    .detail_d > .folder-content.js {
        margin-top: 3rem;
        height: -webkit-calc(100% - 3rem);
        height: calc(100% - 3rem);
    }
    .detail_a .folder-content__wrap-overflow,
    .detail_b .folder-content__wrap-overflow,
    .detail_c .folder-content__wrap-overflow,
    .detail_d .folder-content__wrap-overflow {
        height: 100%;
    }
    .detail_d .detail_d_wrap {
        height: -webkit-calc(100vh - 11rem);
        height: calc(100vh - 11rem);
        overflow-y: scroll;
    }
    .detail_d__horizontal,
    .detail_d__vertical {
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
    }
    .detail_d__horizontal .detail__title,
    .detail_d__vertical .detail__title {
        display: none;
    }
    .detail_d__horizontal > .folder-content.js,
    .detail_d__vertical > .folder-content.js {
        height: 100%;
    }
    .detail_d-close {
        display: block;
    }
    .desktop-folder__title-background {
        display: none;
    }
    .desktop-folder__title {
        display: block;
        margin-top: 1rem;
    }
    .desktop-folder__title-span {
        display: block;
        padding-top: 1rem;
    }
    .project__img {
        width: 100vw;
    }
    .project__desc {
        height: auto;
        width: 100%;
        left: 0;
        top: 2rem;
        background-color: #DADAD3;
        box-shadow: none;
        border-bottom: 3px solid black;
        z-index: 2;
    }
    .info-icon {
        display: block;
        position: absolute;
        width: 2rem;
        right: 0;
        top: 0;
    }
    .project__desc p {
        padding: 0 0 1rem 0;
        margin: 0;
        font-size: 0.9rem;
    }
    .project-info-close {
        display: block;
        width: 3rem;
        margin: 0 auto;
        padding: 0;
    }
    .see-project-info {
        font-size: 1rem;
        text-transform: uppercase;
    }
    .project-info-close img {
        width: 100%;
    }
    .project__desc .detail__title {
        margin: 0.5rem 0 0.6rem 0;
    }
    .project__desc .detail__title,
    .project__desc .folder-content.js {
        width: inherit;
    }
    .project__desc .folder-content.js,
    .project__desc_small .folder-content.js,
    .project__desc .folder-content__wrap-overflow ,
    .project__desc_small .folder-content__wrap-overflow  {
        height: auto;
    }
    .project__desc .folder-content__wrap-overflow {
        max-width: 40rem;
        margin: 0 auto;
        overflow: hidden;
    }
    .project__desc .close {
        display: none;
    }
    .project__desc .detail__title {
        position: relative;
    }
    .detail > .close {
        top: 0.5rem;
        left: 0.3rem;
        border: none;
        background-color: rgba(0, 0, 0, 0);
        z-index: 5;
    }
    /* ABOUT */
    #about {
        height: -webkit-calc(100vh - 11rem);
        height: calc(100vh - 11rem);
        -webkit-transform: none;
        transform: none;
    }
    #about .folder-content__wrap-overflow {
        height: 100%;
    }
    #exhibition {
        margin-bottom: 4rem;
    }
    .about__images {
        padding-right: 0;
        margin: 0 0 0.5rem 0;
    }
    .about-wrap {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        height: -webkit-calc(100% - 4rem);
        height: calc(100% - 4rem);
        max-width: 100%;
        margin-top: 3.4rem;
    }
    .section2 {
        display: block;
        max-width: 40rem;
        margin: 0.1rem auto;
        text-align: center;
    }
    .tab {
        min-height: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
    }
    .aboutme-content {
        font-size: 1.2rem;
    }
    .about__title {
        display: block;
        margin: 0.5rem 0;
        font-size: 1.5rem;
    }
    .aboutme-content p {
        margin: 2rem 0;
    }
    .btn1-list_top {
        display: none;
    }
    .btn1-list_bottom {
        width: -webkit-calc(100% - 5rem);
        width: calc(100% - 5rem);
        top: 4.7rem;
    }
    .btn1-list__item_big {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 54rem) and (orientation: portrait){
    #about,
    .mobile-app,
    .slideshow-wrap,
    .slideshow__slide_first,
    .detail_d .detail_d_wrap {
        height: -webkit-calc(100vh - 8rem);
        height: calc(100vh - 8rem);
    }
    .mac-bar {
        border-bottom: 2px solid black;
    }
    .mac-bar__title {
        font-size: 0.9rem;
    }
    .mac-bar-m-icon {
        height: 0.9rem;
    }
    .bottom-nav {
        height: 6rem;
        border-top: 2px solid black;
    }
    .bottom-nav__list {
        padding: 0;
        width: 24rem;
    }
    .bottom-nav__item .bottom-nav__name {
        margin: 0;
        font-size: 1rem;
    }
    .bottom-nav__item-m {
        width: 5rem;
    }
    .bottom-nav__item img {
        padding: 0.8rem 0.8rem 0 0.8rem;
    }
    /* PROJECTS */
    .project-list__preview {
        height: 6.5rem;
    }
    .folderlink, .folderlink:visited {
        font-size: 1.1rem;
    }
    .see-project-info {
        font-size: 0.9rem;
    }
    .project-info-close {
        width: 2.2rem;
    }
    .project__desc {
        border-bottom: 2px solid black;
    }
    /* ABOUT */
    .section2 {
        max-width: 31rem;
    }
    .head {
        width: 10rem;
    }
    .title1 {
        font-size: 2.3rem;
    }
    .aboutme-content p {
        font-size: 1.1rem;
    }
    .folder-content__title2 {
        font-size: 1.5rem;
    }
    .btn1-list__item_big {
        font-size: 1.1rem;
    }
    .btn1-list__item_big .btn1-list__link {
        padding: 0.6rem;
    }
    .arrow-down {
        width: 2.2rem;
    }
    /* SLIDESHOW */
    .slideshow__slide-wrap {
        width: 70%;
    }
    .slideshow__title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 43rem) and (orientation: portrait){
    .mac-bar {
        border-bottom: 2px solid black;
    }
    .mac-bar__title {
        margin: 0.6rem 0 0 0;
        font-size: 0.8rem;
    }
    .mac-bar-m-icon {
        height: 0.9rem;
    }
    .bottom-nav__list {
        width: 23rem;
    }
    .bottom-nav__item .bottom-nav__name {
        font-size: 0.9rem;
    }
    .bottom-nav__item-m {
        width: 5rem;
    }
    /* PROJECTS */
    .folderlink, .folderlink:visited {
        font-size: 0.9rem;
    }
    .project-list__item .project-list__name {
        line-height: 1.1;
    }
    .close {
        width: 1.7rem;
    }
    .project__desc .folder-content__wrap-overflow {
        max-width: 32rem;
    }
    .detail_a > .folder-content.js,
    .detail_b > .folder-content.js,
    .detail_c > .folder-content.js,
    .detail_d > .folder-content.js {
        margin-top: 2.4rem;
        height: -webkit-calc(100% - 2.5rem);
        height: calc(100% - 2.5rem);
    }
    .detail > .close {
        top: 0.2rem;
        left: 0.1rem;
    }
    .project-list__preview {
        height: 5.5rem;
    }
    .see-project-info {
        font-size: 0.8rem;
    }
    .project__desc {
        border-bottom: 2px solid black;
    }
    .project-info-close {
        width: 2.2rem;
    }
    .project__desc .detail__title {
        margin: 0.2rem 0 0.3rem 0;
    }
    .project__desc .desktop-folder__title-span {
        display: block;
        padding: 1rem 0 0.5rem 0;
        font-size: 1.1rem;
    }
    /* SLIDESHOWS */
    .slideshow__slide-wrap {
        width: auto;
        max-width: 33rem;
    }
    .slideshow__eye {
        width: 5rem;
    }
    .slideshow__title {
        margin: 2rem 0 1rem 0;
        font-size: 2rem;
    }
    /* ABOUT */
    .about-wrap {
        margin-top: 3.3rem;
    }
    .tab {
        padding: 0;
    }
    .section2 {
        max-width: 30rem;
        padding: 0 1rem;
    }
    .title1 {
        font-size: 2rem;
    }
    .title2 {
        font-size: 1.1rem;
    }
    .head {
        width: 9rem;
    }
    .arrow-down {
        width: 2rem;
    }
    .folder-content__title2 {
        font-size: 1.3rem;
    }
    .btn1-list__item_big {
        font-size: 1rem;
    }
    .aboutme-content p {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 38rem) and (orientation: portrait){
    p {
        font-size: 0.9rem;
    }
    .wrap {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }
    .bottom-nav__item .bottom-nav__name {
        font-size: 0.8rem;
    }
    .folderlink, .folderlink:visited {
        font-size: 0.8rem;
    }
    /* ABOUT */
    .btn1-list__item_big {
        font-size: 0.8rem;
    }
    .about-wrap {
        margin-top: 3rem;
        height: -webkit-calc(100% - 3.5rem);
        height: calc(100% - 3.5rem);
    }
    .about__title {
        font-size: 1.2rem;
    }
    .folder-content__title2 {
        margin: 1rem;
        font-size: 1.2rem;
    }
    #press {
        margin: 0;
    }
    /* RPOJECTS */
    .project-list__preview {
        height: 4.5rem;
    }
    .project-list__item .project-list__name {
        line-height: 1;
    }
    /* SLIDESHOW */
    .slideshow__slide-wrap {
        max-width: 28rem;
    }
    .slideshow__title {
        font-size: 1.8rem;
    }
    .slideshow__pjt-button {
        bottom: 1rem;
        padding: 0.5rem;
    }
}
@media screen and (max-width: 33rem) and (orientation: portrait){
    /* ABOUT */
    .folder-content__wrap-overflow {
        padding: 1.5rem;
    }
    .btn1-list_bottom {
        width: -webkit-calc(100% - 3rem);
        width: calc(100% - 3rem);
        top: 3.6rem;
    }
    /* PROJECTS */
    .project-list__preview {
        height: 6rem;
    }
    .project-list__item .project-list__name {
        line-height: 1.3;
    }
    .folderlink, .folderlink:visited {
        font-size: 1rem;
    }
    .project__desc .folder-content__wrap-overflow {
        padding: 0 1rem;
    }
    .project-list {
        -webkit-grid-template-columns: auto auto auto auto;
        -moz-grid-template-columns: auto auto auto auto;
        -ms-grid-template-columns: auto auto auto auto;
        grid-template-columns: auto auto auto auto;
    }
}
@media screen and (max-width: 30rem) and (orientation: portrait){
    .desktop-folder > .folder-content > .folder-content__wrap-overflow,
    .fullscreen-folder > .slideshow,
    .detail > .folder-content > .folder-content__wrap-overflow {
        padding-bottom: 5rem;
    }
    /* ABOUT */
    #about .folder-content__wrap-overflow {
        padding: 0;
    }
    .about-wrap {
        height: -webkit-calc(100% - 3.1rem);
        height: calc(100% - 3.1rem);
        border: none;
    }
    .btn1-list_bottom {
        width: 100%;
        top: 2rem;
    }
    .folder-content__title2 {
        margin: 1rem;
    }
    .arrow-down {
        bottom: 1rem;
    }
    #press {
        margin: 5rem 0;
    }
    /* SLIDESHOW */
    .slideshow__slide-wrap {
        max-width: 25rem;
    }
    .slideshow__title {
        font-size: 1.5rem;
    }
    /* PROJECTS */
    .project-list__preview {
        height: 5rem;
    }
    .project-list__item .project-list__name {
        line-height: 1.1;
    }
    .folderlink, .folderlink:visited {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 27rem) and (orientation: portrait){
    /* ABOUT */
    .btn1-list_bottom {
        position: static;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
    }
    .btn1-list__item {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: -webkit-calc(100% - 4rem);
        width: calc(100% - 4rem);
    }
    .btn1-list__item {
        margin-top: 1rem;
    }
    .btn1-list__item:not(:first-child) {
        margin-left: 0;
    }
    .btn1-list__item_big {
        font-size: 1rem;
    }
    .about-wrap {
        height: auto;
        margin: 0 1rem;
    }
    /* SLIDESHOW */
    .slideshow__slide-wrap {
        padding: 0 1rem;
    }
    .slideshow__slide {
        height: 18rem;
    }
    .slideshow__slide_first {
        height: -webkit-calc(100vh - 8rem);
        height: calc(100vh - 8rem);
    }
    .slideshow__img {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
    .slideshow__pjt-button {
        font-size: 0.9rem;
    }
    /* PROJECTS */
    .project-list {
        -webkit-grid-template-columns: auto auto auto;
        -moz-grid-template-columns: auto auto auto;
        -ms-grid-template-columns: auto auto auto;
        grid-template-columns: auto auto auto;
    }
}
@media screen and (max-width: 24rem) and (orientation: portrait){
    .bottom-nav__list {
        width: auto;
        max-width: 23rem;
    }
    /* PROJECTS */
    .project-list__preview {
        height: 4rem;
    }
    /* SLIDESHOW */
    .slideshow__img {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    .slideshow__pjt-button {
        width: fit-content;
    }
    /* ABOUT */
    .about-wrap {
        margin: 1rem;
    }
    .folder-content__title2 {
        margin: 0.5rem 0;
    }
    .title1 {
        font-size: 1.8rem;
    }
    .title2 {
        font-size: 1rem;
    }
}
