body {
  font-family: "", sans-serif;
  color: #000;
  animation: pagecrossfade 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }

@keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media screen and (max-width: 1000em){
}
bodycopy a {
    font-size: 0.9em;
}

a:active {
	opacity: 0.7;
}
div.hover-social span a img:hover {
    opacity: 0.5;
}
/**
.page a.active {
	color: #ff2000;
   opacity: 0;
   transition: opacity .5s;
}
 */

/* ✅ Conteneur du lecteur avec largeur ajustable */
#gallery {
  max-width: 100%;
  margin: 0 auto;
}

/* ✅ Conteneur des blocs */
.blocks {
  position: relative;
}

/* ✅ Style du lecteur vidéo */
figure.video.with-player {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

figure.video.with-player video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  display: block;
  object-fit: contain;
}

/* ✅ Commandes du lecteur */
figcaption.video-UI {
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.4em, 1.4vmin, 2em);
  gap: 1rem;
  pointer-events: auto;
  background: none;
  opacity: 0;
}

/* ✅ Apparition des commandes au survol */
.blocks:hover figcaption.video-UI {
  opacity: 1;
}

/* ✅ Barre de progression */
figcaption.video-UI progress {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: block;
}

/* ✅ Styles spécifiques aux navigateurs */
figcaption.video-UI progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

figcaption.video-UI progress::-webkit-progress-value {
  background: #fafaf7;
  transition: width 0.25s linear;
  border-radius: 4px;
}

figcaption.video-UI progress::-moz-progress-bar {
  background: #fafaf7;
  border-radius: 4px;
}

/* ✅ Style des boutons */
figcaption.video-UI button {
  white-space: nowrap;
  font-size: clamp(0.6rem, 0.3vmin, 0.8rem);
  background: none;
  border: none;
  color: #fafaf7;
  cursor: pointer;
}

figcaption.video-UI p.timer {
  color: #fafaf7;
  width: 32px;
  font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-size: clamp(0.6rem, 0.3vmin, 0.8rem);
  margin: 0;
}

figcaption.video-UI .play {
  width: 100px;
}

/* ✅ Correction de l'alignement du bouton fullscreen sur Firefox */
figcaption.video-UI .fullscreen-btn {
  width: 60px;
  font-size: 2rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ✅ Ajout spécifique pour Firefox */
@-moz-document url-prefix() {
  figcaption.video-UI .fullscreen-btn {
    position: relative;
    top: -5px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ✅ Conteneur vidéo */
.video {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Style de la vidéo */
.video video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}

/* ✅ Surcouche noire semi-transparente */
.video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

/* ✅ Bouton PLAY */
.video .overlay .play-button {
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 40px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  user-select: none;
}

/* ✅ Cacher la surcouche lorsque la vidéo joue */
.video.playing .overlay {
  opacity: 0;
  pointer-events: none;
}

/* ✅ Mode PLEIN ÉCRAN */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover;
}

/* ✅ Masquer les contrôles natifs sur Safari */
video::-webkit-media-controls {
  display: none !important;
}

/* ✅ Mode plein écran sur mobile */
@media screen and (max-width: 768px) {
  figure.video.with-player {
    max-width: 100%;
  }

  .video video {
    max-width: 100%;
    height: auto;
  }

  figcaption.video-UI {
    opacity: 1;
  }
}

/* ✅ Loader d'attente */
.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1000;
}

.video-loader.visible {
  display: block;
}

/* ✅ Animation de rotation */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.3em;
	position: relative;
	vertical-align: baseline;
}

sub {
    font-size: 0.7em;
	top: -1.2em;
    left: 0.2em
}

sup {
    color: rgba(0, 0, 0, 0.85);
	bottom: 1.0em;
	font-style: normal;
	font-weight: 400;
    font-family: "TeX Gyre Heros Condensed", Icons /*!Persona*/;
    margin-left: 0.2rem;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
}

ul,
ol {
    display: block;

}

ol>li {
        padding-left: 0px;
    }

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}
hr {
	background: rgba(0, 0, 0, .15);
	border: 0;
	height: 1px;
	display: block;
}
.nomprenom {
	font: 200px "Plain", sans-serif;
    color: white;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.nomprenom_italic {
	font: 200px "Plain", sans-serif;
    color: white;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.subtitle {
	font: 25px "Austin-Light-Italic-Web", sans-serif;
    color: white;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.italic_italic {
	font: 13px "Austin-Light-Web", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.copyright {
	font: 13px "Austin-Light-Web", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  	writing-mode: vertical-rl;
  	text-orientation: sideways;
}
.copyright_black {
	font: 11px "Social Condensed Variable", Icons;
    font-style: normal;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  	writing-mode: vertical-rl;
  	text-orientation: sideways;
}
.copyright_blackbackup {
	font: 13px "Austin-Light-Web", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  	writing-mode: vertical-rl;
  	text-orientation: sideways;
}


.rotaterotate_left {
	font: 13px "Austin-Light-Web", sans-serif;
    color: #000;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  	writing-mode: vertical-rl;
  	text-orientation: sideways;
}
#span_x a:hover   {
    color: transparent;
    transition: color 400ms;
}
.rotaterotate_right {
	font: 13px "Austin-Light-Web", sans-serif;
    color: #000;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  	writing-mode: vertical-rl;
  	text-orientation: sideways;
}
.logoRG a{
    position: relative;
}
.logoRG a:after {
    position: absolute;
	font: 13px/20px "Plain", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
     content: "RONANGALI";
}
.logoRG a:hover:after {
    content: "RONANGALI";
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.logoRG_black_work a{
    position: relative;
    color: white;
}
.logoRG_black_work a:after {
    position: absolute;
	font: 13px/20px "Plain", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
     content: "RONANGALI";
     color: white;
}
.logoRG_black_work a:hover:after {
    content: "RONANGALI";
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
    color: white;
}
.logoRG_close a{
    position: relative;
}
.logoRG_close a:after {
    position: absolute;
	font: 13px/20px "Plain", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
     content: "CLOSE";
}
.logoRG_close a:hover:after {
    content: "CLOSE";
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.logoRG_white a{
    position: relative;
	font: 13px/20px "Plain", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.logoRG_white a:hover {
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.logoRG_black a{
    position: relative;
	font: 13px/20px "Plain", sans-serif;
    letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.logoRG_black a:hover {
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.boldcontent_3{
    font-family: "Plain", sans-serif;
    letter-spacing: 0.07rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    font-size: 3rem;
    line-height: 1;
    text-align: left;
}
.boldcontent{
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons /*!System*/;
    font-style: normal;
    font-weight: 700;
    font-size: 6.6rem;
    line-height: 1;
    text-align: justify;
    overflow-y: scroll;
    height: 75vh;
	
}
.boldcontent span a {
    transition: all 0.2s ease-in-out;
}
/* Change color of dropdown links on hover */
.boldcontent a:hover {color: rgba(255, 255, 255, 0.44);}

/* Hide scrollbar for Chrome, Safari and Opera */
.boldcontent::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.boldcontent {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.boldcontent_mobile{
    font-family: "Plain", sans-serif;
    letter-spacing: 0.07rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    font-size: 2.5rem;
    line-height: 1;
    text-align: left;
    position: fixed;
}

.boldcontent_mobile div{
    overflow: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.boldcontent_mobile div::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.boldcontent_mobile div {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Progress Bar */
.header {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 3;
}

.progress-container {
  background-color: rgba(0, 0, 0, 1);
  height: 2px;
  width: 100%;
}

.progress-bar {
  background-color: #fff;
  height: 2px;
  width: 0%;
}
/* END Progress Bar */


.marquee {
	padding-top: 0px;
}
.marquee span {
    font: 10px "Plain", sans-serif;
    letter-spacing: 0.07rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.marquee div span a:hover{
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
 
.hover-contact small b a:hover{
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.lien_email{
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
#news{
    font: 9px "Plain", sans-serif;
    letter-spacing: 0.07rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.text_para {
    display: inherit;
	font-size: 1rem;
	line-height: 1.6;
	font-family: "iA Writer Quattro", Icons /*!Persona*/;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
    letter-spacing: 0.01em;
    padding-top: 1px;
}
.has-drop-cap:not(:focus):after {
    content: "";
    display: table;
    clear: both;
}
.has-drop-cap:not(:focus):first-letter {
    float: left;
    font-size: 3em;
    line-height: .60;
    font-weight: 100;
    text-transform: uppercase;
    font-style: normal;
    margin: 0.02em 0.06em 0em 0em;
}

.content img {
	float: none;
	margin-bottom: 1rem;
    vertical-align: bottom;
}

div.top a {
    color: rgba(0, 0, 0, 0.85);
  	text-decoration: none;
}


div.top a:hover {
    color: rgba(255, 255, 255, 0);
  	text-decoration: none;
    transition: color 400ms;
}

div.top h1 a:hover {
    color: rgba(255, 255, 255, 0);
  	text-decoration: none;
    transition: color 400ms;
}


div.topw span a {
  	text-decoration: none;
    color: #fff;
}

div.topw span a:hover {
    color: rgba(255, 255, 255, 0);
  	text-decoration: none;
}

div.topw span > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

div.topw span > a:hover::before {
  visibility: visible;
  width: 100%;
}


div.menu a {
    font-size: 1.4rem;
	font-weight: 500;
	color: #000;
  	text-decoration: none;
}

div.menu a:hover {
	color: #000;
  	text-decoration: none;
}

div.menu > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #000;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

div.menu > a:hover::before {
  visibility: visible;
  width: 100%;
}

.gallery_image_caption {
    margin-top: 1.2em;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: Standard, Icons /*!Persona*/;
	font-style: normal;
	line-height: 1.3;
    text-align: left;
	letter-spacing: 0.02em;
}
p {
    margin-bottom: 1.5em;
}
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


div.logotext a {
    font-family:'Cormorant Garamond';
    font-size: 38px;
	font-weight: 500;
	color: #000;
  	text-decoration: none;
    text-transform: uppercase;
}

div.logotext a:hover {
	color: #909090;
  	text-decoration: none;
}

.copyright-text {
    position: relative;
    font-family: 'Cormorant Garamond' icons /*!Persona*/;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
	font-style: normal;
}

.copyright-text_white {
    position: relative;
    font-family: 'Cormorant Garamond' icons /*!Persona*/;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
	font-style: normal;
    color: white;
}

.rotate {
    display: inline-block;
    -webkit-animation: rotate 7s linear infinite;
    animation: rotate 7s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}
/**
 * Editor styles
 */
[data-predefined-style="true"] bodycopy {
	font-size: 1.2rem;
	font-weight: 200;
	color: rgba(0, 0, 0, 0.85);
	font-family: "Social Condensed Variable", Icons;
	font-style: normal;
	line-height: 1.5;
    letter-sacing: 0.05rem;
	font-variation-settings: 'wdth' 75, 'slnt' 0;
}
[data-predefined-style="true"] bodycopy a {
	color: rgba(0, 0, 0, 0.85);
	padding-bottom: 0.1em;
	border-bottom: 0.0em solid rgba(171, 171, 171, 0.2);
	text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {
}

bodycopy a.image-link{
	opacity: 1;
}

bodycopy a.image-link:hover {
    border-bottom: 0em solid rgba(0, 0, 0, 0.75);
	padding-bottom: 0em;
	background-color:transparent;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
bodycopy a.icon-link,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}
[data-predefined-style="true"] h1 {
	font-family: "Plain", Helvetica, sans-serif, "Helvetica Neue Bold", Icons /*!System*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-size: 1.2rem;
	line-height: 1;
	color: rgb(0, 0, 0);
	}

[data-predefined-style="true"] h1 a {
	color: rgb(0, 0, 0);
}
[data-predefined-style="true"] h1 a:hover {
	color: rgb(183, 183, 183);
}

div.view-post-link {
    font-family: 'Cormorant Garamond', Icons /*!Persona*/;
	font-style: normal;
    font-size: 1.8em;
	font-weight: 600; 
    line-height: 1;
	color: #000;
    position: absolute;
    bottom: 52px;
    left: 140px;
    margin-bottom: -3px;
    z-index: 3;
    opacity: 1;
}

div.view-post-link a:hover {
	color: #000;
  	text-decoration: none;
}

div.view-post-link > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #000;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

div.view-post-link > a:hover::before {
  visibility: visible;
  width: 100%;
}
[data-predefined-style="true"] h2 {
	font-family: Standard, Icons /*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	color: rgba(0, 0, 0, 0.85);
	font-size: 3.5rem;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.3;
	font-family: "iA Writer Quattro", Icons /*!Persona*/;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
    letter-spacing: 0.01em;
}

[data-predefined-style="true"] small a {
	color: rgba(0, 0, 0, 0.85);
	border-bottom-width: 0em;
}

/**
 * Breakpoints
 */

[data-css-preset] .page_container {
    position: relative;
    
}
element.style {
    padding-top: 0px;
}
[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

[data-css-preset] .page_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile .page,
[data-css-preset] .mobile .page {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

[data-css-preset] .container {

	margin-left: 0 /*!content_left*/;
	margin-right: auto /*!content_left*/;
	text-align: left /*!text_left*/;
}

[data-css-preset] body {
	background-color: rgb(255, 255, 255) /*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100% /*!content_left*/;
}

[data-css-preset] .content_padding {
	padding-top: 4.9rem/*!main_margin*/;
	padding-bottom: 4.9rem/*!main_margin*/;
	padding-left: 4.9rem/*!main_margin*/;
	padding-right: 4.9rem/*!main_margin*/;
}


[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 100%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 1.3rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -2.6rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 1rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -2rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 1px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.2rem;
    margin-bottom: .3rem;
    font-size: 1.7rem;
	font-weight: normal;
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Neue Haas Grotesk', Icons /*!Persona*/;
	font-style: normal;
	line-height: 1.3;
}

.thumbnails .tags {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.35);
	font-family: 'Neue Haas Grotesk', Icons /*!Persona*/;
	font-style: normal;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 0rem;
}

/**
 * Site Menu
 */

[data-css-preset] #site_menu_button {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1;
    font-size: 28px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    background: rgba(33, 32, 46, 0);
    position: fixed;
    top: .8rem /*!site_menu_button*/;
	right: 1.5rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -6px;
    font-size: 34px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}

/**
 * Site Menu
 */

#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons /*!System*/;
	background: rgba(20, 20, 20, 0.95);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/*
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgb(41, 41, 41);
    background: transparent;
	font-size: 32px;
    font-style: normal;
	font-weight: 400;
    line-height: 1;
    position: fixed;
	padding: 6px;
	top: .75rem /*!shop_button*/;
	right: 1rem /*!shop_button*/;
}

#shop_button.text {
    font-size: 1.3rem;
	font-weight: 400;
	color: rgb(41, 41, 41);
	font-family: "Neue Haas Grotesk", Icons /*!Persona*/;
    padding: 0;
    line-height: 1.2;
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 36px;
}

/*
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price {
	font-size: 1.3rem;
	font-weight: 400;
	font-family: "Neue Haas Grotesk", Icons /*!Persona*/;
	font-style: normal;
	line-height: 1;
	color: rgb(0, 0, 0, 0.4);
    display: block;
    margin-bottom: 1rem;
}

.shop_product .dropdown {
    font-family: "Neue Haas Grotesk", Icons /*!Persona*/;
    font-size: 1.3rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: .7rem 1rem;
}

.shop_product .button {
	font-family: "Neue Haas Grotesk", Icons /*!Persona*/;
	font-size: 1.3rem;
    background: rgb(41, 41, 41);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem .9rem;
}

/*
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

.image-zoom-background {
	background: rgba(255, 255, 255, 0.95);
}


/**
 * Image Zoom Navigation Arrows 
 */

.image-zoom-navigation .left-arrow,
.image-zoom-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-zoom-navigation .left-arrow .inner-color,
.image-zoom-navigation .right-arrow .inner-color {
    fill: #fff;
}

.image-zoom-navigation .left-arrow .outer-color,
.image-zoom-navigation .right-arrow .outer-color {
    fill: #000;
    opacity: 0.2;
}

.image-zoom-navigation .close-button {  
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.image-zoom-navigation .close-button .inner-color {
    fill: #fff;
}

.image-zoom-navigation .close-button .outer-color {
    fill: #000;
    opacity: 0.2;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.gallery_image_caption{
	font-family: "Plain", Helvetica, sans-serif, "Helvetica Neue Bold", Icons /*!System*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 200;
	font-size: 1rem;
	line-height: 7;
	color: rgb(255, 255, 255);
    width: 56px;
}

.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 56px;
    width: 56px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    fill: #fff;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    fill: #000;
    opacity: 0.2;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 56px;
   height: 56px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   fill: #fff;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    fill: #000;
    opacity: 0.2;
}

/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}

@font-face {
    font-family: 'Austin-Light-Web';
    font-weight: normal;
    font-style: normal;
    src: url('https://files.cargocollective.com/c894013/Austin-Light-Web.woff') format('woff');
}

@font-face {
    font-family: 'Austin-Light-Italic-Web';
    font-weight: normal;
    font-style: normal;
    src: url('https://files.cargocollective.com/c894013/Austin-Light-Italic-Web.woff') format('woff');
}

@font-face {
	font-family: 'PlainIta';
	src: url('https://files.cargocollective.com/c868971/PlainMediumIta.eot');
	src: url('https://files.cargocollective.com/c868971/PlainMediumIta.eott') format('embedded-opentype'),
		 url('https://files.cargocollective.com/c868971/PlainMediumIta.eot') format('woff');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'Plain';
	src: url('https://files.cargocollective.com/c868971/PlainMedium.eot');
	src: url('https://files.cargocollective.com/c868971/PlainMedium.eot') format('embedded-opentype'),
		 url('https://files.cargocollective.com/c868971/PlainMedium.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}
/*
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons/*!System*/;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(0,0,0,0.15);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.85);
}

.audio-player .icon {
    fill: rgba(0, 0, 0, 0.85);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 1rem;
    fill: rgba(0, 0, 0, 0.5);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}

/**
 * Show an Image on Hover
 * See more at: https://support.cargo.site/Show-an-Image-on-Hover
 **/

.hover-title {
    display: inline-block;
    poiner-events: auto;
    cursor: pointer;
}
.italic {
    -moz-transition: transform .1s ease-in-out;;
    -webkit-transition: transform .1s ease-in-out;;
    -o-transition: transform .1s ease-in-out;;
    transition: transform .1s ease-in-out;;
}

.italic:hover {
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

.hover-title span a:hover {
    color: transparent;
}

.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}
.hover-image {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

/* Change width and height to scale images */
    width: 100vw;
    height: 100vh;
}
.hover-image img {
    max-width: 110% !important;
    max-height: 110% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0;
}

@media screen and (min-width: 770px) {
  #mobile_view {
    visibility: hidden;
    clear: both;
    display: none;
  }
}

#infofilm {
    display: none;
    padding-top: 20px;  
  animation: pagecrossfade 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }

#share {
    display: none;
    padding-top: 20px;  
  animation: pagecrossfade 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }


@keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes pagecrossfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}







