@font-face {
    font-family: 'NexaBold';
    src: url(fonts/NexaBold.otf);
}


/* font-family: myriad-pro, sans-serif; 

font-family: myriad-pro-condensed, sans-serif;  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background-color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: 'myriad-pro', 'Oswald', arial, sans-serif;
}

.pattern {
    width: 100%;
    height: 300%;
    background: url(img/wzorek1.png);
    background-color: rgba(0, 0, 0, .1);
}

.white-shadow {
    height: 100%;
    background: radial-gradient(circle, white 4%, transparent 65%);
}

.active {
    display: none;
}

.contact-open {
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.contact-line {
    background-color: #d4002b;
    align-self: stretch;
    padding: 2.5px 0;
}

.contact-btn {
    align-self: center;
    background-color: #d4002b;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.2px;
    padding: 3px 12px;
    color: white;
    cursor: pointer;
}

.contact-arrow-down {
    align-self: center;
    margin-top: 2px;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #d4002b;
}

/* START FORM EMAIL */

.contact-open-form {
    transition: 0.3s linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.close-form {
    height: 20%;
    display: flex;
    align-items: center;
}

.close-form .button-close {
    align-self: center;
    width: 24px;
    height: 24px;
    margin-left: 220px;
    border: 1px solid #d4002b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 2px;
    font-size: 16px;
    font-family: arial, sans-serif;
    font-weight: 300;
    color: #d4002b;
    outline-style: none;
    cursor: pointer;
}

p.info-text {
    margin-left: 150px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
}

.all-form {
    display: flex;
}

#contact_form {
    margin-left: 220px;
}

.formField {
    font-size: 12px;
    width: 300px;
    border: 1px solid #d4002b;
    border-radius: 2px;
    margin: 3px 0 10px 0;
    padding: 3px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 200;
    line-height: 2.2;
    letter-spacing: 2px;
    padding-left: 14px;
    outline-style: none;
}

textarea.formField {
    font-size: 12px;
    width: 300px;
    height: 150px;
    max-width: 300px;
    min-width: 300px;
    min-height: 150px;
    max-height: 40vh;
    outline-style: none;
}

#sendBtn {
    cursor: pointer;
    background: #d4002b;
    border: none;
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 400;
    color: #fff;
    padding: 0 30px;
    outline-style: none;
}

#send_form_status {
    align-self: flex-start;
    display: none;
    margin-top: 10px;
    margin-left: 220px;
    text-transform: uppercase;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
}

.status_ok {
    color: #fff;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
}

.status_err {
    color: #d4002b;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
}

.contact-email {
    margin-left: 50px;
    width: 30px;
    height: 295px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-email div:nth-of-type(1) {
    height: 48%;
    border-left: 1px solid #d4002b;
}

.contact-email div:nth-of-type(2) {
    height: 52%;
    border-left: 1px solid #d4002b;
}

.contact-email p {
    align-self: flex-start;
    margin-left: 7px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
    display: flex;
}

.contact-email p span {
    align-self: center;
    margin-left: 50px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'Oswald', arial, sans-serif;
    font-weight: 300;
    width: 280px;
}

.contact-open-close {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.contact-line-close {
    background-color: #d4002b;
    align-self: stretch;
    padding: 2.5px 0;
}

.contact-btn-close {
    align-self: center;
    background-color: #d4002b;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.2px;
    padding: 5px 12px 2px;
    color: white;
    cursor: pointer;
}

.contact-arrow-up {
    align-self: center;
    margin-top: 2px;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #d4002b;
}

/* END FORM EMAIL@ */


/* <-------- START HOMEPAGE --------> */


section.homepage {
    padding-top: 20vh;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.logo {
    align-self: center;
    padding-bottom: 80px;
    flex-basis: 370px;
}

.logo img {
    align-self: center;
    width: 355px;
    height: 369px;
}

h1.name {
    align-self: center;
    text-transform: uppercase;
    font-family: 'NexaBold', 'Oswald', arial, sans-serif;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 3.2px;
    color: #d4002b;
    margin-left: 5px;
}

h2.subtitle {
    align-self: center;
    text-transform: uppercase;
    font-family: 'NexaBold', 'Oswald', arial, sans-serif;
    color: #576161;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 10px;
    margin-left: 11.5px;
}

/* <-------- END HOMEPAGE --------> */



/* <-------- START ABOUT ME --------> */


section.about-me {
    padding-top: 20vh;
    padding-bottom: 7vh;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.about-title {
    align-self: center;
    /* flex-basis: 52vh; */
    display: flex;
}

.about-title img {
    align-self: center;
    width: 276px;
    height: 66px;
}

.about-description {
    align-self: center;
    width: 43vw;
    /* display: flex; */
    /* justify-content: space-between; */
}

.photo {
    margin-top: 40px;
}

.photo img {
    border-radius: 50%;
    border: 6px solid #da102d;
    padding: 7px;
    background: #b01329;
    width: 180px;
    height: 180px;
    float: left;
    margin-right: 18px;
    shape-outside: circle(50%);
}

.describe-me {
    align-self: center;
    color: #576161;
    font-size: 14px;
    font-family: 'Oswald', arial, sans-serif;
    text-align: justify;

}

.describe-me span {
    font-weight: 600;
}


/* <-------- END ABOUT ME -------->*/



/* <-------- START GALLERY --------> */
section.last-works {
    padding-top: 20vh;
    padding-bottom: 7vh;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.last-works-title img {
    align-self: center;
    width: 350px;
    height: 63px;
}

.all-works {
    padding-left: 100px;
    padding-right: 100px;
    height: 65%;
    width: 86vw;
    align-self: center;
    display: flex;
    justify-content: center;
}

.last-works .work {
    margin: 0 10px;
    align-self: center;
    border-radius: 50%;
    border: 6px solid #da102d;
    background-color: #b01329;
    padding: 7px;
    width: 200px;
    height: 200px;
}

/* .work a {
    background-color: transparent;
} */

.work img {
    align-self: center;
    border-radius: 50%;
    width: 174px;
    height: 174px;
    transform: rotate(-10deg);
    object-fit: cover;
}

.work a:hover {
    filter: brightness(0.5);
}

.last-works .under-button {
    align-self: center;
    display: flex;
    justify-content: center;
}

.last-works button {
    text-align: center;
    width: 120px;
    border: 1px solid #d4002b;
    background-color: #d4002b;
    font-size: 14px;
    font-family: 'myriadpro', 'Oswald', arial, sans-serif;
    letter-spacing: 1.2px;
    line-height: 2;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

/* <-------- END GALLERY --------> */

/* <-------- START NAV --------> */
nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

ul {

    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a.navi {
    align-self: center;
    background-color: #576161;
    flex-basis: 34%;
    padding-top: 8px;
    padding-bottom: 7px;
    font-size: 12px;
    text-align: center;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'myriad-pro', 'Oswald', arial, sans-serif;
    letter-spacing: 1.5px;
}

nav a:hover {
    background-color: #d4002b;
    cursor: pointer;
}

/* <--------END NAV --------> */


/* --------------------------- DESKTOP RESOLUTIONS ---------------------------- */

@media (max-width: 1520px) {

    .all-works {
        padding-left: 50px;
        padding-right: 50px;
        height: 65%;
        width: 86vw;
    }

    .last-works .work {
        margin: 0 10px;
        border: 5px solid #da102d;
        padding: 6px;
        width: 168px;
        height: 168px;
    }

    .work img {
        width: 146px;
        height: 146px;
    }

}

@media (max-width: 1220px) {

    /* --- start contact--- */
    .contact-line {
        padding: 2px 0;
    }

    .contact-btn {
        font-size: 12px;
        letter-spacing: 1.2px;
        padding: 2.5px 10px;
    }

    .contact-arrow-down {
        margin-top: 1.5px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 7px solid #d4002b;
    }

    /* --- end contact--- */

    /* --- start - open form contact --- */
    .close-form .button-close {
        width: 21px;
        height: 21px;
        font-size: 13px;
    }

    p.info-text {
        font-size: 14px;
        letter-spacing: 2px;

    }

    .formField {
        font-size: 11px;
    }

    textarea.formField {
        font-size: 12px;
        max-height: 30vh;
    }

    #sendBtn {
        line-height: 27px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    #send_form_status {
        margin-top: 10px;
        margin-left: 220px;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .status_ok {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .status_err {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .contact-email {
        margin-left: 50px;
        width: 30px;
        height: 295px;
    }

    .contact-email p {
        margin-left: 7px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .contact-email p span {
        margin-left: 50px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .contact-line-close {
        padding: 2px 0;
    }

    .contact-btn-close {
        font-size: 12px;
        letter-spacing: 1.2px;
        padding: 4px 10px 1px;
    }

    .contact-arrow-up {
        margin-top: 1.5px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 7px solid #d4002b;
    }

    /* --- end - open form contact --- */


    /* --- start home--- */
    section.homepage {
        padding-top: 14vh;
    }

    .logo {
        padding-bottom: 67px;
        flex-basis: 309px;
    }

    .logo img {
        width: 298px;
        height: 309px;
    }

    h1.name {
        font-size: 32px;
        letter-spacing: 2.7px;
    }

    h2.subtitle {
        font-size: 18.5px;
        letter-spacing: 8.4px;
    }

    /* --- end home--- */


    /* --- start about--- */
    section.about-me {
        padding-top: 16vh;
        padding-bottom: 1vh;
    }

    .about-description {
        width: 55vw;
    }

    .about-title img {
        width: 248px;
        height: 59px;
    }

    .photo {
        margin-top: 30px;
    }

    .photo img {
        border: 5px solid #da102d;
        padding: 6px;
        width: 170px;
        height: 170px;

    }

    .describe-me {
        font-size: 13px;
    }

    /* --- end about--- */

    /* --- start gallery--- */
    section.last-works {
        padding-top: 16vh;
        padding-bottom: 2vh;
    }

    .last-works-title img {
        width: 311px;
        height: 56px;
    }

    .all-works {
        padding-left: 5px;
        padding-right: 5px;
        height: 55%;
        width: 86vw;
    }

    .last-works .work {
        margin: 0 5px;
        border: 5px solid #da102d;
        padding: 6px;
        width: 168px;
        height: 168px;
    }

    .work img {
        width: 146px;
        height: 146px;
    }

    .last-works .under-button {
        margin-top: 10px;
    }

    .last-works button {
        width: 100px;
        font-size: 13px;
        letter-spacing: 1.2px;
    }

    /* --- end gallery--- */


    /* --- start nav--- */
    a.navi {
        padding-top: 5px;
        padding-bottom: 4px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* --- end nav--- */

}

@media (max-width: 900px) {
    section.last-works {
        padding-top: 10vh;
        padding-bottom: 0vh;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 80%;
        width: 86vw;
        flex-wrap: wrap;
    }

    .last-works .under-button {
        margin-top: 50px;
    }
}

@media (max-height: 800px) {

    /* --- start contact--- */
    .contact-line {
        padding: 2px 0;
    }

    .contact-btn {
        font-size: 12px;
        letter-spacing: 1.2px;
        padding: 0px 10px 3px;
    }

    .contact-arrow-down {
        margin-top: 1.5px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 7px solid #d4002b;
    }

    /* --- end contact--- */

    /* --- start - open form contact --- */
    .close-form .button-close {
        width: 21px;
        height: 21px;
        font-size: 13px;
    }

    p.info-text {
        font-size: 14px;
        letter-spacing: 2px;

    }

    .formField {
        font-size: 11px;
    }

    textarea.formField {
        font-size: 12px;
        max-height: 30vh;
    }

    #sendBtn {
        line-height: 27px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    #send_form_status {
        margin-top: 10px;
        margin-left: 220px;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .status_ok {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .status_err {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .contact-email {
        margin-left: 50px;
        width: 30px;
        height: 295px;
    }

    .contact-email p {
        margin-left: 7px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .contact-email p span {
        margin-left: 50px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .contact-line-close {
        padding: 2px 0;
    }

    .contact-btn-close {
        font-size: 12px;
        letter-spacing: 1.2px;
        padding: 4px 10px 1px;
    }

    .contact-arrow-up {
        margin-top: 1.5px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 7px solid #d4002b;
    }

    /* --- end - open form contact --- */


    /* --- start home--- */
    section.homepage {
        padding-top: 14vh;
    }

    .logo {
        padding-bottom: 67px;
        flex-basis: 309px;
    }

    .logo img {
        width: 298px;
        height: 309px;
    }

    h1.name {
        font-size: 32px;
        letter-spacing: 2.7px;
    }

    h2.subtitle {
        font-size: 18.5px;
        letter-spacing: 8.4px;
    }

    /* --- end home--- */


    /* --- start about--- */
    section.about-me {
        padding-top: 12vh;
        padding-bottom: 1vh;
    }

    .about-title img {
        width: 248px;
        height: 59px;
    }

    .photo {
        margin-top: 10px;
    }

    .describe-me {
        font-size: 13px;
    }

    /* --- end about--- */

    /* --- start gallery--- */
    section.last-works {
        padding-top: 12vh;
        padding-bottom: 1vh;
    }

    .last-works-title img {
        width: 311px;
        height: 56px;
    }

    /* --- end gallery--- */



    /* --- start navi--- */


    a.navi {
        padding-top: 5px;
        padding-bottom: 4px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* --- end navi--- */
}


/* ---------------------- MOBILE RESOLUTIONS ------------------------ */
@media (max-width: 830px) and (orientation: landscape) {

    /* <-------- START CONTACT--------> */
    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 13px;
        padding: 11px 12px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */

    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 10%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 20px;
        height: 20px;
        margin-left: 30px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 15px;
        font-size: 13px;
    }

    #contact_form {
        margin-left: 30px;
    }

    .formField {
        font-size: 12px;
        width: 300px;
        margin: 1px 0 4px 0;
    }

    textarea.formField {
        /* line-height: 1.2; */
        font-size: 12px;
        width: 300px;
        height: 110px;
        max-width: 300px;
        min-width: 300px;
        min-height: 110px;
        max-height: 110px;
        margin-bottom: -3px;
    }

    #sendBtn {
        line-height: 32px;
        font-size: 13px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 10px;
        margin-left: 20px;
        font-size: 12px;
    }

    .status_ok {
        font-size: 12px;
    }

    .status_err {
        font-size: 12px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 9px 12px 4px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* <-------- END CONTACT--------> */


    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 10vh;
        height: 60vh;
    }

    .logo {
        padding-bottom: 14px;
        flex-basis: 246px;
    }

    .logo img {
        width: 165px;
        height: 172px;
    }

    h1.name {
        font-size: calc(38px/1.8);
        letter-spacing: calc(3.2px/1.8);
        margin-left: calc(5px/1.8);
    }

    h2.subtitle {
        font-size: calc(22px/1.8);
        letter-spacing: calc(10px/1.8);
        margin-left: calc(11.5px/1.8);
    }

    /* <-------- END HOME --------> */


    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 14vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 60vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        font-size: 12px;
        line-height: 1.25;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 6vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 55%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
    }

    .last-works .work {
        margin: 0px 2px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        display: none;
    }

    /* <-------- END GALLERY--------> */


    /* <-------- START NAV --------> */
    nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        /* width: 100%; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    a.navi {
        flex-basis: 33.3%;
        margin-top: 2px;
        padding-top: 13px;
        padding-bottom: 9px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}

@media (max-width: 600px) and (orientation: landscape) {

    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 12px;
        padding: 8px 9px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */
    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 10%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 18px;
        height: 18px;
        margin-left: 10px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 6px;
        font-size: 11px;
    }

    #contact_form {
        margin-left: 10px;
    }

    .formField {
        font-size: 11px;
        width: 260px;
        margin: 1px 0 5px 0;
    }

    textarea.formField {
        line-height: 1.2;
        font-size: 12px;
        width: 260px;
        height: 110px;
        max-width: 260px;
        min-width: 260px;
        min-height: 110px;
        max-height: 110px;
        margin-bottom: -3px;
    }

    #sendBtn {
        line-height: 30px;
        font-size: 12px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 11px;
    }

    .status_ok {
        font-size: 11px;
    }

    .status_err {
        font-size: 11px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 4px 12px 3px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* <-------- END CONTACT--------> */


    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 6vh;
        height: 60vh;
    }

    .logo {
        padding-bottom: 14px;
        flex-basis: 246px;
    }

    .logo img {
        width: 165px;
        height: 172px;
    }

    h1.name {
        font-size: calc(38px/1.8);
        letter-spacing: calc(3.2px/1.8);
        margin-left: calc(5px/1.8);
    }

    h2.subtitle {
        font-size: calc(22px/1.8);
        letter-spacing: calc(10px/1.8);
        margin-left: calc(11.5px/1.8);
    }

    /* <-------- END HOME --------> */


    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 2vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 60vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        font-size: 12px;
        line-height: 1.2;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 55%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
    }

    .last-works .work {
        margin: 0px 2px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        display: none;
    }

    /* <-------- END GALLERY--------> */


    /* <-------- START NAV --------> */
    nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        /* width: 100%; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    a.navi {
        flex-basis: 33.3%;
        margin-top: 2px;
        padding-top: 9px;
        padding-bottom: 7px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}

@media (max-width: 520px) and (orientation: portrait) {

    /* <-------- START CONTACT--------> */
    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 13px;
        padding: 11px 12px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */

    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 20%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 24px;
        height: 24px;
        margin-left: 30px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 15px;
        font-size: 13px;
    }

    #contact_form {
        position: fixed;
        margin-left: 30px;
    }

    .formField {
        font-size: 12px;
        width: 300px;
        margin: 3px 0 10px 0;
    }

    textarea.formField {
        /* line-height: 1.2; */
        font-size: 12px;
        width: 300px;
        height: 210px;
        max-width: 300px;
        min-width: 300px;
        min-height: 210px;
        max-height: 210px;
    }

    #sendBtn {
        line-height: 32px;
        font-size: 13px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 15px;
        margin-left: 20px;
        font-size: 12px;
    }

    .status_ok {
        font-size: 12px;
    }

    .status_err {
        font-size: 12px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 9px 12px 4px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* <-------- END CONTACT--------> */


    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 12vh;
        height: 80vh;
    }

    .logo {
        padding-bottom: 30px;
        flex-basis: 246px;
    }

    .logo img {
        width: 236px;
        height: 246px;
    }

    h1.name {
        font-size: calc(38px/1.5);
        letter-spacing: calc(3.2px/1.5);
        margin-left: calc(5px/1.5);
    }

    h2.subtitle {
        font-size: calc(22px/1.5);
        letter-spacing: calc(10px/1.5);
        margin-left: calc(11.5px/1.5);
    }

    /* <-------- END HOME --------> */



    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 8vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 60vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        font-size: 12px;
        line-height: 1.25;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 78%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
    }

    .last-works .work {
        margin: 1px 2px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        margin-top: 7px;
    }

    .last-works button {
        width: 90px;
        /* border: 2px solid rgba(255, 255, 255, 0.6); */
        font-size: 11px;
        letter-spacing: 1.2px;
        line-height: 2.2;
    }

    /* <-------- END GALLERY--------> */


    /* <-------- START NAV --------> */
    nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        width: 100%;
        display: flex;
        flex-direction: column;

        justify-content: '';
    }

    a.navi {
        margin-top: 2px;
        width: 100%;
        padding-top: 21px;
        padding-bottom: 15px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}

@media (max-width: 330px) and (orientation: portrait) {

    /* <-------- START CONTACT--------> */
    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 12px;
        padding: 8px 9px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */
    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 20%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 20px;
        height: 20px;
        margin-left: 10px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 6px;
        font-size: 11px;
    }

    #contact_form {
        position: fixed;
        margin-left: 10px;
    }

    .formField {
        font-size: 11px;
        width: 260px;
        margin: 3px 0 10px 0;
    }

    textarea.formField {
        line-height: 1.2;
        font-size: 12px;
        width: 260px;
        height: 170px;
        max-width: 260px;
        min-width: 260px;
        min-height: 170px;
        max-height: 170px;
    }

    #sendBtn {
        line-height: 30px;
        font-size: 12px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 11px;
    }

    .status_ok {
        font-size: 11px;
    }

    .status_err {
        font-size: 11px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 9px 12px 4px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* END FORM EMAIL@ */
    /* <-------- END CONTACT--------> */

    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 10vh;
        height: 80vh;
    }

    .logo {
        padding-bottom: 30px;
        flex-basis: 205px;
    }

    .logo img {
        width: 197px;
        height: 205px;
    }

    h1.name {
        font-size: calc(38px/1.8);
        letter-spacing: calc(3.2px/1.8);
        margin-left: calc(5px/1.8);
    }

    h2.subtitle {
        font-size: calc(22px/1.8);
        letter-spacing: calc(10px/1.8);
        margin-left: calc(11.5px/1.8);
    }

    /* <-------- END HOME --------> */

    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 60vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        font-size: 12px;
        line-height: 1.2;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 65%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
    }

    .last-works .work {
        margin: 1px 2px 1px 1px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    div.work:nth-of-type(5) {
        margin: 0 0 0 0;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        display: none;
    }

    /* <-------- END GALLERY--------> */

    /* <-------- START NAV --------> */
    nav {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: '';
    }

    a.navi {
        margin-top: 2px;
        width: 100%;
        padding-top: 12px;
        padding-bottom: 8px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}

@media (max-height: 280px) and (max-width: 653px) {

    /* <-------- START CONTACT--------> */
    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 12px;
        padding: 9px 10px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */

    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 10%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 20px;
        height: 20px;
        margin-left: 30px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 15px;
        font-size: 13px;
    }

    #contact_form {
        margin-left: 30px;
    }

    .formField {
        font-size: 12px;
        width: 300px;
        margin: 1px 0 2px 0;
    }

    textarea.formField {
        /* line-height: 1.2; */
        font-size: 12px;
        width: 300px;
        height: 80px;
        max-width: 300px;
        min-width: 300px;
        min-height: 80px;
        max-height: 80px;
        margin-bottom: -3px;
    }

    #sendBtn {
        line-height: 22px;
        font-size: 11px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 20px;
        margin-left: 20px;
        font-size: 12px;
    }

    .status_ok {
        font-size: 12px;
    }

    .status_err {
        font-size: 12px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 9px 12px 4px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* <-------- END CONTACT--------> */


    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 6vh;
        height: 70vh;
        overflow: scroll;
    }

    .logo {
        padding-bottom: 14px;
        flex-basis: 246px;
    }

    .logo img {
        width: 165px;
        height: 172px;
    }

    h1.name {
        font-size: calc(38px/1.8);
        letter-spacing: calc(3.2px/1.8);
        margin-left: calc(5px/1.8);
    }

    h2.subtitle {
        font-size: calc(22px/1.8);
        letter-spacing: calc(10px/1.8);
        margin-left: calc(11.5px/1.8);
    }

    /* <-------- END HOME --------> */


    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 8vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 90vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        height: 250px;
        overflow: scroll;
        font-size: 12px;
        line-height: 1.25;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 6vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 84%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
        overflow: scroll;
    }

    .last-works .work {
        margin: 0px 2px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        display: none;
    }

    /* <-------- END GALLERY--------> */


    /* <-------- START NAV --------> */
    nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        /* width: 100%; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    a.navi {
        flex-basis: 33.3%;
        margin-top: 2px;
        padding-top: 13px;
        padding-bottom: 9px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}

@media (max-width: 280px) and (orientation: portrait) {

    /* <-------- START CONTACT--------> */
    .contact-line {
        background-color: #d4002b;
        align-self: stretch;
        padding: 1px 0;
    }

    .contact-btn {
        align-self: stretch;
        font-size: 12px;
        padding: 8px 9px;
    }

    .contact-arrow-down {
        display: none;
    }

    /* START FORM EMAIL */
    .contact-open-form {
        position: fixed;
        height: 98vh;
    }

    .close-form {
        height: 20%;
        display: flex;
        align-items: center;
    }

    .close-form .button-close {
        width: 20px;
        height: 20px;
        margin-left: 10px;
        font-size: 12px;
    }

    p.info-text {
        margin-left: 6px;
        font-size: 11px;
    }

    #contact_form {
        position: fixed;
        margin-left: 10px;
    }

    .formField {
        font-size: 11px;
        width: 260px;
        margin: 3px 0 10px 0;
    }

    textarea.formField {
        line-height: 1.2;
        font-size: 12px;
        width: 260px;
        height: 170px;
        max-width: 260px;
        min-width: 260px;
        min-height: 170px;
        max-height: 170px;
    }

    #sendBtn {
        line-height: 30px;
        font-size: 12px;
        padding: 0 24px;
    }

    #send_form_status {
        align-self: flex-start;
        display: none;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 11px;
    }

    .status_ok {
        font-size: 11px;
    }

    .status_err {
        font-size: 11px;
    }

    .contact-email {
        display: none;
    }

    .contact-open-close {
        position: fixed;
    }

    .contact-line-close {
        padding: 1px 0;
    }

    .contact-btn-close {
        align-self: stretch;
        font-size: 13px;
        padding: 9px 12px 4px;
    }

    .contact-arrow-up {
        display: none;
    }

    /* END FORM EMAIL@ */
    /* <-------- END CONTACT--------> */

    /* <-------- START HOME --------> */
    section.homepage {
        padding-top: 10vh;
        height: 80vh;
    }

    .logo {
        padding-bottom: 30px;
        flex-basis: 205px;
    }

    .logo img {
        width: 197px;
        height: 205px;
    }

    h1.name {
        font-size: calc(38px/1.8);
        letter-spacing: calc(3.2px/1.8);
        margin-left: calc(5px/1.8);
    }

    h2.subtitle {
        font-size: calc(22px/1.8);
        letter-spacing: calc(10px/1.8);
        margin-left: calc(11.5px/1.8);
    }

    /* <-------- END HOME --------> */

    /* <-------- START ABOUT ME ------> */
    section.about-me {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 60vh;
    }

    .about-title img {
        width: 153px;
        height: 36px;
        display: none;
    }

    .about-description {
        width: 90vw;
    }

    .photo {
        margin-top: 0px;
    }

    .photo img {
        display: none;
    }

    .describe-me {
        font-size: 12px;
        line-height: 1.2;
    }

    /* <-------- END ABOUT--------> */

    /* <-------- START GALLERY--------> */
    section.last-works {
        padding-top: 1vh;
        padding-bottom: 1vh;
        width: 100%;
        height: 80vh;
    }

    .last-works-title img {
        display: none;
        width: 194px;
        height: 35px;
    }

    .all-works {
        padding-left: 0px;
        padding-right: 0px;
        height: 95%;
        width: 86vw;
        align-self: center;
        display: flex;
        justify-content: center;
        overflow: scroll;
    }

    .last-works .work {
        margin: 1px 2px 1px 1px;
        border: 4px solid #da102d;
        padding: 4px;
        width: 125px;
        height: 125px;
    }

    div.work:nth-of-type(5) {
        margin: 0 0 0 0;
    }

    .work img {
        align-self: center;
        border-radius: 50%;
        width: 109px;
        height: 109px;
        transform: rotate(-10deg);
        object-fit: cover;
    }

    .work a:hover {
        filter: brightness(0.5);
    }

    .last-works .under-button {
        display: none;
    }

    /* <-------- END GALLERY--------> */

    /* <-------- START NAV --------> */
    nav {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: '';
    }

    a.navi {
        margin-top: 2px;
        width: 100%;
        padding-top: 12px;
        padding-bottom: 8px;
        font-size: 12px;
    }

    nav a:hover {
        background-color: #d4002b;
        cursor: pointer;
    }

    /* <--------END NAV --------> */
}