/***************************
CUSTOM STYLES
***************************/
/**************************
VARIABLES
**************************/
/***********************
FONTS
***********************/
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
.base-font {
  font-size: 1rem;
}

.small-font {
  font-size: 0.85rem;
}

.font2 {
  font-size: 1.62rem;
}

.font3 {
  font-size: 2.6244rem;
}

.font4 {
  font-size: 4.251528rem;
}

.font5 {
  font-size: 6.88747536rem;
}

/***********************
COLORS
***********************/
.neutral-50 {
  color: #E5E7F3;
}

.neutral-100 {
  color: #C7CAE0;
}

.neutral-200 {
  color: #B3B8D0;
}

.neutral-300 {
  color: #969BB6;
}

.neutral-400 {
  color: #7E839F;
}

.neutral-500 {
  color: #626784;
}

.neutral-600 {
  color: #4B4F67;
}

.neutral-700 {
  color: #35384A;
}

.neutral-800 {
  color: #292C3B;
}

.neutral-900 {
  color: #1E1E29;
}

.primary-50 {
  color: #FBC2D0;
}

.primary-100 {
  color: #F386A0;
}

.primary-main {
  color: #F02657;
}

.primary-300 {
  color: #A30B30;
}

.primary-400 {
  color: #410413;
}

.secondary-50 {
  color: #C9FBEF;
}

.secondary-100 {
  color: #C9FBEF;
}

.secondary-main {
  color: #26F0BF;
}

.secondary-300 {
  color: #0BA37E;
}

.secondary-400 {
  color: #044132;
}

.error-50 {
  color: #FD7279;
}

.error-100 {
  color: #DE030E;
}

.error-main {
  color: #510105;
}

.error-300 {
  color: #360103;
}

.error-400 {
  color: #1B0002;
}

.success-50 {
  color: #B6E6B9;
}

.success-100 {
  color: #72D377;
}

.success-main {
  color: #0ECA18;
}

.success-300 {
  color: #098A10;
}

.success-400 {
  color: #064D0A;
}

.bg-neu-50 {
  background-color: #E5E7F3;
}

.bg-neu-100 {
  background-color: #C7CAE0;
}

.bg-neu-200 {
  background-color: #B3B8D0;
}

.bg-neu-300 {
  background-color: #969BB6;
}

.bg-neu-400 {
  background-color: #7E839F;
}

.bg-neu-500 {
  background-color: #626784;
}

.bg-neu-600 {
  background-color: #4B4F67;
}

.bg-neu-700 {
  background-color: #35384A;
}

.bg-neu-800 {
  background-color: #292C3B;
}

.bg-neu-900 {
  background-color: #1E1E29;
}

.bg-pri-50 {
  background-color: #FBC2D0;
}

.bg-pri-100 {
  background-color: #F386A0;
}

.bg-pri-main {
  background-color: #F02657;
}

.bg-pri-300 {
  background-color: #A30B30;
}

.bg-pri-400 {
  background-color: #410413;
}

.bg-sec-50 {
  background-color: #C9FBEF;
}

.bg-sec-100 {
  background-color: #77F6D7;
}

.bg-sec-main {
  background-color: #26F0BF;
}

.bg-sec-300 {
  background-color: #0BA37E;
}

.bg-sec-400 {
  background-color: #044132;
}

.bg-err-50 {
  background-color: #FD7279;
}

.bg-err-100 {
  background-color: #DE030E;
}

.bg-err-main {
  background-color: #510105;
}

.bg-err-300 {
  background-color: #360103;
}

.bg-err-400 {
  background-color: #1B0002;
}

.bg-succ-50 {
  background-color: #B6E6B9;
}

.bg-succ-100 {
  background-color: #72D377;
}

.bg-succ-main {
  background-color: #0ECA18;
}

.bg-succ-300 {
  background-color: #098A10;
}

.bg-succ-400 {
  background-color: #064D0A;
}

/************************
GENERAL STYLES
************************/
ul, ol, li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  list-style: none;
  text-decoration: none;
}

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

.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

.fluid-wrap {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .fluid-wrap {
    padding-left: calc(3rem - 12px);
    padding-right: calc(3rem - 12px);
  }
}
@media screen and (min-width: 1320px) {
  .fluid-wrap {
    padding-left: calc(3.5rem - 12px);
    padding-right: calc(3.5rem - 12px);
  }
}
@media screen and (min-width: 1512px) {
  .fluid-wrap {
    padding-left: calc(4rem - 12px);
    padding-right: calc(4rem - 12px);
  }
}

@media (min-width: 992px) {
  .custom-gap-row {
    --bs-gutter-x: 3rem;
  }
}
@media (min-width: 1320px) {
  .custom-gap-row {
    --bs-gutter-x: 3.5rem;
  }
}
@media (min-width: 1512px) {
  .custom-gap-row {
    --bs-gutter-x: 4rem;
  }
}

.content-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 992px) {
  .content-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.verti-space {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media screen and (min-width: 992px) {
  .verti-space {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.verti-top {
  padding-top: 5.5rem;
}
@media screen and (min-width: 992px) {
  .verti-top {
    padding-top: 6rem;
  }
}

.verti-bottom {
  padding-bottom: 5.5rem;
}
@media screen and (min-width: 992px) {
  .verti-bottom {
    padding-bottom: 6rem;
  }
}

.display-title {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 2.6244rem;
  line-height: 46px;
  text-transform: uppercase;
}
.display-title span {
  color: #F02657;
}
@media screen and (min-width: 1200px) {
  .display-title {
    font-size: 4.251528rem;
    line-height: 72px;
  }
}

h1, .h1 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 2.6244rem;
  line-height: 46px;
  text-transform: uppercase;
}
h1 span, .h1 span {
  color: #F02657;
}
@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.6244rem;
    line-height: 46px;
  }
}

h2, .h2 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.62rem;
  line-height: 30px;
  font-weight: 700;
}
h2 span, .h2 span {
  color: #F02657;
}

h3, .h3 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1rem;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
}
h3 span, .h3 span {
  color: #F02657;
}

.subheading {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1rem;
  line-height: 20px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0;
}
.subheading span {
  color: #F02657;
}

p, .body-text {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  color: #FFF;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.body-small {
  font-family: "Titillium Web", sans-serif;
  font-size: 0.85rem;
  color: #FFF;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

a {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #F02657;
  line-height: 20px;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
  transition: 0.1s ease;
}

a:hover,
a:focus,
a:active {
  color: #A30B30;
}

.navlink {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  color: #FFF;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.navlink:hover,
.navlink:focus,
.navlink:active {
  opacity: 0.7;
}

.rounded-custom1 {
  border-radius: 5px;
}

.rounded-custom2 {
  border-radius: 0.5rem;
}

.rounded-custom3 {
  border-radius: 1rem;
}

.rounded-custom4 {
  border-radius: 1.5rem;
}

.rounded-custom5 {
  border-radius: 2rem;
}

.rounded-t-custom1 {
  border-radius: 5px 5px 0 0;
}

.rounded-t-custom2 {
  border-radius: 0.5rem 0.5rem 0 0;
}

.rounded-t-custom3 {
  border-radius: 1rem 1rem 0 0;
}

.rounded-t-custom4 {
  border-radius: 1.5rem 1.5rem 0 0;
}

.rounded-t-custom5 {
  border-radius: 2rem 2rem 0 0;
}

.rounded-b-custom1 {
  border-radius: 0 0 5px 5px;
}

.rounded-b-custom2 {
  border-radius: 0 0 0.5rem 0.5rem;
}

.rounded-b-custom3 {
  border-radius: 0 0 1rem 1rem;
}

.rounded-b-custom4 {
  border-radius: 0 0 1.5rem 1.5rem;
}

.rounded-b-custom5 {
  border-radius: 0 0 2rem 2rem;
}

.rounded-s-custom1 {
  border-radius: 5px 0 0 5px;
}

.rounded-s-custom2 {
  border-radius: 0.5rem 0 0 0.5rem;
}

.rounded-s-custom3 {
  border-radius: 1rem 0 0 1rem;
}

.rounded-s-custom4 {
  border-radius: 1.5rem 0 0 1.5rem;
}

.rounded-s-custom5 {
  border-radius: 2rem 0 0 2rem;
}

.rounded-e-custom1 {
  border-radius: 0 5px 5px 0;
}

.rounded-e-custom2 {
  border-radius: 0 0.5rem 0.5rem 0;
}

.rounded-e-custom3 {
  border-radius: 0 1rem 1rem 0;
}

.rounded-e-custom4 {
  border-radius: 0 1.5rem 1.5rem 0;
}

.rounded-e-custom5 {
  border-radius: 0 2rem 2rem 0;
}

.bd-b-custom {
  border-bottom: dashed 3px #C7CAE0;
}

.bd-b-custom2 {
  border-bottom: dashed 3px #B3B8D0;
}

.bd-b-custom3 {
  border-bottom: dashed 3px #4B4F67;
}

.resp-width-40 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-40 {
    width: 40%;
  }
}

.resp-width-45 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-45 {
    width: 45%;
  }
}

.resp-width-50 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-50 {
    width: 50%;
  }
}

.resp-width-55 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-55 {
    width: 55%;
  }
}

.resp-width-60 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-60 {
    width: 60%;
  }
}

.resp-width-65 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-65 {
    width: 65%;
  }
}

.resp-width-70 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-70 {
    width: 70%;
  }
}

.resp-width-75 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-75 {
    width: 75%;
  }
}

.resp-width-80 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-80 {
    width: 80%;
  }
}

.resp-width-85 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-85 {
    width: 85%;
  }
}

.resp-width-90 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-90 {
    width: 90%;
  }
}

.resp-width-95 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .resp-width-95 {
    width: 95%;
  }
}

/************************
MENU STYLES
************************/
#quentin-menu {
  position: fixed;
  z-index: 999;
  background-color: #1E1E29;
}
#quentin-menu .navigation .primary .menu-item a {
  color: #FFF;
  padding: 6rem 1rem 3rem;
  display: block;
  text-align: center;
}
#quentin-menu .navigation .primary .menu-item-32 {
  background: transparent url(/wp-content/themes/quentin/assets/icons/user-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
  transition: 0.1s ease;
}
#quentin-menu .navigation .primary .menu-item-32:hover,
#quentin-menu .navigation .primary .menu-item-32:focus,
#quentin-menu .navigation .primary .menu-item-32:active {
  background: #F02657 url(/wp-content/themes/quentin/assets/icons/user-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
}
#quentin-menu .navigation .primary .menu-item-31 {
  background: transparent url(/wp-content/themes/quentin/assets/icons/book-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
}
#quentin-menu .navigation .primary .menu-item-31:hover,
#quentin-menu .navigation .primary .menu-item-31:focus,
#quentin-menu .navigation .primary .menu-item-31:active {
  background: #F02657 url(/wp-content/themes/quentin/assets/icons/book-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
}
#quentin-menu .navigation .primary .menu-item-30 {
  background: transparent url(/wp-content/themes/quentin/assets/icons/contact-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
}
#quentin-menu .navigation .primary .menu-item-30:hover,
#quentin-menu .navigation .primary .menu-item-30:focus,
#quentin-menu .navigation .primary .menu-item-30:active {
  background: #F02657 url(/wp-content/themes/quentin/assets/icons/contact-icon-w.svg) no-repeat 50% 40%;
  background-size: 32px;
}
#quentin-menu .navigation .primary .current-menu-item,
#quentin-menu .navigation .primary .current-page-ancestor {
  background-color: #F02657;
}

/************************
BUTTON STYLES
************************/
.cta1 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: solid 3px #F02657;
  background-color: #F02657;
}

.cta1-left {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: solid 3px #F02657;
  background-color: #F02657;
  padding-left: 56px;
}

.cta1-right {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: solid 3px #F02657;
  background-color: #F02657;
  padding-right: 56px;
}

.cta1:hover, .cta1:active, .cta1:focus,
.cta1-left:hover, .cta1-left:active, .cta1-left:focus,
.cta1-right:hover, .cta1-right:active, .cta1-right:focus {
  background-color: #A30B30;
  border: solid 3px #A30B30;
  color: #fff;
}

.cta2 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFF;
  border: solid 3px #fff;
  background-color: transparent;
}

.cta2-left {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFF;
  border: solid 3px #fff;
  background-color: transparent;
  padding-left: 56px;
}

.cta2-right {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFF;
  border: solid 3px #fff;
  background-color: transparent;
  padding-right: 56px;
}

.cta2:hover, .cta2:active, .cta2:focus,
.cta2-left:hover, .cta2-left:active, .cta2-left:focus,
.cta2-right:hover, .cta2-right:active, .cta2-right:focus {
  background-color: #fff;
  border: solid 3px #fff;
  color: #292C3B;
}

#cta1-left-contact {
  background-image: url(/wp-content/themes/quentin/assets/icons/contact-icon-w.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
}

#cta1-left-cv {
  background-image: url(/wp-content/themes/quentin/assets/icons/cv-icon-w.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
}

#cta1-left-cv:hover,
#cta1-left-cv:active,
#cta1-left-cv:focus {
  background-image: url(/wp-content/themes/quentin/assets/icons/cv-icon-r.svg);
}

#cta1-left-portfolio {
  background-image: url(/wp-content/themes/quentin/assets/icons/book-icon-w.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
}

/************************
HOME STYLES
************************/
#home .row .home-bg {
  background: url(/wp-content/themes/quentin/assets/img/PhotoTop_Accueil.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
#home .row .field-icon-wrap {
  position: relative;
}
#home .row .field-icon-wrap h2 {
  padding-top: 4.5rem;
}
#home .row .field-icon-wrap .field-icon-default {
  transition: 0.1s ease;
  top: 4.5rem;
  opacity: 1;
  position: absolute;
}
#home .row .field-icon-wrap .field-icon-hover {
  transition: 0.1s ease;
  top: 4.5rem;
  opacity: 0;
  position: absolute;
}
#home .row .field-icon-wrap:hover .field-icon-default {
  opacity: 0;
}
#home .row .field-icon-wrap:hover .field-icon-hover {
  opacity: 1;
}

/************************
PORTFOLIO STYLES
************************/
#portfolio .col-xl-7 {
  /* Base item container */
  /* Overlay */
  /* Hover effect */
}
@media screen and (min-width: 1200px) {
  #portfolio .col-xl-7 {
    overflow-y: auto;
  }
}
#portfolio .col-xl-7 .portfolio-item1,
#portfolio .col-xl-7 .portfolio-item2,
#portfolio .col-xl-7 .portfolio-item3,
#portfolio .col-xl-7 .portfolio-item4,
#portfolio .col-xl-7 .portfolio-item5,
#portfolio .col-xl-7 .portfolio-item6,
#portfolio .col-xl-7 .portfolio-item7,
#portfolio .col-xl-7 .portfolio-item8,
#portfolio .col-xl-7 .portfolio-item9,
#portfolio .col-xl-7 .portfolio-item10,
#portfolio .col-xl-7 .portfolio-item11,
#portfolio .col-xl-7 .portfolio-item12,
#portfolio .col-xl-7 .portfolio-item13,
#portfolio .col-xl-7 .portfolio-item14,
#portfolio .col-xl-7 .portfolio-item15,
#portfolio .col-xl-7 .portfolio-item16,
#portfolio .col-xl-7 .portfolio-item17,
#portfolio .col-xl-7 .portfolio-item18,
#portfolio .col-xl-7 .portfolio-item19,
#portfolio .col-xl-7 .portfolio-item20 {
  position: relative;
  overflow: hidden;
}
#portfolio .col-xl-7 .portfolio-item1::after,
#portfolio .col-xl-7 .portfolio-item2::after,
#portfolio .col-xl-7 .portfolio-item3::after,
#portfolio .col-xl-7 .portfolio-item4::after,
#portfolio .col-xl-7 .portfolio-item5::after,
#portfolio .col-xl-7 .portfolio-item6::after,
#portfolio .col-xl-7 .portfolio-item7::after,
#portfolio .col-xl-7 .portfolio-item8::after,
#portfolio .col-xl-7 .portfolio-item9::after,
#portfolio .col-xl-7 .portfolio-item10::after,
#portfolio .col-xl-7 .portfolio-item11::after,
#portfolio .col-xl-7 .portfolio-item12::after,
#portfolio .col-xl-7 .portfolio-item13::after,
#portfolio .col-xl-7 .portfolio-item14::after,
#portfolio .col-xl-7 .portfolio-item15::after,
#portfolio .col-xl-7 .portfolio-item16::after,
#portfolio .col-xl-7 .portfolio-item17::after,
#portfolio .col-xl-7 .portfolio-item18::after,
#portfolio .col-xl-7 .portfolio-item19::after,
#portfolio .col-xl-7 .portfolio-item20::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust opacity */
  opacity: 0;
  transition: opacity 0.3s ease;
}
#portfolio .col-xl-7 .portfolio-item1:hover::after,
#portfolio .col-xl-7 .portfolio-item2:hover::after,
#portfolio .col-xl-7 .portfolio-item3:hover::after,
#portfolio .col-xl-7 .portfolio-item4:hover::after,
#portfolio .col-xl-7 .portfolio-item5:hover::after,
#portfolio .col-xl-7 .portfolio-item6:hover::after,
#portfolio .col-xl-7 .portfolio-item7:hover::after,
#portfolio .col-xl-7 .portfolio-item8:hover::after,
#portfolio .col-xl-7 .portfolio-item9:hover::after,
#portfolio .col-xl-7 .portfolio-item10:hover::after,
#portfolio .col-xl-7 .portfolio-item11:hover::after,
#portfolio .col-xl-7 .portfolio-item12:hover::after,
#portfolio .col-xl-7 .portfolio-item13:hover::after,
#portfolio .col-xl-7 .portfolio-item14:hover::after,
#portfolio .col-xl-7 .portfolio-item15:hover::after,
#portfolio .col-xl-7 .portfolio-item16:hover::after,
#portfolio .col-xl-7 .portfolio-item17:hover::after,
#portfolio .col-xl-7 .portfolio-item18:hover::after,
#portfolio .col-xl-7 .portfolio-item19:hover::after,
#portfolio .col-xl-7 .portfolio-item20:hover::after {
  opacity: 1; /* fade in */
}

/*************************
PARCOURS STYLES
*************************/
#parcours .bg-parcours {
  background: url(/wp-content/themes/quentin/assets/img/PhotoTop_Resume.jpg);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
#parcours .bg-exp1 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2021-2023.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp2 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2017-2021.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp3 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2020-2020.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp4 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2015-2017.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp5 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2014-2015.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp6 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2014-2014.svg);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
}
#parcours .bg-exp {
  transition: ease 0.2s;
}
#parcours .bg-exp:hover {
  background-size: 344px;
}
#parcours .bg-exp0 {
  background-image: url(/wp-content/themes/quentin/assets/shapes/2024-AUJ.svg);
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: 50% 28%;
  transition: ease 0.2s;
}
#parcours .bg-exp0:hover {
  background-size: 800px;
}
#parcours .parcours-arrow {
  display: none;
}
@media screen and (min-width: 992px) {
  #parcours .parcours-arrow {
    display: block;
  }
}

/*************************
PROJET STYLES
*************************/
#projet .col-xl-7 {
  position: relative;
}
@media screen and (min-width: 1200px) {
  #projet .col-xl-7 {
    overflow-y: auto;
  }
}
#projet .col-xl-7 .row .projet-scroll {
  position: absolute;
  z-index: 2;
  right: 40px;
  top: 40px;
}
#projet .col-xl-7 .row .projet-item {
  min-height: 600px;
}
@media screen and (min-width: 1200px) {
  #projet .col-xl-7 .row .projet-item {
    min-height: 392px;
  }
}
@media screen and (min-width: 1500px) {
  #projet .col-xl-7 .row .projet-item {
    min-height: 424px;
  }
}
@media screen and (min-width: 1700px) {
  #projet .col-xl-7 .row .projet-item {
    min-height: 488px;
  }
}/*# sourceMappingURL=custom.css.map */