@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('../fonts/anton-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/oswald-300.woff2') format('woff2');
}

@keyframes entryAnimation {
    0% {
        transform: translateY(50px) rotate(-10deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.lkwebs-portfolio {
    position: relative;
    width: 100%;
    background-color: #000091;
    padding: 40px 0;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .lkwebs-portfolio {
        padding: 40px 0;
        height: calc(100vh - 2 * .625rem - 2 * .938rem);
    }
}

.lkwebs-portfolio__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}

.lkwebs-portfolio__content {
    display: flex;
    flex-wrap: wrap;
}

a.lkwebs-portfolio__item {
    position: relative;
    z-index: 10;
    flex: 0 0 100%;
    display: flex;
    align-items: flex-end;
    text-transform: uppercase;
    margin: 10px 0;
    text-decoration: none;
    animation: entryAnimation .4s ease-out forwards;
    transform: translateY(50px) rotate(-10deg);
    opacity: 0;
}

a.lkwebs-portfolio__item:nth-of-type(2) {
    animation-delay: .1s;
}

a.lkwebs-portfolio__item:nth-of-type(3) {
    animation-delay: .2s;
}

a.lkwebs-portfolio__item:nth-of-type(4) {
    animation-delay: .3s;
}

a.lkwebs-portfolio__item:nth-of-type(5) {
    animation-delay: .4s;
}

a.lkwebs-portfolio__item:nth-of-type(6) {
    animation-delay: .5s;
}

a.lkwebs-portfolio__item:nth-of-type(7) {
    animation-delay: .6s;
}

a.lkwebs-portfolio__item:nth-of-type(8) {
    animation-delay: .7s;
}

a.lkwebs-portfolio__item:nth-of-type(9) {
    animation-delay: .8s;
}

a.lkwebs-portfolio__item:nth-of-type(10) {
    animation-delay: .9s;
}

@media screen and (min-width: 768px) {
    a.lkwebs-portfolio__item {
        flex: 0 0 auto;
        margin-right: 25px;
    }
}

.lkwebs-portfolio__item:hover .lkwebs-portfolio__item-title,
.lkwebs-portfolio__item:hover .lkwebs-portfolio__item-sub-title,
.lkwebs-portfolio__item.active .lkwebs-portfolio__item-title,
.lkwebs-portfolio__item.active .lkwebs-portfolio__item-sub-title {
    color: black;
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__item:hover .lkwebs-portfolio__item-title,
    .lkwebs-portfolio__item:hover .lkwebs-portfolio__item-sub-title,
    .lkwebs-portfolio__item.active .lkwebs-portfolio__item-title,
    .lkwebs-portfolio__item.active .lkwebs-portfolio__item-sub-title {
        color: #000091;
    }
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__item.hover-inactive .lkwebs-portfolio__item-title,
    .lkwebs-portfolio__item.hover-inactive .lkwebs-portfolio__item-sub-title {
        color: white;
    }
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__item:hover + .lkwebs-portfolio__img {
        opacity: 1;
    }
}

.lkwebs-portfolio__item-title {
    font-weight: 400;
    font-size: 34px !important;
    line-height: 1 !important;
    font-family: 'Anton', sans-serif;
    margin: 0;
    color: white;
    transition: color .3s;
}

@media screen and (min-width: 768px) {
    .lkwebs-portfolio__item-title {
        font-size: 46px !important;
    }
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__item-title {
        font-size: 62px !important;
    }
}

@media screen and (min-width: 1200px) {
    .lkwebs-portfolio__item-title {
        font-size: 82px !important;
    }
}

.lkwebs-portfolio__item-sub-title {
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    color: white;
    transition: color .3s;
    margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
    .lkwebs-portfolio__item-sub-title {
        margin-bottom: 4px;
    }
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__item-sub-title {
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 1200px) {
    .lkwebs-portfolio__item-sub-title {
        font-size: 20px;
        margin-bottom: 7x;
    }
}

.lkwebs-portfolio__img {
    display: none;
}

@media screen and (min-width: 992px) {
    .lkwebs-portfolio__img {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity .3s;
    }

}

@media screen and (min-width: 768px) {
    #g-navigation {
        position: fixed !important;
        width: 100% !important;
        opacity: 1;
        transition: opacity .5s, transform .5s;
        transform: translateY(0);
    }

    #g-navigation.inactive-hidden {
        opacity: 0;
        transform: translateY(-10px);
    }

    #g-header {
        margin-top: 0 !important;
    }

    #lkwebs-portfolio-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        transition: opacity .5s, transform .5s;
        transform: translateY(0);
    }

    #lkwebs-portfolio-footer.inactive-hidden {
        opacity: 0;
        transform: translateY(10px);
    }

    .edit-link {
        display: none;
    }
}

@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
    .g-home-particles.g-helium-style #g-header {
        padding-top: 0 !important;
    }
}