/* Basic Reset */
:root {
    --light-text: #ffffff; /* Light text color */
    --dark-text: #000000; /* Dark text color */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-primary: #6f6f6f;
    --color-brown: #5a5a5a;
    --color-grey: #f2f0f3;
    --color-red: #b73f4c;
    --padding-primary: 50px;
    --header-height: 120px;
    --footer-height: 120px;
}

@font-face {
    font-family: SourceSans;
    src: url('../fonts/source-sans/SourceSans3-VariableFont_wght.ttf');
    font-weight: 200 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: SourceSans, serif;
    line-height: 1.6;
    color: var(--color-primary);
    position: relative;
}

ul, li {
    list-style: none;
}

a, a:hover {
    text-decoration: none;
    color: inherit;
}

/* header */
header {
    color: var(--color-white);
    height: var(--header-height);
}

h1 {
    font-size: 2rem !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.header-wrapper {
    display: table;
    width: 100%;
    margin: 0 auto;
    /*padding: 25px 80px;*/
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*header.dark a {
    color: var(--color-brown);
}

    header.dark a:hover {
        color: var(--color-white);
    }*/

header.background-dark a {
    color: var(--color-white);
}

header.background-light a {
    color: var(--color-black);
}
/* Burger Button */
.burger-button {
    width: 40px;
    height: 30px;
    background: rgba(0,0,0,.8);
    color: var(--color-white);
    position: fixed;
    top: 0;
    right: 10px;
    z-index: 100;
    border: none;
    text-align: center;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    transition: all .3s ease-in;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}


.nav-wrapper {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

    .nav-wrapper,
    .nav-wrapper ul {
        transition: all .3s ease-in;
    }

        .nav-wrapper .close-icon {
            color: var(--color-white) !important;
            align-self: end;
            font-size: 40px;
            display: none;
            position: absolute;
            top: 50px;
            right: 50px;
        }

nav a,
footer a {
    letter-spacing: 2px;
    font-size: 1.4rem;
}

nav li.active a {
    /*color: var(--color-red);*/
}

footer .nav-wrapper {
    text-align: left;
}

nav a:hover {
    color: var(--color-grey);
}

nav li {
    display: inline-block;
    text-align: right;
    margin: 0 30px 0 0;
}


/* main */
.banner-wrapper {
    position: relative;
    width: 100%;
    /*height: 100vh;*/
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

    .banner-wrapper .scroll-down {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 10px;
        font-size: 25px;
        color: white;
        cursor: pointer;
    }

        .banner-wrapper .scroll-down:hover {
            transform: translate(-50%) scale(1.3);
        }

.content {
    padding: 60px 0;
}

    .content p {
        text-align: justify;
        font-size: 1.4rem;
        font-weight: 500;
    }

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.product-item {
    margin-bottom: 30px;
}

    .product-item:last-of-type {
        margin-bottom: 75px;
    }

.full-view {
    position: relative;
    width: 100%;
    height: calc(100vh);
}

    .full-view img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .full-view .title {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease, visibility 0.3s ease;
        color: var(--color-black);
    }

    .full-view:hover .title {
        visibility: visible;
        opacity: 1;
    }

    .full-view::before {
        /*     content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0) 11%, rgba(0, 0, 0, 0.5018382352941176) 24%, rgba(0, 0, 0, 0.5046393557422969) 76%, rgba(254, 255, 255, 0) 90%);
        pointer-events: none;*/
    }

.item-meta {
    text-align: center;
    padding: 200px;
    color: var(--color-white);
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .item-meta .title {
        /*text-decoration: underline;*/
    }

    .item-meta .title {
        text-shadow: 0 1px 0 #ccc, 0 2px 0 #bbb, 0 3px 0 #aaa, 0 4px 3px rgba(0,0,0,0.2);
    }

/* footer */
footer {
    position: relative;
    width: 100%;
    background-color: var(--color-black);
    padding-top: 70px;
    padding-bottom: 15px;
    height: var(--footer-height);
    color: var(--color-white);
}

    footer .link-holder {
        padding: 0 50px;
    }

    footer a:hover {
        color: var(--color-red);
    }

    footer .back-to-top-link {
        z-index: 100;
        background-color: var(--color-black);
        width: 80px;
        height: 80px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        margin-left: -40px;
        top: -25px;
        padding-top: 10px;
    }

        footer .back-to-top-link a {
            display: block;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            text-align: center;
            line-height: 1;
        }

        footer .back-to-top-link .arrow {
            display: block;
            text-align: center;
            width: 16px;
            margin: 0 auto 4px;
        }

/* inner */


.banner-inner {
    position: relative;
    width: 100%;
    height: calc(50vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-inner .banner-content-holder {
        padding-top: var(--header-height);
        z-index: 1;
        text-align: center;
        color: var(--color-white);
    }

    .banner-inner h1 {
        text-transform: uppercase;
        margin-bottom: 30px;
    }

.darkened::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.darkened-light::before {
    background: rgba(0, 0, 0, 0.7);
}

.darkened-dark::before {
    background: rgba(0, 0, 0, 0.9);
}

.navigator {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

    .navigator ul {
        padding-left: 0;
    }

    .navigator li {
        display: block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--color-white);
        border: 1px var(--color-brown) solid;
        margin: 15px;
        cursor: pointer;
        position: relative;
    }

        .navigator li.active {
            background-color: var(--color-brown);
        }

        .navigator li span {
            position: absolute;
            right: 30px;
            opacity: 0;
            font-size: 13px;
            text-transform: uppercase;
            white-space: nowrap;
            letter-spacing: 3px;
            font-weight: 400;
            font-style: normal;
            text-decoration: none;
            margin-top: -8px;
            padding: 0 0 5px 0;
            -webkit-transition: all .3s cubic-bezier(.23, 1, .32, 1);
            -moz-transition: all .3s cubic-bezier(.23, 1, .32, 1);
            -ms-transition: all .3s cubic-bezier(.23, 1, .32, 1);
            -o-transition: all .3s cubic-bezier(.23, 1, .32, 1);
            transition: all .3s cubic-bezier(.23, 1, .32, 1);
            line-height: 32px;
            visibility: hidden;
            color: var(--color-black);
        }

        .navigator li:hover span {
            right: 20px;
            opacity: 1;
            z-index: 51;
            padding-right: 15px;
            visibility: visible;
        }

/* work gallery */
#work-gallery {
    /*    padding-top: 100px;*/
    /*    padding-bottom: 100px;*/
}

    #work-gallery .item {
        /*height: 300px;*/
    }

        #work-gallery .item a {
            width: 100%;
            /*height: 100%;*/
            display: block;
        }

    #work-gallery img {
        box-shadow: 0 0 10px black;
        width: 100%;
        /*height: 100%;
        object-fit: cover;
        object-position: center;*/
    }

/* work detail */
.work-detail .intro {
    height: 120vh;
    width: 100%;
    position: relative;
}

    .work-detail .intro .img-holder {
        position: relative;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }

.work-detail .item-meta {
    position: absolute;
    left: 150px;
    transform: translate(0, -30%);
    padding: 0;
    display: block;
    top: 30%;
    color: var(--color-brown);
}

.work-detail .prev,
.work-detail .next {
    position: absolute;
    top: 50%;
}

.work-detail .prev {
    left: 100px;
}

.work-detail .next {
    right: 100px;
}


.work-detail .chevron {
    position: absolute;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    filter: drop-shadow(0 0 4px black);
}

.work-detail .description {
    width: 100%;
}

.work-detail .gallery .holder {
    /* display: flex;
    justify-content: space-between;*/
    margin-bottom: 100px;
}

.work-detail .gallery .gallery-item {
    /*  display: flex;
    padding: 0 10px;
    height: 300px;*/
}

.work-detail .gallery a {
    /*width: 100%;
    height: 100%;
    display: block;
    display: flex;*/
}

.work-detail .gallery img {
    object-fit: cover;
    /*width: auto;
    height: auto;
    flex: 1;
    object-fit: contain;*/
}

/* press gallery */
#press-gallery {
    /*padding: 100px 0;*/
}

    #press-gallery .g-5 {
        --bs-gutter-x: 5rem !important;
        --bs-gutter-y: 5rem !important;
    }

    #press-gallery .item {
        /*height: 500px;*/
    }

        #press-gallery .item a {
            display: block;
            width: 100%;
        }

    #press-gallery img {
        width: 100%;
    }

/* contact form*/
.contact-form-wrapper .description {
    /*margin-bottom: 4rem;*/
}

.contact-form-wrapper p {
    font-size: 1.8rem;
    margin-bottom: 0px;
    color: var(--color-primary);
    word-wrap: break-word;
}

.contact-form-holder {
}

    .contact-form-holder input,
    .contact-form-holder textarea {
        border-radius: 0px;
        border-width: 2px;
        background: none;
        color: var(--color-primary);
        padding: 10px 15px;
    }

        .contact-form-holder input:focus,
        .contact-form-holder textarea:focus {
            outline: none;
            box-shadow: none;
        }

    .contact-form-holder textarea {
        min-height: 120px;
    }

        .contact-form-holder input::placeholder,
        .contact-form-holder textarea::placeholder {
            color: var(--color-primary);
        }

        .contact-form-holder input:focus::placeholder,
        .contact-form-holder textarea:focus::placeholder {
            color: var(--color-primary);
        }

    .contact-form-holder .submit-btn {
        background: var(--color-white);
        color: var(--color-black);
        padding: 10px 20px;
        border: 1px solid black;
        text-transform: uppercase;
    }

        .contact-form-holder .submit-btn:hover {
            background: var(--color-black);
            color: var(--color-white);
            border: 1px solid var(--color-white);
        }

.input-validation-error {
    border: 1px solid var(--color-red);
}

span.field-validation-error {
    color: var(--color-red);
    float: left;
    font-size: .9rem;
    margin-top: 10px;
    text-shadow: 0px 0px 8px white;
}

.cookie-policy {
    position: fixed;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: white;
    color: black;
    z-index: 101;
    padding: 10px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 10px 3px black;
    transition: bottom .2s ease-in;
}

    .cookie-policy p {
        margin-bottom: 0;
        display: inline-block;
    }

    .cookie-policy a {
        color: var(--color-red);
    }

    .cookie-policy #btn-approve-privacy-policy {
        background: var(--color-black);
        border-color: var(--color-black);
        display: inline-block;
    }
