
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/* fonts 
font-family: 'Comfortaa', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Mulish', sans-serif;
*/

/* media queries

@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
*/


* {
  box-sizing: border-box!important;
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
    }

p, figcaption,  figcaption *,
.sl-caption[title],
#cv li, #cv li em, #cv h1, p * {
   -webkit-touch-callout:default;
    -webkit-user-select:auto;
    -khtml-user-select:auto;
    -moz-user-select:auto;
    -ms-user-select:auto;
    user-select:auto;
    }

html {
    height: auto;
    min-height: 100% !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    }

body {
    width: inherit;
    box-sizing: border-box;
    height: auto;
    min-height: 100% !important;
    padding: 0; 
    position: relative;
    min-height: 100%;
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-gutter: stable both-edges;
      padding-right:0px !important;
    margin-right:0px !important;
    }
 
    body.overlay{
    overflow-y: hidden;
    height: 100vh;
    }


/* Header ----------------------------------------------------------------*/

header {
    height: var(--header-height);
    width: 100%;
    background: white;
    position: fixed;
    z-index: 200;
    }

.headroom {
    will-change: transform;
    webkit-transition: -webkit-transform 200ms linear;
    transition: -webkit-transform 200ms linear;
    -o-transition: transform 200ms linear;
    transition: transform 200ms linear;
    transition: transform 200ms linear, 
        -webkit-transform 200ms linear;
    }


    .headroom--pinned {
        display: block;
        }

    .headroom--unpinned {
        -webkit-transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        transform: translateY(-90px);
        }

    .fixed_heading {
        position: relative;
        height: 50px;
        line-height: 50px;
        top: var(--header-height);
        width: 100%;
        padding-left:var(--master-padding);
        background: white;
        box-sizing: border-box;
        float: left;
        }

        .fixed_heading h3 {
            margin-bottom: 0!important;
            }

        @media screen and (min-width: 768px) {
                .fixed_heading {
                    position: fixed;
                    top: calc(var(--header-height) / 2);
                    z-index: 1;
                    }
                }

/* Logo ----------------------------------------------------------------*/

.logo {
    font-family: 'Comfortaa', sans-serif;;
    float: left;
    display: inline-block;
    box-sizing: border-box;
    color: black;
    position: relative;
    font-size: 1.5em;
    font-weight: 500;
    width: auto;
    line-height: 2em;
    margin: 0 var(--master-padding);
    height: 50px;
    background: rgba(0,0,0,0);
    }

    @media screen and (min-width: 768px) {
        .logo {
            font-size: 1.8em;
            line-height: 1.8em;
            margin-top: 10px;
            }       
        }


/* Navigation  ----------------------------------------------------------------*/

#nav-menu {
    display: block;
    cursor: pointer;
    height: 40px;
    width: 40px;
    overflow: visible;
    position: fixed;
    z-index:301;
    top: 10px;
    right: var(--master-padding);
    }

     @media screen and (min-width: 768px) {
        #nav-menu {
            top: 20px;
            }       
        }

    #nav-menu span,
    #nav-menu span:before,
    #nav-menu span:after {
        cursor: pointer;
        border-radius: 60px;
        background: black;
        display: block;
        height: 4px;
        opacity: 1;
        position: absolute;
        /*transition: 0.3s ease-in-out;*/
        }

    #nav-menu span:before,
    #nav-menu span:after {
        content: "";
        }

    #nav-menu span {
        right: 0px;
        top: 12px;
        width: 30px;
        }

        #nav-menu span:before {
            left: 0px;
            top: -12px;
            width: 30px;
            }

        #nav-menu span:after {
            left: 0px;
            top: 12px;
            width: 30px;
            }

    #nav-menu.close span {
        transform: rotate(-45deg);
        top: 13px;
        width: 40px;
        }

        #nav-menu.close span:before {
            top: 0px;
            transform: rotate(90deg);
            width: 40px;
            }

        #nav-menu.close span:after {
            top: 0px;
            left:0;
            transform: rotate(90deg);
            opacity:0;
            width:0;
            }

#menu {
    min-width:100%;
    min-height:100%;
    position: fixed;
    top:0;
    height:0;
    visibility: hidden;
    opacity: 0;
    text-align:center;
    display: flex; 
    align-items: center;
    justify-content: center;
    -webkit-transition : -webkit-filter 300ms linear;
    background:white;
    margin-bottom: auto;
    flex-grow: 1;
    z-index: 300;
    -webkit-overflow-scrolling: touch;
    transition: all .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    transition: all .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    }

    #menu.overlay{
        visibility: visible;
        opacity: 1;
        background: white;
        }

    #menu ul {   
        margin-top: -25px;
        }

    #menu li{
        margin: 20px;
        list-style:none;
        }

    #menu li:last-of-type {
        margin-top: 50px
        }

    #menu a{
        color:black;
        display:inline;
        font-size: 1.5em;
        text-decoration:none;
        margin: 0 auto;
        }
    
        #menu a:hover {
            color: #ccc;
            }

        #menu li a i {
            display: block;
                    color: black; 
                    font-size: 2em; 
                    padding: 10px;
                    }
    
.copyright_info {
    font-size: .8em!important; 
    height: auto;
    padding: 0;
    width: 100%;
    position: fixed;
    bottom: 30px;
    }
 
    .copyright_info span:before {
        content: '2026';
        }
    

.breadcrumbs_nav {
    color: gray;
    font-size: .9em;
    width: 100%;
    border-bottom: 0px solid #ccc;
    padding-left: 0;
    float: right;
    
}

.breadcrumbs_nav li {
    display: inline-block;
    margin-top:  10px;
    line-height: 1.1em
}

.breadcrumbs_nav li a{

}

.breadcrumbs_nav li a:after {
    content: ' / ';
}

.breadcrumbs_nav li a:hover {
    color: black
}

.breadcrumbs_nav li:hover a:after {
    text-decoration: none;
    text-decoration-color: rgba(0,0,0,0);
}

@media (min-width: 768px) { 
.breadcrumbs_nav {
    padding-left: 0;
    text-align: right;
    }
}


/* Page Structure ----------------------------------------------------------------*/

main {
    margin-top: var(--header-height);
    overflow: hidden;
    width: 100%;
    
    }
    @media screen and (min-width: 768px) {
        main {
        margin: calc(var(--header-height * 3)) 0 0 0 0;
        }
            }

section {
    margin-bottom: 5px;
    padding: var(--section-padding);
    overflow: hidden;
    }

    section.gray {
        background: #fbfbfb;
        }

    section.black, .black {
        background: black;
        color: white;
        }

        section.black h1,
        section.black h2,
        section.black h3,
        section.black h4,
        section.black h5,
        section.black h6 {
            color: white;
            }
section:last-of-type{
    margin-bottom: 100px
}

    section#slider {
        padding: 0 0 0 0;
        }

    section.pdg_10 {
        padding: 0 10px 0
        }


        @media (min-width: 768px) {
            section, section.pdg_10 {padding: var(--master-padding);}
            }

.container.small {
    max-width: 900px;
    }

.container.large {
    max-width: 1280px;
    }

/* centering ----------------------------------------------------------------*/

.row.vertical_center {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    @media (min-width: 992px) {
        .row.vertical_center {
            align-items: center;
            justify-content: center;
            }
    }


/* Text ----------------------------------------------------------------*/

a { 
    text-decoration: none;
    margin: 0;
    padding: 0;
   
    }

a:hover {text-decoration: underline;}

    p a {
        text-decoration: underline
        }

a.underline {
    text-decoration: underline!important;
    }

    a.underline:hover {
    text-decoration: none!important;
        color: gray;
    }

    a.no_external {font-size:1.5em}

    a.download[target="_blank"] {
        font-size: .98em;
        font-weight: 600;
        }

        a.download[target="_blank"]::after {
            content: url('../img/download-link.png');
            margin: 0px 3px 0px 6px;
            }

            a.download[target="_blank"]:hover::after {
                opacity: .25;
                }

                a.no_external[target="_blank"]::after {
                    content:none;
                    }

strong {font-weight: 600} 


i {
    font-size: 1.3em;
    color: black; 
    }



    i:hover {
            filter: invert(.5);
            cursor: pointer!important;
            }
        
            i:hover span {
                text-decoration: underline;
                }

    i span {
        font-size: .5em!important;
        margin-left: 10px;
        }

.right {
text-align: right}

.ctr {
    text-align: center;
    }

.ctr h5 {
    text-align: center; 
    width: 100%;
    }   

.ctr_mobile {
    text-align: center; 
    width: 100%; 
    }   

    @media screen and (min-width: 768px) {
        .ctr_mobile {
            text-align: left;
            }
        }

li {
    list-style: none
}

.quote {
    width: 80%;
    max-width: 500px;
    font-size: 1.4em;
    line-height: 1.2em;
    }

    @media screen and (min-width: 992px) {
        .quote {
            font-size: 2.5em;
            max-width: 700px;
            }
        }

.minor {
    font-size: .9em;
    line-height: 1.4em;
    color: gray
    }
    
    .minor a{color: black!important;}
.no-pdg {
    padding: 0 0 0 0!important;
    }


/* Logo ----------------------------------------------------------------*/

.bdr_btm {
    border-top: 0px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: 0px;
    padding: 0;
    }

    .bdr_btm h6 {
        margin: 0 ;
        }

    @media screen and (min-width: 768px) {
        .bdr_btm {
            }
        }

.mrgn_top {
    margin-top: 75px!important;
    }


/* Logo ----------------------------------------------------------------*/

.u-follow-me {
    background: white;
    position: relative;
    z-index: 100;
    margin-top: 0;
    }

.u-follow-me.fixed {
    position: fixed;
    top: -20px;
    width: 100%!important;
    left: 0;
    box-sizing: border-box;
    z-index: 101;
    height: 100px;
    margin-top: 20px;
    }

.u-follow-me.absolute {
    display: none;
    position: relative;
    }

.u-follow-me h5{
    padding: 0!important}
    .u-follow-me.fixed h5{
    line-height: 110px;
    z-index: 102!important;
    }

    @media (min-width: 768px) {
        .u-follow-me {margin-top: 50px}
        .u-follow-me h5{margin: 0!important}
        .u-follow-me.fixed {height: 120px}
        .u-follow-me.fixed h5{
            line-height: 110px;}
        }

.u-follow-me.fixed.headroom--unpinned, 
.followWrap .u-follow-me.fixed.u-follow-me-second.headroom--unpinned,
.followWrap .u-follow-me.fixed.u-follow-me-third.headroom--unpinned,
.followWrap .u-follow-me.fixed.u-follow-me-fourth.headroom--unpinned {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    }

.u-follow-me.headroom--unpinned,
.followWrap .u-follow-me.u-follow-me-second.headroom--unpinned,
.followWrap .u-follow-me.u-follow-me-third.headroom--unpinned,
.followWrap .u-follow-me.u-follow-me-fourth.headroom--unpinned {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    }   

/* Images ----------------------------------------------------------------*/

img {
    white-space: pre-wrap!important
    }

.hero_image {
    max-height: calc(100vh - calc(var(--header-height) * 1.5));
    }


img {  animation: 1s fadeIn;}

@keyframes fadeIn {
  0% {
   
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

.fadeIn-animation {
  animation: 1.5s fadeInUp;
}

/*  Homepage ------------------------------------------------------------*/


#vadisturner_home .headroom {
    background: rgba(0,0,0,0);
    } 

    #vadisturner_home .logo.invert {
        color: black;
        } 

    #vadisturner_home #nav-menu {
        position: fixed; 
        font-weight: 600;
        line-height: 120px;
        right: 30px;
        top: 20px
        }

        #vadisturner_home #nav-menu span {
            left: 18px;
            }

        #vadisturner_home #nav-menu span, 
        #vadisturner_home #nav-menu span:before, 
        #vadisturner_home #nav-menu span:after {
                background: white;
                }

        #vadisturner_home #nav-menu.close span, 
        #vadisturner_home #nav-menu.close span:before, 
        #vadisturner_home #nav-menu.close span:after  {
                background: black;
                }

.bg {
    background-image: url("../img/homepage/VT_Detail_1.jpg");
    height: 100vh; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #e8e8e8;
    }

/*Works --------------------------------------------------*/

.three.columns.image_grid {
    width: 50%; 
    }

.four.columns.image_grid a {
    -ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center;
    margin-bottom: 30px;
    padding:0!important;
    margin: 0!important;
    
    }

.four.columns.image_grid img {
    -ms-flex-item-align: start; align-self: flex-start;
    max-width: calc(100vw - 60px);
    }

.image_grid {
    
    box-sizing: border-box;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack:distribute;
        justify-content:flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align:start;
    -ms-flex-align:start;
            align-items:flex-start;
    background: white;
    padding: 80px 0 0 0;
    } 
   

    .image_grid img.u-full-width {
        border: 10px solid white;
        }

    .image_grid a {
        color: darkgray;
        }   

        .image_grid a:hover {
            color: black;
            text-decoration: none;
            }

    
        .image_grid a img { 
            padding: 0!important; 
            margin: 0!important;
            }

a.image_alternate {
    display: none;
    }

    a.image_alternate img {
        display: block;
        }

div.image_grid:hover figcaption {
    color: black!important;
    text-decoration: none!important;
    }   

.image_grid figcaption {
    background: white!important;
    -ms-flex-item-align: start;align-self: flex-start; 
    padding: 0 10px 10px 10px;
    margin-bottom: 0!important;
    min-height: 150px;
    margin-top: 0px;
    color: black;
    box-sizing: border-box;
    overflow-wrap: break-word;
   caption-side: bottom;
  max-width: 325px;
  line-height: 1.3em;
    }
.image_grid figcaption strong {color: black; font-weight: 400;}
.image_grid figcaption::first-line {line-height: 1.5em;}
.image_grid figcaption.fix_space::first-line {line-height: 1em;}
    @media screen and (min-width: 576px) {
        .image_grid {
            margin-top: 0; 
            border-bottom: 0px;
            }
        
            .four.columns.image_grid a {
                max-width: 100%;
                }
        
            .four.columns.image_grid img {
                max-width: 100%
                }
        
            .four.columns.image_grid figcaption {
                padding: 0 20px;
                }
        
            .image_grid figcaption {
                color:gray;
                }
        
            .image_grid:hover figcaption {
                color:black;
                }
            }


/*  Publications --------------------------------------------------*/

#publications_detail .six.columns {
    border-bottom: 1px solid #ccc; 
    margin-bottom: 60px;
    }

    #publications .six.columns:last-of-type {
        border-bottom: 0 solid #ccc; 
        }

.publication_info,
.publication_details{
    width: 100%;
    padding: 0 0 40px;
    margin-bottom: 60px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    }

    .publication_info h3,
    .publication_details h3 {
        font-weight: 500
        }
    
    .publication_info button:hover {
        background: black;
        color: white
        }

.publication_image {
    width: 100%;
    padding: 0 40px;
    margin-bottom: 60px;
    }

.publication_details {
    padding: 30px!important;
    }

.publication_details_image {
    padding: 0 40px 40px;
    }

    @media (min-width: 576px) {
        .publication_info,
        .publication_details {
            width: 50%;
            float: right;
            }
        
            #publications .six.columns {
                border-bottom: 0 solid #ccc; 
                }

        .publication_image,
        .publication_details_image{
            width: 50%;
            display: inline-block;
            padding: 0;
            }
        
        .publication_details_image{
            padding: 0 20px
            }
        
        .publication_info {
            padding-left: 20px;
            }
        }


    @media (min-width: 996px) {
        #slider.publication_slider {
            max-width: none;
            margin: 0 auto;
            float: none;
            }

        
        .publication_image {
            width: 100%;
            padding: 0 50px;
            }
        
        .publication_info,
        .publication_details {
            width: 100%;
            padding-left: 50px;
            justify-content: space-between;
            }
        
        .publication_details_image{
            padding: 0 
            }

        .row.adjust {
            display: block;
            }

        .four.columns.publication_details {
            float: none;
            margin: 0 auto;
            clear: both;
            max-width: 100vh!important;
            }
        }
        
    @media (min-width: 1200px) {
            .row.adjust {
            display: flex;
            }
        
        #slider.publication_slider {
            max-width: none;
            margin: 0 0;
            }
        
        .publication_image {
            width: 50%;
            padding: 0 0;
            }
        
        .publication_info,
        .publication_details{
            width: 50%;
            padding-left: 30px;
            padding-right: 10px;
            min-height: 420px
            }
        }

    @media (min-width: 1700px) {
        .publication_image {
            padding: 0 40px;
            }
        }

    @media screen and (min-width: 768px) {
    
        .publication_excerpt p{
            padding-left: 40px;
            padding-right: 40px;
            }
        }



/*  CV --------------------------------------------------*/

.cv ul {
    margin: 10px 0 60px; 
    }

.cv li {
    margin-left: 0;
    padding-left:  2em; 
    text-indent: -2em;
    margin-top: 5px;
    margin-bottom:5px;
    line-height: 1.3em;
    }

.cv span.year {
    position: relative;
    font-weight: 600;
    display: block; 
    margin: 10px 0 10px;
    }


    @media screen and (min-width: 768px) {
        .cv li {
            margin-left: 0;
            }
        }


/*  EXHIBITIONS -------------------------------------------------- */

.featured_exhibitions {width: 100%;}

.featured_exhibitions h6 {
    margin-bottom: 10px;
    }

.featured_exhibitions a:hover {
    text-decoration: none;
    color: black;
    cursor: pointer!important;
    }

.featured_exhibitions img{
    display: flex;
    align-items: center;
    max-width: 2000px;
    width:100%;
    margin-left: auto!important;
    margin-right: auto!important;
}

.exhibition_info {
    margin-top: 20px;
    margin-bottom: 100px;
    }

.exhibition_info .dark {color: black;}

.exhibition_info .shadow {text-shadow: 0px 3px 3px rgba(0, 0, 0, 0);}


@media (min-width: 992px) { 
    .exhibition_info .shadow {text-shadow: 0px 3px 3px rgba(0, 0, 0, .25);}
 }

.exhibition_info h3 {
    text-align: left; 
    font-weight: 500;
     padding-bottom: 0;
        margin-bottom: 0;
        line-height: 1.5em;
    }

@media screen and (min-width: 992px) {
    .exhibition_info h3 {
        text-align: center;
       
        }
    
        
  /*  .exhibition_info {
        margin-top: -250px;
        color: white;
        padding: 20px;
        opacity: 1!important
        }
        */

        @media screen and (min-width: 2200px) {
        .exhibition_info {
    margin-left: 100px;
    }
        }
    .exhibition_info h3 {
        /*color: white;*/
        text-align: left!important; 
        }
        .exhibition_info .dark  h3 {
            color: black;
        }

    .featured_exhibitions a {
        margin-bottom: 50px;
        }
    }

.exhibition_grid {
    margin-bottom: 40px;
    }

.exhibition_works_grid {
    min-height: 800px
    }

.exhibition_works_grid .image_grid {
    border-bottom: none;
    }

.exhibition_works_grid a:hover{
    cursor: pointer!important;
    }

.installation_images img {
    margin-bottom: 40px
    }

.exhibition_works {
    margin-bottom: 0px;
    }
.exb_heading {
    margin-top: 30px
}
    @media screen and (min-width: 768px) {
        .exhibition_works {
            margin-bottom: 0px;
            }
        .exb_heading {
    padding-left: 20px!important;
            margin-top: -40px;
    }
        }

.exb_date {font-size: 1.1em;
line-height: 2.3em}



.exb_heading a:first-of-type {
    line-height: 4em
}

.exb_heading h5 {
    margin-bottom: 10px
}

/*  NEWS -------------------------------------------------- */


.news_links  a{
    font-size: 1.8em;
    font-size: 100;
    text-transform: ;
    padding: 20px 20px 20px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    text-align: left;
    letter-spacing: .05em;
    color: black;
    font-family: 'Lato', sans-serif;
    line-height: 1em;
    border-bottom: 1px solid black;
    padding-bottom: 40px;    
    }

    .news_links span.date, 
    .news_links span.publication{
        font-size: .7em;
        font-weight: 300;
        display: block;
        width: 100%;
        height: 20px;
        text-transform: capitalize;
         letter-spacing: 0em;
        line-height: .7em;
        padding-bottom: 5px;
        }

    .news_links span.date {
        display: block;
        width: fit-content;
        border-bottom: 0 solid white;
        font-size: .5em;
        font-weight: 500;
        color: black;
        padding: 10px 0 10px 0;
        height: auto;
        margin-bottom: 20px;
        margin-left: 0;
        }

    .news_links a:hover span.date {
       color: white
        }

    .news_links a span.publication {
       text-transform: uppercase;
        font-weight: 500;
        font-size:.6em;
        }

    .news_links a:hover {
        text-decoration: none;
        background: black;
        color:white;
        }

    .news_links img {
        margin-top: 20px
        }

    .news_links a:hover img {
        -webkit-filter: invert(1);
       filter: invert(1);
        }

    .news_links .additional_news {
        margin-top: 100px
        }

    .news_links .additional_news a {
        padding: 5px 10px 8px 10px;
        margin: 0;
        }

    .news_links .additional_news a:first-of-type {
        border-top: 1px solid black
        }

    .news_links .additional_news .publication {
        display: inline-block;
        font-size: .6em
        }

    .news_links .additional_news img {
        display: inline-block;
        position: absolute;
        margin-top: 0;
        margin-left: -20px;
        padding-top: 7px;
        }


/*Contact -------------------------------------------------- */


.offset-up {vertical-align: middle; margin-top: -20px; margin-left: 35px; display: block; }

.black {background: black;min-height: 500px!important; color: white}
.black h4 {color: white; font-weight: 300}
.black .button {border: 0px solid none; font-size: 1em; color: black!important}
.black .button:hover {background: #ccc; color: white}
.black a {color: white!important}
#contact_info li {margin: 0 0 40px 0;}
#contact_info li a {text-decoration: underline}
#contact_info li a:hover {text-decoration: none}
#contact_info h5 {margin-bottom: 10px}
#contact_info .social_links li {margin: 10px 0}

.newsletter {padding: 30px}
#contact_info li i {
    font-size: 1.2em;
}



/*  Parallax -------------------------------------------------- */

.parallax_img {
    position: relative;
    background-image: url('../img/2022/3.VT_Danae_88x72x16_curtains_resin_copper_leaf_ashes_steel_2022-splash.jpg');
    background-attachment:inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    max-height: 82vh;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content:center;
    padding: 0 var(--master-padding);
    color: white;
    font-size: 1.5em;
    transition: opacity .75s linear; 
    -webkit-transition: opacity .75s linear;  
    -moz-transition: opacity .75s linear;  
    background-color: white;
    top: 0;
    margin-top: 0;
    }


.studio_image {
    background-image: url('../img/portrait/VT_studio_bw.jpg');
    background-position: top;
    max-width: 90vw;
    margin:0 auto;
    }

#paralax_title {
    position: fixed;
    }

.parallax_img h1 {
    position: relative;
    color: white;
    margin: 0 auto;
    align-self: center;
    letter-spacing: .1em;
    transition: opacity 1s;
    font-weight: 300;
    text-align: center;
    width: 100%
    }

    .parallax_img p {
        display: block;
        width: 400px;
        text-align: right;
        padding-right: 30px;
        align-self: flex-end;
        color: white;
        font-weight:500;
        font-size: .9em;
        margin-bottom: 0;
        }

    @media screen and (max-width: 768px) {
        .parallax_img {
            background-attachment: inherit;
            background-size: 200%; 
            background-position: center;
            }
        
        .parallax_img p {
            padding-right: 10px;
            }
        
        .studio_image {
            background-position: 0 0;
            background-size:contain;
            max-width: 100vw;
            }
        }


/*  SLIDER -------------------------------------------------- */
       
.background-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/homepage/VT_Detail_1.jpg');
    }

.slide .hagar_detail{
    height: 100vh;
    background-image: url('../img/homepage/VT_Detail_1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    }

#slider img {
    border-left: 10px solid white;
    border-right: 10px solid white;
    }

#slider img:hover {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    }


#slider img:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    }


.slick-slider.book {
    margin: 0 8px;
    max-width: calc(100% - 16px)}

     @media screen and (min-width: 992px) {            
        .slick-slider.book {
            overflow: hidden;
            height: 100%;
            margin: 0 8px!important;
             max-width: calc(100% - 16px)!important;
        }              

         /* the slides */

        .slick-slider.book .slick-slide {
            padding-left: 50px;
            padding-right: 50px;
            }

        /* the parent */

        .slick-slider.book .slick-list {

            padding-left: -50px;
            padding-right: -50px;

            padding-top: 0;
            padding-bottom: 0;
          }
    }

.sub_title {
    width: 100%;
    background-color: white;
    z-index: 10;
    padding: 30px 0 30px 10px;
    font-size: 1.03em;
}

@media screen and (min-width: 768px) {
.sub_title {
    font-size: 1.05em;
    padding: 30px 0 30px 30px;
}
}