header {
  padding: 0;
  margin: 0;
}

section .orientationColumn {
  padding: 0 1.75rem 1.5rem 1.75rem;
  max-width: 65%;
}

@media screen and (max-width: 990px) {
  section .orientationColumn {
    padding: 0 1.75rem 1.5rem 1.75rem;
    max-width: 100%;
  }
}
section .pCentered {
  display: flex;
  justify-content: center;
}
section h1,
section h2 {
  display: flex;
  justify-content: center;
}
section .colToRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section .colToRow p {
  margin-left: 2rem;
}
section .colContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section .rowToCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 80%;
}
@media screen and (max-width: 991px) {
  section .rowToCol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin-top: 0.5rem;
  }
  section .colToRow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  section .colToRow p {
    margin-left: 0;
  }
  section #sectionPhoto {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  section .colToRow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  section .colToRow p {
    margin-left: 0;
  }
}
section .toWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.animToColl {
  animation: blockRowToColl 1s forwards;
}

.animToRow {
  animation: blockCollToRow 1s forwards;
}

@keyframes blockRowToColl {
  0% {
    transform: translate3d(10px, -35px, 20px);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes blockCollToRow {
  0% {
    transform: translate3d(-15px, 25px, 0px);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.rowNoWrapFstart {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.flexReverseCol {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}

.rowNoWrapFend {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-evenly;
}

section pre {
  background-color: #f7f8f9;
  border: 1px solid #f2f2f2;
  display: block;
  font-size: 0.9rem;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  white-space: pre-wrap;
  word-break: break-all;
}

section code {
  display: block;
}

section svg {
  margin-bottom: -5px;
  margin-right: 5px;
  width: 25px;
}

footer {
  flex-direction: row;
  background-color: rgba(221, 72, 20, 0.8);
  text-align: center;
}

footer .environment {
  color: white;
  padding: 2rem 1.75rem;
}

footer .copyrights {
  background-color: #3e3e3e;
  color: #c8c8c8;
  padding: 0.25rem 1.75rem;
}

:root {
  --bodyBackColor: #0046ff14;
  --navButtonBackColor: #001530;
  --navButtonBackColorHover: #02224c;
  --skillBackColor: #001530;
  --skillBarBackColor: #fff;
  --envGenBackColor: #dbe4ff;
  --skillBarTopColor: #ef9d40;
  --navTextColor: #ccd1de;
  --navTextColorHover: #9fcee2;
  --h1Color: #4f81bd;
  --h2Color: #4f81bd;
  --pTextColor: #494748;
  --pSkillTextColor: #b5b6cf;
  --pSkillTextShadow: 2px 2px 2px #a1a3f0a3;
  --h1SkillTextColor: #67cbff;
  --h2SkillTextColor: #67cbff;
  --ciTextColor: #868991;
  --footerTextColor: #ebebeb;
  --h1Size: calc(1.375rem + 1.5vw);
  --h2Size: calc(1rem + 1.5vw);
  --h1SkillSize: 2rem;
  --h2SkillSize: 1.3rem;
  --h3SkillSize: 1rem;
  --pTextSize: 1.1rem;
  --pSkillTextSize: 1rem;
  --buttonTextSize: 1.1669rem;
  --navButtonBorder: 4px double #dadada;
  --skillBorder: 4px double var(--h1Color) --pictureBorderColor: rgba(238, 238, 238, 0.3);
  --pictureBorderKind: ridge;
  --buttonBorderKind: double;
  --pictureBorderThikness: 4px;
  --buttonBorderThikness: 4px;
  --pictureBorderRadius: 0.625rem;
  --buttonBorderRadius: 0.625rem;
  --skillBorderRadius: 0.625rem;
  --navButtonHeight: 3.75rem;
  --navButtonWidth: 10.75rem;
  --navButtonMobilHeight: 3.75rem;
  --navButtonMobilWidth: 3.75rem;
  --pictureHeight: 11.25rem;
  --pictureWidth: var(--pictureHeight);
  --skillBlockHeight: 39.375rem;
  --skillBlockWidth: 14.25rem;
  --skillTopSize: {percent}%;
  --dateElementHeight: 7rem;
  --dateElementWidth: var(--dateElementHeight);
  --shadowBlocks: 3px 3px 3px 1px rgba(0, 0, 0, 0.3);
}

body,
.card-body {
  background-color: var(--bodyBackColor);
}

html,
body {
  color: #212529;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html section,
body section {
  width: 100%;
  display: flex;
  justify-content: center;
}

h1 {
  font-size: var(--h1Size);
  color: var(--h1Color);
}

h2 {
  font-size: var(--h2Size);
  color: var(--h2Color);
}

h1,
h2 {
  font-family: "Script MT";
}

p,
li {
  font-family: "Garamon";
  font-size: var(--pTextSize);
  color: var(--pTextColor);
  text-align: justify;
}

ul {
  padding-left: 0;
}

footer p {
  color: var(--footerTextColor);
}

.orientationColumn {
  flex-direction: column;
}

span {
  font-weight: 700;
}

.hidden {
  opacity: 0;
  filter: blur(1px);
  transform: translateY(-50%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.25s;
}

#sectionPresentation {
  padding: 0.5rem;
  text-align: center;
}

.titleIcon {
  height: 1.875rem;
  width: 1.875rem;
}

.blockTitle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#sectionXP, #sectionDegress, #sectionProd {
  margin-top: 0;
  margin-bottom: 0;
}

.menu {
  height: 100%;
  max-width: 10%;
  display: flex;
  align-items: center;
  z-index: 1;
  position: fixed;
  left: 6%;
}

header li.menu-item a {
  width: var(--navButtonWidth);
  height: var(--navButtonHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--navButtonBackColor);
  box-shadow: var(--shadowBlocks);
  border-radius: var(--buttonBorderRadius);
  color: var(--navTextColor);
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: "Footlight MT Light";
  font-weight: 600;
  font-size: var(--buttonTextSize);
  line-height: 36px;
  transition: transform 0.45s, border 0.2s, background-color 0.5s, box-shadow 0.2s, color 1s;
}
header li.menu-item a:hover {
  transform: scale(1.15);
  background-color: var(--navButtonBackColorHover);
  box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, 0.3);
  color: var(--navTextColorHover);
  border: var(--navButtonBorder);
}

#ulMenu > ul {
  padding: 0;
  width: var(--navButtonWidth);
  user-select: none;
  margin-right: 1.75rem;
}

header li {
  list-style-type: none;
  margin: 5px 0;
  user-select: none;
}

header li a {
  text-decoration: none;
  user-select: none;
}

.offcanvas {
  background-color: var(--envGenBackColor);
}

.offcanvasButton {
  height: auto;
  width: auto;
  position: fixed;
  z-index: 1;
  bottom: 2%;
  left: 2%;
  font-family: "Foot MT";
  user-select: none;
}

.locationSkillBlock {
  height: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  width: fit-content;
}
.locationSkillBlock .skillBlock {
  height: var(--skillBlockHeight);
  width: var(--skillBlockWidth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
  position: fixed;
  right: 2.7rem;
  border: var(--skillBorder);
  border-radius: var(--skillBorderRadius);
  box-shadow: var(--shadowBlocks);
  background-color: var(--skillBackColor);
}
.locationSkillBlock .skillBlock h1 {
  font-size: var(--h1SkillSize);
  color: var(--h1SkillTextColor);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.locationSkillBlock .skillBlock h2 {
  font-size: var(--h2SkillSize);
  color: var(--h2SkillTextColor);
}
.locationSkillBlock .skillBlock .skill {
  font-family: "Garamon";
  font-size: var(--h3SkillSize);
  color: var(--h2SkillTextColor);
}
.locationSkillBlock .skillBlock ul {
  margin-left: auto;
  margin-right: auto;
}
.locationSkillBlock .skillBlock li {
  display: flex;
  justify-content: center;
  color: var(--pSkillTextColor);
  text-shadow: var(--pSkillTextShadow);
  margin: 1rem;
}
.locationSkillBlock .skillBlock .progress {
  margin-bottom: 0.5rem;
}
.locationSkillBlock .skillBlock .progress .bg-warning {
  background-color: var(--skillBarTopColor) !important;
  width: var(--skillTopSize);
}
.locationSkillBlock .skillBlock .progress .progress-bar-10 {
  width: 10%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-20 {
  width: 20%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-30 {
  width: 30%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-40 {
  width: 40%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-50 {
  width: 50%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-60 {
  width: 60%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-70 {
  width: 70%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-80 {
  width: 80%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-90 {
  width: 90%;
}
.locationSkillBlock .skillBlock .progress .progress-bar-100 {
  width: 100%;
}

.arrowSkillblock {
  display: none;
}

.changeArrowPosition {
  right: var(--skillBlockWidth);
  transform: rotate(180deg);
}

.showSkillFromRight {
  opacity: 1;
  filter: blur(0);
  right: 0%;
  transition: all 1s;
}

.hiddenSkillFromRight {
  opacity: 0;
  filter: blur(1px);
  right: -50%;
  transition: all 1s;
}

.personnalImage {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadowBlocks);
}

.imageBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.prodImage {
  max-height: 7.25rem;
  max-width: 20.875rem;
  width: auto;
  height: auto;
}

.card {
  margin-left: 2rem;
  margin-right: 2rem;
  max-width: 80%;
  min-width: 50%;
  box-shadow: var(--shadowBlocks);
}
.card h4 {
  text-align: center;
}

.card-body ul {
  padding-left: 1rem;
}

#cardProd {
  margin-left: 2rem;
  margin-right: 2rem;
  min-width: 25rem;
  height: 25rem;
  width: 60rem;
  box-shadow: var(--shadowBlocks);
}
#cardProd h4 {
  text-align: center;
}

.dateElement {
  height: var(--dateElementHeight);
  width: var(--dateElementWidth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  border: solid 1px black;
  border-radius: 100%;
  box-shadow: var(--shadowBlocks);
  margin-left: 2rem;
  margin-right: 2rem;
}
.dateElement p {
  margin-bottom: 0;
}

.hiddenCardFromLeft {
  opacity: 0;
  filter: blur(1px);
  transform: translateX(-25%);
  transition: all 1s;
}

.showCardFromLeft {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition-delay: 0.5s;
}

.hiddenCardFromRight {
  opacity: 0;
  filter: blur(1px);
  transform: translateX(25%);
  transition: all 1s;
}

.showCardFromRight {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition-delay: 0.5s;
}

.carousel {
  width: 35vw;
  margin-left: auto;
  margin-right: auto;
}

.carousel-control-next,
.carousel-control-prev {
  top: 10.313rem;
  width: 3.125rem;
  height: 3.125rem;
  border: solid 4px black;
  border-radius: 2rem;
}

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