@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --body-font-family: "Poppins", sans-serif;
  --body-font-size: 1rem;
  --body-line-height: 1.6;
  --body-text-color: #444;
  --body-background-color: #FFF;
  --border-radius-xs: 0.5rem;
  --border-radius-s: 1rem;
  --border-radius-m: 1.5rem;
  --main-color1: #144390;
  --main-color2: #64C5E2;
  --main-color3: #E50A56;
  --main-color4: #81124C;
  --link-color: #144390;
  --lead-color: #000;
  --bg-hover: #EEE;
  /* Variables for dark mode */
}
:root [data-bs-theme=dark] {
  --body-text-color: snow;
  --body-background-color: #222;
  --main-color1: #0288D1;
  --main-color2: #64D5FC;
  --main-color3: hsl(339.178, 92%, 57%);
  --main-color4: hsl(328.649, 76%, 49%);
  --link-color: #64D5FC;
  --lead-color: #FFF;
  --bg-hover: #444;
}

header a:hover {
  text-decoration: none;
}

#topbar {
  background-color: var(--main-color1);
}
#topbar a {
  color: #FFF;
}
#topbarhover {
  color: #EEE;
}
#topbar .btn-mode {
  margin-left: 1rem;
  padding: 0.2rem 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  border-radius: var(--border-radius-xs);
}
#topbar .fa-solid {
  color: white;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: none;
}
.navbar a.nav-link {
  text-transform: uppercase;
  transition: color 0.5s ease-in-out;
}

[data-bs-theme=dark] .navbar {
  background-color: rgba(0, 0, 0, 0.9);
}
[data-bs-theme=dark] .navbar a.nav-link {
  color: #FEFEFE;
}
[data-bs-theme=dark] .navbar a.nav-link:hover {
  color: var(--main-color2);
}
[data-bs-theme=dark] .navbar a.nav-link.active {
  color: var(--main-color2);
}

.navbar.fixed-top {
  border-bottom: 1px solid var(--main-color1);
}

.navbar a.nav-link:hover,
.navbar-nav a.nav-link.active,
.navbar-nav li.active > a.nav-link {
  color: var(--main-color1);
}

@media screen and (min-width: 1024px) {
  .navbar-nav > li > a {
    padding: 1.5rem 0.6rem;
  }
}
.navbar li.dropdown:hover .dropdown-menu {
  display: block;
}

.tel-fr {
  margin-right: 1rem;
}

.navbar-toggler {
  border: 1px solid var(--body-text-color);
  background-color: inherit;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.navbar-toggler span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--body-text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

.navbar-toggler.open span:first-child {
  opacity: 1;
  transform: rotate(45deg);
  top: 8px;
}
.navbar-toggler.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.open span:last-child {
  opacity: 1;
  transform: rotate(-45deg);
  top: -8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  color: var(--body-text-color);
  font-weight: 400;
}

/* LES TITRES */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: normal;
  margin: 1em 0;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
  }
}
h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

section h2 {
  text-align: center;
}

p {
  margin: 1em 0;
}

strong {
  font-weight: 600;
}

.big {
  font-size: 1.2em;
}

.small {
  font-size: 0.8em;
}

/* LES HYPERLIENS */
a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LES IMAGES */
img {
  max-width: 100%;
  height: auto;
}

/* LES LISTES */
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

main {
  min-height: 50vh;
}

main section:last-child {
  margin-bottom: 40px;
}

main h1 {
  text-align: center;
  text-transform: uppercase;
}

main h2 {
  color: var(--main-color1);
  text-align: center;
}

main h3 {
  color: var(--main-color1);
}

main h4 {
  color: var(--main-color2);
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

code {
  background-color: var(--main-color3);
  color: red;
  padding: 3px;
}

iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.drapeau {
  display: inline-block;
  width: 20px;
  height: 12px;
  margin-right: 5px;
}

.drapeau-fr {
  background: linear-gradient(to right, blue 0% 33.33%, white 33.33% 66.66%, red 66.66% 100%);
}

.drapeau-be {
  background: linear-gradient(to right, red 0% 33.33%, yellow 33.33% 66.66%, black 66.66% 100%);
}

.lead {
  color: var(--lead-color);
  font-weight: 500;
}

.grid {
  display: grid;
  grid-gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .g-col-md-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .g-col-lg-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .g-col-lg-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .g-col-xl-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.btn-devis {
  background-color: var(--main-color3);
  color: white;
}

.btn-devis:hover {
  background-color: white;
  color: var(--main-color3);
  border: 1px solid var(--main-color3);
}

/*.animate {
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	transition-delay: 0.5s;
}*/
.error-container {
  text-align: center;
  width: 80%;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
}
.error-container h2 {
  font-weight: 600;
  font-size: 10rem;
  line-height: 10rem;
  margin: 3rem 0;
  background: linear-gradient(to right, var(--main-color1), var(--main-color2));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fade-in {
  animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#hero {
  background-image: url("../img/creation-site-web-mobile.webp");
  background-size: cover;
  background-position: center center;
  padding: 100px 5%;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  #hero {
    background-image: url("../img/creation-site-web.webp");
    padding: 200px 5%;
  }
}
#hero .bg {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  text-shadow: 1px 1px #999;
  text-align: center;
  padding: 20px;
}

#hero h2 {
  color: inherit;
}

#hero h1 span,
#hero h2 span {
  color: var(--main-color2);
}

#about {
  padding: 1rem 0 2rem;
}

#about h2 {
  text-align: center;
}

#services article {
  position: relative;
}

#services article .detail {
  position: relative;
  top: -80px;
  margin: 0 30px;
  padding: 3rem 2rem;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0px 0 1.5rem rgba(0, 0, 0, 0.1);
}

[data-bs-theme=dark] #services article .detail {
  background: rgba(1, 1, 1, 0.8);
  color: var(--body-text-color);
  box-shadow: 0px 0 1.5rem rgba(255, 255, 255, 0.2);
}

#services h3 {
  color: var(--main-color1);
  font-size: 1.5rem;
}

#services a:hover {
  text-decoration: none;
}

#services article:hover h3 {
  color: var(--main-color2);
}

#services .img {
  overflow: hidden;
}

#services .img img {
  transition: 0.6s;
}

#services article:hover .img img {
  transform: scale(1.2);
}

#services article:hover .icon {
  background-color: var(--main-color2);
}

#services .detail .icon {
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--main-color1);
  border: 6px solid #FFF;
}
#services .detail .icon i {
  font-size: 1.8rem;
  color: #FFF;
}

#dernieres-realisations h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

#equipe a {
  margin: 0.4rem 0.2rem;
}
#equipe a:hover {
  color: var(--main-color2);
}

[data-bs-theme=dark] #equipe a:hover {
  color: var(--main-color1);
}

#choisir h3,
#choisir h4 {
  text-align: center;
}

#choisir h3 {
  font-size: 1.4rem;
}

#choisir h4 {
  font-size: 1rem;
}

/* Page webdesign */
#offres article h3 {
  text-align: center;
}

.etapes {
  grid-gap: 2rem;
}
.etapes h3 {
  font-size: 1.1rem;
  font-weight: 400;
}
.etapes h3 i {
  display: block;
}

@media screen and (min-width: 768px) {
  .g-col-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .g-col-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .g-col-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
#tarifs article {
  margin: 1rem 0;
}
#tarifs .box {
  background-color: var(--bs-body-bg);
  border: 1px solid #EEE;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  height: 100%;
}
#tarifs .box h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#tarifs .box h3 span {
  color: var(--main-color2);
}
#tarifs .box ul {
  text-align: center;
  list-style: none;
  padding: 0;
}
#tarifs .box li {
  padding: 0.5rem 0;
}
#tarifs .box li:not(:last-child) {
  border-bottom: 1px solid #DDD;
}
#tarifs .box p.tarif span {
  display: block;
  margin: 0.5rem;
}
#tarifs .box span.prix {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--main-color3);
}
#tarifs .box span.duree {
  font-style: italic;
}

#tarifs span.paiement {
  display: block;
  font-size: 0.9rem;
  color: #D00;
}

#tarifs .box:hover {
  background-color: var(--bg-hover);
}

#realisations .portfolio {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  #realisations .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  #realisations .portfolio {
    grid-template-columns: repeat(3, 1fr);
  }
}
#realisations .portfolio-item {
  position: relative;
  z-index: 1;
  transition: 0.5s;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
}
#realisations .portfolio-item a {
  color: deepskyblue;
}
#realisations .portfolio-item-header {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all ease-in-out 0.5s;
}
#realisations .portfolio-item-body {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.9rem;
}
#realisations .portfolio-item-body ul {
  margin: 0.5rem;
  padding-left: 15px;
}
#realisations .portfolio-item:hover .portfolio-item-body {
  opacity: 1;
}
#realisations h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
}
#realisations h3 {
  font-size: 1rem;
  color: white;
}
#realisations a {
  margin-left: 5%;
}

#contact h3 {
  font-size: 1.2rem;
  text-align: center;
}
#contact iframe {
  border: 0;
  width: 100%;
  height: 200px;
}
#contact .btn-primary {
  background-color: var(--main-color1);
}

#contact .display-table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  padding: 5px;
}

form .required::after {
  content: " (*) ";
  color: var(--main-color3);
}

form fieldset {
  margin-bottom: 1rem;
}

[data-bs-theme=dark] .form-control,
[data-bs-theme=dark] .form-select {
  border-color: #CCC;
}

#preference-contact-groupe {
  display: none;
}

#devisForm input:invalid {
  background-color: #f7e8ea;
}

#options,
#options-type-site-web,
#options-site-web,
#url-website,
#options-identite-visuelle,
#options-webmarketing,
#privacy,
#confirmation {
  display: none;
}

.form-error {
  background-color: lightpink;
  color: #C00;
  padding: 5px 10px;
}

#budget-saisie {
  display: none;
}

#kapcha {
  display: flex;
}
#kapcha input {
  margin-left: 1rem;
  border: var(--bs-border-width) solid var(--bs-border-color);
  min-width: 100px;
  border-radius: var(--border-radius-xs);
  padding: 0.3rem 0.6rem;
}
#kapcha [data-bs-theme=dark] input {
  border-color: #CCC;
}
#kapcha .kapchaimg {
  background-image: url("../img/sic/kfond.jpg");
  background-position: center;
  height: 32px;
}

#legal h2,
#credits h2,
#cgv h2 {
  font-size: 1.6rem;
}

#legal h3 {
  font-size: 1.3rem;
  text-align: center;
}

/* LE FOOTER */
footer {
  position: relative;
  z-index: 800;
  color: #FFF;
}

footer #footer-top {
  background-color: #444;
  border-bottom: 1px solid #555;
  padding: 2rem 0;
  line-height: 1.7em;
}

footer #footer-bottom {
  background-color: #333;
  text-align: center;
  margin: 0;
  padding: 1rem;
}

[data-bs-theme=dark] footer #footer-top {
  background-color: #111;
  border-bottom: 1px solid #222;
}
[data-bs-theme=dark] footer #footer-bottom {
  background-color: #000;
}

footer h3 {
  font-size: 1.2rem;
}

footer a {
  transition: All 1s ease-in-out;
  color: #DDD;
}

footer a:hover {
  color: #FFF;
  margin-left: 5px;
}

.licence {
  margin: 0;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 1rem;
  bottom: 0.6rem;
  z-index: 900;
  transition: all 0.4s;
}

.back-to-top.visible {
  visibility: visible;
  opacity: 1;
}

.fa-circle-chevron-up {
  color: #CCC;
}

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