@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap&subset=latin-ext");
body {
  background: #fff;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

*, :after, :before {
  margin: 0;
  padding: 0;
  font: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
}

ol, ul {
  list-style: none;
}

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

.header {
  width: 100%;
  height: 120px;
  z-index: 99;
}

.header__branding {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header__branding:hover {
  -webkit-transform: scale(1.05) rotate(-0.5deg);
          transform: scale(1.05) rotate(-0.5deg);
}

.header__branding img {
  width: 100%;
  min-width: 300px;
}

.header__nav {
  margin-top: 20px;
}

.header .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  width: 75%;
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  color: #6d6d6d;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.header .menu img {
  margin-right: 20px;
}

.tiles {
  width: 100%;
  height: calc(100vh - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tiles__item {
  position: relative;
  overflow: hidden;
  width: 50%;
}

.tiles__item .image {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tiles__item .image::after {
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.tiles__item:hover .image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.tiles__item .bg-one {
  background-image: url(../img/steel.jpg);
}

.tiles__item .bg-two {
  background-image: url(../img/wood.jpg);
}

.tiles__item .text {
  position: absolute;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 56px;
  font-weight: 400;
  left: 12.5%;
  bottom: 30%;
}

@media screen and (max-width: 1670px) {
  .tiles__item .text {
    font-size: 46px;
  }
}

@media screen and (max-width: 1370px) {
  .tiles__item .text {
    font-size: 36px;
  }
}

@media screen and (max-width: 1200px) {
  .header .grid {
    width: 90%;
  }
}

@media screen and (max-width: 1070px) {
  .tiles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .tiles__item {
    width: 100%;
    min-height: 200px;
    height: calc(50vh - 60px);
  }
}

@media screen and (max-width: 860px) {
  .header .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .menu li {
    margin-right: 0;
    margin: 10px 0;
  }
  .header__nav {
    margin-top: 0;
  }
}

@media screen and (max-width: 565px) {
  .tiles__item .text {
    left: 5%;
  }
  .header .grid {
    width: 95%;
  }
  .header__branding img {
    width: 80%;
    min-width: 150px;
  }
}

@media screen and (max-width: 360px) {
  .header .menu li {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */