* {
  padding: 0px;
  margin: 0px;
}

.space {
  height: 200px;
}

:root {
  /*font*/
  --fontSize_text: 18px;
  --fontSize_title: 30px;
  --fontFamily_text: helvetica, arial, sans-serif;
  --fontFamily_title: "forma-djr-micro", helvetica, sans-serif;

  /*colors*/
  --colorFont_text: #707070;
  --colorFont_title: #5b5b5b;
  --colorSecondary: #38d430;
  --colorWhiteSmoke: #f8f8f8;
  --colorWhiteGrey: #999999;
  --colorBlack: #1b1a1a;
  --colorGrey: #424242;
}

.hidden-content {
  display: none !important;
  height: 0px;
  width: 0px;
  opacity: 0;
}

.loader {
  position: absolute;
  width: 100vw;
  height: 100vb;
  transition: opacity 0.3s;
  background-color: rgb(130, 43, 43);
  z-index: 200;
}

.main {
  overflow: hidden;
  max-width: 100vw;
}

.lowres-img{
  filter: blur(10px);
}
/* Header */
/* Header */
/* Header */

.header {
  height: 90px;
  background-color: var(--colorWhiteSmoke);
  width: 100%;
  overflow: hidden;
  transition: height 0.4s;
  z-index: 200;
}

.header-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 100%;
  width: auto;
}

.header-logo-src {
  height: 90px;
  width: auto;
}

.header-nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0px 50px;
}

.header-nav-item {
  list-style: none;
  padding-right: 20px;
  opacity: 1 !important;
  transition: opacity 0.3s;
}

.header-nav-item-menu {
  display: none;
  padding-top: calc(45px - var(--fontSize_text) / 2);
  padding-bottom: calc(45px - var(--fontSize_text) / 2);
  opacity: 1 !important;
}

.header-nav-item-contact {
  padding-bottom: 0px;
}

.header-nav-link {
  text-decoration: none;
  color: var(--colorFont_text);
  font-family: var(--fontFamily_text);
  font-size: var(--fontSize_text);
  transition: color 0.2s;
}

.header-nav-link:hover {
  color: var(--colorSecondary);
}

/* Banner */
/* Banner */
/* Banner */

.banner-title-text {
  font-size: 100px;
  font-family: var(--fontFamily_title);
  font-weight: 400;
  transform: matrix(1, 0, 0, 1, 0, 50);
}

.banner-image {
  height: 300px;
}

.banner-image-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*Section */
/*Section */
/*Section */
.content {
  padding: 50px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.h2-title {
  font-family: var(--fontFamily_title);
  font-size: var(--fontSize_title);
  font-weight: 300;
  color: var(--colorFont_title);
  margin-bottom: 15px;
}

.paragraph-text,
.travaux-item {
  font-family: var(--fontFamily_text);
  font-size: var(--fontSize_text);
  color: var(--colorFont_text);
  display: inline;
  margin-bottom: 15px;
}

.travaux-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.travaux-item {
  width: 100%;
}

/* button */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

button.contact-button,
button.popup-button {
  width: 200px;
  padding: 7px 20px 12px 28px;
  margin: 0px;
  background-color: white;
  border: solid 1px var(--colorFont_text);
  color: var(--colorFont_text);
  font-family: var(--fontFamily_text);
  font-size: 15px;
  transition: background-color 0.2s;
  cursor: pointer;
}

svg.button-arrow-svg {
  transition: transform 0.3s, opacity 0.4s;
}

.button-text {
  transition: color 0.1s, margin-left 0.3s;
}

button:hover {
  background-color: var(--colorWhiteSmoke);
}

button:hover .button-text {
  margin-left: 14px;
}

button:hover svg.button-arrow-svg {
  transform: matrix(1, 0, 0, 1, 10, 0);
  opacity: 0;
}

/*Footer*/
/*Footer*/
/*Footer*/

footer {
  --fontsize_footer_text: 18px;
  --fontsize-footer-title: 28px;
  background-color: var(--colorBlack);

}

.footer-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-container {
  display: flex;
  height: 100%;
}

.footer-culumn {
  width: 100%;
  height: 100%;
}

.footer-logo {
  width: 100%;
  height: auto;
  filter: invert();
}

.footer-logo-src {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.footer-culumn-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-culumn-title {
  font-family: var(--fontFamily_title);
  font-size: var(--fontsize-footer-title);
  font-weight: 300;
  color: var(--colorWhiteSmoke);
  margin-bottom: 15px;
}

.footer-subtitle {
  color: var(--colorWhiteSmoke);
  font-family: var(--fontFamily_text);
  font-size: var(--fontsize_footer_text);
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-culumn-link {
  text-decoration: none;
  font-family: var(--fontFamily_text);
  font-size: var(--fontsize_footer_text);
  font-weight: 400;
  color: var(--colorWhiteSmoke);
}

.footer-item-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-item-text,
.footer-copyright-text {
  font-family: var(--fontFamily_text);
  font-size: var(--fontsize_footer_text);
  color: var(--colorWhiteGrey);
}

.footer-copyright-container {
  border-top: 1px var(--colorGrey) solid;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-text {
  font-size: var(--fontFamily_text);
  color: var(--colorWhiteGrey);
}

@media screen and (max-width: 1200px) {

  /* header */
  .header-container {
    align-items: normal;
  }

  .header-nav-item-menu {
    display: initial;
  }

  .header-nav-item-contact {
    padding-bottom: calc(45px - var(--fontSize_text) / 2);
  }

  .header-nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: end;
  }

  .header-nav-item {
    opacity: 0;
  }

}

@media screen and (max-width: 992px) {
  :root {
    --fontSize_text: 20px;
    --fontSize_title: 35px;
  }

  .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 100vw;
    overflow: hidden;
  }

  /* banner */
  .banner-title-text {
    font-size: 10vw;
  }

  .banner-image {
    height: 30vw;
    min-height: 150px;
  }
}

@media screen and (max-width:768px) {

  /*banner*/
  .banner-title-text {
    transform: matrix(1, 0, 0, 1, 20, 32);
  }

  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .footer-culumn {
    width: auto;
    margin-left: 8.3vw;
  }

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

@media screen and (max-width:576px) {
  .banner-title-text {
    transform: matrix(1, 0, 0, 1, 20, 22);
  }
}