/* Body
	* --------------------------------------- */

body,
html {
    font-family: 'Quicksand', sans-serif;
    background-color: #000000;
    color: #fff;
    z-index: 0;
    position: relative;
    font-size: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 200%;
}

body:after {
    content: '';
    background-color: rgba(0, 0, 0, 1);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/* Style for our header texts
	* --------------------------------------- */

h1 {
    font-size: 2.0em;
    color: #fff;
    margin: 0;
    line-height: 90%;
    font-weight: 100;
    text-transform: uppercase;
}

.intro {
    width: 30%;
    position: relative;
    text-align: center;
    animation: fadein ease-out 1500ms;
    animation-delay: 500ms;
    -moz-animation: fadein ease-out 1500ms;
    /* Firefox */
    -moz-animation-delay: 500ms;
    -webkit-animation: fadein ease-out 1500ms;
    /* Safari and Chrome */
    -webkit-animation-delay: 500ms;
    -o-animation: fadein ease-out 1500ms;
    /* Opera */
    opacity: 0;
    animation-fill-mode: forwards;
    margin: 0 auto;
}

@keyframes fadein {
    0% {
        opacity: 0;
        margin-bottom: -30px;

    }

    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    0% {
        opacity: 0;
        margin-bottom: -30px;

    }

    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    0% {
        opacity: 0;
        margin-bottom: -30px;

    }

    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}


.intro h1 {
    font-size: 2em;
    text-transform: uppercase;
    margin-top: 30px;

}

.into img {
    width: 20vw;
    height: auto;
    min-width: 150px;
}

.gradient {
    background: -webkit-linear-gradient(left, rgba(135, 0, 255, 1), rgba(241, 86, 35, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}


h2 {
    font-size: 2em;
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    margin: 0;
    line-height: 130%;
    text-transform: uppercase;

}


/* Centered texts in each section
	* --------------------------------------- */

.section {
    text-align: center;
}

.dark {
    background-color: #000000;
}

.medium-dark {
    background-color: rgba(0, 0, 0, 0.3);
}

.very-dark {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Overwriting styles for the navigation dots (to place it where we want)
	* --------------------------------------- */

.fp-slidesNav.bottom {
    bottom: 25px;
}


/* Buttons Links
	* --------------------------------------- */

a.button {
    margin: 0 5px;
    padding: 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.25s ease;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 50px;
    font-family: 'Quicksand', sans-serif;
}

a.button:after {
    position: relative;
    content: '';
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 30%;
    left: 35%;
    height: 3px;
    border-radius: 2px;
    bottom: 0;
    opacity: 1;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8700ff+0,f15623+100 */
    background: rgb(135, 0, 255);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8700ff', endColorstr='#f15623', GradientType=1);
    /* IE6-9 */
}

a.button:before {
    position: absolute;
    content: '';
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 50px;
    border-radius: 2px;
    top: 10px;
    opacity: 0;
    background: rgb(135, 0, 255);
    background: -moz-linear-gradient(left, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    background: linear-gradient(to right, rgba(135, 0, 255, 1) 0%, rgba(241, 86, 35, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8700ff', endColorstr='#f15623', GradientType=1);
    filter: blur(20px);
    z-index: -1;
}

a.button:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


a.button:hover:after {
    width: 100%;
    opacity: 1;
    left: 0;
}

a.button:hover:before {
    opacity: 0.4;
}

a.link {
    padding: 15px 25px;
    text-transform: uppercase;
    font-size: 0.7em;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

a.link:hover {
    text-decoration: underline;
    transition: all 0.3s ease;
}


/* Menu
    * --------------------------------------- */

#menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.menu-list {
    margin-top: 10%;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2em;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
}

.menu-list-item {
    position: relative;
    color: transparent;
    cursor: pointer;
    margin: 20px 0px;
    top: 30vh;
}

.menu-list-item a {
    text-decoration: none;
    color: transparent;
}



.menu-list-item a:hover {}

.menu-list .active a {
    background: -webkit-linear-gradient(left, rgba(135, 0, 255, 1), rgba(241, 86, 35, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mask {
    display: block;
    position: absolute;
    overflow: hidden;
    color: #fff;
    top: 0;
    height: 49%;
    transition: all 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}

.mask span {
    display: block;
}

.mask + .mask {
    top: 48.9%;
    height: 51.1%;
}

.mask + .mask span {
    -webkit-transform: translateY(-49%);
    transform: translateY(-49%);
}

.menu-list-item:hover .mask,
.menu-list-item:active .mask {
    color: #FFF;
    -webkit-transform: skewX(12deg) translateX(5px);
    transform: skewX(12deg) translateX(5px);
}

.menu-list-item:hover .mask + .mask,
.menu-list-item:active .mask + .mask {
    -webkit-transform: skewX(12deg) translateX(-5px);
    transform: skewX(12deg) translateX(-5px);
}

.menu-list-item:hover::before,
.menu-list-item:active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Footer
    * --------------------------------------- */


.footer-bar {
    display: block;
    position: absolute;
    bottom: 0px;
    height: 150px;
    width: 100%;
    font-size: 30px;
    text-align: center;
    line-height: 75px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
}

.lightwidget-widget {
    height: 100vh !important;
    width: 100%;
    border: 0;
    overflow: hidden;
    position: relative;
    z-index: -1;
}


.show {
    visibility: visible !important;
    opacity: 1 !important;
}

.blur {
    filter: grayscale(100%) blur(3px) !important;
}

#hamburger {
    width: 50px;
    height: 45px;
    position: fixed;
    margin: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    cursor: pointer;
    z-index: 9999;
    transform: scale(0.6);
}

#hamburger:hover {
    transform: scale(0.7);
}

#hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}



#hamburger span:nth-child(1) {
    top: 0px;
}

#hamburger span:nth-child(2),
#hamburger span:nth-child(3) {
    top: 18px;
}

#hamburger span:nth-child(4) {
    top: 36px;
}

#hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


/* Logo
	* --------------------------------------- */


a.logo img {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    opacity: 0.1;
}


a.logo:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* portfiolio
	* --------------------------------------- */

.portfolio-item {
    display: block;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    top: 0;
    background-color: #000;
}

.portfolio-image img {
    z-index: 0;
    position: relative;
    display: block;
    margin: 0 auto;
    height: auto;
    width: auto;
    height: 100%;
    top: 0px;
    left: 10%;
}


.portfolio-image img:after {
    content: '';
    z-index: -1;
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
}


.portfolio-discription {
    width: 35vw;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    z-index: 0;
    position: absolute;
    margin: 0;
    color: #fff;
    font-size: 1.8em;
    text-align: left;
    z-index: 2;
    left: 0;
    top: 0;
    line-height: 160%;
}

.portfolio-discription span {
    display: block;
    position: relative;
    padding: 0 0 0 20%;
    top: 15%;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0;
    z-index: 2;
    overflow: hidden;
    right: 0px;
    opacity: 0.9;
}

.light-portfolio {
    background-color: #000;
}

.dark-portfolio {
    background-color: #000;
}

.portfolio-image:before {
    content: '';
    width: 70vw;
    height: 300%;
    display: block;
    position: absolute;
    margin: 0;
    z-index: 2;
    left: -15%;
    transform: rotate(0deg);
    background-color: #000000;
    z-index: 99999;
    top: -100%;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    transform: rotate(30deg);
}

.portfolio-image:after {
    content: '';
    width: 60vw;
    height: 200%;
    display: block;
    position: absolute;
    margin: 0;
    z-index: 2;
    right: -20%;
    transform: rotate(0deg);
    background-color: #000000;
    z-index: 99999;
    top: -25%;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    transform: rotate(30deg);
}


.fp-slides:hover div div .portfolio-item .portfolio-image:after {
    right: -35%;


}

.fp-slides:hover div div .portfolio-item .portfolio-image:before {
    left: -30%;

}



/* portfiolio
	* --------------------------------------- */

.about-text {
    display: block;
    width: 50vw;
    margin: 0 auto;
    height: auto;
    font-size: 1.8em;
    line-height: 160%;
}


/*!
 * fullPage 2.9.5
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */

html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box;
    /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide,
.fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;

}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    border-radius: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.fp-controlArrow.fp-prev,
.fp-controlArrow.fp-next {

    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.fp-controlArrow.fp-prev:hover,
.fp-controlArrow.fp-next:hover {
    -webkit-transform: rotate(45deg) scale(1.15);
    -moz-transform: rotate(45deg) scale(1.15);
    -ms-transform: rotate(45deg) scale(1.15);
    -o-transform: rotate(45deg) scale(1.15);
    transform: rotate(45deg) scale(1.15);
}

.fp-controlArrow.fp-prev {
    left: 30px;
    width: 30px;
    height: 30px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    transform: rotate(45deg);
}

.fp-controlArrow.fp-next {
    right: 30px;
    width: 30px;
    height: 30px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}

.fp-scrollable {
    overflow: hidden;
    position: relative;
}

.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    border: 0 !important;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
    right: 17px;
}

#fp-nav.left {
    left: 17px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #fff;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}


/* Responsive breakpoints
	* --------------------------------------- */

@media all and (max-width: 1690px) {
    .portfolio-discription {
        font-size: 1.6em;
    }

    .about-text {
        font-size: 1.em;
    }

    .intro h1 {
        font-size: 2em;
    }
}

@media all and (max-width: 1280px) {
    .logo {
        transform: scale(0.7);
        font-size: 1em;
    }

    a.logo-small {
        transform: scale(0.4);
        font-size: 0.7em;
        height: 250px;
    }

    .about-text {
        width: 90vw;
        top: 0%;
        position: relative;
    }

    .intro h1 {
        font-size: 2em;
    }

    a.button {
        margin: 10px 0;
    }

    .portfolio-discription {
        width: 30vw;
        font-size: 1.4em;
        bottom: auto;
        top: 5%;
    }

    .portfolio-discription span {
        display: block;
        position: absolute;
        padding: 10%;
        top: 10%;
    }

    .portfolio-discription h1 {
        font-size: 2.4em;
    }

    .fp-controlArrow {
        display: none;
    }

    .fp-slidesNav.bottom {
        bottom: 10px;
    }
}

@media all and (max-width: 950px) {
    .about-text {
        font-size: 1.6em;
    }


    .portfolio-image {
        width: 100vw;
        height: 30vh;
        position: relative;
        opacity: 0.F##9;
    }

    .portfolio-image:after,
    .portfolio-image:before {
        display: none;
    }

    .portfolio-image img {
        top: 0%;
        left: 0;
        margin: 0 auto;
        height: auto;
        width: 100%;
        transform: none;
        max-height: 70vh;
        max-width: max-content;
    }

    .portfolio-discription {
        width: 100vw;
        font-size: 1.2em;
        position: relative;
        top: 0;
    }

    .portfolio-discription span {
        display: block;
        position: relative;
        padding: 5%;
        width: 90%;
        top: 5%;
    }

    .fp-slidesNav.bottom {
        bottom: 10px;
    }

    .hide-mobile {
        display: none !important;
    }
}

@media all and (max-width: 740px) {
    a.logo-small {
        display: none;
    }

    .about-text {
        width: 90vw;
        font-size: 1.1em;
        top: 5%;
    }




    .fp-slidesNav.bottom {
        bottom: 10px;
    }

    .lightwidget-widget {
        height: 90vh !important;
    }
}

@media all and (max-width: 480px) {
    a.logo-small {
        display: none;
    }
    
    .portfolio-image {
        max-height: 30vh;
    }

    .portfolio-discription span {
        top: 2%;
    }

    .portfolio-discription, .about-text {
        font-size: 1em
        ;
    }

    .portfolio-image.light-portfolio:after {
        display: block;
        transform: rotate(-8deg);
        left: 0px;
        top: 20vh;
        width: 250vw;
    }


    a.button {
    font-size: 15px;
    }


    
    h1 {
        font-size: 1.5em !important;
    }

    .about-text {
        font-size: 1.1em
    }


    .fp-slidesNav.bottom {
        bottom: 10px;
    }

    a.logo img {
        width: 100%;
        height: auto;
    }

    .intro h1 {
        font-size: 1em;
    }

    .intro {
        width: 88%;
    }
}