.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.body {
  background-color: #000;
  background-image: url('../images/bg.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Roboto Slab', sans-serif;
}

.wrapper {
  width: 1280px;
  height: 100px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.banner {
  position: relative;
}

.banner-image {
  position: relative;
  top: -50px;
  box-shadow: 0 0 40px 40px #000;
}

.banner-header {
  position: relative;
  z-index: 100;
  padding-left: 30px;
}

.quote {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-quote {
  width: 70%;
  padding: 20px 30px;
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.5px;
}

.text-customer {
  color: #a7a7a7;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 52px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.tile-link {
  border-radius: 0px;
  opacity: 0.4;
  -webkit-filter: saturate(0%);
  filter: saturate(0%);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.tile-link:hover {
  opacity: 1;
  -webkit-filter: saturate(200%);
  filter: saturate(200%);
}

.rounded {
  border-radius: 3px;
}

.footer {
  margin-top: 100px;
  margin-bottom: 60px;
  text-align: center;
}

.text-phone {
  display: block;
  margin-top: 40px;
  color: #fff;
  font-size: 80px;
  line-height: 120px;
  font-weight: 400;
}

.text-estimate {
  margin-bottom: 30px;
  color: #9c9c9c;
  font-size: 20px;
  text-transform: uppercase;
}

.contact {
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  text-align: center;
}

.large-logo {
  margin-top: 40px;
  margin-bottom: 40px;
}

.text-footer {
  color: #4d4d4d;
  font-size: 16px;
  text-transform: none;
}

.btn-contac {
  display: inline-block;
  width: 320px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 4px;
  background-color: #9b8b13;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.btn-contac:hover {
  background-color: #c0ab0d;
}

@media (max-width: 991px) {
  .wrapper {
    width: 100%;
    margin-top: 30px;
  }
  .text-quote {
    width: 90%;
    font-size: 26px;
  }
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid {
    grid-column-gap: 21px;
  }
}

@media (max-width: 767px) {
  .banner-header {
    padding-right: 20px;
    padding-left: 20px;
  }
  .text-quote {
    width: 80%;
    padding-right: 0px;
    padding-left: 0px;
    font-size: 22px;
    line-height: 32px;
  }
  .text-customer {
    font-size: 14px;
  }
  .grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .tile-link {
    opacity: 0.4;
    -webkit-filter: saturate(200%);
    filter: saturate(200%);
  }
  .text-phone {
    font-size: 50px;
    line-height: 70px;
  }
}

@media (max-width: 479px) {
  .wrapper {
    margin-top: 20px;
  }
  .banner-image {
    top: -25px;
  }
  .quote {
    padding-bottom: 40px;
  }
  .text-quote {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 20px;
  }
  .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .text-phone {
    font-size: 40px;
    line-height: 60px;
  }
  .text-estimate {
    font-size: 16px;
  }
  .large-logo {
    width: 80%;
  }
  .text-footer {
    font-size: 13px;
  }
}

