@font-face {
    font-family: "SB";
  
    src: url("../fonts/SB.woff2") format("woff2"), 
        url("../fonts/SB.woff") format("woff"),  
        url("../fonts/SB.svg") format("svg"),
        url("../fonts/SB.ttf") format("truetype"); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "SM";
  
    src: url("../fonts/SM.woff2") format("woff2"), 
        url("../fonts/SM.woff") format("woff"), 
        url("../fonts/SM.svg") format("svg"),
        url("../fonts/SM.ttf") format("truetype"); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "O";
  
    src: url("../fonts/O.woff2") format("woff2"), 
        url("../fonts/O.woff") format("woff"), 
        url("../fonts/O.svg") format("svg"),
        url("../fonts/O.ttf") format("truetype");  
    font-weight: normal;
    font-style: normal;
}

*{
    box-sizing: border-box;
}

html, body{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: "SB", Helvetica, sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.image-responsive{
    width: 100%;
}

/* ANIMATIONS */
@-webkit-keyframes open-blank{
    0%{transform: scaleX(0);}
    100%{ transform: scaleX(1);}
}

@keyframes open-blank{
    0%{transform: scaleX(0);}
    100%{ transform: scaleX(1);}
}

@-webkit-keyframes element-up{
    0%{transform: translateY(100vh); margin: auto;}
    100%{transform: translateY(0); margin: auto;}
}

@keyframes element-up{
    0%{transform: translateY(100vh); margin: auto;}
    100%{transform: translateY(0); margin: auto;}
}

@-webkit-keyframes element-slide-up{
    0%{opacity: 0; transform: translateY(200px);}
    100%{opacity: 1; transform: translateY(0);}
}

@keyframes element-slide-up{
    0%{opacity: 0; transform: translateY(200px);}
    100%{opacity: 1; transform: translateY(0);}
}

/* Top Section */
.top-section {
    padding: 20px 50px 0 50px;
}

.top-contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 25px 20px 0 20px;
    background: #f5f5f5;
    overflow: hidden;
}

.back-button{
    font-family: "SB", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    position: fixed;
    top: 42px;
    left: 70px;
    z-index: 999;
    cursor: pointer;
    user-select: none;
    color: #fdfdfd;
    mix-blend-mode: difference;
    -webkit-user-select: none;
}

.back-button a{
    text-decoration: none;
    color: #fdfdfd;
}

.back-button::before{
    content: "< ";
}

.back-button:hover{
    background: #1f1f1f;
    transition: 0.3s;
}

.work-title {
    width: 85%;
    margin: auto;
    font-family: "SM", Helvetica, sans-serif;
    font-size: 7.5vw;
    font-weight: 500;
    letter-spacing: -0.02rem;
    text-align: center;
    line-height: 100%;
    position: relative;
    top: -16px;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    -webkit-animation: element-slide-up 1s ease;
    animation: element-slide-up 1s ease;
}

.green-button {
    width: 40px;
    height: 40px;
    top: 46px;
    right: 73px;
    position: fixed;
}
    
img.green-ellipse {
    width: 40px;
    cursor: pointer;
}
    
img.green-ellipse:hover{
    content: url(../images/icons/greenbutton_hover.png);
    transition: 0.3s;
}

@media (max-width: 1024px){
    .top-section {
        padding: 20px 30px 0 30px;
    }

    .back-button {
        top: 38px;
        left: 50px;
    }

    .green-button {
        top: 41px;
        right: 53px;
    }
}

@media (max-width: 768px){
    .top-section {
        padding: 10px 15px 0 15px;
    }

    .top-contents {
        padding: 15px 15px 0 15px;
    }

    .back-button {
        font-size: 16px;
        top: 23px;
        left: 30px;
    }

    .work-title {
        top: -10px;
    }

    .green-button {
        width: 25px;
        height: 25px;
        top: 25px;
        right: 33px;
    }

    img.green-ellipse {
        width: 25px;
    }
}

@media (max-width: 576px){
    .top-contents {
        padding: 10px 10px 0 10px;
    }

    .back-button {
        font-size: 14px;
        top: 18px;
        left: 25px;
    }

    .back-button::before{
        content: "< ";
        display: none;
    }

    .work-title {
        width: 76%;
        font-size: 6.8vw;
        top: -5px;
    }

    .green-button {
        width: 15px;
        height: 15px;
        top: 19px;
        right: 27px;
    }

    img.green-ellipse {
        width: 15px;
    }
}

/* Navbar Settings */
.overlay {
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    background-color: #000;
    overflow-x: hidden;
    transition: 0.7s; 
}

.overlay-content {
    display: contents;
}

.overlay .closebtn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 46px;
    right: 73px;
}

a.closebtn img {
    width: 40px;
}

a.closebtn img:hover{
    content: url(../images/icons/greenbutton.png);
    transition: 0.3s;
}

.website-nav-links {
    position: relative;
    top: 48%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 70px;
}

.website-nav-links a {
    font-family: "SM", Helvetica, sans-serif;
    font-size: 6vw;
    font-weight: 500;
    letter-spacing: -0.02rem;
    line-height: 80%;
    color: #f5f5f5;
    text-decoration: none;
    display: block;
}

.website-nav-links a.active{
    color: #0820F8;
}

.website-nav-links a:nth-child(1), .website-nav-links a:nth-child(2),
.website-nav-links a:nth-child(3) {
    padding-bottom: 45px;
    width: fit-content;
    margin: auto;
}

.website-nav-links a:hover{
    color: #0820F8;
    transition: 0.3s;
}

.social-nav-links {
    position: absolute;
    left: 70px;
    bottom: 30px;
}

.social-nav-links a {
    font-family: "SM", Helvetica, sans-serif;
    font-size: 2.347417840375587vw;
    font-weight: 500;
    line-height: 100%;
    color: #f5f5f5;
    text-decoration: none;
}

.social-nav-links a:hover{
    color: #0820F8;
    transition: 0.3s;
}

.last-update-nav {
    position: absolute;
    bottom: 30px;
    right: 70px;
    font-family: "SM", Helvetica, sans-serif;
    font-size: 1.1737089201877935vw;
    font-weight: 500;
    line-height: 130%;
    color: #f5f5f5;
    user-select: none;
    pointer-events: none;
}

.last-update-nav span {
    font-family: "SB", Helvetica, sans-serif;
    font-weight: 400;
}

@media (max-width: 1024px){
    .overlay .closebtn {
        top: 41px;
        right: 53px;
    }

    .website-nav-links {
        top: 50%;
        padding: 0 50px;
    }

    .website-nav-links a {
        font-size: 8vw;
    }

    .social-nav-links {
        left: 50px;
    }

    .social-nav-links a {
        font-size: 3vw;
    }

    .last-update-nav {
        right: 50px;
        font-size: 1.6vw;
    }
}

@media (max-width: 768px){
    .overlay .closebtn {
        top: 25px;
        right: 33px;
        width: 25px;
        height: 25px;
    }

    a.closebtn img {
        width: 25px;
    }

    .website-nav-links {
        padding: 0 25px;
    }

    .website-nav-links a {
        font-size: 9vw;
    }

    .website-nav-links a:nth-child(1), .website-nav-links a:nth-child(2),
    .website-nav-links a:nth-child(3) {
        padding-bottom: 40px;
    }

    .last-update-nav {
        font-size: 1.8vw;
        bottom: 20px;
    }

    .social-nav-links {
        left: 25px;
        bottom: 20px;
    }

    .social-nav-links a {
        font-size: 4vw;
    }
}

@media (max-width: 576px){
    .overlay .closebtn {
        top: 19px;
        right: 27px;
        width: 15px;
        height: 15px;
    }

    a.closebtn img {
        width: 15px;
    }

    .website-nav-links {
        padding: 0 25px;
    }

    .website-nav-links a {
        font-size: 10vw;
    }

    .website-nav-links a:nth-child(1), .website-nav-links a:nth-child(2),
    .website-nav-links a:nth-child(3) {
        padding-bottom: 25px;
    }

    .social-nav-links a {
        font-size: 4.4vw;
    }

    .last-update-nav {
        font-size: 2.8vw;
        right: 25px;
        bottom: 20px;
    }
}

/* Main Settings Page Works */
.first-section {
    width: 100%;
    background: #000;
    z-index: 99;
    position: -webkit-sticky;
    position: sticky;
    border-bottom: 1px solid #000;
}

.main-image-section {
    display: flex;
    justify-content: space-around;
    align-content: flex-start;
    width: 100%;
    padding: 0 50px;
}

.main-image-content {
    width: 100%;
    background: #f5f5f5;
    padding: 10px 20px 0 20px;
}

.main-image-content img, .main-image-content video {
    width: 100%;
    -webkit-animation: element-up 1s ease .2s backwards;
    animation: element-up 1s ease .2s backwards;
}

.description-section {
    padding: 0 50px;
    display: flex;
    justify-content: space-around;
    align-content: flex-start;
}

.description-content {
    width: 100%;
    padding: 0 20px;
    background: #f5f5f5;
}

.subtitle-description {
    font-family: "O", Georgia, 'Times New Roman', Times, serif;
    font-size: 1.8vw;
    font-weight: 400;
    font-style: italic;
    line-height: 80%;
    padding-top: 50px;
    user-select: none;
    pointer-events: none;
    -webkit-animation: element-up .7s ease .5s backwards;
    animation: element-up .7s ease .5s backwards;
}

.work-description {
    font-family: "SB", Helvetica, sans-serif;
    font-size: 4vw;
    font-weight: 400;
    line-height: 125%;
    padding-top: 30px;
    padding-bottom: 30px;
    user-select: none;
    -webkit-animation: element-up .7s ease .5s backwards;
    animation: element-up .7s ease .5s backwards;
}

.work-description a{
    text-decoration: none;
    color: #000;
}

.work-description a:hover{
    background: #E0E0E0;
    transition: 0.3s;
}

.second-section {
    width: 100%;
    height: 100vh;
    padding: 0 50px 50px 50px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 0;
}

.more-info-contents {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-content: flex-end;
    flex-wrap: wrap;
    padding: 0 20px 30px 20px;
    user-select: none;
}

.more-info {
    width: 100%;
    font-family: "O", Georgia, 'Times New Roman', Times, serif;
    font-size: 1.8vw;
    font-weight: 100;
    font-style: italic;
    line-height: 80%;
    color: #000;
}

.second-info {
    width: 100%;
    font-family: "SB", Helvetica, sans-serif;
    font-size: 4vw;
    font-weight: 400;
    line-height: 125%;
    color: #000;
    padding-top: 30px;
}

.second-info a{
    color: #000;
    text-decoration: none;
}

.second-info a:hover{
    background: #E0E0E0;
    transition: 0.3s;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 90px;
}

.image-section-1 {
    z-index: 1;
    align-items: center;
    position: -webkit-sticky;
    background: #f5f5f5;
    position: sticky;
    top: 0;
}

.image-section-2 {
    z-index: 2;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-3 {
    z-index: 3;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-4 {
    z-index: 4;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-5 {
    z-index: 5;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-6 {
    z-index: 6;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-7 {
    z-index: 7;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-8 {
    z-index: 8;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-9 {
    z-index: 9;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-10 {
    z-index: 10;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-11 {
    z-index: 11;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-12 {
    z-index: 12;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-13 {
    z-index: 13;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-14 {
    z-index: 14;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-15 {
    z-index: 15;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-16 {
    z-index: 16;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-17 {
    z-index: 17;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-18 {
    z-index: 18;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-19 {
    z-index: 19;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-20 {
    z-index: 20;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-21 {
    z-index: 21;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-22 {
    z-index: 22;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-23 {
    z-index: 23;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-24 {
    z-index: 24;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-25 {
    z-index: 25;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-26 {
    z-index: 26;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-27 {
    z-index: 27;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-28 {
    z-index: 28;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-29 {
    z-index: 29;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-30 {
    z-index: 30;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-31 {
    z-index: 31;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-32 {
    z-index: 32;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-33 {
    z-index: 33;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-34 {
    z-index: 34;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-35 {
    z-index: 35;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-36 {
    z-index: 36;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-37 {
    z-index: 37;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-38 {
    z-index: 38;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-39 {
    z-index: 39;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.image-section-40 {
    z-index: 40;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.work-image {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-image img {
    height: 80vh;
    width: 80vw;
    object-fit: contain;
}

.work-image video {
    height: 80vh;
    width: 80vw;
    object-fit: contain;
}

.work-image .external-player {
    width: 72vw;
    width: 72vw;
    object-fit: contain;
}

img.size1 {
    height: 40vh;
}

img.size2 {
    height: 60vh;
}

img.size3-rotate {
    height: 30vw;
    transform: rotate(5deg);
}

img.size4-rotate {
    height: 30vw;
    transform: rotate(-5deg);
}

img.size4 {
    height: 80vh;
}

video.size1 {
    height: 64vh;
}

video.size2 {
    height: 50vh;
}

.actual-image {
    width: 36px;
    height: 24px;
    position: absolute;
    bottom: 50%;
    left: 70px;
    font-family: "SB", Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 80%;
    background: #f5f5f5;
    z-index: 50;
}

.total-images {
    position: absolute;
    bottom: 50%;
    right: 70px;
    font-family: "SB", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 80%;
}

.medium-images {
    font-family: "SB", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 80%;
    text-align: right;
    position: absolute;
    bottom: 68px;
    right: 70px;
    background: #f5f5f5;
    width: 100px;
    height: 18px;
}

.next-project-section {
    width: 100%;
    height: 100vh;
    padding: 20px 50px 50px 50px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.next-project-contents {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    user-select: none;
}

.next-project-title {
    width: 100%;
    font-family: "O", Georgia, 'Times New Roman', Times, serif;
    font-size: 1.8vw;
    font-weight: 400;
    font-style: italic;
    line-height: 80%;
}

.next-project-title a, .next-work-title a {
    text-decoration: none;
    color: #000;
}

.next-work-title {
    width: 70%;
    font-family: "SM", Helvetica, sans-serif;
    font-size: 7.5vw;
    font-weight: 500;
    line-height: 100%;
    padding-top: 30px;
}

.next-work-title a:hover{
    color: #0820F8;
    transition: 0.3s;
}

@media (max-width: 1024px){
    .main-image-section, .description-section {
        padding: 0 30px;
    }

    .subtitle-description {
        font-size: 2.4vw;
    }

    .work-description {
        font-size: 4.4vw;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .second-section {
        padding: 0 30px 30px 30px;
    }

    .more-info-contents {
        padding: 0 20px 20px 20px;
    }

    .more-info {
        font-size: 2.4vw;
    }

    .second-info {
        font-size: 4.4vw;
        padding-top: 20px;
    }

    .image-wrapper {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .work-image img {
        width: 78vw;
        height: auto;
    }

    .work-image video {
        width: 65.4vw;
        height: auto;
    }

    .work-image .external-player {
        width: 78vw;
    }

    img.size1 {
        width: 78vw;
        height: auto;
    }
    
    img.size2 {
        width: 48vw;
        height: auto;
    }

    img.size3-rotate {
        width: 54vw;
        height: auto;
    }

    img.size4-rotate {
        width: 54vw;
        height: auto;
    }

    img.size4 {
        width: 49.5vw;
        height: auto;
    }

    img.v-tablet {
        width: 66vw;
        height: auto;
    }

    video.size1 {
        width: 52vw;
        height: auto;
    }

    video.size2 {
        width: 40vw;
        height: auto;
    }

    .actual-image {
        left: 50px;
    }

    .total-images {
        right: 50px;
    }

    .medium-images {
        bottom: 50px;
        right: 50px;
    }

    .next-project-section {
        padding: 20px 30px 30px 30px;
    }

    .next-project-title {
        font-size: 2.4vw;
    }

    .next-work-title {
        font-size: 9vw;
    }
}

@media (max-width: 768px){
    .main-image-section, .main-image-content, .description-section,
    .description-content, .next-project-contents {
        padding: 0 15px;
    }

    .subtitle-description {
        font-size: 2.6vw;
        padding-top: 30px;
    }

    .work-description {
        font-size: 4.4vw;
        padding-top: 15px;
        padding-bottom: 30px;
        line-height: 140%;
    }

    .second-section, .more-info-contents {
        padding: 0 15px 15px 15px;
    }

    .more-info {
        font-size: 2.6vw;
    }

    .second-info {
        font-size: 4.4vw;
        padding-top: 15px;
        line-height: 140%;
    }

    .image-wrapper {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .actual-image {
        font-size: 26px;
        width: 32px;
        height: 21px;
        left: 30px;
    }

    .total-images {
        font-size: 16px;
        right: 30px;
    }

    .medium-images {
        font-size: 16px;
        height: 13px;
        left: 30px;
        bottom: 30px;
        text-align: left;
    }

    .next-project-section {
        padding: 15px;
    }

    .next-project-title {
        font-size: 2.6vw;
    }

    .next-work-title {
        font-size: 9vw;
        padding-top: 20px;
    }
}

@media (max-width: 576px){
    .main-image-content{
        padding: 2px 10px 0 10px;
    }

    .description-content, .next-project-contents{
        padding: 0 10px;
    }

    .subtitle-description {
        font-size: 3.2vw;
        padding-top: 20px;
    }

    .work-description {
        font-size: 5.2vw;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .more-info-contents {
        padding: 0 10px 10px 10px;
    }

    .more-info, .next-project-title {
        font-size: 3.2vw;
    }

    .second-info {
        font-size: 5.2vw;
        padding-top: 12px;
        line-height: 140%;
    }

    .work-image img, .work-image video, .work-image iframe{
        padding-left: 25px;
        padding-right: 25px;
    }

    .work-image img, .work-image video, .work-image .external-player,
    img.size1, img.size2, img.size3-rotate, img.size4-rotate,
    img.v-tablet, video.size1, video.size2 {
        width: 100%;
        max-height: 86vh;
        object-fit: contain;
        transform: rotate(0deg);
    }

    img.v-mobile {
        width: 100%;
        max-height: 85vh;
        object-fit: contain;
    }

    img.size4 {
        height: 85vh;
        width: auto;
    }

    .actual-image {
        font-size: 22px;
        left: auto;
        right: 48px !important;
        bottom: 14px;
        width: 28px;
        height: 18px;
    }

    .total-images {
        font-size: 14px;
        right: 25px;
        bottom: 15px;
    }

    .medium-images {
        font-size: 14px;
        bottom: 15px;
        left: 25px;
        height: 12px;
    }

    .next-work-title {
        width: 75%;
        font-size: 11vw;
        padding-top: 15px;
    }
}

/* Footer Works Section */
footer.footer-site {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 20px;
}

p.last-update {
    font-family: "SM", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
    pointer-events: none;
    user-select: none;
    order: 1;
    width: 140px;
    color: #000;
}

p.last-update span::before {
    content: " ";
}


p.last-update span {
    font-family: "SB", Helvetica, sans-serif;
    font-weight: 400;
}

p.last-update span:after, .last-update-nav span:after {
    content: "may, 2021";
}

.social-links {
    text-align: center;
    font-family: "SM", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
    order: 2;
    flex-direction: column;
    display: flex;
}

.social-links a {
    color: #000;
    text-decoration: none;
    user-select: none;
}

.social-links a:nth-child(1) {
    width: 52px;
    text-align: center;
    margin: auto;
}

.social-links a:hover {
    background: #E0E0E0;
    color: #000;
    transition: 0.3s;
}

p.copyright {
    width: 150px;
    font-family: "SB", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 125%;
    margin: 0;
    text-align: right;
    pointer-events: none;
    user-select: none;
    order: 3;
    color: #000;
}

p.copyright span::before {
    content: " ";
}

@media (max-width: 768px){
    footer.footer-site {
        padding: 15px;
    }

    p.last-update, p.copyright {
        font-size: 16px;
        width: 110px;
    }

    .social-links {
        font-size: 16px;
    }

    .social-links a:nth-child(1) {
        width: 44px;
    }
}

@media (max-width: 576px){
    footer.footer-site {
        padding: 10px;
    }

    .social-links{
        display: none;
    }

    p.last-update, p.copyright {
        font-size: 14px;
        width: 100px;
    }
}
