/* RESET SCSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* TYPOGRAPHY AND BASE */
html {
  font-size: 16px; /* Set a base font size */
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* IMAGES AND MEDIA */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FORMS */
input, button, textarea, select {
  font: inherit;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* UTILITIES */
.hidden {
  display: none !important;
}

:root {
  --light: white;
  --red: #CB5641;
  --primary: #4D6B6E;
  --bg: #EFE9E4;
  --bg-secondary: #4C6B6E;
}

.button {
  border-radius: 25px;
  background-color: var(--bg-secondary);
  width: fit-content;
  color: var(--light);
  height: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  max-width: 350px;
}
.button--large {
  max-width: 450px;
}
.button--light {
  background-color: var(--light);
  color: var(--bg-secondary);
}
.button--red {
  background-color: var(--light);
  color: var(--red);
}
.button--warning {
  background-color: var(--red);
  color: var(--light);
}

.header_banner {
  background-color: #92ADAF;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-size: 14px;
}
.header_phone {
  position: absolute;
  bottom: -100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background-color: #3a9d3a;
  border-radius: 15px;
  padding: 5px 10px;
  border: 2px solid white;
  right: 0px;
}
.header_container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  position: relative;
}
.header_nav .header_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header_nav img {
  height: 120px;
  width: auto;
  margin-top: 5px;
}
.header_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.header_menu li {
  position: relative;
}
.header_menu li.active {
  color: #2A5631;
}
.header_menu li.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 65%;
  height: 2px;
  background-color: #BC5E49;
}

.footer {
  background-color: #92ADAF;
}
.footer_container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
}
.footer_phone {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background-color: #3a9d3a;
  border-radius: 25px;
  padding: 5px 10px;
  border: 2px solid white;
  width: fit-content;
  color: var(--light);
}
.footer_col1 {
  margin-top: -65px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--light);
  max-width: 400px;
}
.footer_col1 p {
  font-family: "Playfair Display", sans-serif;
}
.footer_col1 img {
  width: 120px;
  height: 120px;
}
.footer_col2 {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 400px;
}
.footer_col2 p {
  color: var(--light);
  font-family: "Playfair Display", sans-serif;
}
.footer_col3 {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 400px;
}
.footer_col3 p {
  font-family: "Playfair Display", sans-serif;
  color: var(--light);
}
.footer_col3 a {
  margin-top: -20px;
}
.footer_col3 img {
  margin-top: -60px;
}
.footer_banner {
  display: flex;
  justify-content: space-between;
  grid-column: span 3;
  padding: 30px 20px;
  background-color: var(--bg-secondary);
  color: var(--light);
  font-size: 14px;
}
.footer_banner .footer_container {
  align-items: center;
}
.footer_social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.grid--center {
  justify-content: center;
}
.grid--align-center {
  align-items: center;
}
.grid--gap-big {
  gap: 100px;
}

.container {
  width: 100%;
}
.container--big {
  max-width: 1400px;
  padding: 0 20px;
}
.container--medium {
  max-width: 900px;
}
.container--center {
  margin: auto;
}

.bg--pearl {
  background-color: #EFE9E4;
}

.title {
  font-weight: 500;
  color: var(--primary);
  font-family: "Playfair Display", sans-serif;
}
.title--big {
  font-size: 3rem;
  line-height: 1.2;
}
.title--normal {
  font-size: 1.5rem;
  line-height: 1.2;
}
.title--secondary {
  color: var(--red);
  font-width: bold;
}

.flex {
  display: flex;
  gap: 20px;
}
.flex--center {
  justify-content: center;
}
.flex--align-center {
  align-items: center;
}
.flex--column {
  flex-direction: column;
}
.flex--row {
  flex-direction: row;
}
.flex--wrap {
  flex-wrap: wrap;
}

.note {
  color: var(--red);
  margin-bottom: -20px;
  font-weight: 500;
}

.banner {
  position: relative;
}
.banner__phone {
  min-width: 20px;
  height: 20px;
}
.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__text {
  padding: 30px 0;
}
.banner__certification {
  position: absolute;
  bottom: -66px;
  left: -132px;
}

.experience {
  margin-top: 85px;
}
.experience__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skills {
  margin-top: 85px;
}
.skills__icon {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
.skills__btn {
  margin: auto 0 0;
}

.devis {
  margin-top: 85px;
}
.devis__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text--center {
  text-align: center;
}

.solution {
  margin-top: 285px;
  padding: 40px;
}
.solution__img {
  max-height: 400px;
  object-fit: contain;
  margin-top: -200px;
}

.faq {
  width: 800px;
  max-width: 100%;
  margin-top: 85px;
}
.faq__more {
  width: 400px;
  max-width: 100%;
  align-items: center;
  margin: 20px auto 80px;
}

.faq-answer {
  display: none;
  margin-top: 20px;
}

.faq-question {
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.faq-question svg {
  transition: all ease 0.3s;
  transform: rotate(90deg);
}
.faq-question svg path {
  fill: var(--primary);
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question svg {
  transform: rotate(-90deg);
}
.faq-item.active .faq-question svg path {
  fill: var(--red);
}

.made { margin-top: 0;}

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