header {
  justify-content: space-around;
  align-items: flex-start;
  height: 70px;
  margin-bottom: 10px;
  z-index: 999;
  background-color: #fff;
  position: relative;
  display: none;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 840px) {
  header {
    height: 100px;
    margin-bottom: 50px;
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
header .header__middleBlock {
  width: 10%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media (min-width: 840px) {
  header .header__middleBlock {
    height: 60px;
  }
}
header .header__middleBlock img {
  height: 80%;
}
header .header__link {
  width: 18%;
  height: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #496373;
  font-size: 0.5rem;
  transition-duration: 250ms;
  border-bottom: 2px solid #496373;
}
@media (min-width: 840px) {
  header .header__link {
    font-size: 1.4rem;
    height: 60px;
  }
}
header .header__link:hover, header .header__link--active {
  color: white;
  background-color: #496373;
}

.headerMobile {
  width: 100%;
  height: 70px;
  margin-bottom: 20px;
  padding-top: 10px;
  background-color: #fff;
}
@media (min-width: 840px) {
  .headerMobile {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.headerMobile__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.headerMobile__menu .mobileMenu__logo {
  width: 25%;
  margin-left: 20px;
}
.headerMobile__menu .mobileMenu__btn {
  height: 50px;
  margin-right: 20px;
}
.headerMobile__filter {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: black;
  opacity: 0.6;
  transition: 500ms;
}
.headerMobile__filter--hidden {
  z-index: -999;
  opacity: 0;
}
.headerMobile .sideMenu {
  height: 100vh;
  width: 50vw;
  background-color: #496373;
  position: fixed;
  right: -50vw;
  top: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 500ms;
}
@media (min-width: 840px) {
  .headerMobile .sideMenu {
    display: none;
  }
}
.headerMobile .sideMenu--active {
  right: 0;
}
.headerMobile .sideMenu__link {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerMobile .sideMenu__link--active {
  background-color: #a7c0bb;
}

footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
  height: 100px;
  background-color: #a7c0bb;
  color: white;
  justify-items: center;
  align-items: center;
  margin-top: 50px;
  padding: 20px 0;
  font-size: 0.4rem;
}
@supports (background: -webkit-named-image(i)) {
  footer {
    font-size: 5px;
  }
}
@media (min-width: 840px) {
  footer {
    font-size: 0.8rem;
    height: 250px;
  }
  @supports (background: -webkit-named-image(i)) {
    footer {
      font-size: 10px;
    }
  }
}
footer img {
  grid-column: 1;
  grid-row-start: 1;
  grid-row-end: 5;
  height: 50px;
}
@media (min-width: 840px) {
  footer img {
    height: 200px;
  }
}
footer .right {
  color: white;
}
footer a {
  color: white;
}

.bigText {
  text-transform: uppercase;
  font-family: area-normal;
  font-weight: 900;
}

.headerBlock {
  display: flex;
  flex-direction: column;
  height: 600px;
  margin: 0 5%;
}
@media (min-width: 840px) {
  .headerBlock {
    flex-direction: row;
  }
}
.headerBlock__left {
  height: 100%;
  min-height: 80px;
  width: 100%;
  margin-right: 5%;
  color: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: end;
  background-position: center;
  background-size: cover;
  font-weight: 900;
  font-size: 50px;
  box-sizing: border-box;
  padding-right: 5%;
}
.headerBlock__left span {
  color: #496373;
}
@media (min-width: 840px) {
  .headerBlock__left {
    width: 45%;
    padding-right: 5%;
    font-size: 60px;
  }
}
@media (min-width: 1500px) {
  .headerBlock__left {
    font-size: 80px;
  }
}
.headerBlock__right {
  width: 100%;
  font-weight: 100;
  font-size: 0.8rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@supports (background: -webkit-named-image(i)) {
  .headerBlock__right {
    font-size: 10px;
  }
}
@media (min-width: 840px) {
  .headerBlock__right {
    width: 45%;
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media (min-width: 1500px) {
  .headerBlock__right {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

.col1row1 {
  grid-column: 1;
  grid-row: 1;
}

.col1row3 {
  grid-column: 1;
  grid-row: 3;
}

.col1row4 {
  grid-column: 1;
  grid-row: 4;
}

.col2row1 {
  grid-column: 2;
  grid-row: 1;
}

.col1row2 {
  grid-column: 1;
  grid-row: 2;
}

.col2row2 {
  grid-column: 2;
  grid-row: 2;
}

.col2row3 {
  grid-column: 2;
  grid-row: 3;
}

.col2row4 {
  grid-column: 2;
  grid-row: 4;
}

.col3row1 {
  grid-column: 3;
  grid-row: 1;
}

.col3row2 {
  grid-column: 3;
  grid-row: 2;
}

.col3row3 {
  grid-column: 3;
  grid-row: 3;
}

.col3row4 {
  grid-column: 3;
  grid-row: 4;
}

.col4row1-2 {
  grid-column: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}

.col4row2 {
  grid-column: 4;
  grid-row: 2;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: area-normal;
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: black;
}

.pictoCutBlock {
  width: 70%;
  margin-left: 30%;
  margin-bottom: 50px;
  padding-bottom: 30px;
  padding-top: -100px;
  position: relative;
}
@media (min-width: 840px) {
  .pictoCutBlock {
    width: 80%;
    margin-left: 20%;
  }
}
.pictoCutBlock__content {
  padding: 20px 3% 20px 20%;
  font-size: 0.6rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 100;
}
@media (min-width: 840px) {
  .pictoCutBlock__content {
    padding: 50px 3% 50px 20%;
    font-size: 1.3rem;
  }
}
@media (min-width: 1500px) {
  .pictoCutBlock__content {
    font-size: 1.5rem;
  }
}
.pictoCutBlock__picto {
  position: relative;
  left: -50px;
  top: calc(-50% - 50px);
  width: 100px;
  z-index: 50;
}
@media (min-width: 840px) {
  .pictoCutBlock__picto {
    top: calc(-50% - 100px);
    left: -100px;
    width: 200px;
  }
}
.pictoCutBlock__svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.pictoCutBlock__svg rect {
  width: 100%;
  stroke: #496373;
}

.violetBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-bottom: 80px;
}
@media (min-width: 840px) {
  .violetBlock {
    height: 400px;
  }
}
.violetBlock__wrapper {
  background-color: #a7c0bb;
  color: white;
  width: 60%;
  height: 100%;
  padding: 30px 5%;
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 100;
}
@media (min-width: 840px) {
  .violetBlock__wrapper {
    font-size: 1.3rem;
  }
}
@media (min-width: 1500px) {
  .violetBlock__wrapper {
    width: 80%;
    font-size: 1.5rem;
  }
}
.violetBlock__img {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 840px) {
  .violetBlock__img {
    width: 40%;
  }
}
@media (min-width: 1500px) {
  .violetBlock__img {
    width: 20%;
  }
}
.violetBlock__img img {
  height: 100px;
  width: 100px;
}
@media (min-width: 840px) {
  .violetBlock__img img {
    height: 200px;
    width: 200px;
  }
}

.sectionTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  font-size: 2rem;
  -webkit-text-stroke: #496373 2px;
  font-weight: 800;
  color: transparent;
  margin: 60px auto 30px auto;
  text-transform: uppercase;
}
@media (min-width: 840px) {
  .sectionTitle {
    font-size: 5rem;
    -webkit-text-stroke-width: 3px;
  }
}
.sectionTitle--left {
  justify-content: flex-end;
  -webkit-text-stroke-color: #a7c0bb;
}/*# sourceMappingURL=service.css.map */