/* VARIABLE */
:root {
    --green: #2ccb69;
    --dark-green: #1e9e4f;
    --gray: #bcbcbc;
    --dark: #4d4c4c;
    --black: #000;
    --light: #fff;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    background-color: var(--dark);
}

::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 5px;
}

/* GLOBAL */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -Webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

button {
    cursor: pointer;
}

/* ANIMATION */
@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeFromLeft {
    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes lineDown {
    0% {
        transform: scale(1, 0);
        transform-origin: top center;
    }

    25% {
        transform: scale(1, 1);
        transform-origin: top center;
    }

    75% {
        transform: scale(1, 1);
        transform-origin: top center;
    }

    76% {
        transform: scale(1, 1);
        transform-origin: bottom center;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: bottom center;
    }
}

@keyframes arrowDown {
    0% {
        bottom: 25px;
    }

    30% {
        bottom: 15px;
        opacity: 1;
    }

    70% {
        bottom: 10px;
        opacity: 1;
    }

    100% {
        bottom: 5px;
        opacity: 0;
    }
}

@keyframes slideTopIn {
    to {
        top: 20%;
        opacity: 1;
    }
}

@keyframes scaleRight {
    to {
        transform: scaleX(1);
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}

@keyframes topbarBg {
    from{
        background: transparent;
    }
    to {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=0);
    }
}

@keyframes logoShorten {
    from{
        top: 0;
    }
    to {
        top: -28px;
    }
}

@keyframes logoBig {
    from{
        top: -28px;
    }
    to {
        top: 0;
    }
}

/* TRIGGER TOPBAR */
.vh-trigger-topbar {
    width: 1px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 130px;
    background: transparent;
}

/* RESPONSIVE */
@media screen and (min-width: 320px) {

    .vh-page-wrapper,
    .vh-preloader {
        width: 100%;
        height: 100vh;
        display: table;
        background-color: #1c1c1c;
        border: 30px solid #000;
    }

    .vh-preloader {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 3;
        position: absolute;
        text-align: center;
        position: fixed;
    }

    .vh-preloader img {
        height: 100px;
    }

    .vh-overlay,
    .vh-menu-overlay {
        width: 100%;
        height: 100vh;
        display: none;
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
        background-color: rgba(44, 203, 105, .95);
    }

    .vh-modal {
        width: 90%;
        position: fixed;
        display: none;
        padding: 30px;
        border-radius: 0 30px 30px 30px;
        top: -100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 4;
        opacity: 0;
    }

    .vh-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .vh-close-modal {
        border: none;
        background-color: transparent;
        color: var(--green);
        font-size: 20px;
    }

    .vh-social-links-modal p {
        font-weight: 700;
        margin-bottom: .5em;
    }

    .vh-social-links-modal a {
        text-decoration: none;
        color: var(--green);
    }

    .vh-social-links-modal a:hover {
        text-decoration: underline;
    }

    .vh-topbar {
        width: 100%;
        height: 110px;
        display: flex;
        background: transparent;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
    }

    .vh-topbar-bg {
        animation: topbarBg .2s ease-out forwards;
    }

    .vh-logo {
        width: 74px;
        height: 110px;
        margin-left: 60px;
        background-color: var(--green);
        border-bottom-right-radius: 37px;
        position: relative;
    }

    .vh-logo-big {
        animation: logoBig .2s ease-out forwards;
    }

    .vh-logo-shorten {
        animation: logoShorten .2s ease-out forwards;
    }

    .vh-logo img {
        width: 60px;
        height: 36px;
        display: block;
        margin: 50px auto 0;
    }

    .vh-menu {
        display: none;
    }

    .vh-btn-menu-mobile {
        width: 54px;
        height: 54px;
        display: block;
        border-radius: 50%;
        border: none;
        background-color: var(--green);
        color: var(--black);
        cursor: pointer;
        position: fixed;
        right: 30px;
        top: 30px;
        z-index: 6;
        font-size: 30px;
        transition: all .3s cubic-bezier(.215, .610, .355, 1);
    }

    .vh-menu-mobile {
        display: block;
        background-color: var(--black);
        width: 240px;
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 5;
        padding: 100px 30px 30px;
        transition: all .3s cubic-bezier(.215, .610, .355, 1);
    }

    .vh-menu-is-opened {
        right: 0;
    }

    .vh-menu-is-closed {
        right: -250px;
    }

    .vh-menu-mobile a {
        width: 100%;
        height: 60px;
        line-height: 60px;
        color: var(--light);
        font-family: 'Open Sans', sans-serif;
        display: block;
        text-decoration: none;
    }

    .vh-btn-contact {
        width: 45px;
        height: 45px;
        display: block;
        background-color: var(--green);
        background-image: url('../images/icon-contact-close.svg');
        background-repeat: no-repeat;
        position: fixed;
        bottom: 45px;
        right: 45px;
        border-radius: 50%;
        z-index: 3;
        transition: all .3s ease-out;
        cursor: pointer;
        border: none;
    }

    .vh-contact-info {
        width: 300px;
        height: 180px;
        padding: 25px;
        position: fixed;
        bottom: 115px;
        right: 65px;
        z-index: 3;
        display: none;
    }

    .vh-social-links,
    .vh-social-links-about {
        width: 100%;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .vh-social-links-about {
        max-width: 50%;
    }

    .vh-social-links-about a {
        font-size: 25px;
        transition: all .3s;
    }

    .vh-social-links-about a:hover {
        color: var(--gray);
    }

    .vh-corner {
        width: 25px;
        height: 25px;
    }

    .vh-corner:after {
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        bottom: -20px;
        right: 0;
        background: transparent url('../images/corner.svg') no-repeat;
    }

    /* HOME */
    .vh-display-text {
        margin-top: 10%;
    }

    .vh-home-presentation {
        position: relative;
        text-align: center;
    }

    .vh-home-presentation button {
        margin-left: auto;
        margin-right: auto;
        z-index: 2;
    }

    .vh-home-presentation h1 {
        margin-top: 60px;
    }

    /* HOME - PROJECTS */
    .vh-projects-navigator {
        width: 68%;
        display: table;
        height: auto;
        position: absolute;
        left: 0;
        bottom: 15px;
        z-index: 2;
    }

    .vh-navigator-counter {
        width: 100%;
        height: 90px;
        display: block;
        margin-bottom: 50px;
        position: relative;
    }

    .vh-navigator-counter:before {
        content: '';
        display: block;
        width: 35px;
        height: 150%;
        background-color: #1c1c1c;
        position: absolute;
        top: 0;
        left: 0;
    }

    .vh-navigator-counter span {
        font-family: 'Open Sans', sans-serif;
        font-size: 120px;
        font-weight: 600;
        line-height: 90px;
    }

    .vh-item-navigator {
        width: 100%;
        display: table;
    }

    .vh-item-navigator a {
        width: 20px;
        height: 1px;
        display: block;
        margin: 0 0 50px 35px;
        background-color: #4d4d4d;
    }

    .vh-item-navigator a.vh-item-active {
        background-color: var(--green);
    }

    .vh-item-navigator a:last-child {
        margin-bottom: 30px;
    }

    .vh-items-next-prev {
        width: 100%;
        height: 45px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #2c2c2c;
    }

    .vh-item-prev,
    .vh-item-next {
        color: var(--green);
        font-size: 25px;
        cursor: pointer;
    }

    .vh-item-counter {
        font-family: 'Open Sans', sans-serif;
        color: #4d4c4c;
    }

    .vh-item-counter span:nth-child(1) {
        color: var(--gray);
    }

    .vh-slider-container {
        display: block;
        overflow: hidden;
        padding-bottom: 120px;
    }

    .vh-slider-list {
        width: auto;
        display: block;
        list-style: none;
        height: 700px;
        padding: 0;
    }

    .vh-projects-list {
        list-style: none;
        padding-left: 0;
    }

    .vh-slider-list .vh-projects-item {
        display: block;
        float: left;
        height: auto;
        margin-top: 0;
    }

    .vh-projects-list .vh-projects-item {
        margin-bottom: 30px;
    }

    .vh-slider-list .vh-projects-item-info {
        width: 100%;
        display: table;
        margin-top: 15px;
        position: relative;
        opacity: 0;
    }

    .vh-projects-list .vh-projects-item-info {
        width: calc(100% - 105px);
    }

    .vh-slider-list .vh-projects-item-info p {
        text-align: center;
    }

    .vh-slider-list .vh-projects-item-info a {
        margin: 0 auto;
    }

    .vh-slider-list .vh-projects-item-thumb {
        width: 100%;
        display: table;
        padding: 30px 0 19px 0;
        position: relative;
    }

    .vh-projects-list .vh-projects-item-thumb {
        width: 100%;
        display: table;
        padding: 75px 0 19px 0;
        position: relative;
    }

    .vh-slider-list .vh-projects-item-thumb>a {
        margin: 17px auto 0 auto;
        float: none;
    }

    .vh-projects-list .vh-projects-item-thumb>a {
        margin: 17px auto 0;
    }

    .vh-slider-list .vh-projects-item-box,
    .vh-projects-list .vh-projects-item-box {
        width: 100%;
        height: 100%;
        display: block;
        background-color: #2c2c2c;
        position: absolute;
        top: 0;
        left: 0;
        transform: scaleX(0);
    }

    .vh-projects-list .vh-projects-item-box {
        width: 100%;
        height: 100%;
        display: block;
        background-color: #2c2c2c;
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: right;
    }

    .vh-slider-list .vh-projects-item-thumb img {
        width: 90%;
        max-width: 90%;
        height: auto;
        position: relative;
        left: 5%;
        transform: scale(0);
    }

    .vh-projects-list .vh-projects-item-thumb img {
        width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
    }

    /* PROJECTS */
    .vh-section-offset-top {
        margin-top: 130px;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info,
    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info {
        width: 100%;
        text-align: center;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info a,
    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info a {
        float: none;
        margin: 0 auto;
    }

    .vh-projects-list .vh-projects-item:nth-child(even)>.row {
        flex-direction: row-reverse;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info {
        width: 100%;
        margin-left: 0;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-thumb img {
        display: block;
    }

    /* SCROLL DOWN */
    .vh-scroll-down {
        width: 70px;
        height: 105px;
        border-radius: 35px 35px 0 0;
        background-color: var(--green);
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        margin: 0 auto;
    }

    .vh-arrow-down {
        width: 100%;
        height: 75px;
        display: table;
        margin-top: 30px;
        position: relative;
    }

    .vh-arrow-down img {
        width: 16px;
        height: 10px;
        display: block;
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        margin: 0 auto;
        opacity: 0;
        animation: arrowDown 1.5s linear 1.5s infinite;
    }

    .vh-arrow-down:before {
        content: '';
        width: 2px;
        height: 45px;
        background-color: var(--black);
        display: block;
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        margin: 0 auto;
        animation: lineDown 1.5s ease-out 1.5s infinite;
        transform-origin: top center;
    }

    /* UTILITY CLASSES */
    .vh-title-xlarge {
        font-size: 90px;
    }

    .vh-title-large {
        font-size: 36px;
        text-align: center;
    }

    .vh-full-height {
        height: auto;
        position: relative;
    }

}

@media screen and (min-width: 576px) {
    #coding {
        margin-top: 25%;
    }
}

@media screen and (min-width: 768px) {
    #coding {
        margin-top: 18%;
    }

    /* UTILITY CLASSES */
    .vh-title-large {
        font-size: 48px;
    }
}

@media screen and (min-width: 992px) {

    .vh-menu-mobile,
    .vh-btn-menu-mobile {
        display: none;
    }

    .vh-menu {
        display: table;
        height: 110px;
        margin-top: 50px;
    }

    .vh-menu a {
        text-decoration: none;
        font-size: 16px;
        color: var(--gray);
        font-family: 'Open Sans';
        text-transform: lowercase;
        padding: 0 10px;
        margin-left: 20px;
        position: relative;
    }

    .vh-menu a:first-child {
        margin-left: 30px;
    }

    .vh-menu a:hover {
        color: var(--green);
    }

    .vh-menu a:before {
        content: '';
        width: 0;
        height: 4px;
        background-color: var(--green);
        display: block;
        position: absolute;
        bottom: -6px;
        left: 0;
        transition: all .3s ease-out;
    }

    .vh-menu a:hover:before {
        width: 100%;
    }

    #coding {
        margin-top: 18%;
    }

    .vh-home-presentation {
        text-align: left;
    }

    .vh-home-presentation button {
        margin-left: 0;
    }

    .vh-home-presentation h1 {
        margin-top: 0;
    }

    .vh-projects-navigator {
        width: 145px;
        height: 400px;
        left: 0;
        top: 26vh;
    }

    .vh-slider-container {
        padding-bottom: 0;
    }

    .vh-slider-list .vh-projects-item {
        display: block;
        float: left;
        height: 500px;
        margin-top: calc(36vh - 75px);
    }

    .vh-slider-list .vh-projects-item-thumb {
        padding: 30px 0 19px 0;
    }

    .vh-slider-list .vh-projects-item-thumb img {
        width: 110%;
        max-width: 110%;
        left: -65px;
    }

    .vh-slider-list .vh-projects-item-thumb>a {
        margin: 25px 5% 0 0;
        float: right;
    }

    .vh-slider-list .vh-projects-item-info {
        margin-left: 15px;
        left: -75px;
    }

    .vh-slider-list .vh-projects-item-info {
        width: 100%;
        display: table;
        margin-top: 64px;
        position: relative;
        opacity: 0;
    }

    .vh-slider-list .vh-projects-item-info a {
        margin: 0;
    }

    .vh-projects-list .vh-projects-item {
        margin-bottom: 100px;
    }



    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info {
        text-align: right;
        margin-top: 70px;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info a {
        float: right;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info h1,
    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-info p {
        text-align: right;
    }

    .vh-projects-list .vh-projects-item-thumb {
        padding: 30px 0 19px 0;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info {
        margin-left: 105px;
        margin-top: 70px;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info {
        margin-top: 70px;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info h1,
    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info p {
        text-align: left;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-info a {
        float: left;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-thumb img {
        left: 75px;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-thumb img {
        right: 75px;
    }

    .vh-projects-list .vh-projects-item:nth-child(odd) .vh-projects-item-thumb>a {
        margin-top: 17px;
        margin-right: 75px;
        float: right;
    }

    .vh-projects-list .vh-projects-item:nth-child(even) .vh-projects-item-thumb>a {
        margin-top: 17px;
        margin-left: 75px;
        float: left;
    }

    .vh-navigator-counter span {
        font-size: 100px;
    }

    .vh-navigator-counter:before {
        width: 30px;
    }

    /* UTILITY CLASSES */
    .vh-title-xlarge {
        font-size: 120px;
    }

    .vh-title-large,
    .vh-slider-list .vh-projects-item-info p {
        text-align: left;
    }

    .vh-full-height {
        height: calc(100vh - 30px);
    }
}

@media screen and (min-width: 1200px) {
    #coding {
        margin-top: 13%;
    }

    .vh-slider-list .vh-projects-item-thumb {
        padding: 75px 0 19px 0;
    }

    .vh-slider-list .vh-projects-item-thumb img {
        width: 100%;
        max-width: 100%;
        left: -75px;
    }

    .vh-slider-list .vh-projects-item-thumb>a {
        margin-right: 75px;
    }

    .vh-navigator-counter span {
        font-size: 120px;
    }

    .vh-navigator-counter:before {
        width: 35px;
    }

    .vh-slider-list .vh-projects-item {
        margin-top: calc(26vh - 75px);
    }

    .vh-modal {
        width: 800px;
    }

    .vh-projects-list .vh-projects-item-thumb {
        padding: 75px 0 19px 0;
    }

    /* UTILITY CLASSES */
    .vh-title-large {
        font-size: 64px;
    }
}

@media screen and (min-width: 1364px) {}

@media screen and (min-width: 1600px) {}

/* UTILITY CLASSES */
.vh-abril-fatface {
    font-family: 'Abril Fatface', serif;
    font-weight: 400;
}

.vh-open-sans {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}

.vh-text-green {
    color: var(--green);
}

.vh-text-dark {
    color: var(--dark);
}

.vh-text-light {
    color: var(--gray);
}

.vh-text-black {
    color: var(--black);
}

.vh-bg-green {
    background-color: var(--green);
}

.vh-bg-dark {
    background-color: var(--dark);
}

.vh-bg-light {
    background-color: var(--gray);
}

.vh-bg-black {
    background-color: var(--black);
}

.vh-mar-top-30 {
    margin-top: 30px;
}

.vh-mar-top-60 {
    margin-top: 60px;
}

.vh-mar-bottom-15 {
    margin-bottom: 15px;
}

.vh-mar-bottom-30 {
    margin-bottom: 30px;
}

.vh-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vh-no-padding {
    padding: 0 !important;
}

.vh-no-radius-left {
    border-radius: 0 23px 23px 0;
}

.vh-radius-left {
    border-radius: 23px;
}

.vh-page-list {
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
}

.vh-page-list>li {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 15px;
    position: relative;
    margin-left: 20px;
}

.vh-page-list>li:before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: -20px;
    background-color: var(--green);
}

/* BEHAVIOR CLASSES */
.vh-is-open {
    display: block;
}

.vh-change-icon {
    background-position-y: -45px;
}

.vh-nav-link[aria-current="page"] {
    color: var(--green);
}

.vh-fade-out {
    animation: fadeOut 2s forwards ease-out;
}

.vh-fade-from-left {
    animation: fadeFromLeft 2s .8s forwards cubic-bezier(0, 1.01, .32, 1);
}

.vh-slide-top-in {
    animation: slideTopIn .6s forwards cubic-bezier(0, 1.08, .6, .89);
}

.vh-scale-right {
    animation: scaleRight 1s .2s forwards cubic-bezier(0, 1.01, .32, 1);
}

.vh-scale-up {
    animation: scaleUp .7s .5s forwards cubic-bezier(0, 1.01, .32, 1);
}

/* BUTTONS */
.vh-btn {
    display: table;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    border: none;
    transition: all .2s ease-out;
    text-transform: lowercase;
    position: relative;
    text-decoration: none;
}

.vh-btn-sm {
    height: 28px;
    line-height: 28px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 11px;
}

.vh-btn-md {
    height: 38px;
    line-height: 38px;
    padding: 0 27px;
    border-radius: 19px;
    font-size: 14px;
}

.vh-btn-lg {
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    border-radius: 23px;
    font-size: 16px;
}

.vh-btn-green {
    background-color: var(--green);
    color: var(--dark);
}

.vh-btn-green:hover {
    background-color: var(--dark-green);
    color: var(--light);

    transform: scale(1.1);
}

.vh-btn-dark {
    background-color: #141414;
    color: var(--green);
}

.vh-btn-dark:hover {
    background-color: #000;
    color: var(--green);
}