* {
  padding: 0;
  margin: 0; }

.grid {
  display: grid; }
  .grid.homepage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr minmax(500px, 650px) repeat(9, auto); }
  .grid.about {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr minmax(300px, 450px) repeat(4, auto); }
  .grid.contact {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr minmax(300px, 450px) repeat(4, auto); }
  .grid.careers {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr minmax(300px, 450px) repeat(9, auto); }
  .grid.projects {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr minmax(300px, 450px) repeat(4, auto); }

.inner-grid {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
  display: grid; }

h2.title {
  font-family: "Catamaran", "Myriad Pro", sans-serif;
  color: #c6a47e;
  font-size: 34px;
  text-transform: uppercase; }

p {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 28px;
  color: #777777; }

.btn {
  background: #c6a47e;
  font-family: "Catamaran", "Myriad Pro", sans-serif;
  font-size: 15px;
  color: #FFF;
  border-radius: 5px;
  text-align: center;
  padding: 10px 25px;
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent; }
  .btn.btn-bordered {
    background: transparent;
    border: 2px solid #c6a47e;
    color: #555555; }
    .btn.btn-bordered:hover {
      background: #c6a47e;
      color: #FFF; }
  .btn:hover {
    background: transparent;
    border: 2px solid #c6a47e;
    color: #555; }
  .btn i {
    margin-right: 15px; }

.header-cell {
  grid-area: header;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr minmax(250px, 350px); }
  .header-cell.homepage {
    grid-template-rows: 1fr minmax(500px, 650px); }

header {
  grid-row: 1/2;
  position: relative;
  grid-column: 1;
  z-index: 2; }
  header .top-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px; }
    header .top-bar .inner-grid {
      grid-template-columns: minmax(150px, 3fr) minmax(230px, 3fr) 8fr; }
    header .top-bar .social {
      text-align: right; }
      header .top-bar .social i {
        color: #FFF;
        font-size: 14px;
        margin: 0 10px; }
        header .top-bar .social i:hover {
          color: #c6a47e; }
        header .top-bar .social i:last-child {
          margin-right: 0; }
    header .top-bar .phone,
    header .top-bar .email {
      color: #FFF;
      font-size: 14px;
      font-family: "Open Sans", "Myriad Pro", sans-serif; }
      header .top-bar .phone i,
      header .top-bar .email i {
        color: #c6a47e;
        font-size: 14px;
        margin-right: 10px; }
  header .menu {
    padding-top: 20px; }
    header .menu .open-menu {
      display: none; }
    header .menu .inner-grid {
      grid-template-columns: minmax(160px, 2fr) minmax(600px, 8fr); }
    header .menu nav {
      text-align: right;
      height: 68px; }
      header .menu nav ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        header .menu nav ul li {
          display: inline-block;
          margin-left: 35px;
          position: relative;
          height: 68px; }
          header .menu nav ul li:hover .dropdown {
            display: block; }
          header .menu nav ul li .dropdown {
            display: none;
            background: #FFF;
            position: absolute;
            padding: 5px 15px;
            top: 60px;
            left: 0; }
            header .menu nav ul li .dropdown li {
              display: block;
              margin-left: 0;
              height: 40px;
              line-height: 40px; }
              header .menu nav ul li .dropdown li a {
                height: 40px;
                line-height: 40px;
                color: #c6a47e; }
          header .menu nav ul li a {
            font-family: "Catamaran", "Myriad Pro", sans-serif;
            display: inline-block;
            height: 68px;
            line-height: 68px;
            color: #FFF;
            font-size: 15px;
            font-weight: 500;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px; }
            header .menu nav ul li a:active, header .menu nav ul li a:focus, header .menu nav ul li a:hover, header .menu nav ul li a.active {
              color: #c6a47e; }

#slideshow {
  grid-row: 1/3;
  grid-column: 1;
  z-index: 1;
  position: relative; }
  #slideshow .slideshow {
    height: 100%; }
    #slideshow .slideshow .slide {
      background-size: cover;
      background-attachment: fixed;
      width: 100%;
      height: 100%; }
  #slideshow .slideshow-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 101; }
    #slideshow .slideshow-text .slideshow-text-centered {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      #slideshow .slideshow-text .slideshow-text-centered h3 {
        font-family: "Catamaran", "Myriad Pro", sans-serif;
        font-size: 18px;
        text-transform: uppercase;
        color: #FFF;
        font-weight: 500;
        letter-spacing: 1px; }
        #slideshow .slideshow-text .slideshow-text-centered h3 strong {
          font-weight: 900; }
      #slideshow .slideshow-text .slideshow-text-centered h1 {
        font-family: "Catamaran", "Myriad Pro", sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        color: #FFF;
        letter-spacing: 2px; }
      #slideshow .slideshow-text .slideshow-text-centered h2 {
        font-family: "Catamaran", "Myriad Pro", sans-serif;
        font-size: 54px;
        font-weight: 700;
        text-transform: uppercase;
        color: #FFF;
        letter-spacing: 2px; }
    #slideshow .slideshow-text p {
      position: absolute;
      bottom: 100px;
      left: 50%;
      width: 350px;
      transform: translate(-50%, 0);
      font-size: 14px;
      color: #FFF;
      font-weight: 400;
      font-family: "Catamaran", "Myriad Pro", sans-serif; }

#who-we-are {
  padding: 150px 0; }
  #who-we-are .inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px; }
    #who-we-are .inner-grid img {
      max-width: 100%; }
  #who-we-are .hidden {
    display: none; }
  #who-we-are h2 {
    margin-top: 45px; }
  #who-we-are .btn {
    float: right;
    margin-top: 70px; }
    #who-we-are .btn:after {
      display: table;
      content: '';
      clear: both; }

#what-we-do {
  background: #fafafa;
  padding: 80px 0; }
  #what-we-do.inside .services {
    grid-column-gap: 40px; }
  #what-we-do .inner-grid {
    grid-template-columns: 9fr 1fr;
    grid-row-gap: 100px; }
  #what-we-do h3 {
    font-family: "Catamaran", "Myriad Pro", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #777777;
    margin-bottom: 25px; }
  #what-we-do .what-we-do-intro {
    grid-column: 1/2; }
  #what-we-do .services {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 35px; }
    #what-we-do .services .service .img-holder {
      width: 40px;
      margin-right: 10px;
      vertical-align: top;
      display: inline-block; }
      #what-we-do .services .service .img-holder img {
        max-width: 100%;
        max-height: 50px; }
    #what-we-do .services .service h3 {
      vertical-align: top;
      display: inline-block;
      color: #333333;
      font-size: 24px;
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-weight: 600;
      line-height: 25px; }
    #what-we-do .services .service .number {
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-size: 80px;
      opacity: .15;
      color: #010101;
      margin-left: 50px;
      font-weight: 700; }
    #what-we-do .services .service.learn-more {
      position: relative; }
      #what-we-do .services .service.learn-more a {
        position: absolute;
        bottom: 20px;
        right: 0; }

#get-a-quote {
  padding: 60px 0;
  background-image: url("../imgs/bg2.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; }
  #get-a-quote .inner-grid {
    grid-template-columns: 8fr 2fr;
    grid-template-rows: 2fr 45px; }
  #get-a-quote p {
    color: #ededed; }
  #get-a-quote .left {
    grid-row: 1/3; }
  #get-a-quote h2 {
    font-family: "Catamaran", "Myriad Pro", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 25px; }
    #get-a-quote h2 strong {
      color: #c6a47e; }
  #get-a-quote .btn {
    grid-row: 2/3; }

#featured-projects {
  padding: 140px 0; }
  #featured-projects .title {
    margin-bottom: 130px; }
  #featured-projects .projects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 35px; }
  #featured-projects .project a {
    text-decoration: none; }
  #featured-projects .project:hover {
    cursor: pointer; }
    #featured-projects .project:hover .overlay {
      opacity: 1; }
    #featured-projects .project:hover h3 {
      color: #c6a47e; }
    #featured-projects .project:hover .btn {
      background: #c6a47e;
      color: #FFF; }
  #featured-projects .project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: .2s all; }
    #featured-projects .project .overlay i {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #FFF;
      font-size: 18px; }
  #featured-projects .project .project-image {
    position: relative;
    padding-bottom: 70%;
    width: 100%;
    height: 0;
    background-size: cover; }
  #featured-projects .project .project-caption {
    background: #c6a47e;
    text-align: center;
    color: #FFF;
    font-family: "Open Sans", "Myriad Pro", sans-serif;
    font-size: 14px;
    padding: 10px 0;
    margin-bottom: 34px; }
  #featured-projects .project h3 {
    font-family: "Catamaran", "Myriad Pro", sans-serif;
    font-size: 18px;
    color: #555555;
    text-transform: uppercase; }
  #featured-projects .project h4 {
    font-family: "Open Sans", "Myriad Pro", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #c6a47e;
    margin-bottom: 15px; }
  #featured-projects .project .btn {
    margin-top: 20px; }

#separator {
  background-image: url("../imgs/bg3.jpg");
  background-size: cover;
  background-attachment: fixed;
  height: 280px; }

#quote {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none; }
  #quote .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5); }
  #quote .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 50px;
    z-index: 99999; }
    #quote .content h2 {
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-size: 24px;
      color: #444444;
      text-transform: uppercase;
      margin-top: 25px;
      margin-bottom: 15px; }
    #quote .content input[type=text] {
      width: 100%;
      border: 1px solid #dbdbdb;
      box-sizing: border-box;
      padding: 10px;
      margin-bottom: 25px;
      font-family: "Open Sans", "Myriad Pro", sans-serif; }
      #quote .content input[type=text].half {
        width: 45%;
        margin-right: 5%;
        float: left; }
        #quote .content input[type=text].half.second {
          margin-right: 0; }
          #quote .content input[type=text].half.second:after {
            clear: both;
            content: '';
            display: table; }
    #quote .content textarea {
      width: 100%;
      height: 120px;
      border: 1px solid #dbdbdb;
      box-sizing: border-box;
      padding: 10px;
      margin-bottom: 25px;
      font-family: "Open Sans", "Myriad Pro", sans-serif; }

.anchors {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  right: 25px;
  z-index: 999999;
  line-height: 16px;
  font-family: "Open Sans", "Myriad Pro", sans-serif;
  color: transparent;
  text-transform: uppercase;
  font-size: 11px;
  text-align: right; }
  .anchors li {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    list-style: none; }
    .anchors li:hover, .anchors li.active {
      color: #c6a47e; }
      .anchors li:hover span, .anchors li.active span {
        background: transparent; }
  .anchors span {
    margin-left: 8px;
    background: #c6a47e;
    display: inline-block;
    height: 16px;
    width: 16px;
    vertical-align: middle;
    border-radius: 16px;
    border: 2px solid #c6a47e; }

#contact {
  padding: 190px 0; }
  #contact.inner {
    padding-bottom: 0; }
  #contact .contact-map {
    width: 100%;
    height: 550px;
    border: 2px solid #c6a47e; }
  #contact .inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px; }
  #contact .contact-form h3 {
    font-family: "Catamaran", "Myriad Pro", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #444444;
    margin-bottom: 55px; }
  #contact .contact-form input[type=text] {
    width: 100%;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 25px;
    font-family: "Open Sans", "Myriad Pro", sans-serif; }
  #contact .contact-form textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 25px;
    font-family: "Open Sans", "Myriad Pro", sans-serif; }
  #contact .contact-form .btn {
    border: 0;
    cursor: pointer;
    font-weight: bold; }
  #contact #map-big {
    width: 100%;
    height: 500px;
    margin-top: 50px; }
  #contact .title {
    margin-bottom: 40px; }
  #contact .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0; }
    #contact .contact-info-list li {
      margin-bottom: 35px; }
    #contact .contact-info-list i {
      background: #f7f7f7;
      color: #c6a47e;
      display: block;
      width: 64px;
      height: 64px;
      display: inline-block;
      text-align: center;
      line-height: 64px;
      font-size: 25px;
      vertical-align: middle;
      margin-right: 15px; }
    #contact .contact-info-list p {
      vertical-align: middle;
      display: inline-block;
      color: #888888;
      font-family: "Open Sans", "Myriad Pro", sans-serif;
      font-size: 14px;
      line-height: 22px; }
      #contact .contact-info-list p strong {
        display: block;
        color: #c6a47e;
        font-family: "Catamaran", "Myriad Pro", sans-serif;
        font-weight: 500;
        font-size: 16px; }

#trusted-clients {
  padding-bottom: 190px; }
  #trusted-clients .inner-grid {
    grid-template-columns: 1fr; }
  #trusted-clients .clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-top: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    grid-template-rows: 160px 160px;
    margin-top: 90px; }
    #trusted-clients .clients-grid div {
      line-height: 160px;
      border-right: 1px solid #e3e3e3;
      border-bottom: 1px solid #e3e3e3;
      text-align: center; }
      #trusted-clients .clients-grid div img {
        max-height: 140px;
        vertical-align: middle;
max-width: 100%;}

#page-header {
  grid-row: 1/3;
  grid-column: 1;
  z-index: 1;
  position: relative; }
  #page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); }
    #page-header .overlay h2 {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: #FFF;
      text-transform: uppercase; }

#design-develop-deliver {
  padding-bottom: 160px;
  padding-top: 160px;
  background: url("../imgs/ddd.jpg");
  background-size: cover;
  background-position: center center; }
  #design-develop-deliver .box {
    background: #FFF;
    border: 1px solid #e3e3e3;
    padding: 60px 40px;
    display: table;
    margin: 0 auto; }
    #design-develop-deliver .box .text-carousel {
      width: 500px;
      overflow: hidden;
      margin: 0 auto; }
      #design-develop-deliver .box .text-carousel .text-slider {
        width: 300%; }
        #design-develop-deliver .box .text-carousel .text-slider .text {
          float: left;
          width: 33.33333%; }
          #design-develop-deliver .box .text-carousel .text-slider .text p {
            text-align: center; }
    #design-develop-deliver .box ul {
      list-style: none;
      margin: 0;
      margin-bottom: 70px;
      padding: 0;
      text-align: center; }
      #design-develop-deliver .box ul li {
        display: inline-block;
        text-transform: uppercase;
        font-family: "Catamaran", "Myriad Pro", sans-serif;
        font-size: 40px;
        cursor: pointer;
        color: #c6a47e;
        width: 185px;
        margin-right: 60px;
        text-align: center; }
        #design-develop-deliver .box ul li.active, #design-develop-deliver .box ul li:hover {
          font-weight: 900; }
        #design-develop-deliver .box ul li:last-child {
          margin-right: 0; }

#commercial-projects {
  padding-bottom: 126px; }
  #commercial-projects .project-listing {
    padding-top: 126px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 65px;
    grid-row-gap: 25px;
    grid-template-rows: minmax(auto, auto) 1fr; }
    #commercial-projects .project-listing:nth-child(even) .image {
      grid-column: 2/3; }
    #commercial-projects .project-listing:nth-child(even) .thumbnails {
      grid-column: 2/3; }
    #commercial-projects .project-listing:nth-child(even) .information {
      grid-column: 1/2; }
    #commercial-projects .project-listing .image {
      grid-column: 1/2;
      grid-row: 1/2; }
      #commercial-projects .project-listing .image img {
        width: 100%;
        display: block; }
    #commercial-projects .project-listing .thumbnails {
      grid-column: 1/2;
      grid-row: 2/3;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-column-gap: 15px; }
      #commercial-projects .project-listing .thumbnails img {
        width: 100%;
        height: 100px; }
#commercial-projects .project-listing .thumbnails a {
  display: inline-block; height: 100px;
  background-size: cover; background-position: center center;
}
    #commercial-projects .project-listing .information {
      grid-column: 2/3;
      grid-row: 1/3; }
      #commercial-projects .project-listing .information .info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 60px;
        grid-row-gap: 30px; }
        #commercial-projects .project-listing .information .info i {
          color: #c6a47e;
          display: inline-block;
          margin-right: 10px;
          vertical-align: top;
          margin-top: 8px; }
        #commercial-projects .project-listing .information .info p {
          display: inline-block;
          vertical-align: top;
          color: #555555;
          font-size: 14px; }
          #commercial-projects .project-listing .information .info p strong {
            font-weight: bold; }
    #commercial-projects .project-listing .desc {
      margin-top: 35px; }

#careers {
  padding: 150px 0; }
  #careers strong {
    display: block;
    font-weight: bold; }
  #careers .vacancy {
    padding: 30px 0;
    display: grid;
    grid-column-gap: 90px;
    margin-bottom: 90px;
    grid-template-columns: 1fr 1fr; }
  #careers input[type=text] {
    width: 100%;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 25px;
    font-family: "Open Sans", "Myriad Pro", sans-serif; }
  #careers label {
    color: #999999;
    font-size: 14px;
    font-family: "Open Sans", "Myriad Pro", sans-serif;
    width: 30%;
    display: block;
    margin-top: 12px;
    float: left; }
  #careers .btn {
    float: right;
    clear: both;
    margin-top: 35px; }
    #careers .btn:after {
      clear: both;
      content: '';
      display: table; }
  #careers .file {
    width: 65%;
    float: right;
    position: relative; }
    #careers .file:after {
      clear: both;
      content: '';
      display: table; }
    #careers .file input {
      position: absolute;
      top: 0;
      left: 0;
      outline: 0;
      width: 100%;
      opacity: 0;
      cursor: pointer;
      height: 100%; }
    #careers .file .file-button {
      width: 100%;
      height: 40px;
      line-height: 40px;
      font-family: "Open Sans", "Myriad Pro", sans-serif;
      font-weight: bold;
      color: #c6a47e;
      text-align: center;
      font-size: 13px;
      box-sizing: border-box;
      border: 2px solid #c6a47e;
      outline: 0; }
  #careers h3 {
    font-family: "Open Sans";
    font-size: 26px;
    line-height: 28px;
    padding-bottom: 35px;
    font-weight: bold;
    grid-column: 1/3;
    color: #444444; }
  #careers p, #careers ul {
    margin-bottom: 30px; }
  #careers ul {
    padding-left: 20px; }
  #careers p, #careers strong, #careers li {
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 28px;
    color: #777777; }

footer {
  position: relative;
  background: #26282b; }
  footer .to-top {
    position: absolute;
    left: 50%;
    top: -47px;
    transform: translate(-50%, 0);
    content: '';
    display: block;
    width: 106px;
    height: 47px;
    background: url("../imgs/top.png");
    background-size: cover;
    cursor: pointer; }
  footer > .inner-grid {
    grid-template-columns: 2fr 3fr 3fr;
    padding: 90px 0; }
  footer .follow-us {
    grid-column: 1/2; }
    footer .follow-us h2 {
      font-size: 22px;
      color: #FFF;
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px; }
      footer .follow-us h2 strong {
        color: #c6a47e; }
      footer .follow-us h2:after {
        height: 5px;
        background: #c6a47e;
        content: '';
        width: 30px;
        margin-top: 10px;
        display: block; }
    footer .follow-us p {
      margin-bottom: 25px; }
    footer .follow-us a {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 1px solid #878787;
      text-align: center;
      margin-right: 10px;
      line-height: 40px;
      color: #FFF; }
      footer .follow-us a:hover {
        background: #c6a47e; }
  footer .info {
    grid-column: 3/4;
    text-align: center; }
    footer .info h3 {
      font-size: 16px;
      font-family: "Catamaran", "Myriad Pro", sans-serif;
      font-weight: 700;
      color: #FFF;
      margin-top: 25px;
      text-transform: uppercase;
      margin-bottom: 15px; }
    footer .info p {
      font-size: 14px;
      font-family: "Open Sans", "Myriad Pro", sans-serif;
      font-weight: 400;
      color: #FFF;
      line-height: 20px; }
  footer .bottom-bar {
    background: #1d1d1d; }
    footer .bottom-bar .inner-grid {
      padding: 17px 0;
      grid-template-columns: 1fr 1fr; }
    footer .bottom-bar .copyright {
      font-size: 14px;
      font-family: "Open Sans", "Myriad Pro", sans-serif;
      color: #c1c1c1; }
      footer .bottom-bar .copyright a {
        color: #c1c1c1;
        text-decoration: none; }
    footer .bottom-bar .links {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: right; }
      footer .bottom-bar .links li {
        display: inline-block; }
        footer .bottom-bar .links li a {
          color: #ededed;
          font-size: 15px;
          font-family: "Catamaran", "Myriad Pro", sans-serif;
          text-transform: uppercase;
          text-decoration: none;
          margin-left: 30px; }

.mobile-only {
  display: none; }

@media all and (max-width: 1100px) {
  #what-we-do .services {
    grid-template-columns: 1fr 1fr; } }
@media all and (max-width: 760px) {
  .anchors {
display: none;
  }
      #slideshow .slideshow-text p {
 width: 80%;
  }
  header .menu nav ul li .dropdown {
    position: initial;
    background: transparent;
    display: block; }
    header .menu nav ul li .dropdown li a {
      color: #FFF; }

  .grid {
    display: grid; }

  .header-cell .mobile-only {
    grid-column: 1;
    grid-row: 1/2; }

  header {
    grid-column: auto;
    grid-row: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: grid;
    grid-row-gap: 20px;
    max-height: 110px;
    overflow: hidden;
    transition: 1s all; }
    header.active {
      max-height: 800px; }
    header .top-bar {
      align-self: start;
      box-sizing: border-box;
      grid-row: 2/3;
      width: 100%;
      padding: 0;
      padding-bottom: 20px; }
      header .top-bar .social {
        text-align: left; }
      header .top-bar .inner-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 15px; }
    header .menu {
      grid-row: 1/2; }
      header .menu .inner-grid {
        grid-template-columns: 1fr; }
      header .menu nav {
        text-align: left;
        margin-top: 20px;
        height: auto; }
        header .menu nav ul li {
          margin-left: 0;
          margin-right: 35px;
          display: block;
          height: auto; }
          header .menu nav ul li:last-child {
            margin-right: 0; }
          header .menu nav ul li a {
            height: 45px;
            line-height: 45px; }

  header .top-bar .social a:nth-child(1) i {
    margin-left: 0; }

  header .menu .open-menu {
    position: absolute;
    top: 40px;
    color: #FFF;
    font-size: 35px;
    display: block;
    right: 40px; }

  #who-we-are .inner-grid,
  #what-we-do .inner-grid,
  #get-a-quote .inner-grid,
  #contact .inner-grid,
  footer > .inner-grid,
  footer .bottom-bar .inner-grid {
    grid-template-columns: 1fr; }

  footer .follow-us,
  footer .info {
    grid-column: 1; }

  #trusted-clients .clients-grid {
    grid-template-columns: 1fr 1fr; }

  #what-we-do .services {
    grid-template-columns: 1fr; }

  .contact-map img {
    width: 100%; }

  #slideshow .slideshow-text .slideshow-text-centered h1 {
    font-size: 23px; }

  #slideshow .slideshow-text .slideshow-text-centered h2 {
    font-size: 13px; }

  #featured-projects .projects {
    grid-template-columns: 1fr;
    grid-row-gap: 80px; }

  #get-a-quote .left,
  #get-a-quote .btn {
    grid-row: auto; }

  #what-we-do .services .service.learn-more a {
    position: initial; }

  #get-a-quote .btn {
    display: table;
    margin: 20px auto 0 auto; }

  #featured-projects .title {
    margin-bottom: 40px; }

  #contact .inner-grid,
  footer > .inner-grid {
    grid-row-gap: 80px; }

  footer .bottom-bar .links {
    display: none; }

  #design-develop-deliver .box .text-carousel {
    width: 300px; }

  #design-develop-deliver .box ul li {
    display: block;
    margin: 0 auto !important; }

  #page-header .overlay h2 {
    text-align: center; }

  #commercial-projects .project-listing,
  #commercial-projects .project-listing:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(auto, auto) minmax(auto, auto); }

  #commercial-projects .project-listing .image,
  #commercial-projects .project-listing:nth-child(even) .image {
    grid-column: 1;
    grid-row: auto; }

  #commercial-projects .project-listing .thumbnails,
  #commercial-projects .project-listing:nth-child(even) .thumbnails {
    grid-column: 1;
    grid-row: auto; }

  #commercial-projects .project-listing .information,
  #commercial-projects .project-listing:nth-child(even) .information {
    grid-column: 1;
    grid-row: auto; } }

/*# sourceMappingURL=style.css.map */
