/*@charset "UTF-8";*/
/* CSS Document */

/* *********************************************

	AGATHE BOKANOWSKI 
    -
	
	01 . IMPORT CSS + FONTS
	02 . BASE
	03 . HOME
	04 . WORKS - GRID
	05 . WORKS - ZOOM
	06 . A PROPOS
	07 . CONTACT
	08 . ACTUALITES
	09 . xxxxxx
	10 . xxxxxx
	
********************************************* */





/* ////////////////////////////////////////////////////////////////////////////

    01 . IMPORT CSS + FONTS

//////////////////////////////////////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&display=swap');

@import url('libs/bootstrap.css');
@import url('libs/lightgallery.css');
@import url('libs/swiper-bundle.min.css');
@import url('interface.css');

:root {
    
    --font-text: 'Space Grotesk', sans-serif;

    --color-text: #474747;
    --color-dark: #191919;
    --color-light: #fff;

    --bg-light: #fff;

    --color-grey: #979797;
    --color-grey-light: #D1D1D1;

    --site-width: 1330px;

}





/* ////////////////////////////////////////////////////////////////////////////

    02 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
	background-color: var(--bg-light);
}
body {
    position: relative;
	background-color: var(--bg-light);
	color: var(--color-text);
	font-family: var(--font-text);
	font-size: 14px;
	line-height: 22px;
    font-weight: 400;
	overflow-x: hidden!important;
    user-select: none;
	-webkit-user-select: none;
	opacity: 0;
}

/* OVERLAY NAV MOBILE */
body::before {
    content: "";
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}
body.is-active::before {
    opacity: .5;
    visibility: visible;
}

/* LIENS */
a {
	color: var(--color-text);
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}
a:active, a:focus { color: var(--color-text); outline:0; text-decoration:none; }
.no-touch a:hover { color: var(--color-text); outline:0; text-decoration:none; }

a.link { display:inline-block; position:relative; line-height:1.1; }
a.link:after {
	background-color: var(--color-text);
	content: "";
	height: 1px;
    right:0;
	position: absolute;
	bottom: 0;
	width: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.no-touch a.link:hover:after { width:0; }
a.link:focus:after { width: 100%; }

a[href^=tel]{
    color:inherit;
    text-decoration:inherit;
    font-size:inherit;
    font-style:inherit;
    font-weight:inherit;
}

/* TEXTE */
br { font-size: 0; line-height: 0; }
strong, b { font-weight: 600; }

/* IMAGE */
img { position: relative; max-width: 100%; user-select: none; }

/* LISTES */
ol, ul { margin: 0; padding: 0; list-style: none; }

/* PARAGRAPHES */
p { margin: 0 0 15px 0; padding: 0; }
p:last-child { margin: 0; }

/* TITRES */
h1, h2, h3, h4, h5, h6 { 
	font-weight: 600; 
	line-height: 1;
	margin: 0;
	padding: 0;
}

/* PADDING */
.no-padding { padding:0; }





/* ////////////////////////////////////////////////////////////////////////////

    03 . HOME

//////////////////////////////////////////////////////////////////////////// */

.home_choice-wrap {
    display: flex;
    overflow: hidden;
}

.home_choice-item {
    position: relative;
    width: calc(1/2*100% - (1 - 1/2)*0px);
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.17,0.84,0.44,1), opacity 0.5s;
    backface-visibility: hidden;
    -webkit-backface-visibility:hidden;
    perspective: 1000;
    height: 60vh;
    min-height: 500px;
}
.no-touch .home_choice-item:hover {
    width: 60% !important;
}

.home_choice-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.home_choice-item:before,
.home_choice-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* AFTER */
.home_choice-item:after {
    background: rgba(28,25,22,.6);
    transition: opacity 0.5s cubic-bezier(0.17,0.84,0.44,1);
}
.no-touch .home_choice-item:hover:after {
    opacity: 0;
}

/* BEFORE */
.home_choice-item:before {
    background: rgba(28,25,22,.15);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.17,0.84,0.44,1);
}
.no-touch .home_choice-item:hover:before {
    opacity: 1;
}

/* CONTENT */
.home_choice-content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    user-select: none;
}
.home_choice-title {
    font-size: 24px;
    line-height: 24px;
    color: var(--color-light);
    max-width: 310px;
    margin: 0 auto;
    text-shadow: 0px 0px 2px rgba(0,0,0,.35);
}

.home_choice-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: filter 0.25s cubic-bezier(0.17,0.84,0.44,1), transform 0.25s;
    filter: grayscale(15%);
    transform: translateZ(0);
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.home_choice-item:hover .home_choice-bg {
    filter: grayscale(0);
}

@media only screen and (max-width: 992px) {
    .home_choice-wrap {
        flex-direction: column;
        height: calc(100vh - 150px);
    }
    .home_choice-item {
        width: 100%;
        height: 100%;
        min-height: auto;
        transition: none;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        height: -moz-available;
        height: -webkit-fill-available;
        height: fill-available;
    }
    .no-touch .home_choice-item:hover {
        width: 100% !important;
    }
    .home_choice-item:after {
        background: rgba(28,25,22,.4);
    }
    .home_choice-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .home_choice-title {
        font-size: calc(1.25rem + 1.25vh);
        line-height: 1.15;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    04 . WORKS - GRID

//////////////////////////////////////////////////////////////////////////// */

@media (min-width: 300px) {
    .grid_works .grid-sizer { width: 100%; }
    .grid_works .gutter-sizer { width: 0; }
    .grid_works .grid_works-item { width: 100%; margin: 0 0 25px 0; }
}
@media (min-width: 768px) {
    .grid_works .grid-sizer { width: 49%; }
    .grid_works .gutter-sizer { width: 2%; }
    .grid_works .grid_works-item { width: 49%; margin: 0 0 2% 0; }
}
@media (min-width: 992px) {
    .grid_works .grid-sizer { width: 32%; }
    .grid_works .gutter-sizer { width: 2%; }
    .grid_works .grid_works-item { width: 32%; margin: 0 0 2% 0; }
}
@media (min-width: 1200px) {
    .grid_works .grid-sizer { width: 23.5%; }
    .grid_works .gutter-sizer { width: 2%; }
    .grid_works .grid_works-item { width: 23.5%; margin: 0 0 2% 0; }
}

.grid_works-item {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.grid_works-item:last-child {
    margin: 0;
}

.grid_works-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.grid_works-image {
    position: relative;
    overflow: hidden;
    border: rgba(0,0,0,.05) solid 1px;
}
.grid_works-image img {
    width: 100%;
    object-fit: cover;
    transition: transform .25s;
}
.no-touch .grid_works-item:hover img {
    transform: scale(1.025);
}

.grid_works-caption {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.no-touch .grid_works-item:hover .grid_works-caption {
    opacity: 1;
    visibility: visible;
}
.grid_works-caption .caption-title {
    position: relative;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color-light);
    text-shadow: 0px 0px 2px rgba(0,0,0,.35);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .25s, transform .25s;
    text-align: center;
}
.no-touch .grid_works-item:hover .grid_works-caption .caption-title {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 992px) {
    .grid_works-caption {
        position: relative;
        display: block;
        padding: 0;
        margin: 10px 0 0 0;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
    }
    .grid_works-caption .caption-title {
        font-weight: 400;
        text-align: left;
        color: var(--color-dark);
        text-shadow: none;
        opacity: 1;
        transform: translateY(0);
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    05 . WORKS - ZOOM

//////////////////////////////////////////////////////////////////////////// */

/* TITLE */
.work_title {
    padding: 100px 35px 50px 35px;
}
.work_desc {
    padding: 0 0 0 0;
}
.work_desc h1 {
	font-size: 24px;
    line-height: 24px;
    font-weight: 500;
	color: var(--color-dark);
}
.work_desc p {
    margin: 15px 0 0 0;
}

@media only screen and (max-width: 992px) {
    .work_title {
        padding: 50px 10px 50px 10px;
    }
}

/* -------------------------------------------
    PHOTOS 
------------------------------------------- */
.photos {
    padding: 0 35px 100px 35px;
}

@media only screen and (max-width: 992px) {
    .photos {
        padding: 0 10px 50px 10px;
    }
}

@media (min-width: 300px) {
    .grid_photos .grid-sizer { width: 100%; }
    .grid_photos .gutter-sizer { width: 0; }
    .grid_photos .grid_photos-item { width: 100%; margin: 0 0 25px 0; }
}
@media (min-width: 768px) {
    .grid_photos .grid-sizer { width: 49%; }
    .grid_photos .gutter-sizer { width: 2%; }
    .grid_photos .grid_photos-item { width: 49%; margin: 0 0 2% 0; }
}
@media (min-width: 992px) {
    .grid_photos .grid-sizer { width: 30.65%; }
    .grid_photos .gutter-sizer { width: 4%; }
    .grid_photos .grid_photos-item { width: 30.65%; margin: 0 0 4% 0; }
}

.grid_photos-item {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
}
/* hide thumbnail */
/* .grid_photos-item:nth-child(3) {
    display: none!important;
}
.grid_photos-item img[src*="00"] {
    display: none!important;
}
.hidden {
    display: none!important;
} */

.grid_photos-item div {
    overflow: hidden;
    border: rgba(0,0,0,.075) solid 1px;
}
.grid_photos-item span {
    display: block;
	font-size: 12px;
    line-height: 17px;
    margin: 10px 0 0 0;
    color: var(--color-grey);
}
.grid_photos-item span strong {
	font-size: 14px;
    line-height: 18px;
    color: var(--color-dark);
}
.grid_photos a {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
}
.grid_photos a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .5s;
}
.no-touch .grid_photos a:hover img {
    transform: scale(1.015);
}





/* ////////////////////////////////////////////////////////////////////////////

    06 . A PROPOS

//////////////////////////////////////////////////////////////////////////// */

.filters {
    padding: 100px 35px 0 35px;
}
.filters + .section {
    padding: 0 35px 100px 35px;
}

#publications {
    padding: 50px 35px 100px 35px;
}
#publications h2 {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 15px 0;
}

@media only screen and (max-width: 992px) {
    .filters {
        padding: 50px 10px 0 10px;
    }
    .filters + .section {
        padding: 0 10px 50px 10px;
    }
    #publications {
        padding: 50px 10px;
    }
}


.about_wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 0 100px 0;
}
.about_wrap:last-child {
    margin: 0;
}

.about_wrap hr {
    display: none;
}

.about_wrap-left {
    width: calc(60% - 80px);
    margin: 0 80px 0 0;
}
.about_wrap-left h2 {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 15px 0;
}
.about_wrap-left ul {
    margin: 0 0 15px 0;
}
.about_wrap-left ul:last-child {
    margin: 0;
}
.about_wrap-left li {
    position: relative;
    padding: 0 0 0 15px;
    line-height: 21px;
}
.about_wrap-left li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: var(--color-text);
}
.about_wrap-left li:last-child {
    margin: 0;
}
.about_wrap-left li:first-child {
    padding: 0 0 0 0;
    margin: 0 0 5px 0;
    font-size: 90%;
    color: var(--color-dark);
    font-weight: 600;
    letter-spacing: 0.050em;
}
.about_wrap-left li:first-child::before {
    display: none;
}
.about_wrap-left a {
    margin: 15px 0 0 0;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
}

.about_wrap-right {
    width: calc(40%);
    align-self: start;
    position: sticky;
    position: -webkit-sticky;
    top: 25px;
}
.about_wrap-right img {
    width: 100%;
    margin: 0 0 15px 0;
}
.about_wrap:nth-child(2) .about_wrap-right img:first-child {
    display: none;
}
.about_wrap-right img:last-child {
    width: 100%;
    margin: 0;
}

/* EVEN */
.about_wrap:nth-child(even) .about_wrap-left {
    margin: 0 0 0 80px;
}
.about_wrap:nth-child(even) .about_wrap-right {
    order: -1;
}

@media only screen and (max-width: 992px) {
    .about_wrap {
        flex-direction: column;
        margin: 0 0 50px 0;
    }
    .about_wrap-left,
    .about_wrap:nth-child(even) .about_wrap-left {
        width: calc(100%);
        margin: 0;
    }
    .about_wrap-right {
        width: calc(100%);
        margin: 0 0 50px 0;
        order: -1;
        position: relative;
        top: inherit;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    07 . CONTACT

//////////////////////////////////////////////////////////////////////////// */

.contact_wrap {
    display: flex;
    justify-content: space-between;
}

.contact_wrap-left {
    width: calc(50% - 80px);
    margin: 0 80px 0 0;
}
.contact_infos {
    margin: 0 0 30px 0;
}

.contact_wrap-right {
    width: calc(50%);
    align-self: start;
}
.contact_wrap-right img {
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .contact_wrap {
        flex-direction: column;
    }
    .contact_wrap-left {
        width: calc(100%);
        margin: 0;
    }
    .contact_wrap-right {
        width: calc(100%);
        margin: 0 0 50px 0;
        order: -1;
    }
}


/* FORM */
form {
    display: flex;
    flex-direction: column;
}
form .field {
    display: block;
    border: 1px solid rgba(0,0,0,.1);
    float: left;
    width: 50%;
    transition: background-color .2s;
}
form .field:nth-child(1),
form .field:nth-child(3) {
    border-right: none;
}
form .field:nth-child(3),
form .field:nth-child(4),
form .field:nth-child(5) {
    border-top: none;
}
form .field:last-child {
    width: 100%;
}

@media only screen and (max-width: 992px) {
    form .field {
        width: 100%;
        border-right: 1px solid rgba(0,0,0,.1);
    }
    form .field:nth-child(1),
    form .field:nth-child(3) {
        border-right: 1px solid rgba(0,0,0,.1);
    }
    form .field:nth-child(2) {
        border-top: none;
    }
}

form .field input,
form .field textarea {
    display: block;
    width: 100%;
    padding: 16px 16px 16px 16px;
    font-size: 14px;
    border: 0;
    color: var(--color-dark);
    outline: 0;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: transparent;
}
form .field textarea {
    min-height: 150px;
    resize: none;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder { color: var(--color-grey); font-size: 13px; }
form input::placeholder,
form textarea::placeholder { color: var(--color-grey); font-size: 13px; }

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:active,
form input:-webkit-autofill:focus {
    background-color: transparent !important;
    color: var(--color-text) !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: var(--color-text) !important;
    transition: none;
}

.error,
.success {
	display: none; 
	margin: 15px 0 0 0;
	font-size: 13px;
    line-height: 16px;
    color: #B24842;
}
.success {
    color: #00AA95;
}

.form-mentions {
    text-align: center;
	font-size: 12px;
    line-height: 14px;
    color: var(--color-grey-light);
}

.bt-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
} 
.btn-flat-line {
    position: relative;
    outline: none !important;
	background: var(--color-dark);
	display: inline-block;
	color: var(--color-light);
    border: none;
	text-decoration: none!important;
	font-size: 16px;
    line-height: 50px;
    font-weight: 500;
	white-space: nowrap;
    text-decoration: none;
    outline: inherit;
    text-transform: lowercase;
    letter-spacing: 0.025em;
    padding: 0 25px;
    margin: 0;
    transition: color 0.25s, background-color 0.25s;
}
.btn-flat-line:focus {
    outline: none !important;
    text-decoration: none!important;
    color: var(--color-light);
}
.no-touch .btn-flat-line:hover { 
    color: var(--color-light);
    text-decoration: none!important;
}

@media only screen and (max-width: 992px) {
    .bt-submit {
        flex-direction: column;
        justify-content: center;
    }
    .btn-flat-line {
        width: 100%;
    }
    .form-mentions {
        order: 2;
        margin-top: 10px;
    }
    .error,
    .success {
        text-align: center;
    }
}






/* ////////////////////////////////////////////////////////////////////////////

    08 . ACTUALITES

//////////////////////////////////////////////////////////////////////////// */

.grid-filters {
    display: flex;
    margin: 0 0 25px 0;
}
.grid-filters a {
    position:relative;
    display:inline-block;
	font-size: 13px;
	line-height: 15px;
    margin: 0 25px 0 0;
    color: var(--color-grey);
    text-decoration: none;
    outline: none;
}
.grid-filters a:nth-child(2) {
    order: 3;
}
.no-touch .grid-filters a:hover,
.grid-filters a.active {
    color: var(--color-dark);
    text-decoration: none;
    outline: none;
}
.grid-filters a::after {
	background-color: var(--color-grey);
	content: "";
	height: 1px;
    left:0;
	position: absolute;
	bottom: -2px;
	width: 0;
	transition: width 0.2s, background-color 0.2s;
}
.no-touch .grid-filters a:hover::after,
.grid-filters a.active::after { width: 100%; }


@media (min-width: 300px) {
    .grid_news .grid-sizer { width: 100%; }
    .grid_news .gutter-sizer { width: 0; }
    .grid_news .grid_news-item { width: 100%; margin: 0 0 25px 0; }
}
@media (min-width: 768px) {
    .grid_news .grid-sizer { width: 49%; }
    .grid_news .gutter-sizer { width: 2%; }
    .grid_news .grid_news-item { width: 49%; margin: 0 0 2% 0; }
}
@media (min-width: 1200px) {
    .grid_news .grid-sizer { width: 30.65%; }
    .grid_news .gutter-sizer { width: 4%; }
    .grid_news .grid_news-item { width: 30.65%; margin: 0 0 4% 0; }
    .grid_news.col-2 .grid-sizer { width: 49%; }
    .grid_news.col-2 .gutter-sizer { width: 2%; }
    .grid_news.col-2 .grid_news-item { width: 49%; margin: 0 0 2% 0; }
}


.grid_news-item {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    padding: 30px;
    border: rgba(0,0,0,.075) solid 1px;
    background-color: var(--bg-light);
    transition: box-shadow .25s, border .25s;
}
.grid_news-item:last-child {
    margin: 0;
}
.no-touch .grid_news-item:hover {
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
    border: rgba(0,0,0,0) solid 1px;
}

.grid_news-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.container-swiper {
	display: grid;
	place-items: center;
}
.swiper {
	width: 100%;
}
.image__wrapper {
	width: 100%;
	position: relative;
	/* padding-top: 75%; */
}
.image__wrapper img {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 1.5rem;
    color: var(--color-dark);
}
.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(255,255,255,.5);
}
.swiper-button-prev { left: 0; right: auto; }
.swiper-button-next { right: 0; left: auto; }


.grid_news-caption {
    position: relative;
}
.grid_news-caption .caption-cat {
    font-size: 11px;
    line-height: 12px;
    margin: 15px 0 0 0;
    color: var(--color-grey-light);
}
.grid_news-caption .caption-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-dark);
}
.grid_news-caption .caption-date {
    font-size: 12px;
    line-height: 14px;
    margin: 8px 0 0 0;
    color: var(--color-grey);
}
.grid_news-caption .caption-desc {
    margin: 15px 0 0 0;
}
.grid_news-caption .caption-desc:empty {
    display: none;
}

.grid_news-caption a {
    display: inline;
    transition: background-size 0.25s linear;
    background: linear-gradient(to bottom, var(--color-text) 0%, var(--color-text) 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    color: var(--color-dark);
    font-weight: 500;
    text-decoration: none;
    outline: none;
}
.no-touch .grid_news-caption a:hover {
    background-size: 0px 1px;
}

.grid_news-caption a.caption-link {
    position: relative;
    display: block;
    text-decoration: none;
    margin: 15px 0 0 0;
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    color: var(--color-dark);
    background: none;
    padding: 10px 5px 10px 25px;
    transition: padding .25s;
}
.no-touch .grid_news-caption a.caption-link:hover {
    padding: 10px 5px 10px 0;
}
.grid_news-caption a.caption-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 20px;
    height: 1px;
    background-color: var(--color-text);
    transition: width .25s, left .25s;
}
.no-touch .grid_news-caption a.caption-link:hover::before {
    width: 0;
    left: -5px;
}
.grid_news-caption a:empty {
    display: none;
}

@media only screen and (max-width: 992px) {
    
}










