/* Reset CSS basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
  color: #072459;
  font-weight: 500;
  background: #F2F2F2;
}
body.menu-open {
  overflow: hidden;
}

.container-top {
  padding: 60px;
  padding-top: 0px;
  max-width: 1400px;
  margin: auto;
  padding-bottom: 0;
}

.container {
  padding: 60px;
  max-width: 1400px;
  margin: auto;
}
.container.full {
  width: 100%;
  max-width: 100%;
}

h1 {
  color: #072459;
  font-size: 42px;
  font-weight: 500;
  width: 50%;
  padding-right: 60px;
  line-height: 120%;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    width: 100%;
    padding-right: 0;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  width: 50%;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
    width: 100%;
  }
}

h3 {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  width: 50%;
  font-weight: 500;
  opacity: 0.6;
}
@media (max-width: 768px) {
  h3 {
    width: 100%;
    font-size: 1.1rem;
  }
}

.button {
  background-color: #0D4CBE;
  padding: 20px 30px;
  border-radius: 0px;
  color: white;
}

header .sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #F2F2F2;
  transition: all 0.3s ease;
  padding: 0;
}
header .sticky-header.scrolled {
  padding: 0px;
}
header .sticky-header.scrolled .logo {
  padding: 15px;
  transition: all 0.3s ease;
}
header .sticky-header.scrolled .logo img {
  width: 180px;
  transition: all 0.3s ease;
}
header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
}
header .top .logo {
  background-color: #0D4CBE;
  padding: 30px;
}
header .top .logo img {
  width: 200px;
}
@media (max-width: 768px) {
  header .top {
    position: relative;
  }
  header .top nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D4CBE;
    padding: 20px;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
  }
  header .top nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header .top nav a {
    padding: 20px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    transition-delay: calc(var(--i) * 0.1s);
  }
  header .top nav a.active {
    opacity: 1;
    transform: translateY(0);
  }
  header .top nav a.button {
    margin: 10px 0;
    background-color: white;
    color: #0D4CBE;
  }
  header .top nav a:hover {
    opacity: 0.8;
  }
}
header nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
header nav a {
  color: #1F4766;
  text-decoration: none;
}
header nav a:hover {
  color: #fff;
}
header .head {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  padding: 60px 0;
}
header .head-img {
  background-image: url(../head-1.png);
  background-size: cover;
  background-position: center;
  height: 700px;
}
@media (max-width: 768px) {
  header .head-img {
    height: 300px;
  }
}

.prestations .prestation {
  padding-bottom: 30px;
  display: flex;
  align-items: baseline;
}
.prestations .prestation .prestation-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 24%;
  padding-right: 60px;
}
.prestations .prestation .services-list {
  display: flex;
  gap: 0rem;
  flex-wrap: wrap;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .prestations .prestation .services-list {
    padding-top: 0px;
  }
}
.prestations .prestation .service-item {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 0px;
  flex: 0 0 33.333%;
  min-width: 200px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .prestations .prestation .service-item {
    padding: 30px 0;
    min-height: auto;
    gap: 30px;
  }
}
.prestations .prestation .service-item:first-child {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
  border-bottom: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation .service-item:nth-child(2) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
  border-bottom: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation .service-item:nth-child(3) {
  border-bottom: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation .service-item:nth-child(4) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation .service-item:nth-child(5) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation .service-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}
.prestations .prestation .service-item:hover img {
  opacity: 0.2;
}
.prestations .prestation .service-item i, .prestations .prestation .service-item span {
  position: relative;
  z-index: 1;
}
.prestations .prestation.clim .service-item {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 0px;
  flex: 0 0 33.333%;
  min-width: 200px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .prestations .prestation.clim .service-item {
    padding: 30px 0;
    min-height: auto;
    gap: 30px;
  }
}
.prestations .prestation.clim .service-item:first-child {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
  border-bottom: 0px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation.clim .service-item:nth-child(2) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
  border-bottom: 0px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation.clim .service-item:nth-child(3) {
  border-bottom: 0px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation.clim .service-item:nth-child(4) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation.clim .service-item:nth-child(5) {
  border-right: 1px solid rgba(31, 71, 102, 0.1215686275);
}
.prestations .prestation.clim .service-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}
.prestations .prestation.clim .service-item:hover img {
  opacity: 0.2;
}
.prestations .prestation.clim .service-item i, .prestations .prestation.clim .service-item span {
  position: relative;
  z-index: 1;
}
.prestations .prestation .service-item i {
  font-size: 1.5rem;
  color: white; /* Ou la couleur de votre choix */
  background-color: #0D4CBE;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prestations .prestation .service-item span {
  text-align: left;
  font-size: 1.2rem;
}

.logo-brand {
  padding-bottom: 60px;
}
.logo-brand ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.logo-brand ul li {
  list-style: none;
}
.logo-brand ul li img {
  width: 150px;
}

.devis-section {
  background: #072459;
  padding: 0px;
}
.devis-section .devis-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.devis-section .devis-content-container .devis-photo {
  width: 50%;
  line-height: 0;
}
.devis-section .devis-content-container .devis-photo img {
  width: 100%;
  line-height: 0;
}
@media (max-width: 768px) {
  .devis-section .devis-content-container {
    flex-direction: column;
  }
  .devis-section .devis-content-container .devis-photo {
    width: 100%;
    order: -1;
  }
  .devis-section .devis-content-container .devis-photo img {
    width: 100%;
    height: auto;
  }
  .devis-section .devis-content-container .devis-form {
    width: 100%;
    padding: 30px 20px;
  }
  .devis-section .devis-content-container .devis-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .devis-section .devis-content-container .devis-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .devis-section .devis-content-container .devis-form .form-group {
    width: 100%;
  }
}
.devis-section .devis-content {
  margin: 0 auto;
  color: white;
  max-width: 1300px;
}
.devis-section .devis-content h2 {
  width: 100%;
}
.devis-section .devis-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px;
  width: 50%;
}
.devis-section .devis-form .form-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .devis-section .devis-form .form-row {
    flex-direction: column;
  }
}
.devis-section .devis-form .form-group {
  flex: 1;
}
.devis-section .devis-form .form-group.full-width {
  width: 100%;
}
.devis-section .devis-form .form-group input, .devis-section .devis-form .form-group textarea, .devis-section .devis-form .form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  font-size: 1rem;
}
.devis-section .devis-form .form-group input:focus, .devis-section .devis-form .form-group textarea:focus, .devis-section .devis-form .form-group select:focus {
  outline: none;
  border-color: black;
}
.devis-section .devis-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.devis-section .devis-form button.button {
  background-color: #0D4CBE;
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.devis-section .devis-form button.button:hover {
  background-color: rgba(13, 75, 190, 0.7137254902);
}
.devis-section .devis-form #formMessage {
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}
.devis-section .devis-form #formMessage.success {
  background-color: #e8f5e9;
  color: #4CAF50;
}
.devis-section .devis-form #formMessage.error {
  background-color: #ffebee;
  color: #f44336;
}

footer {
  padding: 60px;
  background: #F2F2F2;
  color: #072459;
}

header .head {
  padding-top: 60px;
}

@media (max-width: 768px) {
  .container-top, .container {
    padding: 30px;
  }
  h1, h2, h3 {
    width: 100%;
    padding-right: 0;
  }
  header .top {
    flex-direction: column;
  }
  header .top .logo {
    width: 100%;
  }
  header .top .logo img {
    width: 180px;
  }
  header .top nav {
    padding: 15px;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  header .top nav a {
    width: 100%;
    text-align: center;
  }
  header .top nav a.button {
    margin-top: 10px;
  }
  header .head {
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }
  header .head-img {
    height: 400px;
  }
  .prestations .prestation {
    flex-direction: column;
  }
  .prestations .prestation .prestation-title {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .prestations .prestation .prestation-title {
    padding-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .prestations .prestation .services-list .service-item {
    flex: 0 0 100%;
    min-height: inherit;
  }
  .prestations .prestation .services-list .service-item:first-child, .prestations .prestation .services-list .service-item:nth-child(2), .prestations .prestation .services-list .service-item:nth-child(3), .prestations .prestation .services-list .service-item:nth-child(4), .prestations .prestation .services-list .service-item:nth-child(5) {
    border: none;
    border-bottom: 1px solid rgba(31, 71, 102, 0.1215686275);
  }
  .prestations .prestation .services-list .service-item:last-child {
    border-bottom: none;
  }
  .logo-brand ul {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
  }
  .logo-brand ul li {
    flex: 0 0 calc(50% - 20px);
    text-align: center;
  }
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.mobile-menu-toggle.active span:first-child {
  transition-delay: 0.1s;
}
.mobile-menu-toggle.active span:nth-child(2) {
  transition-delay: 0s;
}
.mobile-menu-toggle.active span:last-child {
  transition-delay: 0.1s;
}

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