@charset "UTF-8";
 @import url(https://use.typekit.net/psk2kjj.css);
:root {
--main-white: rgb(252, 252, 252);
--main-beige: rgb(221, 210, 153);
--main-black: rgb(10, 10, 10);
--transparent-black: rgba(10, 10, 10, 0.9);
--transparent-black-middle: rgba(10, 10, 10, 0.7);
--transparent-white: rgba(252, 252, 252, 0.5);
--transparent-white-full: rgba(252, 252, 252, 0.9);
--transparent-beige: rgba(221, 210, 153, 0.9);
--back-screen: rgba(50, 50, 50, 0.8);
--text: rgba(252, 252, 252, 0.8); }
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: century-gothic, sans-serif;
font-weight: 400;
font-style: normal; }
html {
scroll-behavior: smooth; }
body {
background-color: var(--main-black);
color: var(--main-white); }
*,
*::before,
*::after {
box-sizing: border-box; }
#back-screen {
display: none;
z-index: 500;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--back-screen); }
#back-screen.active {
display: block; }
body::-webkit-scrollbar {
background-color: var(--main-black);
width: 0.5em; }
body::-webkit-scrollbar-thumb {
background-color: var(--main-beige);
outline: 1px solid var(--main-white); }
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: century-gothic, sans-serif;
font-weight: 700; }
a {
color: var(--main-beige);
text-decoration: none; }
section {
border: 16px solid var(--main-black);
box-sizing: border-box;
width: 100%; }
.btn-go-to {
position: relative;
left: 0;
bottom: 0;
padding-right: 32px; }
.btn-go-to::after {
content: "";
position: absolute;
right: 0;
top: calc(50% - 0.5px);
width: 24px;
height: 1px;
background-color: var(--transparent-white);
transition: background-color 0.5s; }
.btn-go-to::before {
content: "";
position: absolute;
left: -8px;
top: calc(50% - 0.5px);
width: 0;
height: 1px;
background-color: var(--transparent-white);
transition: left 0.5s, width 0.5s, background-color 0.5s; }
.btn-go-to:hover::before {
left: -56px;
width: 48px;
background-color: var(--main-white); }
.btn-go-to:hover::after {
background-color: var(--main-white); }
.btn-go-to a {
font-weight: 300;
color: var(--transparent-white);
transition: color 0.5s; }
.btn-go-to a:hover {
color: var(--main-white); }
.site-header-pc {
display: flex;
align-items: center;
z-index: 550;
width: 100%;
position: fixed;
top: 0;
left: 0;
justify-content: space-between;
padding: 30px 30px 15px;
transition: background-color .5s; }
.site-header-pc.active {
background-color: var(--main-black); }
.site-header-pc.active::before {
opacity: 0; }
.site-header-pc::before {
position: absolute;
content: "";
bottom: 0;
left: 30px;
height: 1px;
width: calc(100% - 60px);
background-color: rgba(255, 255, 255, 0.7); }
.site-header-pc-logo {
z-index: 400; }
.site-header-pc-logo img {
width: 60px;
height: auto;
transition: width 0.5s, height 0.5s; }
.site-header-pc-nav ul {
padding: 0 30px;
margin: 0;
list-style-type: none;
display: flex;
gap: 60px; }
.site-header-pc-nav ul li a {
color: white;
text-transform: uppercase; }
.site-header {
display: none;
z-index: 550;
width: 100%;
position: fixed;
top: 0;
left: 0;
justify-content: space-between;
padding: 60px 60px 0; }
.site-header-logo {
z-index: 400; }
.site-header-logo img {
width: 60px;
height: auto;
transition: width 0.5s, height 0.5s; }
.site-header-nav {
z-index: 550;
position: fixed;
top: 0;
right: -9999px;
height: 100vh;
width: 480px;
background-color: var(--main-black);
color: var(--main-white);
padding-top: 14vh;
transition: right 0.5s; }
.site-header-nav.active {
right: 0; }
.site-header-nav-logo {
text-align: center; }
.site-header-nav-logo img {
max-height: 24vh; }
.site-header-nav-menu {
list-style-type: none;
margin: 10vh 0;
padding: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center; }
.site-header-nav-menu li {
display: block;
margin: 0 0 4vh;
padding: 0; }
.site-header-nav-menu li:last-of-type {
margin-bottom: 0; }
.site-header-nav-menu li:hover a {
color: var(--main-white); }
.site-header-nav-menu li a {
display: block;
color: var(--transparent-white);
text-transform: uppercase;
font-size: 20px;
transition: color 0.5s; }
.site-header-nav-contact {
bottom: 0;
list-style-type: none;
margin: 0;
padding: 0 80px 80px;
font-size: 14px;
text-align: center; }
.site-header-nav-contact li {
margin: 0 0 10px;
padding: 0; }
.site-header-nav-contact li:last-of-type {
margin-bottom: 0; }
.site-header-nav-button {
z-index: 600;
position: relative;
width: 40px;
height: 32px;
cursor: pointer; }
.site-header-nav-button.active span:nth-of-type(1) {
top: calc((32px / 2) - 2px);
transform: rotate(45deg); }
.site-header-nav-button.active span:nth-of-type(2) {
top: calc((32px / 2) - 2px);
transform: rotate(45deg); }
.site-header-nav-button.active span:nth-of-type(3) {
top: calc((32px / 2) - 2px);
transform: rotate(-45deg); }
.site-header-nav-button span {
display: block;
position: absolute;
left: 0;
width: 100%;
height: 4px;
border-radius: 2px;
background-color: var(--main-white); }
.site-header-nav-button span:nth-of-type(1) {
top: 0; }
.site-header-nav-button span:nth-of-type(2) {
top: calc((32px / 2) - 2px); }
.site-header-nav-button span:nth-of-type(3) {
top: calc(32px - 4px); }
.home-welcome {
position: relative;
min-height: 100vh;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: flex;
justify-content: flex-end; }
.home-welcome .black-background-transparent {
z-index: 1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 100%); }
.home-welcome-content {
z-index: 2;
margin-right: 60px;
margin-top: calc(100vh - 60px - 96px - 60px);
text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.5);
text-align: right; }
.home-welcome-content h1 {
font-weight: 400;
margin: 0;
font-size: 24px; }
.home-welcome-content h2 {
margin: 0;
font-size: 36px; }
.home-welcome-content h2:first-of-type {
font-weight: 400;
font-size: 24px; }
.home-welcome-content h2:first-of-type::first-letter {
color: var(--main-beige); }
.home-welcome-content-footer {
position: absolute;
display: flex;
justify-content: space-between;
left: 0;
width: 100%;
bottom: 0;
padding: 0 60px 60px; }
.home-welcome-content-footer ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center; }
.home-welcome-content-footer ul li {
margin: 0 12px 0 0;
padding: 0;
height: 12px;
width: 12px;
border-radius: 50%;
background-color: var(--transparent-white);
transition: background-color 0.5s;
cursor: pointer; }
.home-welcome-content-footer ul li:last-of-type {
margin-right: 0; }
.home-welcome-content-footer ul li.active {
background-color: var(--main-white);
cursor: auto; }
.home-welcome-content-footer p {
font-size: 16px;
margin: 0;
padding: 0; }
.home-welcome-content .btn-next {
position: absolute;
width: 24px;
height: 44px;
border-radius: 12px;
border: 1px solid var(--main-white);
bottom: 60px;
left: calc(50% - 12px);
transition: background-color .5s;
cursor: pointer; }
.home-welcome-content .btn-next:hover {
background-color: var(--transparent-black-middle); }
.home-welcome-content .btn-next:hover span {
top: 28px; }
.home-welcome-content .btn-next:hover::after {
bottom: -26px; }
.home-welcome-content .btn-next span {
font-size: 0;
position: absolute;
top: 6px;
left: calc(50% - 1.5px);
width: 3px;
height: 6px;
border-radius: 1.5px;
background-color: var(--main-white);
transition: all .5s; }
.home-welcome-content .btn-next::after {
content: "";
position: absolute;
width: 15px;
height: 7px;
left: 4px;
bottom: -13px;
background-image: url(//bconcept.be/wp-content/themes/bconcept/asset/img/arrow-bottom.svg);
background-repeat: no-repeat;
background-size: 14px 7px;
background-position: center;
transition: all .5s; }
.home-projects,
.home-philosophy {
min-height: 100vh;
display: flex;
justify-content: space-between; }
.home-projects-content, .home-projects-galery, .home-projects-image,
.home-philosophy-content,
.home-philosophy-galery,
.home-philosophy-image {
position: relative;
width: calc(50% - 16px); }
.home-projects-content,
.home-philosophy-content {
display: flex;
align-items: center;
justify-content: center; }
.home-projects-content h1,
.home-philosophy-content h1 {
position: absolute;
top: 0;
right: 0;
transform: rotate(-90deg) translateX(75px);
transform-origin: 100% 100%;
color: var(--transparent-white);
font-size: 54px;
text-transform: uppercase;
font-weight: 400; }
.home-projects-content-in,
.home-philosophy-content-in {
max-width: 460px; }
.home-projects-content-in h2,
.home-philosophy-content-in h2 {
font-weight: 400;
font-size: 20px;
margin: 0 0 40px 0; }
.home-projects-content-in h2 strong,
.home-philosophy-content-in h2 strong {
font-weight: 600; }
.home-projects-content-in p,
.home-philosophy-content-in p {
font-size: 16px;
line-height: 32px;
margin: 0 0 40px;
color: var(--text); }
.home-projects-content .btn-go-to,
.home-philosophy-content .btn-go-to {
position: absolute;
left: 60px;
bottom: 60px;
padding-left: 32px; }
.home-projects-content .btn-go-to::before,
.home-philosophy-content .btn-go-to::before {
content: "";
position: absolute;
left: 0;
top: calc(50% - 0.5px);
width: 24px;
height: 1px;
background-color: var(--transparent-white);
transition: background-color 0.5s; }
.home-projects-content .btn-go-to::after,
.home-philosophy-content .btn-go-to::after {
content: "";
position: absolute;
right: -8px;
top: calc(50% - 0.5px);
width: 0;
height: 1px;
background-color: var(--transparent-white);
transition: right 0.5s, width 0.5s, background-color 0.5s; }
.home-projects-content .btn-go-to:hover::after,
.home-philosophy-content .btn-go-to:hover::after {
right: -56px;
width: 48px;
background-color: var(--main-white); }
.home-projects-content .btn-go-to:hover::before,
.home-philosophy-content .btn-go-to:hover::before {
background-color: var(--main-white); }
.home-projects-content .btn-go-to a,
.home-philosophy-content .btn-go-to a {
font-weight: 300;
color: var(--transparent-white);
transition: color 0.5s; }
.home-projects-content .btn-go-to a:hover,
.home-philosophy-content .btn-go-to a:hover {
color: var(--main-white); }
.home-projects-galery ul,
.home-philosophy-galery ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap; }
.home-projects-galery ul li,
.home-philosophy-galery ul li {
margin: 0;
padding: 0;
height: calc(50% - 8px);
width: calc(50% - 8px);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
transition: filter 0.5s; }
.home-projects-galery ul li:hover,
.home-philosophy-galery ul li:hover {
filter: grayscale(1); }
.home-projects-galery ul li a,
.home-philosophy-galery ul li a {
display: block;
height: 100%;
width: 100%; }
.home-projects-galery ul li:nth-of-type(odd),
.home-philosophy-galery ul li:nth-of-type(odd) {
margin-right: 16px; }
.home-projects-galery ul li:nth-of-type(1), .home-projects-galery ul li:nth-of-type(2),
.home-philosophy-galery ul li:nth-of-type(1),
.home-philosophy-galery ul li:nth-of-type(2) {
margin-bottom: 16px; }
.home-projects-content {
width: 400px; }
.home-projects-galery {
width: calc(100% - 432px); }
.home-philosophy {
border-bottom: 0; }
.home-philosophy-content h1 {
left: 0;
transform: rotate(-90deg) translateX(-560px) translateY(60px);
transform-origin: 0% 100%; }
.home-philosophy-image .first-image {
width: 100%;
height: 50%;
background-repeat: no-repeat;
background-size: cover;
background-position: center; }
.home-philosophy-image .second-image {
position: absolute;
right: 40px;
bottom: 0;
border: 16px solid var(--main-black);
width: 360px;
height: calc(50% + 40px);
background-repeat: no-repeat;
background-size: cover;
background-position: center; }
.content {
max-width: 1200px;
margin: 360px auto 0; }
.content .footer-projet {
display: flex;
justify-content: flex-end;
margin: 40px 0; }
.content header {
display: flex;
justify-content: space-between;
align-items: baseline; }
.content header h1 {
color: var(--transparent-white);
font-size: 54px;
text-transform: uppercase;
font-weight: 400;
margin: 0 0 36px 0; }
.content ul.projets {
display: flex;
flex-wrap: wrap;
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
height: 100%; }
.content ul.projets li {
margin: 0;
margin-bottom: 16px;
padding: 0;
min-height: 400px;
width: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center; }
.content ul.projets li:hover {
filter: grayscale(0); }
.content ul.projets li a {
display: block;
height: 100%;
width: 100%; }
.content ul.projets li a:hover h2 {
background-color: rgba(0, 0, 0, 0.2);
color: white; }
.content ul.projets li a:hover h2 span {
color: var(--main-beige); }
.content ul.projets li a h2 {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 48px;
transition: opacity 0.5s;
text-transform: uppercase;
background-color: rgba(0, 0, 0, 0.4);
color: white; }
.content ul.projets li a h2 span {
color: var(--main-beige); }
.page-projects {
border-bottom: 0; }
.page-projects .galery-project p {
margin: 0 0 20px;
padding: 0; }
.page-projects .galery-project p:nth-of-type(n) {
height: auto;
text-align: left; }
.page-projects .galery-project p:nth-of-type(2n) {
height: auto;
text-align: right; }
.page-projects .galery-project p:nth-of-type(3n) {
height: auto;
text-align: center; }
.page-projects .galery-project p img {
max-width: 100%;
max-height: 1000px; }
footer {
clear: both;
padding: 120px 0; }
footer .content {
margin-top: 0;
margin-left: 50%;
display: flex;
align-items: center;
justify-content: center; }
footer .content ul {
width: 100%;
max-width: 460px;
padding: 0; }
footer .content ul .footer-logo {
font-family: century-gothic, sans-serif;
font-size: 20px;
text-transform: uppercase;
font-weight: 200; }
footer .content ul .footer-logo strong {
font-size: 48px;
font-weight: 200;
text-transform: none;
line-height: 64px; }
footer .content ul .footer-logo strong span {
color: var(--main-beige);
font-weight: 700; }
footer .content ul .footer-name {
font-family: century-gothic, sans-serif;
font-size: 36px;
font-weight: 200; }
#scroll-top {
position: fixed;
bottom: 60px;
right: -300px;
width: 40px;
height: 40px;
background-color: rgba(33, 33, 33, 0.7);
background-image: url(//bconcept.be/wp-content/themes/bconcept/asset/img/arrow-top.svg);
background-repeat: no-repeat;
background-size: 20px auto;
background-position: center;
transition: right 0.5s;
cursor: pointer; }
#scroll-top.active {
right: 60px; }
@media screen and (max-width: 1365px) {
section {
border: 8px solid var(--main-black); }
main {
background-position: left 8px bottom 8px; }
.home-welcome-content-footer {
justify-content: flex-end; }
.home-welcome-content-footer ul {
display: none; }
.home-welcome-content .btn-next {
display: none; }
.home-projects,
.home-philosophy {
flex-wrap: wrap; }
.home-projects-content, .home-projects-galery, .home-projects-image,
.home-philosophy-content,
.home-philosophy-galery,
.home-philosophy-image {
width: 100%; }
.home-projects-content,
.home-philosophy-content {
flex-wrap: wrap; }
.home-projects-content h1,
.home-philosophy-content h1 {
position: relative;
width: 100%;
transform: none;
padding: 0 80px;
font-size: 36px; }
.home-projects-content-in,
.home-philosophy-content-in {
max-width: calc(100% - 160px);
padding: 160px 0;
padding-top: 0; }
.home-projects-content .btn-go-to,
.home-philosophy-content .btn-go-to {
position: relative;
left: 0;
bottom: 0;
margin-bottom: 32px;
margin-left: 80px; }
.home-projects-galery ul,
.home-philosophy-galery ul {
min-height: 600px; }
.home-projects-content {
justify-content: flex-start; }
.home-philosophy-content {
order: 1; }
.home-philosophy-image {
order: 2; }
.home-philosophy-image .first-image {
height: 100%;
min-height: 400px; }
.home-philosophy-image .second-image {
display: none; }
footer {
padding: 80px 0; }
footer .content {
margin-left: 0;
margin-top: 0; } }
@media screen and (max-width: 960px) {
#scroll-top {
bottom: 30px; }
#scroll-top.active {
right: 30px; }
.site-header-pc {
display: none; }
.site-header {
display: flex;
padding: 30px 30px 0; }
.site-header-logo img {
width: 80px;
height: auto; }
.site-header-nav {
width: 100%; }
.site-header-nav-logo {
text-align: center; }
.site-header-nav-logo img {
max-height: 24vh;
width: auto; }
.site-header-nav-menu {
list-style-type: none;
margin: 10vh 0;
padding: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center; }
.site-header-nav-menu li {
display: block;
margin: 0 0 4vh;
padding: 0; }
.site-header-nav-menu li.current-menu-item a, .site-header-nav-menu li.current-page-item a {
color: var(--main-white); }
.site-header-nav-menu li:last-of-type {
margin-bottom: 0; }
.site-header-nav-menu li:hover a {
color: var(--main-white); }
.site-header-nav-menu li a {
display: block;
color: var(--transparent-white);
text-transform: uppercase;
font-size: 20px;
transition: color 0.5s; }
.site-header-nav-contact {
bottom: 0;
list-style-type: none;
margin: 0;
padding: 0 80px 80px;
font-size: 14px;
text-align: center; }
.site-header-nav-contact li {
margin: 0 0 10px;
padding: 0; }
.site-header-nav-contact li:last-of-type {
margin-bottom: 0; }
.site-header-nav-button {
z-index: 600;
position: relative;
width: 40px;
height: 32px;
cursor: pointer; }
.site-header-nav-button.active span:nth-of-type(1) {
top: calc((32px / 2) - 2px);
transform: rotate(45deg); }
.site-header-nav-button.active span:nth-of-type(2) {
top: calc((32px / 2) - 2px);
transform: rotate(45deg); }
.site-header-nav-button.active span:nth-of-type(3) {
top: calc((32px / 2) - 2px);
transform: rotate(-45deg); }
.site-header-nav-button span {
display: block;
position: absolute;
left: 0;
width: 100%;
height: 4px;
border-radius: 2px;
background-color: var(--main-white); }
.site-header-nav-button span:nth-of-type(1) {
top: 0; }
.site-header-nav-button span:nth-of-type(2) {
top: calc((32px / 2) - 2px); }
.site-header-nav-button span:nth-of-type(3) {
top: calc(32px - 4px); }
.home-welcome {
padding-top: calc(100vh - 300px);
padding-bottom: 40px;
justify-content: center; }
.home-welcome .black-background-transparent {
z-index: 0; }
.home-welcome-content {
z-index: 10;
margin: 0;
text-align: center; }
.home-welcome-content-footer {
justify-content: center;
padding-right: 0;
padding-left: 0; }
.home-projects-content,
.home-philosophy-content {
flex-wrap: wrap; }
.home-projects-content h1,
.home-philosophy-content h1 {
position: relative;
width: 100%;
transform: none;
padding: 0 80px;
font-size: 36px; }
.home-projects-content-in,
.home-philosophy-content-in {
padding-top: 0; }
.home-projects-galery ul,
.home-philosophy-galery ul {
height: 100%; }
.home-projects-galery ul li,
.home-philosophy-galery ul li {
width: 100%;
margin-bottom: 16px;
height: 300px; }
.home-projects-galery ul li:nth-of-type(odd),
.home-philosophy-galery ul li:nth-of-type(odd) {
margin-right: 0; }
.home-philosophy-content h1 {
transform: none; }
.content {
margin: 300px auto 0; }
.content header {
flex-wrap: wrap;
justify-content: flex-end;
padding-bottom: 30px; }
.content header h1 {
margin: 0 0 18px 0;
padding: 0 50px;
width: 100%;
font-size: 36px; }
.content figure.wp-block-image img {
width: 100%;
height: auto; }
.content ul.projets li a h2 {
opacity: 1; } }