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

header {
  margin-bottom: 0;
}

.banner {
  width: 100%;
  height: 149px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: calc((100% - 314px) / 2);
  background-image: url("../../IMG/home/homeBanner2.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
}
@media (min-width: 840px) {
  .banner {
    padding-left: calc((100% - 1047px) / 2);
    height: 499px;
  }
}
@media (min-width: 1500px) {
  .banner {
    padding-left: calc((100% - 1884px) / 2);
    height: 899px;
  }
}
.banner img {
  height: 150px;
}
@media (min-width: 840px) {
  .banner img {
    height: 500px;
  }
}
@media (min-width: 1500px) {
  .banner img {
    height: 900px;
  }
}
.banner__c {
  transform: translateX(-250px);
}
@media (min-width: 840px) {
  .banner__c {
    transform: translateX(-450px);
  }
}
.banner__m {
  transform: translateY(-350px);
  z-index: 10;
}
@media (min-width: 840px) {
  .banner__m {
    transform: translateY(-800px);
  }
}
.banner__d {
  transform: translateX(250px);
}
@media (min-width: 840px) {
  .banner__d {
    transform: translateX(450px);
  }
}

.gridBlock {
  display: grid;
  grid-template-rows: 20% 40% 40%;
  grid-template-columns: 70% 30%;
  width: 100%;
  height: 1000px;
}
@media (min-width: 840px) {
  .gridBlock {
    grid-template-columns: 55% 45%;
    grid-template-rows: 30% 70%;
  }
}
.gridBlock__upperLeft {
  background-color: #496373;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  flex-direction: column;
  padding-right: 10%;
}
.gridBlock__upperLeft .gridUpperLeft__text {
  color: white;
  font-size: 0.7rem;
}
@media (min-width: 840px) {
  .gridBlock__upperLeft .gridUpperLeft__text {
    font-size: 1.5rem;
  }
}
.gridBlock__upperLeft .bigWord {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}
@media (min-width: 840px) {
  .gridBlock__upperLeft .bigWord {
    font-size: 2.5rem;
  }
}
.gridBlock__upperRight {
  width: 100%;
  height: 100%;
  background-image: url("../../IMG/home/upperRight.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gridBlock__lowerLeft {
  width: 100%;
  height: 100%;
  background-image: url("../../IMG/home/lowerLeft.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-stroke: #496373 3px;
  text-align: center;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  grid-row: 2;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (min-width: 840px) {
  .gridBlock__lowerLeft {
    align-items: flex-end;
    text-align: end;
    grid-row: 2;
    grid-column: 1;
    font-size: 7.5rem;
  }
}
@media (min-width: 1500px) {
  .gridBlock__lowerLeft {
    font-size: 8.5rem;
  }
}
@media (min-width: 840px) {
  .gridBlock__lowerLeft div {
    margin-right: 50px;
  }
}
.gridBlock__lowerRight {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #496373;
  grid-row: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (min-width: 840px) {
  .gridBlock__lowerRight {
    align-items: flex-start;
    grid-column: 2;
    grid-row: 2;
  }
}
.gridBlock__lowerRight div {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media (min-width: 840px) {
  .gridBlock__lowerRight div {
    margin-left: 50px;
    font-size: 3rem;
  }
}
.gridBlock__lowerRight .bigText {
  font-size: 2.5rem;
}
@media (min-width: 840px) {
  .gridBlock__lowerRight .bigText {
    font-size: 7.5rem;
  }
}
@media (min-width: 1500px) {
  .gridBlock__lowerRight .bigText {
    font-size: 8.5rem;
  }
}
.gridBlock__lowerRight .gridLowerRight__discover {
  color: #a7c0bb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
}
@media (min-width: 840px) {
  .gridBlock__lowerRight .gridLowerRight__discover {
    margin-left: 50px;
    font-size: unset;
  }
}
.gridBlock__lowerRight .gridLowerRight__discover img {
  width: 25px;
  margin-right: 10px;
}

.realisation {
  margin-top: 30px;
}
@media (min-width: 840px) {
  .realisation {
    margin-top: 80px;
  }
}
.realisation__carroussel {
  height: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 840px) {
  .realisation__carroussel {
    height: 400px;
  }
}
.realisation__carroussel img {
  height: 200px;
  width: 200px;
  margin: 10px;
}
@media (min-width: 840px) {
  .realisation__carroussel img {
    height: 400px;
    width: 400px;
  }
}
.realisation__text {
  font-size: 2rem;
  -webkit-text-stroke: #a7c0bb 2px;
  font-weight: 800;
  color: transparent;
  text-transform: uppercase;
  margin: 0 auto 30px auto;
  text-align: center;
}
@media (min-width: 840px) {
  .realisation__text {
    text-align: start;
    margin-left: 10%;
    font-size: 5rem;
    -webkit-text-stroke-width: 3px;
  }
}/*# sourceMappingURL=home.css.map */