/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Avenir Roman";
  font-style: normal;
  font-weight: normal;
  src: local("Avenir Roman"), url("./fonts/avenir_roman_12.woff") format("woff");
}
@font-face {
  font-family: "Avenir Roman";
  font-style: normal;
  font-weight: 900;
  src: local("Avenir Roman"), url("./fonts/AvenirLTStd-Black.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Avenir Roman", sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 95%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.3));
}

.profile {
  text-align: center;
  color: #ffffff;
}
.profile img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.profile h1 {
  font-size: 26px;
  margin-bottom: 16px;
}
.profile h2 {
  font-size: 18px;
  line-height: 25px;
}

.icons {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  margin-top: 2em;
}

.icon {
  padding: 0.8em;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  border: 2px #ffffff solid;
  border-radius: 15px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.icon:hover {
  color: #000000;
  background: white;
  transition: all 0.6s;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  width: 100%;
  margin-top: 2em;
}

.social svg {
  height: 40px;
  fill: #ffffff;
  transition: all 0.2s;
}
.social:hover svg {
  fill: #000000;
  transition: all 0.4s;
}

#logo-rocherblanc {
  display: flex;
  justify-content: var(--RCjstf);
  padding: 20px 0;
  background-color: var(--RCfooter-bg);
}

.rb-logo {
  --transition-duration: .3s;
  fill: var(--RClogo-color);
  height: 50px;
  backface-visibility: hidden;
}

.rb-logo, .rb-logo-main, .rb-logo-main-A, .rb-logo-main-B, .rb-logo-main-C, .rb-logo-main-L, .rb-logo-main-N, .rb-logo-small {
  transition: var(--transition-duration);
}

.rb-logo-small {
  transform: scale(1.3);
  transform-origin: 40% 0;
  opacity: 0.6;
}

.rb-logo-main {
  opacity: 0.7;
}

.rb-logo:hover .rb-logo-main, .rb-logo:hover .rb-logo-small {
  opacity: 1;
}

.rb-logo:hover .rb-logo-main-B {
  transform: translateX(-400px);
}

.rb-logo:hover .rb-logo-main-C {
  transform: translateX(400px);
}

.rb-logo:hover .rb-logo-main-L {
  transform: translateX(-200px);
}

.rb-logo:hover .rb-logo-main-N {
  transform: translateX(200px);
}

@media (max-width: 992px) {
  #logo-rocherblanc {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
