
* {

    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;

}

body {

    background: #000;
    color: #898989;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;


}

body, html {

    height: 100%;
}

img {
    max-width: 100%;
    display: block;
}

.title, .series-title {
    color:#b8a07e;
}



.padding {

    padding-top: 5%;
    padding-bottom: 5%;
}

.navbar-light .navbar-nav .nav-link:focus, 
.demo a:focus, 
#breadcrumbs a:focus, 
.social a:focus, 
.painting-holder a:focus, 
#collection-holder figure a:focus, 
#contact p a:focus, #contactForm button:focus {

    outline: none !important;
}

#contactForm button:focus {
    box-shadow: none !important;
}


.fancybox-caption {

    font-size: 13px !important;
    color: #b8a07e !important;
}

.fancybox-progress {

    background:blue !important;
}

.fancybox-thumbs__list a:before {

    border:4px solid blue !important;
}




/****** NAVIGATION ******/

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(184, 160, 126)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar {
    background-color: #000;
    padding: 0;

}

.navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    color: #999999 !important;
    line-height: 3.14286;
    font-weight: 500;
    letter-spacing: -.01em;
    text-transform: capitalize;


}



.navbar-light .navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #b8a07e !important;
}


/****** VIDEO SECTION ******/

.demo a span i {

    color: #f1f1f1;
    padding-top: 9px;
    padding-left: 3px;
}

.demo a span {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -22px;
    border: 1px solid #f1f1f1;
    border-radius: 100%;
    box-sizing: border-box;
}
.demo a span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
}
.demo a span::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 0 rgba(255,255,255,.1);
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: sdb03 3s infinite;
    animation: sdb03 3s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 50px rgba(255,255,255,.1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 50px rgba(255,255,255,.1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


.page-hero {

    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.fullscreen-video-wrap {

    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100vh;
    overflow: hidden;

}

.fullscreen-video-wrap video {

    min-height: 100%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    object-fit: cover;

}

.video-overlay {

    position: absolute;
    top:0;
    left:0;
    width:100vw;
    height: 100vh;
    background: #000000;
    z-index: 1;
    opacity:0.8;
}


.video-content {

    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index:2;
}

.demo h1 {
    color: #f1f1f1 !important;
    letter-spacing: 2px;


}

.demo b {

    letter-spacing: 0.4em;
    text-decoration: none;
    color: #ffffff;
    margin-left: -15px;
}





/****** ABOUT PAGE ******/

#artwork-link a, #artwork-link .fas {

    color: #f1f1f1;
    text-decoration: none;
}

#artwork-link a:focus {
    outline: none;
}

#statement strong {
    color: #b8a07e;
}

#about h4, #statement h4 {

    color: #b8a07e;
    font-size: 18px;
}
/****** PAINTINGS PAGE******/

.painting-holder .hovereffect:hover img{
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

.hovereffect {
    width:100%;
    height:100%;
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.hovereffect img {
    width: 100%;
    height: 100%;
    position:relative;
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
    backface-visibility: hidden;
}

.painting-holder .overlay {
    position:absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;

}

.painting-holder:hover .overlay{
    width: 100%;
}

.painting-holder p{
    font-size: 15px;
    color:#777777;
}

.painting-holder .text {
    color: #b8a07e;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    white-space: nowrap;
}

/****** CONTACT PAGE ******/


#contact p a {

    color: #b8a07e;
    text-decoration: none;
}

.btn {

    background: none;
    border-radius: 0;
    border: none;
    color: #f1f1f1;
    font-size: 12px;
    padding: 0 30px;
    text-transform: uppercase;
}

label {

    text-transform: uppercase;
    font-size: 12px;

}

.btn:hover {

    color: #b8a07e;
}


.form-control {

    border-radius: 0;
    background-color: transparent;
    border:none;
    font-size: 14px;

}

.form-control:focus{
    box-shadow: none;
    border: 1px solid #b8a07e;
    background-color: transparent;
}

.form-control input {

    border-radius: 0;
    background-color: transparent;
    border: 1px solid #999999;
    height: 50px;
    color: #999999;
    font-size: 15px;
    padding: 10px;
}

.form-control textarea {

    border-radius: 0;
    background-color: transparent;
    border: 1px solid #999999;
    color: #999999;
    font-size: 15px;
    padding: 10px;
}

.form-control-success,
.form-control-warning,
.form-control-danger {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right 0.5625rem;
    -webkit-background-size: 1.125rem 1.125rem;
    background-size: 1.125rem 1.125rem;
}

.has-success .form-control-feedback,
.has-success .form-control-label,
.has-success .col-form-label,
.has-success .form-check-label,
.has-success .custom-control {
    color: #5cb85c;
}

.has-success .form-control {
    border-color: #218838;
}

.has-success .input-group-addon {
    color: #5cb85c;
    border-color: #5cb85c;
    background-color: #eaf6ea;
}

.has-success .form-control-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}

.has-warning .form-control-feedback,
.has-warning .form-control-label,
.has-warning .col-form-label,
.has-warning .form-check-label,
.has-warning .custom-control {
    color: #f0ad4e;
}

.has-warning .form-control {
    border-color: #f0ad4e;
}

.has-warning .input-group-addon {
    color: #f0ad4e;
    border-color: #f0ad4e;
    background-color: white;
}

.has-warning .form-control-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-danger .form-control-feedback,
.has-danger .form-control-label,
.has-danger .col-form-label,
.has-danger .form-check-label,
.has-danger .custom-control {
    color: #d9534f;
}

.has-danger .form-control {
    border: 1px solid #CC3B3B;
}

.has-danger .input-group-addon {
    color: #d9534f;
    border-color: #d9534f;
    background-color: #fdf7f7;
}

.has-danger .form-control-danger {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

.error {

    color: #d9534f;
    font-weight: 400;
    font-size: 13px;
    display:none;
    width: 100%;
}

.error p {

    margin-bottom: 0;
}

.form-control .form-group .required {
    color: #d9534f;
}

/****** SERIES PAGE ******/

#breadcrumbs a {

    text-decoration: none;
    color:#b8a07e;
}

#statement-holder strong {

    color: #b8a07e;

}


.paint-desc {

    background-color: #f1f1f1;
    color: #000000;
}

.figure-caption {
    color: #b8a07e;
}

#collection-holder figure a:hover {
    text-decoration: none;
}

.arrow-up {
    height: 40px;
    width: 40px;
    display: block;
    border: 1px solid #666;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
    overflow: hidden; 
}

.arrow-slide {
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: #666;
    position: absolute;
    display: block;
    z-index: 0; 
}

.left-arm {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    top: 19px;
    left: 2px;
    width: 20px;
    display: block;
    transform: rotate(-45deg); 
}
.left-arm:after {
    content: "";
    background-color: #666;
    width: 20px;
    height: 1px;
    display: block;
    border-radius: 1px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
    transform-origin: right center;
    z-index: -1; 
}

.right-arm {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    top: 19px;
    left: 16px;
    width: 20px;
    display: block;
    transform: rotate(45deg);
    border-radius: 2px; 
}
.right-arm:after {
    content: "";
    background-color: #666;
    width: 20px;
    height: 1px;
    display: block;
    border-radius: 1px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
    transform-origin: left center;
    z-index: -1; 
}

.arrow-up:hover {
    transition: all .1s; }
.arrow-up:hover .left-arm:after {
    transform: rotate(-10deg); }
.arrow-up:hover .right-arm:after {
    transform: rotate(10deg); }
.arrow-up:hover .arrow-slide {
    transition: all .4s ease-in-out;
    transform: translateY(200%); }

.arrow-up {

    position: fixed;
    bottom: .75rem;
    right: .75rem;
    display: none;
    z-index: 9999;
}


/****** FOOTER ******/

.social{
    text-align: center;

}
.social .fab{
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    color:#b8a07e;
    line-height: 35px;
    font-size: 22px;
    transition: 0.5s ease;
}
.social .fab:hover{
    transform: rotate(360deg);
    text-decoration: none;
}


.copyright {

    font-size: 17px !important;

    color: #999;


}

.develop {

    font-size: 10px !important;
}

footer small a {

    text-decoration: none;
    color: #898989;
    outline: none;
}

footer small a:hover {

    text-decoration: none;
    color: #b8a07e;
    outline: none;
}

.fa-bars {

    color:#b8a07e;

}
.logo {

    width: 20px;
    height: auto;
}

.list-inline-item:not(:last-child) {
    margin-right: 0;
}

.arrow {position: absolute; width: 9px; height: 9px; background-size: contain;}
.segunda{margin-left: 6px;}
.next {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHN0eWxlPi5zdDB7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTMxOS4xIDIxN2MyMC4yIDIwLjIgMTkuOSA1My4yLS42IDczLjdzLTUzLjUgMjAuOC03My43LjZsLTE5MC0xOTBjLTIwLjEtMjAuMi0xOS44LTUzLjIuNy03My43UzEwOSA2LjggMTI5LjEgMjdsMTkwIDE5MHoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE5LjEgMjkwLjVjMjAuMi0yMC4yIDE5LjktNTMuMi0uNi03My43cy01My41LTIwLjgtNzMuNy0uNmwtMTkwIDE5MGMtMjAuMiAyMC4yLTE5LjkgNTMuMi42IDczLjdzNTMuNSAyMC44IDczLjcuNmwxOTAtMTkweiIvPjwvc3ZnPg==);
}

@keyframes bounceAlpha {
    0% {opacity: 1; transform: translateX(0px) scale(1);}
    25%{opacity: 0; transform:translateX(10px) scale(0.9);}
    26%{opacity: 0; transform:translateX(-10px) scale(0.9);}
    55% {opacity: 1; transform: translateX(0px) scale(1);}
}

.bounceAlpha {
    animation-name: bounceAlpha;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}

.arrow.primera.bounceAlpha {
    animation-name: bounceAlpha;
    animation-duration:1.4s;
    animation-delay:0.2s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}

#cta .arrow{
    animation-name: bounceAlpha;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}
#cta .arrow.primera{
    animation-name: bounceAlpha;
    animation-duration:1.4s;
    animation-delay:0.2s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}


.page-overlay, .eclipse-gif
{
    display : block;
    position : fixed;
    z-index: 100;
    background-image: url('../img/ajax/gif.svg');
    background-color:#000;
    background-repeat : no-repeat;
    background-position : center;
    left : 0;
    bottom : 0;
    right : 0;
    top : 0;
}
