/* production */
.pageAbout .about {
  background: url(../images/flip_boxes_bg.jpg) no-repeat;
  font-size: 10px;
  padding: 5% 0px;
}
html.webp .pageAbout .about {
  background: url(../images/flip_boxes_bg.webp) no-repeat;
}

.pageAbout .about .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pageAbout .about .title {
  font-size: 4.6em;
  max-width: 900px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1b1d21;
}
.pageAbout .about p {
  font-size: 4.8em;
  text-align: center;
}

/* Middle Section */

.pageAbout .middle {
  background-image: url(../images/services_bg.png), url(../images/about_lines_bg.png);
  background-repeat: no-repeat, no-repeat;
  background-position: -200px 130px, top left;
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 150px;
  overflow: visible;
}
html.webp .pageAbout .middle {
  background-image: url(../images/services_bg.webp), url(../images/about_lines_bg.webp);
}

.pageAbout .middle .inner {
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 50%;
  grid-template-rows: 510px 1fr;
}
.bgWrapper {
  position: relative;
  background-image: url(../images/page-about_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 500px;
  flex-grow: 0;
  height: 600px;
  top: -101px;
  z-index: 9;
}
html.webp .bgWrapper {
  background-image: url(../images/page-about_bg.webp);
}

.pageAbout .middle .textWrapper {
  padding-right: 40px;
  z-index: 9999;
}
.pageAbout .middle .textWrapper .slogan {
  font-size: 2rem;
  text-transform: uppercase;
  color: #7141b1;
  margin-bottom: 20px;
}
.pageAbout .middle .textWrapper .title {
  font-size: 3.6em;
  margin-bottom: 40px;
  color: #1b1d21;
  margin-bottom: 35px;
}
.pageAbout .middle .textWrapper p {
  font-size: 1.6em;
  color: #6d6d6d;
  margin-bottom: 35px;
}

.pageAbout .middle .wisdom {
  position: relative;
  grid-column: 1 / 3;
  left: -55px;
  background: url(../images/quote.png) no-repeat top left;
  padding-left: 55px;
}

.pageAbout .middle .wisdom p {
  font-family: "Montserrat";
  font-size: 2.2rem;
  line-height: 3rem;
  color: #1a1b1e;
  max-width: 682px;
  margin-bottom: 10px;
}
.pageAbout .middle .wisdom .author {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #bdbdbd;
}

/* Cta Section */
.pageAbout .ctaGetStarted {
  background: url(../images/stars_bg.jpg) no-repeat;
  height: 410px;
  overflow: visible;
  position: relative;
}
html.webp .pageAbout .ctaGetStarted {
  background: url(../images/stars_bg.webp) no-repeat;
}
.pageAbout .ctaGetStarted .inner .ctaPortfolio {
  position: relative;
  bottom: -190px;
}

@media (max-width:768px) {
  .bgWrapper {
    display: none;
  }
  .pageAbout .middle {
    background-image: url(../images/about_lines_bg.png) !important;
    background-position: 0px 0px;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 100px;
    overflow: visible;
  }
  .pageAbout .middle .inner {
    grid-template-columns: 1fr;
    grid-template-rows: 510px 1fr;
  }
}