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;
}

.destructuredBlock {
  width: 80%;
  margin: 50px 0 80px 20%;
  height: 250px;
}
@media (min-width: 840px) {
  .destructuredBlock {
    margin: 100px 0 150px 20%;
    height: 400px;
  }
}
@media (min-width: 1500px) {
  .destructuredBlock {
    height: 500px;
  }
}
.destructuredBlock--left {
  margin: 50px 0 80px 0;
  width: 80%;
}
@media (min-width: 840px) {
  .destructuredBlock--left {
    width: 60%;
    margin: 100px 40% 150px 0;
  }
}
.destructuredBlock__title {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  height: 250px;
  width: 200px;
  top: -35px;
  left: 0px;
  background-color: white;
  text-transform: uppercase;
}
@media (min-width: 840px) {
  .destructuredBlock__title {
    font-size: 70px;
    width: 500px;
    top: -75px;
    left: -150px;
  }
}
@media (min-width: 1500px) {
  .destructuredBlock__title {
    font-size: 100px;
  }
}
.destructuredBlock__title--left {
  left: unset;
  right: calc(150px - 80%);
  width: 400px;
}
@media (min-width: 840px) {
  .destructuredBlock__title--left {
    right: calc(150px - 60%);
    width: 800px;
  }
}
.destructuredBlock__title .destructuredBlockTitle__first {
  -webkit-text-stroke: #496373 2px;
  color: white;
  position: relative;
  top: 45px;
  left: -50px;
}
@media (min-width: 840px) {
  .destructuredBlock__title .destructuredBlockTitle__first {
    left: -100px;
  }
}
.destructuredBlock__title .destructuredBlockTitle__first--left {
  -webkit-text-stroke: #a7c0bb 2px;
  right: -150px;
  left: unset;
}
@media (min-width: 840px) {
  .destructuredBlock__title .destructuredBlockTitle__first--left {
    right: -350px;
  }
}
.destructuredBlock__title .destructuredBlockTitle__secund {
  color: #496373;
}
.destructuredBlock__title .destructuredBlockTitle__secund--left {
  position: relative;
  right: -30px;
  color: #a7c0bb;
}
@media (min-width: 840px) {
  .destructuredBlock__title .destructuredBlockTitle__secund--left {
    position: unset;
    right: unset;
  }
}
.destructuredBlock__text {
  position: relative;
  font-size: 0.5rem;
  color: #496373;
  left: -50px;
  background-color: white;
  height: 150px;
  top: -180px;
  font-weight: 100;
}
@supports (background: -webkit-named-image(i)) {
  .destructuredBlock__text {
    font-size: 7px;
  }
}
@media (min-width: 840px) {
  .destructuredBlock__text {
    font-size: 1.4rem;
    left: -150px;
    height: 250px;
  }
}
@media (min-width: 1500px) {
  .destructuredBlock__text {
    top: -80px;
    font-size: 1.5rem;
  }
}
.destructuredBlock__text--left {
  text-align: end;
  right: -50px;
  left: unset;
}
@media (min-width: 840px) {
  .destructuredBlock__text--left {
    right: -350px;
  }
}
.destructuredBlock__svg {
  position: relative;
  width: 100%;
  height: 250px;
  top: -400px;
  z-index: -10;
}
@media (min-width: 840px) {
  .destructuredBlock__svg {
    height: 400px;
    top: -500px;
  }
}
@media (min-width: 1500px) {
  .destructuredBlock__svg {
    height: 500px;
  }
}
.destructuredBlock__svg rect {
  width: 100%;
  height: 250px;
  stroke: #496373;
}
@media (min-width: 840px) {
  .destructuredBlock__svg rect {
    height: 400px;
  }
}
@media (min-width: 1500px) {
  .destructuredBlock__svg rect {
    height: 500px;
  }
}

.presidentWord {
  width: 70%;
  margin: auto;
  background-color: #496373;
  font-size: 30px;
  font-weight: 800;
  color: white;
  padding: 30px;
  box-sizing: border-box;
}
@media (min-width: 840px) {
  .presidentWord {
    width: 60%;
    font-size: 70px;
  }
}
.presidentWord__firstname {
  text-transform: uppercase;
  -webkit-text-stroke: #496373 2px;
  color: white;
  position: relative;
  top: -56px;
  left: -70px;
  z-index: 20;
}
@media (min-width: 840px) {
  .presidentWord__firstname {
    top: -83px;
    left: -150px;
  }
}
.presidentWord__lastname {
  text-transform: uppercase;
  position: relative;
  top: -55px;
}
@media (min-width: 840px) {
  .presidentWord__lastname {
    top: -100px;
  }
}
.presidentWord__text {
  font-weight: 100;
  font-size: 0.6rem;
  text-align: justify;
  margin-top: -30px;
}
@media (min-width: 840px) {
  .presidentWord__text {
    margin-top: -50px;
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=agence.css.map */