* { 
	box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

html, body {
	color:#1c1c1c;
   scroll-behavior: smooth;
}

body {
    overflow-x:hidden;
	font-size: 1.6rem;
	letter-spacing: 0.05rem;
    font-family: "Roboto Slab", serif;
    font-weight: 400;
	text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;	
	background-color:transparent;
}
	
ul, ol, dl {
	margin: 0;
}

article, aside, audio, 
footer, header, nav,
section, video {
	display: block; 
}
	
p { 
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
    line-height: 1.8;
}

a {
    color:inherit;
    text-decoration: none;
}
	
textarea { 
	resize: vertical;
}
 
table {
	border-collapse: collapse;
}

td {
	padding: .5rem;
}
	
img {
	max-width: 100%;
}

[type="submit"] { 
	-webkit-appearance:none;
}
	
.right { 
	float: right;
	margin-left: 2rem;
	clear: right;
}

.left { 
	float: left;
	margin-right: 2rem;
	clear: left;
}

/*--------------------------------------------------------------
# Be creative!
--------------------------------------------------------------*/

/* .camera-aperture {
	border-radius: 50%;
	border: 2px solid #f2f2f2;
	overflow: hidden;
}
.blade-box {
	position: relative;
	width: 100px;
	height: 100px;
	transform: rotate(-136deg);
	transform-style: preserve-3d;
}
.blade {
    width: 55%;
    height: 100%;
    position: absolute;
	transform-origin: 0% 0%;
}
@keyframes aperture {
	0% {
		transform: rotate(-25deg);
	}
	30% {
		transform: rotate(-35deg);
	}
	68%,
	72% {
		transform: rotate(-15deg);
	}
	100% {
		transform: rotate(-25deg);
	}
  }
.blade::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-color:lavender;
    border-left: solid 2px red; 
	transform: rotate(-28deg);
    transform-origin: 0% 0%;
    animation: aperture 5s infinite;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blade:nth-of-type(1) {
	top: -1px;
	left: 49px;
	transform: rotate(1deg);
}
.blade:nth-of-type(2) {
	top: 21px;
	left: 90px;
	transform: rotate(56deg);
}
.blade:nth-of-type(3) {
	top: 78px;
	left: 90px;
	transform: rotate(126deg);
}
.blade:nth-of-type(4) {
	top: 100px;
	left: 49px;
	transform: rotate(181deg);
}
.blade:nth-of-type(5) {
	top: 78px;
    left: 8px;
	transform: rotate(236deg);
}
.blade:nth-of-type(6) {
	top: 21px;
	left: 8px;
	transform: rotate(306deg);
}
.blade:nth-of-type(6)::before {
	background-color: yellowgreen;
} */
h2 {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	margin:3rem 0;
	letter-spacing: 0.2rem;
	display: flex;
	align-items: center;
}
.header ul,
footer ul,
.header ul li,
footer ul li {
   margin:0;
   padding: 0;
   text-indent: 0;
   list-style-type: none;
}
#header {
	position:absolute;
    top: 0;
	left:0;
	right:0;
    width: 100%;
    transition: background-color 0.2s, color 0.2s, padding 0.3s;
    z-index: 998;
	padding:3rem;
}
.header {
	display:flex;
	justify-content: space-between;
	width:100%;
	font-size: 1.7rem;
}
.header__outer {
	position:fixed;
	top:0;
	left:100%;
	width:100%;
	height: 100dvh;
	background-color:#ffffff;
	z-index:999;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding:4rem 2rem;
	transition: left cubic-bezier(.55, 0, .1, 1) .5s;
}
.header__outer.show {
	left:0;
}
.header__nav {
	margin:auto;
}
.header__nav > ul {
	display:flex;
	justify-content: space-between;
	flex-direction: column;
	gap:2rem;
	max-width:100%;
}
.header__nav > ul > li {
	padding:1rem 0;
}
.header__logo {
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color:#f2f2f2;
	transition: color .2s ease;
}
.header__logo span {
	display:block;
	/* font-weight: 350; */
	/* font-style: italic; */
	/* text-transform: capitalize; */
	/* font-size: 1.4rem; */
	padding-top:.1rem;
}
.header__supp ul {
	display:flex;
	align-items: center;
	gap:2.5rem;
}
.header__supp__insta__img {
	display: flex;
}
.header__supp__insta__img a {
	height:26px;
}
.header__supp__insta__img svg {
	fill: #1c1c1c;
	transition: fill .2s ease;
}
.header__supp__lang {
	text-transform: capitalize;
}
.header__nav__dropdown {
	position:relative;
}
.header__nav__dropdown button {
	padding:0;
	font-size: inherit;
	border: none;
	background-color: transparent;
	cursor: pointer;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.6em;
	transition:color ease .2s;
}
.header__nav__dropdown button .arrow {
	display: inline-block;
	width: 9px;
}
.arrow svg {
    stroke: #1c1c1c;
	transition: stroke .2s ease;
}
.header__nav__dropdown .dropdown li a {
	display:block;
	padding: 1.8rem 1.8rem 0 1.8rem;
	transition:color ease .2s;
	color: #1c1c1c;
}
.header__nav__dropdown .dropdown { 
	height: 0; 
	overflow: hidden;
	transition: height ease 0.2s;
	display:flex;
	flex-direction: column;
}
.header__nav__dropdown:hover .dropdown,
.header__nav__dropdown:focus-within .dropdown {
	height: 225px;
}
#burger__menu {
	display: block;
    cursor: pointer;
    width: 26px;
	margin-top: 4px;
    z-index: 1000;
}
#burger__menu input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    right: 0;
}
#burger__menu .burger span {
    display: block;
    width: 26px;
    height: 2px;
    margin-bottom: 6px;
	background-color:#f5f5f5;;
    position: relative;
    top: 0;
    transition: all .3s ease-in-out;
    opacity: 0.7
}
#burger__menu .burger span:last-child {
    margin-bottom: 0;
}
#burger__menu input[type="checkbox"]:checked + .burger span {	
    background-color: #1c1c1c;
}
#burger__menu input[type="checkbox"]:checked + .burger span:nth-child(2) {
    opacity: 0;
}
#burger__menu input[type="checkbox"]:checked + .burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 7.8px;
}
#burger__menu input[type="checkbox"]:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: -7.8px;
}
#hero {
	position:relative;
	min-height:88dvh;
}
#hero__category {
	height:200px;
	/* background-color:#dbdbdb; */
	background-color: #1c1c1c;
	color:#f2f2f2;
	display:flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom:1.5rem;
}
#hero__category h1 {
	font-size: 4.2rem;
    margin: 1rem;
    font-weight: 400;
}
.gallery__caption {
	text-align: center;
	width:800px;
	max-width: 100%;
	padding:2rem 2rem 0 2rem;
	margin:0 auto;
}
.gallery__container {
	display:none;
	max-width:100%;
	flex-wrap: wrap;
	gap:1.4rem;
	padding:2rem;
	overflow: hidden;	
	margin: 2rem auto 1rem auto;
}
.gallery__container.no-grow::after {
	content: '';
	flex-grow: 1000000000;
  }
.gallery__container > a {
	cursor: zoom-in;
	flex-grow:1;
}
.gallery__container img {
	object-fit: cover;
	height:37vw;
	width:100%;
}
#hero__winter,
#hero__summer {
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	object-fit: cover;
	width:100%;
	height:100%;
	object-position: -200px center;
	transition: opacity .2s ease;
}
main[data-season="winter"] #hero__winter {
	opacity:1;
}
main[data-season="summer"] #hero__summer {
	opacity:1;
}
main[data-season="winter"] #gallery__winter {
	display:flex;
}
main[data-season="summer"] #gallery__summer {
	display:flex;
}
#work {
	padding:2rem;
}
#work h2::before {
	display: block;
    content: "";
    width:5rem;
	height:1px;
	background-color: #1c1c1c;
	margin-right:1.8rem;
	margin-top: .2rem;
}
#gallery {
	position: relative;
	max-width: 100%;
    width: 1340px;
	margin:0 auto;
}
.work__masonry {
	position:absolute!important;
	top:0;
	left:0;
	max-width: 100%;
	margin:5rem auto 0 auto;
	opacity:0;
	pointer-events: none;
	transition: opacity .2s ease;
}
main[data-season="winter"] #macy-container__winter {
	position:relative!important;
	opacity: 1;
	pointer-events: all;
	transition: opacity .2s ease;
}
main[data-season="summer"] #macy-container__summer {
	position:relative!important;
	opacity: 1;
	pointer-events: all;
	transition: opacity .2s ease;
}
#quote {
	position:relative;
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	color:#ffffff;
	min-height:550px;
	font-weight: 350;
	background-color:#171717;
}
#quote::after {
	z-index:0;
	content:'';
	width:100%;
	min-height:440px;
	background-image: url(/public/assets/dsc06_sm_lighter__.jpg);
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
	/* filter: brightness(150%); */
}
.quote__inner {
	width:780px;
	padding:6rem 4rem;
	max-width: 100%;
	font-size:3rem;
	z-index:1;
}
.quote__inner p {
	line-height:1.4;
}
.quote__inner > span svg {
	display:block;
	height: 3rem;
    width: auto;
}
.quote__inner p span svg {
	display:inline-block;
	height: 1rem;
    width: auto;
	vertical-align: super;
}
#quote .author {
	text-align: right;	
	font-size:2rem;
	/* font-family: "NewFont", sans-serif; */
}
#bio {
	padding:2rem;
	margin-top:clamp(50px, 50px, 5vh);
	/* margin-bottom:clamp(50px, 50px, 5vh); */
	margin-bottom: 8rem;
}
.bio__inner {
	position:relative;
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
	justify-items: center;
	align-items: center;
	max-width: 100%;
	width:1120px;
	margin:0 auto;
	row-gap:4rem;
}
/* .bio__text__title {
	position: absolute;
	width:100%;
    z-index: 4;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.bio__text__title h2 {
	display: block;
	font-size:15rem;
} */
.bio__inner__img {
	width:468px;
	max-width: 100%;
}
.bio__inner__img img {
	object-fit: contain;
	width: 100%;
}
.bio__inner__text {	
	/* padding-top:10rem; */
	font-size:1.9rem;
}
.bio__inner__text .inner {
	max-width:100%;
	margin:0 auto;
}
.bio__inner__text h2 {
	/* font-size:6rem; */
	/* font-weight: 500; */
	font-size:2.1rem;
	margin-bottom: 2rem;	
	display: flex;
	align-items: center;
}
.bio__inner__text h2::before {
	display: block;
    content: "";
    width:5rem;
	height:1px;
	background-color: #1c1c1c;
	margin-right:1.8rem;
	margin-top: .2rem;
}
.bio__inner__text h3 {
	text-align: left;
	font-size: 5rem;
	text-transform: none;
	margin: 2rem 0 0 0;
}
#contact {
	/* background-image: url(/public/assets/noise.svg); */
	background-color: #1C1C1C;
	color:#f2f2f2;
	padding:7rem 2rem 10rem 2rem;
}
form {
	display:flex;
	align-items: center;
	flex-direction: column;
	align-items: stretch;
	gap:2.5rem;
	width:480px;
	max-width:100%;
	margin:0 auto;
}
form .contact__form__title {
	margin-bottom:2.8rem;
	text-align: left;
}
@font-face {
	font-family: NewFont;
	src: url(/public/fonts/Mariyam.otf) format("opentype");
  }
form h2 {
	/* font-family: "NewFont", sans-serif; */
	text-transform: none;
	font-size:4.5rem;
	margin-bottom: 2rem;
	text-align: left;
}
form h2::before {
	/* background-color: #ffffff;
	display: block;
    content: "";
    width:5rem;
	height:1px;
	margin-right:1.8rem;
	margin-top: .2rem; */
}
form h3 {
	text-transform: none;
	margin:0;
	text-align: left;
	/* font-size: 4.4rem; */
}
form .contact__form__title p {
	margin:0;
}
form label {
	display: block;
	padding-bottom: 1rem;
}
.form__input input,
.form__input textarea {
	display:block;
	background-color: transparent;
	/* background-color: #262729; */
	border: 1px solid #49494d;	
	/* border: 1px solid #525252; */
	/* border-color: #484B54; */
	width: 100%;
	box-sizing: border-box;
	padding: .5em;
	color: #ededed;
}
.form__input textarea {
	resize: none;
}
@keyframes rotate {
	from {
	  transform: rotate(0);
	}
  
	to {
	  transform: rotate(360deg);
	}
}
.submit__button__outer {
	width:111px;
	position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
form [type="submit"] {
	position: relative;
  	z-index: 1;
	padding: 1rem 2.4rem;
	background-color: #ffffff;
	border: none;
	cursor: pointer;
	transition: all .2s ease;
	margin: 2px;
}
.submit__button__outer.loading form [type="submit"] {
	pointer-events: none;
}
.submit__button__outer.loading::before {
    content: "";
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(140, 140, 140, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
    height: 300px;
    width: 100px;
    transform: translate(0);
    position: absolute;
    animation: rotate 3s linear forwards infinite;
    z-index: 0;
    top: 50%;
    transform-origin: top center;
}
main[data-season="winter"] form .submit__button__outer.loading [type="submit"] {
	background-color: #293556;
	color: #415385;
}
main[data-season="summer"] form .submit__button__outer.loading [type="submit"] {
	background-color: #29634d;
	color: #3a8568;
}
main[data-season="winter"] form [type="submit"]:hover {
	background-color: #293556;
	color: #f2f2f2;
}
main[data-season="summer"] form [type="submit"]:hover {
	background-color: #29634d;
	color: #f2f2f2;
}
.error-message {
	font-size:1.5rem;
	padding-top:.8rem;
	color:#ff8770;
}
#messageBox {
	width:100%;
	display: none;
}
#messageBox.success {
	color: #4CAF50;
}
#messageBox.error {
	color: #ff8770;
}
#transition {
	min-height:500px;
	height:94vh;
}
#transition img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#rs {
	min-height:100vh;
}
footer {
	background-color:#1c1c1c;
	background-image: url(/public/assets/noise.svg);
	color:#ffffff;
	padding:2rem 2rem 1.8rem 2rem;
	font-size: 1.3rem;
}
footer ul {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap:2rem;
}
.footer__copyright a {
	display: block;
}
.footer__contact {
	width:100%;
	margin:auto;
	text-align: center;
}
.footer__contact a {
	display:inline-block;
	line-height: 2.5rem;
	background-color: #141414;
	padding: 1rem 3rem 1.4rem 3rem;
	border : #323335 2px dashed;
	border-radius: 1.2rem;
	margin:auto;
}

.state__toggle {
	position: relative;
	overflow: hidden;
}
.state__toggle input {
	position: absolute;
	left: -99em;
}
.toggle {
	cursor: pointer;
	display: inline-block;
	position: relative;
	width: 88px;
	height: 32px;
	background-color: #1c1c1c;
	border-radius: 84px;
	transition: background-color 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	font-size: 1.6rem;
}
.toggle:before {
	opacity:1;
	content: 'Hiver';
	position: absolute;
	right: 8px;
	top: 50%;
	transform:translateY(-50%);
	color:#f2f2f2;
	transition:opacity .2s ease;
}
.toggle:after {
	opacity:0;
	content: 'Été';
	position: absolute;
	left: 11px;
	top: 50%;
	transform:translateY(-50%);
	color:#f2f2f2;
	transition:opacity .2s ease;
}
.toggle__handler {
	display: inline-block;
	position: relative;
	z-index: 1;
	top: 4px;
	left: 4px;
	width: 24px;
	height: 24px;
	background-color: #293556;
	border-radius: 32px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
	transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.2);
	transform: rotate(-45deg);
}
input:checked + .toggle:before {
	opacity:0;
	transition:opacity .2s ease;
}
input:checked + .toggle:after {
	opacity:1;
	transition:opacity .2s ease;
}
input:checked + .toggle .toggle__handler {
	transform: translate3d(56px, 0, 0) rotate(0);
	background-color:#29634d;
}
#categories {
    padding: 1rem 2rem 5rem 2rem;
}
#portfolios {
	max-width: 100%;
    width: 1340px;
    margin: 0 auto;
}
.portfolios__container {
	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap:2rem;
	width: 100%;
	max-width:100%;
	margin:0 auto;
}
.portfolios__item {
	position:relative;
	max-width:100%;
	height:190px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.portfolios__inner {
	content:'';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	display:flex;
	/* justify-content: center;
	align-items: center; */
	align-items: flex-end;
	padding:0 3rem;
	background: rgba(28, 28, 28, 1);
	/* background: rgba(0, 0, 0, 0.8); */
	/*backdrop-filter: blur(2.5px);*/
    /*-webkit-backdrop-filter: blur(2.5px);*/
	color:#fff;
	transition: all .3s ease-out;
}
.portfolios__item:hover .portfolios__inner {
	background: rgba(0, 0, 0, 0.4);
}
h3 {
	text-align: center;
	font-size: 2.1rem;
	font-weight: 400;
	text-transform: uppercase;
	margin:3rem 0;
	letter-spacing: 0.2rem;
}
.portfolios__inner h3 {
	display:flex;
	align-items: center;
}
.portfolios__inner h3::before {
	display: block;
    content: "";
    width:5rem;
	height:1px;
	background-color: #fff;
	margin-right:1.8rem;
	margin-top: .2rem;
}
main .portfolios__item.destination {
	background-image: url(/public/images/sm/categories/destination.avif);
}
main .portfolios__item.corporate {
	background-image: url(/public/images/sm/categories/entreprise.avif);
}
main .portfolios__item.products {
	background-image: url(/public/images/sm/categories/produit.avif);
}
main .portfolios__item.sport {
	background-image: url(/public/images/sm/categories/sport.avif);
}
main .portfolios__item.architecture {
	background-image: url(/public/images/sm/categories/architecture.avif);
}
main .portfolios__item.events {
	background-image: url(/public/images/sm/categories/evenementiel.avif);
}
.glightbox-clean .gslide-title {
	font-size: 1.3rem!important;
	margin:0!important;
	text-align: center!important;
	font-style: italic!important;
}
#legal {
    width: 1000px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 2rem 5rem 2rem;
    margin: 0 auto;
}
#legal h3 {
	text-align: left;
	font-size: 1.8rem;
}
#legal a {
    color: #506396;
}
#error {
	text-align: center;
	padding:3rem 2rem 5rem 2rem;
}
#error h2 {
	display: block;
	text-transform: none;
	text-align: center;
}
#error a {
    border: 1px solid #303030;
    display: inline-block;
    padding: 16px 30px;
}

@media screen and (min-width: 1280px) {
	#header {		
		position: fixed;
		padding:4rem;
		/* padding:1.4rem 4rem 1.4rem 2rem; */
		color:#f2f2f2;
	}
	.header {		
		align-items: center;
	}
	.header__logo__img {
		height:90px;
	}
	#burger__menu {
		display: none;
	}
	#header.sticky {
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
		/* padding:1.4rem 4rem 1.4rem 2rem; */
		padding:2.5rem 4rem;
		background: transparent;
		color: #1c1c1c;
	}
	#header.sticky .header__logo {
		color:#1c1c1c;
	}
	#header.sticky.light {
		color: #f2f2f2;
	}
	#header.sticky.light .header__logo {
		color:#f2f2f2;
	}
	#header.sticky .header__logo img {
		height:80px;
	}
	.header__outer {
		position:static;
		width:auto;
		height:auto;
		background:none;
		z-index:auto;
		flex-direction: row;
		flex-grow: 4;
		justify-content: space-between;
		align-items: center;
		padding:0;
	}
	.header__outer.show {
		left:auto;
	}
	.header__nav > ul {
		flex-direction: row;
		width:720px;
		max-width:100%;
		gap: 3rem;
	}
	.header__nav__dropdown .dropdown { 
		position: absolute;
		top: 4rem;
		left: 0;
		z-index: 99;
		background-color: #f5f5f5;
	}
	#header.sticky .header__nav__dropdown .dropdown {
		background-color: #1c1c1c;
	}
	.header__nav__dropdown:hover .dropdown,
	.header__nav__dropdown:focus-within .dropdown {
		height: 245px!important;
	}
	#header.sticky .header__nav__dropdown .dropdown li a {
		color: #f2f2f2;
	}
	.header__nav__dropdown .dropdown li:hover a {
		color: #d1d1d1;
	}
	#header.sticky .header__nav__dropdown .dropdown li:hover a {
		color: #adadad;
	}
	#header.sticky.light .header__nav__dropdown .dropdown {
		background-color: #f5f5f5;
	}
	#header.sticky.light .header__nav__dropdown .dropdown li a {
		color: #1c1c1c;
	}
	#header.sticky.light .header__nav__dropdown .dropdown li:hover a {
		color: #d1d1d1;
	}
	.header__nav__dropdown button {
		color:#f2f2f2;
	}
	#header.sticky .header__nav__dropdown button {
		color: #1c1c1c;
	}
	#header.sticky.light .header__nav__dropdown button {
		color: #f2f2f2;
	}
	.arrow svg {
		stroke: #f2f2f2;
	}
	#header.sticky .header__nav__dropdown button .arrow svg {
		stroke: #1c1c1c;
	}
	#header.sticky.light .header__nav__dropdown button .arrow svg {
		stroke: #f2f2f2;
	}
	.header__nav__dropdown:hover .dropdown,
	.header__nav__dropdown:focus-within .dropdown {
		height: 94px;
	}
	.header__supp__insta__img svg {
		fill: #f2f2f2;
	}
	#header.sticky .header__supp__insta__img svg {
		fill: #1c1c1c;
	}
	#header.sticky.light .header__supp__insta__img svg {
		fill: #f2f2f2;
	}
	.toggle {
		background-color: #f2f2f2;
	}
	.toggle:before ,
	.toggle:after {
		color:#1c1c1c;
	}
	#header.sticky .toggle {    
		background-color: #1c1c1c;
	}
	#header.sticky .toggle:before,
	#header.sticky .toggle:after {
		color: #f2f2f2;
	}
	#header.sticky.light .toggle {    
		background-color: #f5f5f5;
	}
	#header.sticky.light .toggle:before,
	#header.sticky.light .toggle:after {
		color: #1c1c1c;
	}
	#hero {
    	min-height:88vh;
    }
	#hero__winter {
		object-position: center 10%;
	}
	#hero__summer {
		object-position: center;
	}
	#quote {
		padding-left: 12%;
	}
	#quote::after {
		position:absolute;
		top:0;
		left:0;
		height:100%;
		min-height:auto;
		background-position: top -30px right 40px;
		background-size: auto 130%;
	}
	.bio__inner {
		justify-items: normal;
	}
	.bio__inner__img {
		order:1;
	}
	.bio__inner__text {
		order:2;
	}
	footer ul {
		justify-content: center;
		align-items: center;
	}
	.footer__copyright {
		order:1;
	}
	.footer__contact {
		order:2;
		width:auto;
	}
	.footer__author {
		order:3;
	}
	.gallery__container a,
	.gallery__container img {
		height:280px;
		min-width:190px;
	}
	.gallery__caption {
		padding:2rem;
	}
	.gallery__container {
		gap: 1.8rem;
	}
	
	.glightbox-clean .gdesc-inner {
		padding: 0.5rem 1rem!important;
		background:#121212!important;
	}
	.glightbox-clean .gslide-title {
		color:white!important;
	}
}
