/*!********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./assets/sass/main.scss ***!
  \********************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --transition-time: 0.5s;
  --section-margin: 10em;
  --section-padding: 6em;
  --2-padding: 2em;
  --4-padding: 4em;
  --border-radius: 5px;
  --banner-offset: 20em;
  --gap: 1em;
  --alpha-1: rgba(0, 0, 0, 0);
  --white-base: rgba(255, 255, 255, 1);
  --white-base-75: rgba(255, 255, 255, 0.75);
  --white-base-alpha-1: rgba(255, 255, 255, 0.5);
  --black-base: rgba(0, 0, 0, 1);
  --grey: #707070;
  --pink: #ff9191;
  --pink-50: #ff919180;
  --green: #bde038;
  --green-com: #bde038;
  --orange-market: #ffa200;
  --pink-dev: #ff00bb;
  --blue-event: #00e5ff;
  --dark-blue: #070435;
  --dark-blue-75: #070435bf;
  --black: rgb(22, 22, 21);
  --yellow: #ffb716;
  --yellow-50: #ffb71680;
  --blue: #2665b2;
  --blue-50: #2665b280;
  --text-color: var(--theme-grey-white);
  --fs-h1: 5rem;
  --fs-h2: 4rem;
  --fs-h3: 2.5rem;
  --fs-base: 1.6rem;
  --ff-base: "Poppins";
  --ff-brush: "BrushScript";
  --theme-white-blue: var(--white-base);
  --theme-white-blue-75: var(--white-base-75);
  --theme-blue-white: var(--dark-blue);
  --theme-black-white: var(--black);
  --theme-white-black: var(--white-base);
  --theme-grey-pink: var(--grey);
  --theme-grey-white: var(--grey);
}
@media (max-width: 767px) {
  :root {
    --fs-h1: 4rem;
    --fs-h2: 3rem;
    --fs-h3: 2.1rem;
  }
}

[data-theme=light] {
  --theme-white-blue: var(--white-base);
  --theme-white-blue-75: var(--white-base-75);
  --theme-blue-white: var(--dark-blue);
  --theme-black-white: var(--black);
  --theme-white-black: var(--white-base);
  --theme-grey-pink: var(--grey);
  --theme-grey-white: var(--grey);
}

[data-theme=dark] {
  --theme-white-blue: var(--dark-blue);
  --theme-white-blue-75: var(--dark-blue-75);
  --theme-blue-white: var(--white-base);
  --theme-black-white: var(--white-base);
  --theme-white-black: var(--black);
  --theme-grey-pink: var(--pink);
  --theme-grey-white: var(--white-base);
}

/* -------- CSS reset ------------- */
/* https://piccalil.li/blog/a-modern-css-reset --> example of resets */
/* box sizing and reset margins */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set up the body */
body {
  box-sizing: border-box;
  line-height: 1.5;
  min-height: 100vh;
  position: absolute;
  width: 100%;
  font-family: var(--ff-base);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* make img easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * #############################################################################
 * @Filename: _utility_classes.scss                                            #
 * @Date: Friday, July 7th 2023, 10:48:26                                      #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, March 13th 2024, 09:29:59                        #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

.banner > .elementor-container {
  padding-block: var(--banner-offset);
}

/* #####################################################################################
 * ############################## TITLE HOME ####################################
 * ##################################################################################### */
.title-home,
.title-home .word {
  text-transform: uppercase;
  font-size: 80px;
  background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  line-height: 100px;
}

@media (max-width: 1024px) {
  .title-home,
.title-home .word {
    text-transform: uppercase;
    font-size: 60px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .title-home,
.title-home .word {
    text-transform: uppercase;
    font-size: 45px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 60px;
  }
}
@media (max-width: 520px) {
  .title-home,
.title-home .word {
    text-transform: uppercase;
    font-size: 35px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 50px;
  }
}
.yellow-link {
  color: var(--yellow);
}

/*
 * #############################################################################
 * @Filename: _aosRewrite.scss                                                 #
 * @Date: Friday, February 9th 2024, 02:03:5                                   #
 * @Author: TBergerDev                                                         #
 * @Author email: tristan.berger.dev@gmail.com                                 #
 * @Last Modified: Friday, February 9th 2024, 02:03:14                         #
 * @Modified By: TBergerDev                                                    #
 * @Copyright (c) 2024 -                                                       #
 * #############################################################################
*/
.elementor-element.fadeInDown {
  animation-name: fadeInDownCustom;
}

@keyframes fadeInDownCustom {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInLeft {
  animation-name: fadeInLeftCustom;
}

@keyframes fadeInLeftCustom {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInRight {
  animation-name: fadeInRightCustom;
}

@keyframes fadeInRightCustom {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInUp {
  animation-name: fadeInUpCustom;
}

@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInUpFast {
  animation-name: fadeInUpFast;
}

@keyframes fadeInUpFast {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.slideInLeft {
  animation-name: slideInLeftCustom;
}

@keyframes slideInLeftCustom {
  from {
    transform: translate3d(-100px, 0, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInRight {
  animation-name: slideInRightCustom;
}

@keyframes slideInRightCustom {
  from {
    transform: translate3d(100px, 0, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInUp {
  animation-name: slideInUpCustom;
}

@keyframes slideInUpCustom {
  from {
    transform: translate3d(0, 100px, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInDown {
  animation-name: slideInDownCustom;
}

@keyframes slideInDownCustom {
  from {
    transform: translate3d(0, -100px, 0);
  }
  to {
    transform: none;
  }
}
.addedAnimation:not(.animated) {
  opacity: 0;
}

@font-face {
  font-family: "BrushScript";
  font-style: normal;
  font-weight: normal;
  src: url(../e9fd715ed7445e1b03c1.TTF) format("truetype");
}
/* Poppins – Thin (100) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/Poppins-Thin..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;
  src: url(../fonts/Poppins-ThinItalic..ttf) format("truetype");
}
/* Poppins – ExtraLight (200) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/Poppins-ExtraLight..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 200;
  src: url(../fonts/Poppins-ExtraLightItalic..ttf) format("truetype");
}
/* Poppins – Light (300) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Poppins-Light..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/Poppins-LightItalic..ttf) format("truetype");
}
/* Poppins – Regular (400) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Poppins-Regular..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/Poppins-Italic..ttf) format("truetype");
}
/* Poppins – Medium (500) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Poppins-Medium..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: url(../fonts/Poppins-MediumItalic..ttf) format("truetype");
}
/* Poppins – SemiBold (600) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Poppins-SemiBold..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  src: url(../fonts/Poppins-SemiBoldItalic..ttf) format("truetype");
}
/* Poppins – Bold (700) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Poppins-Bold..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/Poppins-BoldItalic..ttf) format("truetype");
}
/* Poppins – ExtraBold (800) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Poppins-ExtraBold..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  src: url(../fonts/Poppins-ExtraBoldItalic..ttf) format("truetype");
}
/* Poppins – Black (900) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Poppins-Black..ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 900;
  src: url(../fonts/Poppins-BlackItalic..ttf) format("truetype");
}
h1,
h2,
h3 {
  font-family: var(--ff-base);
}

h4,
h5,
p,
a,
input,
textarea,
button,
label,
span,
li,
select {
  font-family: var(--ff-base);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h1,
h2,
h3,
h4,
h5,
li,
p {
  cursor: default;
}

p,
a,
span,
button,
label {
  font-size: var(--fs-base);
}

ul li {
  font-size: var(--fs-base);
}

label.disabled {
  color: rgba(36, 36, 35, 0.5);
}

p {
  margin-block-end: 0px;
}

#wpadminbar h1,
#wpadminbar h2,
#wpadminbar h3,
#wpadminbar h4,
#wpadminbar h5,
#wpadminbar p,
#wpadminbar a,
#wpadminbar input,
#wpadminbar textarea,
#wpadminbar button,
#wpadminbar label,
#wpadminbar span {
  color: white !important;
}

@media screen and (max-width: 767px) {
  :root {
    --fs-base: 1.5rem;
  }
}
html {
  font-size: 0.625em;
}

header,
footer {
  z-index: 999 !important;
}

html,
body {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  background-color: var(--theme-white-blue);
  transition: background-color var(--transition-time);
}

img {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

a {
  transition: all var(--transition-time) !important;
}
a:hover {
  --text-color: var(--orange);
}

.elementor {
  position: relative;
}

.elementor-widget-image-carousel .swiper-wrapper {
  transition-timing-function: linear;
}
.elementor-widget-image-carousel .swiper-wrapper .swiper-slide-inner {
  background-color: var(--white-base);
  border-radius: var(--border-radius);
  display: flex;
  height: 10em;
  justify-content: center;
  margin-right: 2em !important;
}
.elementor-widget-image-carousel .swiper-wrapper .swiper-slide-inner img {
  object-fit: contain;
  padding: 1em;
}

.elementor-button {
  transition: all var(--transition-time) !important;
}

body:not(.elementor-editor-active) .elementor-widget-menu-anchor {
  position: relative;
  z-index: -1;
}

body:not(.elementor-editor-active) .elementor-menu-anchor:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
  visibility: hidden;
  pointer-events: none;
}

/*
 * #############################################################################
 * @Filename: _header.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Thursday, February 29th 2024, 09:20:39                      #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
#masthead {
  position: sticky !important;
  top: 0;
  transform: translateY(0);
  transition: all var(--transition-time);
}
#masthead.scrolled-top {
  backdrop-filter: blur(5px);
  background: var(--theme-white-blue-75);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#masthead.scrolled-bot {
  transform: translateY(-100%);
  box-shadow: none;
}

.header-mobile-burger a {
  padding: 0px;
}
.header-mobile-burger a i {
  font-size: 2.6rem;
}
.header .header-logo rect,
.header .header-logo path {
  fill: var(--theme-black-white);
  transition: fill var(--transition-time);
}
.header .toggle-theme {
  width: fit-content;
  font-size: 14px;
  transition: all var(--transition-time);
  background-color: transparent;
  margin-bottom: 0;
  display: block;
  padding: 8px 17px;
  border: 1px solid var(--theme-grey-white);
  --text-color: var(--theme-grey-white);
  line-height: 9px;
  border-radius: 999px;
  cursor: pointer;
}
.header .toggle-theme-container {
  display: flex;
  justify-content: center;
}
.header .toggle-theme span {
  font-size: 24px;
  font-family: var(--ff-brush);
}
.header .toggle-theme:hover {
  background-color: var(--theme-blue-white);
  --text-color: var(--theme-white-blue);
  border: 1px solid var(--theme-blue-white);
}
.header #hamburger path {
  stroke: var(--theme-grey-white);
  transition: stroke var(--transition-time);
}
.header #hamburger:hover path {
  stroke: var(--pink);
}

@media (max-width: 450px) {
  .header .header-logo svg {
    width: 120px;
  }
  .header .toggle-theme {
    padding: 6px 14px;
    font-size: 12px;
  }
  .header .toggle-theme span {
    font-size: 20px;
  }
  .header #hamburger svg {
    width: 25px;
  }
}
@media (max-width: 350px) {
  .header .header-logo svg {
    width: 110px;
  }
  .header .toggle-theme {
    padding: 4px 9px;
    font-size: 11px;
  }
  .header .toggle-theme span {
    font-size: 18px;
  }
  .header #hamburger svg {
    width: 20px;
  }
}
/*
 * #############################################################################
 * @Filename: _footer.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, February 28th 2024, 10:01:08                     #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
.footerTop > .elementor-container > .elementor-column {
  min-height: 0;
}
.footerTop > .elementor-container > .elementor-column > .elementor-widget-wrap {
  padding: 0 !important;
}
.footerTopButton {
  background-color: var(--alpha-1);
  border: 2px solid var(--yellow);
  border-radius: var(--border-radius);
  bottom: 1em;
  cursor: pointer;
  position: fixed;
  right: 1em;
  width: auto !important;
  z-index: 2;
  width: 40px !important;
  height: 40px;
  display: flex;
}
.footerTopButton .elementor-widget-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerTopScroll {
  bottom: 4em;
  position: fixed;
  right: 1em;
  width: auto !important;
  z-index: 2;
  width: 40px !important;
  height: 40px;
  display: flex;
}
.footerTopScroll .elementor-widget-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerTopScroll .elementor-widget-container svg circle {
  stroke: var(--yellow-50);
  stroke-width: 2px;
}
.footerTopScroll .elementor-widget-container svg .progress {
  stroke-width: 2px;
  transition: 0.1s;
  stroke: var(--yellow);
}
.footerTopScroll .elementor-widget-container .scroll-indicator-container {
  position: relative;
  display: block;
  margin: auto;
  height: 40px;
  width: 40px;
}
.footerTopScroll .elementor-widget-container .scroll-indicator-container::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: attr(data-scroll);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--ff-base);
  font-weight: bold;
}
.footerMain {
  --text-color: var(--white-base);
}
.footerMain .coords a {
  text-decoration: underline;
}
.footerMain .coords a:hover {
  --text-color: var(--dark-blue);
}
.footerBottom .red-text p {
  font-size: 1.4rem;
}
.footerBottom .bottom p {
  margin-bottom: 0;
}
.footerBottom .bottom a:hover {
  --text-color: var(--dark-blue);
}
.footerBottom .socials .elementor-icon {
  width: 70px;
  height: 70px;
  place-items: center;
  display: grid;
  border-radius: 50%;
}
.footerBottom .socials .elementor-icon svg {
  width: 40px;
  height: 40px;
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: all 0.2s ease-out;
}
.footerBottom .socials svg path {
  transition: fill var(--transition-time);
}
.footerBottom .socials svg:hover path {
  fill: var(--dark-blue);
}

/*
 * #############################################################################
 * @Filename: footer.scss                                                      #
 * @Date: Friday, May 26th 2023, 10:05:33                                      #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Friday, May 26th 2023, 12:22:51                             #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
@media (max-width: 1024px) {
  .footerNavigation > .elementor-container {
    flex-direction: column;
    align-content: center;
    gap: 0;
    text-align: center;
  }
  .footerNavigation > .elementor-container > .elementor-column {
    margin: auto;
  }
  .footerNavigationSocialsFlex > .elementor-container {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footerBottom > .elementor-container {
    --gap-bottom: 0px;
  }
}
/*
 * #############################################################################
 * @Filename: _popup_menu.scss                                                 #
 * @Date: Friday, February 23rd 2024, 05:43:59                                 #
 * @Author: TBergerDev                                                         #
 * @Author email: tristan.berger.dev@gmail.com                                 #
 * @Last Modified: Tuesday, February 27th 2024, 05:40:59                       #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2024 -                                                       #
 * #############################################################################
*/
.popup-menu .modal-close .elementor-icon-wrapper {
  display: flex;
  align-items: center;
}
.popup-menu .modal-close circle {
  transition: fill var(--transition-time);
}
.popup-menu .modal-close:hover circle {
  fill: var(--green);
}
.popup-menu .dialog-close-button {
  top: 5% !important;
}
.popup-menu nav a {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 100;
}
.popup-menu nav a:hover {
  font-weight: bold;
  --text-color: var(--white-base);
}
.popup-menu nav a:hover.com {
  --text-color: var(--green-com);
}
.popup-menu nav a:hover.market {
  --text-color: var(--orange-market);
}
.popup-menu nav a:hover.event {
  --text-color: var(--blue-event);
}
.popup-menu nav a:hover.dev {
  --text-color: var(--pink-dev);
}
.popup-menu .bottom {
  font-size: 14px;
  --text-color: var(--white-base);
}
.popup-menu .bottom .coords a {
  text-decoration: underline;
}
.popup-menu .bottom .coords a:hover {
  --text-color: var(--pink);
}
.popup-menu .bottom .socials .elementor-icon {
  width: 70px;
  height: 70px;
  place-items: center;
  display: grid;
  border-radius: 50%;
}
.popup-menu .bottom .socials .elementor-icon svg {
  width: 40px;
  height: 40px;
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: all 0.2s ease-out;
}
.popup-menu .bottom .socials svg path {
  transition: fill var(--transition-time);
}
.popup-menu .bottom .socials svg:hover path {
  fill: var(--pink);
}

@media (max-width: 1500px) {
  .popup-menu nav a {
    font-size: 40px;
  }
}
@media (max-width: 1300px) {
  .popup-menu nav a {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .popup-menu nav a {
    font-size: 27px;
  }
}
.cards .card-content-icon .elementor-icon {
  box-shadow: 0px 4px 12px rgba(38, 101, 178, 0.3);
}

.project-summary {
  overflow: hidden;
}
.project-summary-gradient {
  height: 100%;
  transition: all 0.3s ease-in-out !important;
}
.project-summary-gradient::before {
  content: "";
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(91, 91, 91, 0) 0%, rgba(0, 0, 0, 0.5019607843) 0%) !important;
  opacity: 0;
}
.project-summary:hover .project-summary-gradient::before {
  opacity: 0.6;
}

.project-category span,
.project-category .elementor-widget-container, .project-date span,
.project-date .elementor-widget-container {
  font-size: 1.4rem !important;
}
.project-image img {
  border-radius: 4px;
  height: 250px;
  object-fit: cover;
}
.project-link .elementor-button {
  background-color: transparent !important;
}
.project-link .elementor-button:hover span {
  font-weight: 600;
}
.project-see-more a span {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .project-see-more a span {
    font-size: 1.6rem;
  }
}

/*
 * #############################################################################
 * @Filename: accueil.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, March 13th 2024, 09:28:23                        #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
.hero-img img {
  border-radius: 12px;
}

.searchBanner {
  background-color: var(--pink);
}

body.elementor_library-maintenance .page-header {
  display: none;
}

.form-container-info {
  position: relative;
}
.form-container-info::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateX(-30px) translateY(-50%);
  height: 70%;
  width: 2px;
  background-color: var(--blue);
}
@media screen and (max-width: 1024px) {
  .form-container-info::before {
    transform: translateX(-20px) translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .form-container-info::before {
    display: none;
  }
}

.form #submit-button {
  margin-top: 1rem;
}

/*
 * #############################################################################
 * @Filename: index.scss                                                       #
 * @Date: Thursday, February 22nd 2024, 11:11:43                               #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Thursday, February 22nd 2024, 11:12:20                      #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2024 Hiceo                                                   #
 * #############################################################################
*/
