@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");

@font-face {
  font-family: poppins-bold;
  src: url(../fonts/Poppins-SemiBold.otf);
}

@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Regular.otf);
}

@font-face {
  font-family: poppins-light;
  src: url(../fonts/Poppins-Light.otf);
}

@font-face {
  font-family: forum;
  src: url(../fonts/Forum-Regular.otf);
}

@font-face {
  font-family: merriweather;
  src: url(../fonts/Merriweather-Light.otf);
}

@font-face {
  font-family: merriweather-italic;
  src: url(../fonts/Merriweather-LightItalic.otf);
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: #1d1e1c;
    font-family: 'Montserrat', sans-serif;
}

.white-body {
    background-color: white;
}

.go-block {
    position: fixed;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: width .8s;
    -webkit-transition: width .8s;
    -moz-transition: width .8s;
    -ms-transition: width .8s;
    -o-transition: width .8s;
    background-color: #1d1e1c;
    z-index: 9999999999999999999999999;
}

.land-block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: width .8s;
    -webkit-transition: width .8s;
    -moz-transition: width .8s;
    -ms-transition: width .8s;
    -o-background-color: #1d1e1c;
    z-index: 9999999999999999999999999;
}

.scroller {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    margin: auto;
    width: 25px;
    height: 45px;
    border: 1px solid white;
    border-radius: 50px;
}

.scroller .dot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50px;
    animation: scroller 3s infinite;
    -webkit-animation: scroller 3s infinite;
    -ms-animation: scroller 3s infinite;
    -moz-animation: scroller 3s infinite;
    -o-animation: scroller 3s infinite;
}

@keyframes scroller {
    0% {height: 5px;}
    20% {height: 5px;bottom: 35px;}
    40% {height: 20px;bottom: 15px;}
    100% {}
}
@-webkit-keyframes scroller {
    0% {height: 5px;}
    20% {height: 5px;bottom: 35px;}
    40% {height: 20px;bottom: 15px;}
    100% {}
}
@-ms-keyframes scroller {
    0% {height: 5px;}
    20% {height: 5px;bottom: 35px;}
    40% {height: 20px;bottom: 15px;}
    100% {}
}
@-moz-keyframes scroller {
    0% {height: 5px;}
    20% {height: 5px;bottom: 35px;}
    40% {height: 20px;bottom: 15px;}
    100% {}
}
@-o-keyframes scroller {
    0% {height: 5px;}
    20% {height: 5px;bottom: 35px;}
    40% {height: 20px;bottom: 15px;}
    100% {}
}

h2 {
    font-family: 'poppins-bold', sans-serif;
    color: #1d1e1c;
    font-size: 1.1em;
    margin-bottom: 15px;
}

h3 {
    font-family: 'merriweather', sans-serif;
    color: #1d1e1c;
    font-size: 1.4em;
    line-height: 1.8em;
}

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.hero-pic h3,header > .hero h3 {
    font-family: 'poppins-light', sans-serif;
    font-size: 1.4em;
    line-height: 1.8em;
    text-transform: uppercase;
}

h3.long {
    font-family: 'merriweather', sans-serif;
}

h4 {
    font-family: 'merriweather', sans-serif;
    color: white;
    font-size: 1.6em;
    line-height: 1.2em;
}

#paintings.other h4 {
    color: #1d1e1c;
}

#paintings.other .header-cover h4 {
    color: white;
}

p {
    font-family: 'poppins', sans-serif;
    color: #1d1e1c;
    font-size: 1em;
    line-height: 2em;
    margin-top: 20px;
    margin-bottom: 0;
}

.cta-border-white,.cta-border-black {
    padding: 20px 50px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    width: auto;
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    -o-cursor: pointer;
}

.cta-border-white {
    border: 1px solid white;
    color: white !important;
}

.cta-border-white:hover {
    color: #1d1e1c !important;
    background-color: white;
    text-decoration: none;
}

.cta-border-black {
    border: 1px solid #1d1e1c;
    color: #1d1e1c !important;
}

.cta-border-black:hover {
    color: white !important;
    background-color: #1d1e1c;
    text-decoration: none;
}

.cta-border-black-mail {
    border: 1px solid #1d1e1c;
    color: #1d1e1c !important;
    padding: 20px 70px 20px 50px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    width: auto;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    cursor: pointer;
    background-image: url(../../images/envelop-black.png);
    background-size: 16px;
    background-position: right 40px top 22px;
    background-repeat: no-repeat;
}

.cta-border-black-mail:hover {
    border: 1px solid #1d1e1c;
    background-color: #1d1e1c;
    color: white !important;
    text-decoration: none;
    background-image: url(../../images/envelop-white.png);
}

.cta-border-white-mail {
    border: 1px solid white;
    color: white !important;
    padding: 20px 70px 20px 50px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    width: auto;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    background-color: transparent;
    background-image: url(../../images/envelop-white.png);
    background-size: 16px;
    background-position: right 40px top 22px;
    background-repeat: no-repeat;
}

.cta-border-white-mail:hover {
    background-color: white;
    color: #1d1e1c !important;
    text-decoration: none;
    background-image: url(../../images/envelop-black.png);
}

.small-cta-white,.small-cta-black {
    font-family: 'poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7em;
    text-decoration: none;
    transition: opacity .3s;
    cursor: pointer;
    opacity: .5;
    display: inline-block;
}

.small-cta-white {
    color: white !important;
}

.small-cta-black {
    color: #1d1e1c !important;
}

.small-cta-white:hover,.small-cta-black:hover {
    opacity: 1;
    text-decoration: none;
}

.cta-arrow {
    color: white !important;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 1.1em;
    width: auto;
    margin-top: 35px;
    display: inline-block;
    text-decoration: none;
    transition: padding-right .3s, opacity 1s;
    cursor: pointer;
    background-image: url(../../images/cta-arrow.png);
    background-size: 7px;
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 25px;
}

.cta-arrow:hover {
    color: white !important;
    text-decoration: none;
    padding-right: 40px;
}

.cta-arrow.black {
    color: #1d1e1c !important;
    background-image: url(../../images/cta-arrow-black.png);
}

.cta-arrow.black:hover {
    color: #1d1e1c !important;
}

.cta {
    border-bottom: 2px solid white;
    padding-bottom: 7px;
    color: white;
    font-family: 'ConvoExtraBold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    width: auto;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    transition: padding-bottom .3s;
}

.cta:hover {
    padding-bottom: 10px;
    color: white;
    text-decoration: none;
}

.cta-small {
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    opacity: .5;
    transition: opacity .3s;
    cursor: pointer;
    text-decoration: none;
}
.cta-small:hover {
    opacity: 1;
    text-decoration: none;
}

.line-white {
    height: 1px;
    width: 70px;
    background-color: white;
    margin: auto;
    margin-top: 40px;
}

.line-black {
    height: 1px;
    width: 70px;
    background-color: #1d1e1c;
    margin: auto;
    margin-top: 40px;
}

#choose {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity .3s;
}

#choose .black{
    width: 50%;
    height:100%;
    position:absolute;
    background-color: #1d1e1c;
    background-image: url(../../images/triangle-white.png);
    background-position: top -3px right -1.2px;
    background-repeat: no-repeat;
    background-size: auto calc(50% + 6px);
}

#choose .white{
    width: 50%;
    height:100%;
    right: 0;
    position:absolute;
    background-color: white;
    background-image: url(../../images/triangle-black.png);
    background-position: bottom -3px left -1.2px;
    background-repeat: no-repeat;
    background-size: auto calc(50% + 6px);
}

#choose .hero {
    position: absolute;
    width: 80%;
    max-width: 400px;
    height: 325px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

#choose .hero img {
    height: 180px;
}

.contact-info {
    position: absolute;
    width: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding-bottom: 20px;
}

.boven {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    background-color: #1d1e1c;
    background-image: url(../../images/triangle-white-phone.png);
    background-position: bottom -1px right -1px;
    background-size: calc(50% + 5px) auto;
    background-repeat: no-repeat;
}

.onder {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: white;
    background-image: url(../../images/triangle-black-phone.png);
    background-position: top -1px left -1px;
    background-size: calc(50% + 5px) auto;
    background-repeat: no-repeat;
}

    
.appoint .overalll {
    overflow: scroll;
    height: 100%;
    position: absolute;
    width: 100%;
}

.boven .hero,.onder .hero {
    height: 250px !important;
    max-width: 285px;
    position: absolute;
    width: 80%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
    
.boven .hero img,.onder .hero img {
    height: 110px;
}

#choose .appoint .line-section .line {
    background: #1d1e1c;
}

#choose .appoint .close-line-section .line {
    background-image: url(../../images/arrow-black.png);
}

.contact-info a:first-of-type,.contact-info a:nth-of-type(3) {
    margin-left: 0;
}

.contact-info a:nth-of-type(2) {
    margin-left: 15px;
}

.contact-info a {
    margin-left: 5px;
}

.social {
    width: 25px;
    margin-top: 10px;
    opacity: .5;
    transition: opacity .3s;
}

.social:hover {
    opacity: 1;
}

.who {
    width: 200px;
    height: 50px;
    background-color: #1d1e1c;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 65px;
    margin: auto;
    line-height: 50px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    color: white;
    text-align: center;
    background-image: url(../../images/arrow-point.svg);
    background-position: right -10px center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 1s;
}

.close-appoint {
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 0;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    color: white;
    text-align: center;
    opacity: .5;
    transition: opacity .3s;
    cursor: pointer;
    z-index: 999999999;
}

#choose .close-appoint {
    color: #1d1e1c;
}

.close-appoint:hover {
    opacity: 1;
}

.close-tester,.close-tester2 {
    width: 100%;
    margin-top: 20px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8em;
    color: white;
    text-align: center;
    opacity: .5;
    transition: opacity .3s;
    cursor: pointer;
}
.close-tester:hover,.close-tester2:hover {
    opacity: 1;
}

#paintings .close-tester,#paintings .close-tester2 {
    color: #1d1e1c;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 999999;
    background-color: #1d1e1c;
    display: none;
    opacity: 0;
    transition: 1s;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video.desktop {
    height: 300%;
    top: -100%;
  }
    .fullscreen-bg__video.phone {
    width: 300%;
    left: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video.desktop {
    width: 300%;
    left: -100%;
  }
    .fullscreen-bg__video.phone {
    height: 300%;
    top: -100%;
  }
}

.skip-intro {
    width: 100%;
    padding: 20px 0;
    position: absolute;
    bottom: 20px;
    font-family: 'poppins-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .9em;
    color: white;
    text-align: center;
    opacity: .5;
    transition: opacity .3s;
    cursor: pointer;
    z-index: 999999999;
}

.skip-intro:hover {
    opacity: 1;
}

#interiors,#paintings {
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}

.menu-phone {
    position: fixed;
    top: 0;
    background-color: #1d1e1c;
    z-index: 9999999999999999999999;
    height: 100%;
    width: 100%;
    max-width: 300px;
    padding: 35px;
    right: -300px;
    transition: right .5s;
}

.menu-phone ul {
    width: 100%;
    padding-left: 0;
    text-align: left;
    margin: 30px 0;
    display: none;
    opacity: 0;
    transition: opacity 1s;
}

.menu-phone ul li {
    height: auto;
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
}

.menu-phone ul li:last-of-type {
    margin-right: 0;
    margin-bottom: 0;
}

.close-menu {
    color: white !important;
    cursor: pointer;
    background-image: url(../../images/cta-arrow.svg);
    background-size: 6px;
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 25px;
    display: none;
    opacity: 0;
    transition: opacity 1s;
}

.close-menu:hover {
    opacity: 1 !important;
}

.menu-phone div {
    color: rgba(255,255,255,.75);
    display: none;
    opacity: 0;
    transition: opacity 1s;
}

.menu-phone div:first-of-type {
    margin-bottom: 30px;
}

.menu-phone div:last-of-type a {
    margin-bottom: 5px;
    display: inline-block;
}

.menu-phone div a {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(255,255,255,.75);
    font-size: .7em;
    transition: opacity .3s, color .3s;
}

.menu-phone div a.active {
    color: rgba(255,255,255,1);
}

.menu-phone div a:hover {
    color: rgba(255,255,255,1);
    text-decoration: none;
}

.menu-phone div:first-of-type a:last-of-type {
    color: rgba(255,255,255,1);
}

.menu-phone div:first-of-type a:last-of-type:hover {
    color: rgba(255,255,255,.7);
}

header {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.other header {
    position: relative;
    width: 100%;
    height: auto;
    padding: 300px 0 150px 0;
}

#paintings.other header {
    background-color: white;
}

.other .header-cover {
    height: 500px;
    padding: 0;
}

.hero-pic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: zoom 5s ease;
    -webkit-animation: zoom 5s ease;
    -ms-animation: zoom 5s ease;
    -moz-animation: zoom 5s ease;
    -o-animation: zoom 5s ease;
    transition: opacity .3s, right 1s ease;
    -webkit-transition: opacity .3s, right 1s ease;
    -ms-transition: opacity .3s, right 1s ease;
    -moz-transition: opacity .3s, right 1s ease;
    -o-transition: opacity .3s, right 1s ease;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@-webkit-keyframes zoom {
    0% {-webkit-transform: scale(1); width: 0%;}
    20% {width: 100%;}
    100% {-webkit-transform: scale(1.1);}
}
@-ms-keyframes zoom {
    0% {-ms-transform: scale(1); width: 0%;}
    20% {width: 100%;}
    100% {-ms-transform: scale(1.1);}
}
@-moz-keyframes zoom {
    0% {-moz-transform: scale(1); width: 0%;}
    20% {width: 100%;}
    100% {-moz-transform: scale(1.1);}
}
@-o-keyframes zoom {
    0% {-o-transform: scale(1); width: 0%;}
    20% {width: 100%;}
    100% {-o-transform: scale(1.1);}
}
@keyframes zoom {
    0% {transform: scale(1); width: 0%;}
    20% {width: 100%;}
    100% {transform: scale(1.1);}
}

.other .hero-pic {
    animation: zoom-other 5s ease;
    -webkit-animation: zoom-other 5s ease;
    -ms-animation: zoom-other 5s ease;
    -moz-animation: zoom-other 5s ease;
    -o-animation: zoom-other 5s ease;
}

@keyframes zoom-other {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
}
@-webkit-keyframes zoom-other {
    0% {-webkit-transform: scale(1);}
    100% {-webkit-transform: scale(1.1);}
}
@-ms-keyframes zoom-other {
    0% {-ms-transform: scale(1);}
    100% {-ms-transform: scale(1.1);}
}
@-moz-keyframes zoom-other {
    0% {-moz-transform: scale(1);}
    100% {-moz-transform: scale(1.1);}
}
@-o-keyframes zoom-other {
    0% {-o-transform: scale(1);}
    100% {-o-transform: scale(1.1);}
}

#interiors .hero-pic-2 {
    display: none;
}
#interiors .hero-pic-3 {
    display: none;
}
#interiors .hero-pic-4 {
    display: none;
}

#paintings .hero-pic-2 {
    display: none;
}
#paintings .hero-pic-3 {
    display: none;
}
#paintings .hero-pic-4 {
    display: none;
}

nav {
    width: 100%;
    text-align: center;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.fixed-logo {
    display: none;
    opacity: 0;
    position: fixed;
    top: 40px;
    left: 40px;
    width: 100px;
    height: 82px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    z-index: 99999;
    cursor: pointer;
}

#interiors .fixed-logo {
    background-image: url(../../images/woutim-interiors-logo.svg);
}
#paintings .fixed-logo {
    background-image: url(../../images/woutim-paintings-logo-black.svg);
}

.fixed-burger {
    display: none;
    opacity: 0;
    position: fixed;
    top: 40px;
    right: 40px;
    width: 55px;
    height: 82px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    z-index: 99999;
    cursor: pointer;
}

#interiors .fixed-burger {
    background-image: url(../../images/burger.png);
}
#paintings .fixed-burger {
    background-image: url(../../images/burger-black.png);
}

h1 {
    width: 100px;
    height: 82px;
    text-indent: -999999px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

#interiors h1 {
    background-image: url(../../images/woutim-interiors-logo.svg);
}

#paintings h1 {
    background-image: url(../../images/woutim-paintings-logo-black.svg);
}

header .hero-pic .hero {
    max-width: 750px;
    height: 205px;
    animation: zoom-back 5s ease;
    -webkit-animation: zoom-back 5s ease;
    -ms-animation: zoom-back 5s ease;
    -moz-animation: zoom-back 5s ease;
    -o-animation: zoom-back 5s ease;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    -moz-transform: scale(.9);
    -o-transform: scale(.9);
}

.other header .hero-pic .hero {
    height: auto;
    top: auto;
    bottom: 100px;
}

@keyframes zoom-back {
    0% {transform: scale(1);}
    100% {transform: scale(.9);}
}
@-webkit-keyframes zoom-back {
    0% {-webkit-transform: scale(1);}
    100% {-webkit-transform: scale(.9);}
}
@-ms-keyframes zoom-back {
    0% {-ms-transform: scale(1);}
    100% {-ms-transform: scale(.9);}
}
@-moz-keyframes zoom-back {
    0% {-moz-transform: scale(1);}
    100% {-moz-transform: scale(.9);}
}
@-o-keyframes zoom-back {
    0% {-o-transform: scale(1);}
    100% {-o-transform: scale(.9);}
}

.hero2,.hero3,.hero4 {
    display: none;
}

header .hero-pic .hero h2 {
    color: white;
    font-size: 1.6em;
    height: 32px;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: 10px;
}

header .hero-pic .hero h3 {
    color: white;
    font-size: 5em;
    line-height: 1em;
    margin-bottom: 10px;
    height: 75px;
    overflow: hidden;
    padding-top: 0;
    animation: h3 2s;
    -webkit-animation: h3 2s;
    -ms-animation: h3 2s;
    -moz-animation: h3 2s;
    -o-animation: h3 2s;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
}

.other header .hero h3 {
    font-size: 4em;
    line-height: 1em;
    margin-bottom: 10px;
}

#interiors.other header .hero h3,#paintings.other .header-cover .hero h3 {
    color: white;
}

#paintings.other header .hero h3 {
    color: #1d1e1c;
}

@keyframes h3 {
    0% {padding-top: 145px; opacity: 0;}
    50% {padding-top: 145px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-webkit-keyframes h3 {
    0% {padding-top: 145px; opacity: 0;}
    50% {padding-top: 145px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-ms-keyframes h3 {
    0% {padding-top: 145px; opacity: 0;}
    50% {padding-top: 145px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-moz-keyframes h3 {
    0% {padding-top: 145px; opacity: 0;}
    50% {padding-top: 145px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-o-keyframes h3 {
    0% {padding-top: 145px; opacity: 0;}
    50% {padding-top: 145px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}

header .hero-pic .hero h4 {
    height: 31px;
    margin-top: 25px;
    overflow: hidden;
    padding-top: 0;
    animation: h4 2.5s;
    -webkit-animation: h4 2.5s;
    -ms-animation: h4 2.5s;
    -moz-animation: h4 2.5s;
    -o-animation: h4 2.5s;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    opacity: 1;
}

.other header .hero-pic .hero h4 {
    margin-top: 10px;
}

@keyframes h4 {
    0% {padding-top: 38px; opacity: 0;}
    55% {padding-top: 38px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-webkit-keyframes h4 {
    0% {padding-top: 38px; opacity: 0;}
    55% {padding-top: 38px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-ms-keyframes h4 {
    0% {padding-top: 38px; opacity: 0;}
    55% {padding-top: 38px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-moz-keyframes h4 {
    0% {padding-top: 38px; opacity: 0;}
    55% {padding-top: 38px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}
@-o-keyframes h4 {
    0% {padding-top: 38px; opacity: 0;}
    55% {padding-top: 38px; opacity: 0;}
    100% {padding-top: 0; opacity: 1;}
}

header .hero-pic .hero .cta-arrow {
    height: 23px;
    overflow: hidden;
    padding-top: 0;
    animation: cta 3s;
    -webkit-animation: cta 3s;
    -ms-animation: cta 3s;
    -moz-animation: cta 3s;
    -o-animation: cta 3s;
}

@keyframes cta {
    0% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    60% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    100% {padding-top: 0; opacity: 1; background-position: right center;}
}
@-webkit-keyframes cta {
    0% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    60% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    100% {padding-top: 0; opacity: 1; background-position: right center;}
}
@-ms-keyframes cta {
    0% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    60% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    100% {padding-top: 0; opacity: 1; background-position: right center;}
}
@-moz-keyframes cta {
    0% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    60% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    100% {padding-top: 0; opacity: 1; background-position: right center;}
}
@-o-keyframes cta {
    0% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    60% {padding-top: 27px; opacity: 0; background-position: right top 27px;}
    100% {padding-top: 0; opacity: 1; background-position: right center;}
}

.load-slider {
  position: absolute;
  width:40px;
  height: 40px;
    z-index: 99999999;
    bottom: 50px;
    left: 50px;
    display: none;
}

.load-slider-1 {
    display: block;
}

.halfclip {
  width: 50%;
  height: 100%;
  right: 0px;
  position: absolute;
   overflow: hidden;
   transform-origin: left center;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
   animation: cliprotate 8s steps(2);
   -webkit-animation: cliprotate 8s steps(2);
    -ms-animation: cliprotate 8s steps(2);
    -moz-animation: cliprotate 8s steps(2);
    -o-animation: cliprotate 8s steps(2);
}

.halfclip2 {
  width: 50%;
  height: 100%;
  right: 0px;
  position: absolute;
   overflow: hidden;
   transform-origin: left center;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
   animation: cliprotate 8.5s steps(2);
   -webkit-animation: cliprotate 8.5s steps(2);
    -ms-animation: cliprotate 8.5s steps(2);
    -moz-animation: cliprotate 8.5s steps(2);
    -o-animation: cliprotate 8.5s steps(2);
}

.halfcircle {
  box-sizing: border-box;
  height: 100%;
  right: 0px;
  position: absolute;
  border: solid 1px transparent;
   border-top-color: white;
   border-left-color: white;
   border-radius: 50%;
}
.clipped {
  width: 200%;
   animation: rotate 4s linear infinite;
   -webkit-animation: rotate 4s linear infinite;
    -ms-animation: rotate 4s linear infinite;
    -moz-animation: rotate 4s linear infinite;
    -o-animation: rotate 4s linear infinite;
}
.clipped2 {
  width: 200%;
   animation: rotate 4.25s linear infinite;
   -webkit-animation: rotate 4.25s linear infinite;
    -ms-animation: rotate 4.25s linear infinite;
    -moz-animation: rotate 4.25s linear infinite;
    -o-animation: rotate 4.25s linear infinite;
}
.fixed {
  width: 100%;
    transform: rotate(135deg); 
    -moz-transform: rotate(135deg); 
    -webkit-transform: rotate(135deg); 
    -ms-transform: rotate(135deg); 
    -o-transform: rotate(135deg); 
   animation: showfixed 8s steps(2) infinite;
   -webkit-animation: showfixed 8s linear infinite;
    -ms-animation: showfixed 8s linear infinite;
    -moz-animation: showfixed 8s linear infinite;
    -o-animation: showfixed 8s linear infinite;
}
.fixed2 {
  width: 100%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
   animation: showfixed 8.5s steps(2) infinite;
   -webkit-animation: showfixed 8.5s linear infinite;
    -ms-animation: showfixed 8.5s linear infinite;
    -moz-animation: showfixed 8.5s linear infinite;
    -o-animation: showfixed 8.5s linear infinite;
}

@-ms-keyframes cliprotate {
  0% {-ms-transform: rotate(0deg);}
  100% {-ms-transform: rotate(360deg);}
}

@-webkit-keyframes cliprotate {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes cliprotate {
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}

@-o-keyframes cliprotate {
  0% {-o-transform: rotate(0deg);}
  100% {-o-transform: rotate(360deg);}
}

@keyframes cliprotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}


@-ms-keyframes rotate {
  0% {-ms-transform: rotate(-45deg);}
  100% {-ms-transform: rotate(135deg);}
}

@-webkit-keyframes rotate {
  0% {-webkit-transform: rotate(-45deg);}
  100% {-webkit-transform: rotate(135deg);}
}

@-o-keyframes rotate {
  0% {-o-transform: rotate(-45deg);}
  100% {-o-transform: rotate(135deg);}
}

@-moz-keyframes rotate {
  0% {-moz-transform: rotate(-45deg);}
  100% {-moz-transform: rotate(135deg);}
}

@keyframes rotate {
  0% {transform: rotate(-45deg);}
  100% {transform: rotate(135deg);}
}

@-ms-keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

@-webkit-keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

@-moz-keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

@-o-keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

@keyframes showfixed {
  0% {opacity: 0;}
  49.9% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

.slider-button {
  position: absolute;
  width:40px;
  height: 40px;
    z-index: 99999999;
    bottom: 50px;
    border: 1px solid white;
    border-radius: 100px;
    background-size: 8px;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    opacity: 0;
    transition: opacity 1s,background-position .3s;
    cursor: pointer;
}

.darker {
    background-color: rgba(0,0,0,.05);
    padding: 150px 0 !important;
}

ul {
    width: calc(100% - 305px);
    display: inline-block;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    padding-left: 95px;
    margin: 0;
}

ul li {
    display: inline-block;
    height: 20px;
    padding: 0;
    list-style: none;
    margin: 0;
    margin-right: 20px; 
    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
    color: white;
}

ul li:last-of-type {
    margin-right: 0;
    color: white;
}

ul li a {
    font-family: 'poppins-bold', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: white !important;
    font-size: .85em;
    transition: border-bottom .3s;
}

#paintings.other ul li a {
    color: #1d1e1c !important;
}

#paintings.other .header-cover ul li a {
    color: white !important;
}

ul li a.active {
    opacity: .5;
}

ul li a.active:hover {
    border-bottom: none;
    cursor: default;
}

ul li a:hover {
    color: white !important;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    text-decoration: none;
}

#paintings.other ul li a:hover {
    color: #1d1e1c !important;
    border-bottom: 2px solid #1d1e1c;
}

#paintings.other .header-cover ul li a:hover {
    color: white !important;
    border-bottom: 2px solid white;
}

#paintings.other ul li a.active:hover {
    border-bottom: none;
    cursor: default;
}

nav ul img {
    opacity: 0;
    display: none;
    width: 55px;
    transition: opacity .3s;
}

nav ul img.black {
    display: none;
}

nav div {
    display: inline-block;
    width: 195px;
    text-align: left;
    vertical-align: middle;
    transition: opacity .3s;
    color: rgba(255,255,255,.75);
}

#paintings.other nav div {
    color: rgba(0,0,0,.75);
}

#paintings.other .header-cover nav div {
    color: rgba(255,255,255,.75);
}

nav div a {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(255,255,255,.75);
    font-size: .7em;
    transition: opacity .3s, color .3s;
}

#paintings.other nav div a {
    color: rgba(0,0,0,.75);
}

#paintings.other .header-cover nav div a {
    color: rgba(255,255,255,.75);
}

nav div a.active {
    color: rgba(255,255,255,1);
}

#paintings.other nav div a.active {
    color: rgba(0,0,0,1);
}

#paintings.other .header-cover nav div a.active {
    color: rgba(255,255,255,1);
}

nav div a:hover {
    color: rgba(255,255,255,1);
    text-decoration: none;
}

#paintings.other nav div a:hover {
    color: rgba(0,0,0,1);
}

#paintings.other .header-cover nav div a:hover {
    color: rgba(255,255,255,1);
}

nav div a:last-of-type {
    color: rgba(255,255,255,1);
}

#paintings.other nav div a:last-of-type {
    color: rgba(0,0,0,1);
}

#paintings.other .header-cover nav div a:last-of-type {
    color: rgba(255,255,255,1);
}

nav div a:last-of-type:hover {
    color: rgba(255,255,255,.7);
}

#paintings.other nav div a:last-of-type:hover{
    color: rgba(0,0,0,.7);
}

#paintings.other .header-cover nav div a:last-of-type:hover{
    color: rgba(255,255,255,.7);
}

header .hero {
    position: absolute;
    width: 75%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

/*.other header .hero {
    position: relative;
}*/

header .bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
}

header .bottom .vert-line {
    display: inline-block;
    width: 1px;
    height: 100px;
    margin: auto;
    background: white;
    margin-bottom: 20px;
}

header .bottom a {
    font-family: 'ConvoExtraBold', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: white;
    transition: opacity .3s;
    display: block;
    margin-bottom: 30px;
    font-size: .85em;
}

header .bottom a:hover {
    text-decoration: none;
    color: white;
    opacity: .7;
}

.appoint {
    position: fixed;
    width: 500px;
    height: 100%;
    background: #d1d1d1;
    top: 0;
    left: 100%;
    z-index: 999999999999999;
    transition: left .5s;
}

.appoint .line-section,.appoint .close-line-section {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -25px;
    cursor: pointer;
}

.appoint .close-line-section {
    display: none;
}

.appoint .line {
    position: absolute;
    width: 3px;
    height: 100px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: white;
    border-radius: 50px;
    transition: left .3s;
}

.appoint .close-line-section .line {
    border-radius: 0;
    width: 15px;
    height: 120px;
    background-image: url(../../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
}

.appoint .hero {
    position: absolute;
    width: 75%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    height: 250px;
    display: none;
}

#choose .appoint .hero {
    height: 660px;
}

aside {
    width: 95%;
    max-width: 500px;
    background-color: #1d1e1c;
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: center;
    padding: 0 15px 15px 15px;
    z-index: 999999999;
    display: none;
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}

#paintings aside {
    background-color: white;
}

aside img {
    width: 20px;
    margin-top: -7px;
    margin-bottom: 20px;
}

aside h2,aside h3 {
    color: white;
    margin: 0;
}

#paintings aside h2,#paintings aside h3 {
    color: #1d1e1c;
}

aside h2 {
    margin-bottom: 5px;
}

aside .cta-border-white,aside .cta-border-black {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

aside .cta-small {
    color: white !important;
}

#paintings aside .cta-small {
    color: #1d1e1c !important;
}

main {
    position: absolute;
    width: 100%;
    top: 100%;
}

#interiors main {
    background-color: #1d1e1c;
}

#paintings main {
    background-color: white;
}

/*.other main {
    position: relative;
    top: auto;
}*/

.other main {
    top: 500px;
}

main h2,main h3 {
    color: white;
}

#paintings main h2,#paintings main h3 {
    color: #1d1e1c;
}

main h2 {
    margin-bottom: 30px;
}

main .padding {
    padding: 200px 0;
}

main .small-padding-bottom {
    padding-bottom: 70px;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.small-margin-desktop {
    height: 50px;
}

.small-margin-top {
    margin-top: 20px;
}

.medium-margin-top {
    margin-top: 100px;
}

.small-margin-bottom {
    margin-bottom: 30px;
}

.tag {
    margin-right: 10px;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.tag:last-of-type {
    margin-right: 0;
}

.filter-item {
    transition: opacity .5s;
}

.title-margin {
    margin-bottom: 30px;
}

.clients figure {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rij {
    overflow: hidden;
    height: 95px;
}

.rij .clients {
    transition: margin-top 1s;
    -webkit-transition: margin-top 1s;
    -ms-transition: margin-top 1s;
    -moz-transition: margin-top 1s;
    -o-transition: margin-top 1s;
}

.absolute {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.big-figure-image {
    width: 100%;
    padding-bottom: 80%;
    background-image: url(../../images/about-woutim-big.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.big-figure {
    width: 100%;
}

article {
    background-position: bottom,center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50% 35px 30px 35px;
}

#paintings article h2, #paintings article h3 {
   color: white;
}

#paintings article {
    background-color: #1d1e1c;
}

article.image {
    background-color: white;
    background-position: center;
    background-size: cover;
    padding:0;
    padding-top: 70%;
}

#paintings article.image {
    background-color: #1d1e1c;
}

article.full {
    padding-top: 25%;
    text-align: center;
}

article.full.image {
    padding-top: 35%;
}

.small-article {
    padding: 100% 35px 30px 35px;
}

article h2,form h2 {
    margin-bottom: 10px;
}

article .cta-arrow {
    margin-top: 10px;
}

.map {
    text-align: left;
}

.europe {
    width: 100%;
}

.belgie {
    width: 80%;
    margin-left: 10%;
}

.europe-flags {
    width: 65%;
    margin-left: 22.5%;
    margin-top: -79%;
    opacity: 0;
}

.europe-flags-final {
    width: 65%;
    margin-left: 22.5%;
    margin-top: -79%;
    animation: plant 2s;
    -webkit-animation: plant 2s;
    -ms-animation: plant 2s;
    -moz-animation: plant 2s;
    -o-animation: plant 2s;
}

.belgie-flags {
    width: 80%;
    margin-left: 10%;
    margin-top: -65%;
    opacity: 0;
}

.belgie-flags-final {
    width: 80%;
    margin-left: 10%;
    margin-top: -65%;
    animation: plant-belgie 2s;
    -webkit-animation: plant-belgie 2s;
    -ms-animation: plant-belgie 2s;
    -moz-animation: plant-belgie 2s;
    -o-animation: plant-belgie 2s;
}

.map-text {
    margin-top: -20%;
}

@-webkit-keyframes plant {
    0% {margin-top: -90%; opacity: 0;}
    50% {margin-top: -90%; opacity: 0;}
    100% {margin-top: -79%; opacity: 1;}
}
@-ms-keyframes plant {
    0% {margin-top: -90%; opacity: 0;}
    50% {margin-top: -90%; opacity: 0;}
    100% {margin-top: -79%; opacity: 1;}
}
@-moz-keyframes plant {
    0% {margin-top: -90%; opacity: 0;}
    50% {margin-top: -90%; opacity: 0;}
    100% {margin-top: -79%; opacity: 1;}
}
@-o-keyframes plant {
    0% {margin-top: -90%; opacity: 0;}
    50% {margin-top: -90%; opacity: 0;}
    100% {margin-top: -79%; opacity: 1;}
}
@keyframes plant {
    0% {margin-top: -90%; opacity: 0;}
    50% {margin-top: -90%; opacity: 0;}
    100% {margin-top: -79%; opacity: 1;}
}

@-webkit-keyframes plant-belgie {
    0% {margin-top: -75%; opacity: 0;}
    50% {margin-top: -75%; opacity: 0;}
    100% {margin-top: -65%; opacity: 1;}
}
@-ms-keyframes plant-belgie {
    0% {margin-top: -75%; opacity: 0;}
    50% {margin-top: -75%; opacity: 0;}
    100% {margin-top: -65%; opacity: 1;}
}
@-moz-keyframes plant-belgie {
    0% {margin-top: -75%; opacity: 0;}
    50% {margin-top: -75%; opacity: 0;}
    100% {margin-top: -65%; opacity: 1;}
}
@-o-keyframes plant-belgie {
    0% {margin-top: -75%; opacity: 0;}
    50% {margin-top: -75%; opacity: 0;}
    100% {margin-top: -65%; opacity: 1;}
}
@keyframes plant-belgie {
    0% {margin-top: -75%; opacity: 0;}
    50% {margin-top: -75%; opacity: 0;}
    100% {margin-top: -65%; opacity: 1;}
}

form {
    margin-top: 0;
    width: 100%;
}

.appoint input {
    margin-bottom: 15px;
}

input,textarea {
    width: 100%;
    border: none;
    outline: none;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,.15);
    color: #1e1e1e;
    border-radius: 0;
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { /* Edge */
  color: #1e1e1e;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #1e1e1e;
}

input::placeholder, textarea::placeholder {
  color: #1e1e1e;
}

input.submit {
    background-color: transparent;
    border-bottom: 2px solid white;
    padding: 0;
    padding-bottom: 7px;
    padding-right: 30px;
    color: white;
    font-family: 'ConvoExtraBold', sans-serif;
    text-transform: uppercase;
    letter-spacing: .25em;
    width: auto;
    background-image: url(../../images/envelop-white.png);
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: right top 4px;
    margin-top: 20px;
    transition: padding-bottom .3s;
    box-shadow: none;
}

input.cta-border-black-mail {
    background-color: transparent;
    box-shadow: none;
}

input.submit:hover {
    padding-bottom: 10px;
}

.tester,.tester2 {
    position: fixed;
    width: 95%;
    max-width: 1000px;
    height: 95%;
    max-height: 630px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #0e0f0e;
    padding: 50px 0;
    z-index: 999999999999999999999;
    overflow: scroll;
    display: none;
    opacity: 0;
    transition: opacity .3s;
}

#paintings .tester,#paintings .tester2 {
    background-color: #f2f2f2;
}

.google-map {
    width: 100%;
    height: 500px;
}

footer {
    background-color: rgba(0,0,0,.5);
    padding: 100px 0;
    margin-top: 200px;
}

#paintings footer {
    background-color: rgba(0,0,0,.05);
}

footer .logo {
    width: 100px;
    margin-bottom: 40px;
}

footer .cta-small {
    color: white !important;
    margin-bottom: 15px;
    display: inline-block;
}

#paintings footer .cta-small {
    color: #1e1e1e !important;
}

footer .cta-small:last-of-type {
    margin-bottom: 0;
}

@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    20% {opacity: 0;}
    100% {opacity: 1;}
}
@-ms-keyframes fade-in {
    0% {opacity: 0;}
    20% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fade-in {
    0% {opacity: 0;}
    20% {opacity: 0;}
    100% {opacity: 1;}
}
.fade-in-element {
  animation: fade-in 1.5s;
    -webkit-animation: fade-in 1.5s;
    -ms-animation: fade-in 1.5s;
}

.hidden {
  opacity: 0;
}

.phone {
    display: none;
}

@media only screen and (max-width: 1500px) {
    
    header .hero-pic .hero {
        height: 170px;
    }
    
    header .hero-pic .hero h3 {
        height: 60px;
        font-size: 4em;
        margin-bottom: 15px;
    }
    
    h4 {
        font-size: 1.4em;
        height: 28px;
    }
    
    .cta-arrow {
        font-size: 1.1em;
        background-size: 6px;
        margin-top: 25px;
    }
    
    header .hero-pic .hero .cta-arrow {
        height: 22px;
    }
    
}

@media only screen and (max-width: 1200px) {
    
    .small-margin-top-tablet {
        margin-top: 20px;
    }
    
    .prev-projects article {
        width: 50%;
    }
    
    .rij {
        height: 80px;
    }
    
    .clients figure {
        width: 70%;
    }
    
}

@media only screen and (max-width: 1000px) {
    
    .small-padding-bottom-phone {
        padding-bottom: 120px !important;
    }
    
    .rij {
        height: 55px;
    }
    
    nav {
        padding: 20px 30px 20px 20px;
    }
    
    nav ul {
        width: calc(100% - 105px);
        padding-left: 0;
        text-align: right;
    }
    
    nav div {
        display: none;
    }
    
    header .hero {
        height: 270px;
    }
    
    .other header .hero {
        height: auto;
    }
    
    h4 {
        font-size: 1.4em;
    }
    
    header .hero-pic .hero {
        height: 165px;
    }
    
    header .hero-pic .hero h3 {
        font-size: 3.5em;
        height: 50px;
    }
    
    header .hero-pic .hero h4 {
        height: 27px;
    }
    
    .cta-border-white, .cta-border-black {
        padding: 18px 40px;
        font-size: .7em;
        margin-top: 20px;
        width: 100%;
    }
    
    .big-figure-image {
        padding-bottom: 100%;
    }
    
}

@media only screen and (max-width: 767px) {
    
    .other .header-cover {
        height: 350px;
    }
    
    .other header .hero-pic .hero {
        bottom: 75px;
    }
    
    .clients {
        max-width: 280px;
        margin: auto;
    }
    
    .clients figure {
        width: 100%;
    }
    
    .rij {
        height: 95px;
    }
    
    main {
        text-align: center;
    }
    
    .other main {
        top: 350px;
    }
    
    main .padding {
        padding: 120px 0;
    }
    
    .small-margin-desktop {
        display: none;
    }
    
    .small-margin-top-phone {
        margin-top: 20px;
    }
    
    .margin-top-phone {
        margin-top: 100px;
    }
    
    .small-margin-bottom {
        margin-bottom: 20px;
    }
    
    .small-padding-bottom-phone {
        padding-bottom: 70px !important;
    }
    
    article.full {
        padding-top: 50%;
    }
    
    article.full.image {
        padding-top: 100%;
    }
    
    .phone {
        display: block;
    }
    
    .desktop {
        display: none;
    }
    
    #choose .black{
        width: 100%;
        height:50%;
        background-image: url(../../images/triangle-white-phone.png);
        background-position: bottom -1px right -1px;
        background-size: calc(50% + 5px) auto;
    }

    #choose .white{
        width: 100%;
        height:50%;
        bottom: 0;
        background-image: url(../../images/triangle-black-phone.png);
        background-position: top -1px left -1px;
        background-size: calc(50% + 5px) auto;
    }
    
    #choose .hero {
        height: 215px;
        max-width: 285px;
    }
    
    #choose .contact-info {
        display: none;
    }
    
    .line-white,.line-black {
        margin-top: 30px;
    }
    
    #choose .hero img {
        height: 110px;
    }
    
    .appoint {
        width: 100%;
    }
    
    .appoint .hero {
        height: 100% !important;
        overflow: scroll;
        width: 100%;
        padding: 75px 10%;
        max-width: none !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .absolute {
        position: relative;
    }
    
    .big-figure-image {
        margin-top: 50px;
    }
    
    .big-figure {
        margin-top: 30px;
        margin-bottom: -50px;
    }
    
    nav {
        position: fixed;
    }
    
    nav ul li {
        display: none;
    }
    
    nav ul img {
        display: inline-block;
        opacity: 1;
    }
    
    header .hero {
        height: 205px;
    }
    
    .other header .hero {
        height: auto;
    }
    
    header .bottom a {
        font-size: .75em;
    }
    
    .prev-projects article {
        width: 100%;
    }
    
    .newsletter input {
        width: 100%;
    }

    .newsletter input:first-of-type {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .map-text {
        margin-top: 20px;
    }
    
    input,textarea {
        text-align: center;
    }
    
    footer {
        text-align: center;
    }
    
    footer .no-show {
        display: none;
    }
    
    footer .row > div {
        margin-bottom: 30px;
    }
    
    footer .row > div:last-of-type {
        margin-bottom: 0;
    }
    
}

@media only screen and (max-width: 600px) {
    
    .fixed-logo {
        top: 20px;
        left: 20px;
        width: 85px;
        height: 70px;
    }

    .fixed-burger {
        top: 20px;
        right: 20px;
        width: 55px;
        height: 70px;
    }
    
    .other header {
        padding: 150px 0 50px 0;
    }
    
    .other .header-cover {
        padding: 150px 0 50px 0;
    }
    
    #interiors .appoint,#paintings .appoint {
        display: none;
    }
    
    h1 {
        width: 85px;
        height: 70px;
    }
    
    nav {
        padding: 20px;
    }
    
    nav ul {
        width: calc(100% - 90px);
    }
    
    .load-slider {
        left: 5%;
        bottom: 20px;
    }
    
    aside h2 {
        font-size: 1em;
    }
    
    aside h3 {
        font-size: 1.2em;
    }
    
    header .hero-pic .hero {
        height: 175px;
    }
    
    header .hero-pic .hero h3 {
        font-size: 2.2em;
        height: 35px;
    }
    
    .other header .hero h3 {
        font-size: 2.2em;
    }
    
    header .hero-pic .hero h4 {
        font-size: 1.3em;
        height: 45px;
    }
    
    .other header .hero h4 {
        font-size: 1.3em;
    }
    
    .appoint .line-section, .appoint .close-line-section {
        width: 30px;
        left: -15px;
    }
    
    aside {
        bottom: 10px;
        right: 2.5%;
    }
    
}

@media only screen and (max-width: 400px) {
    
    header .hero-pic .hero {
        height: 165px;
    }
    
    header .hero-pic .hero h3 {
        font-size: 2em;
        height: 32px;
    }
    
    .other header .hero h3 {
        font-size: 2em;
    }
    
    header .hero-pic .hero h4 {
        font-size: 1.2em;
        height: 42px;
    }
    
    .other header .hero h4 {
        font-size: 1.2em;
    }
    
    .cta-arrow {
        font-size: 1em;
        height: 20px;
    }
    
    header .hero-pic .hero .cta-arrow {
        height: 20px;
    }
    
}

@media only screen and (max-width: 350px) {
    
    aside h2 {
        font-size: .9em;
    }
    
    aside h3 {
        font-size: 1.1em;
    }
    
    header .hero-pic .hero {
        height: 150px;
    }
    
    header .hero-pic .hero h3 {
        font-size: 1.8em;
        height: 30px;
    }
    
    .other header .hero h3 {
        font-size: 1.8em;
    }
    
    header .hero-pic .hero h4 {
        font-size: 1em;
        height: 35px;
    }
    
    .other header .hero h4 {
        font-size: 1em;
    }
    
    .cta-border-white, .cta-border-black {
        padding: 18px 35px;
    }
    
}

@media only screen and (max-height: 450px) {
    
    header,#choose {
        height: 450px;
    }
    
    .boven {
        height: 400px;
    }
    
    .onder {
        height: 400px;
        top: 400px;
        bottom: auto;
    }
    
    .appoint .contact-info {
        position: relative !important;
    }
    
}

@supports(-webkit-appearance: none) or (-moz-appearance: none) {
  input,textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}