@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://fonts.googleapis.com/css?family=Arimo);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Open Sans", sans-serif;
    font-weight: lighter;
}

a, a:hover, a:active, a:visited {
    color: #333;
    text-decoration: none;
}

a.external, a.external:hover, a.external:active, a.external:visited {
    color: #3260a8;
    text-decoration: underline;
}

a.external:hover {
    color: #143c7a;
}

h1, h2 {
    font-size: 24px;
    font-weight: lighter;
    text-transform: capitalize;
}

textarea, input {
    outline: none;
}

.loading,
.loading * {
    display: none;
}

.hidden, .hide {
    display: none !important;
}

.visible, .show {
    display: block !important;
}

.text-center {
    text-align: center;
}

.no-select {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav {
    position: absolute;
    top: 100px;
    left: 100px;
    width: 200px;
    min-height: 300px;
}

.nav .nav-link {
    display: block;
    width: 100%;
    line-height: 30px;

    transition: all 0.5s;
}

.nav .nav-link:hover {
    transform: translateX(12px);
}

.container {
    position: absolute;
    top: 100px;
    left: 300px;
    padding-right: 30px;
}

.para {
    max-width: 800px;
    padding-right: 100px;
    padding-bottom: 100px;
}

.home-img {
    position: absolute;
    width: 200px;

    animation: home-img 40s ease-in-out 0s forwards;
}

.home-img-2 {
    left: 99px;
}

@keyframes home-img {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.painting {
    float: left;
    width: 120px;
    height: 120px;
    margin-right: 20px;
    margin-bottom: 20px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    overflow: hidden;
    cursor: pointer;

    background-color: #fff;
    animation: fade 0.9s ease-in-out;
}

@keyframes fade {
    0% {
        background-color: #eee;
    }
    100% {
        background-color: #fff;
    }
}

.full-painting {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;

    background: rgba(255,255,255,0.8);
    text-align: center;

    transition: all 0.5s;
}

.full-painting img {
    margin: 50px auto;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 100px);
}

.full-painting .title {
    position: absolute;
    top: 14px;

    width: 100%;
    height: 20px;

    text-align: center;
    font-size: 16px;
}

.full-painting .info {
    position: absolute;
    bottom: 14px;

    width: 100%;
    height: 20px;

    text-align: center;
    font-size: 16px;
}

.full-painting .close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;

    text-align: center;
    font-size: 60px;
    color: #666;
    cursor: pointer;

    background: rgba(255,255,255,0.5);
}

.full-painting .arrow {
    position: absolute;
    top: calc(50% - 30px);
    height: 60px;

    font-size: 60px;
    color: #666;
    cursor: pointer;

    background: rgba(255,255,255,0.5);
}

.full-painting .bt-angle-left {
    left: 30px;
}

.full-painting .bt-angle-right {
    right: 30px;
}

@media (min-width: 1200px) {

}

@media (min-width: 992px) and (max-width: 1199px) {

}

@media (min-width: 768px) and (max-width: 991px) {

}

@media (max-width: 767px) {
    h1, h2 {
        font-size: 18px;
    }

    .nav {
        top: 10px;
        left: 10px;
        width: 140px;
    }

    .nav .nav-title,
    .nav .nav-link {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .container {
        top: 10px;
        left: 150px;
    }

    .home-img {
        width: 120px;
    }

    .home-img-2 {
        left: 0px;
        top: 104px;
    }
}

@media (max-width: 480px) {

}
