* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
}
body.modal-open {
  overflow: hidden;
}

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

.container {
  position: relative;
  width: 1170px;
  min-height: inherit;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.viewport-width-container {
  margin-left: calc(-1 * (100vw - 100% - 17px) / 2);
  margin-right: calc(-1 * (100vw - 100% - 17px) / 2);
}

.text-center {
  text-align: center;
}

header {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  text-align: center;
  height: 160px;
}
header span {
  width: 100%;
  position: relative;
  top: 20px;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  color: #666;
}
header h1 {
  font-size: 68px;
  position: relative;
  margin-top: 20px;
  color: #666;
  font-weight: 300;
  z-index: 3;
}
header h1::before {
  content: "";
  background: #fff;
  position: absolute;
  width: calc(100% + 40px);
  left: -20px;
  height: 100%;
  z-index: -1;
}
header h1::after {
  content: "";
  height: 2px;
  background: #666666;
  width: 100vw;
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  top: 50%;
  z-index: -2;
}

main {
  background: #fff;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
}

.container--main {
  padding-bottom: 30px;
  text-align: center;
}

.section-heading h2 {
  padding: 30px 0 0;
  font-size: 2em;
  color: #6c6c6c;
  width: 100%;
}

.sector-links {
  position: relative;
}

.sector-links--art .company-sector__sector-list {
  position: relative;
}
.sector-links--art .company-sector__sector-list::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #6c6c6c;
}

.col {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}

.col--full {
  width: 100%;
}

.standard-img {
  display: inline-block;
}

.retina-img {
  display: none;
}

.company-sector h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #6c6c6c;
  padding: 15px;
}
.company-sector .company-sector__sector-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.sector-property {
  padding: 15px;
}
.sector-property .sector-property__link {
  width: 100%;
  min-height: 225px;
  display: flex;
  flex-flow: row nowrap;
  border: solid 2px #d6d6d6;
}
.sector-property .sector-property__link:hover {
  background: #666;
  transform: scale(1.05);
}
.sector-property .logo-container {
  background: linear-gradient(to bottom, #eaeaea, #ffffff);
  width: 100%;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sector-property img {
  padding: 15px;
  max-width: 100%;
  max-height: 200px;
}

.art-link,
.beauty-link {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

footer {
  width: 100%;
}
footer .footer-nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background: #666;
}
footer div {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 50px;
}
footer div.cc {
  padding: 0 5px;
  color: #333;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
}
footer .ccpa > :last-child {
  padding: 10px;
}
footer .footer-links a {
  color: #fff;
  padding: 18px;
  cursor: pointer;
  /* extra css added for separator position to match art and beauty link separator */
  width: 112px;
  height: 100%;
  line-height: 16px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  /* end extra css */
}
footer .footer-links a:hover {
  background: #929292;
}

.hidden-mobile {
  display: inline;
}

.hidden-desktop {
  display: none;
}

/* About Modal
=====================================================================================================================
=====================================================================================================================*/
.modal {
  display: none;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: none;
  width: 100%;
  height: 100%;
}

.overlay {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
}

#about-content,
#contact-content {
  overflow-y: scroll;
  position: relative;
  height: 100%;
  padding-bottom: 40px;
}

#about-container,
#contact-container {
  width: 65%;
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  margin: 50px auto 0;
}

#contact-container {
  max-width: 600px;
}

.fancy-title h4 {
  position: relative;
  display: block;
  padding: 0 0 10px;
  border-bottom: 2px solid #1abc9c;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
  font-feature-settings: "lnum";
}
.fancy-title h4 > span {
  color: #1abc9c;
  font-weight: 700;
}

#about-container p {
  line-height: 1.8;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #444;
}

.close {
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -2px;
  padding: 10px;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  -webkit-appearance: none;
}
.close:hover, .close:focus {
  opacity: 0.5;
  text-decoration: none;
  cursor: pointer;
}

#contact-container .close {
  box-shadow: none;
  border-radius: initial;
  width: auto;
  margin: 0;
  top: 10px;
  right: 10px;
}
#contact-container .close:hover, #contact-container .close:focus {
  box-shadow: none;
  transform: none;
}

/* Contact Form CSS
=====================================================================================================================
=====================================================================================================================*/
#contact-container {
  padding: 0;
  border: none;
}
#contact-container textarea {
  min-height: 53px;
  resize: vertical;
}

.modal--contact h1 {
  width: 100%;
  background: #1abc9c;
  padding: 20px;
  color: white;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
  border-radius: 3px 3px 0 0;
}
.modal--contact form {
  width: 100%;
  margin: 0 auto;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  padding: 0 0 40px;
  border-radius: 3px;
  color: #555;
  display: flex;
  flex-flow: column nowrap;
}
.modal--contact input,
.modal--contact textarea {
  font-family: inherit;
  font-size: 18px;
  margin: 28px 25px 10px;
  display: block;
  border: none;
  padding: 20px 0 10px;
  border-bottom: solid 1px #1abc9c;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #1abc9c 4%);
  background-position: calc(-100vw + 100%) 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: background 0.15s cubic-bezier(0.64, 0.09, 0.08, 1);
  overflow: hidden;
}
.modal--contact input::-webkit-input-placeholder,
.modal--contact textarea::-webkit-input-placeholder {
  -webkit-transition: transform 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.modal--contact input:focus::-webkit-input-placeholder,
.modal--contact textarea:focus::-webkit-input-placeholder {
  color: #1abc9c;
}
.modal--contact input:focus,
.modal--contact textarea:focus {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}
.modal--contact input:focus::-webkit-input-placeholder,
.modal--contact textarea:focus::-webkit-input-placeholder {
  font-size: 16px;
  transform: translateY(-20px);
  visibility: visible !important;
  opacity: 1;
}
.modal--contact input[type=email] ~ span.validation-text {
  position: absolute;
  visibility: hidden;
  font-size: 14px;
  margin-left: 25px;
  margin-top: -5px;
  color: white;
  transition: color 0.15s ease-in-out;
}
.modal--contact input[type=email]:not([value=""])::-webkit-input-placeholder {
  font-size: 16px;
  transform: translateY(-20px);
  visibility: visible !important;
  opacity: 1;
}
.modal--contact input[type=email]:not([value=""]):focus {
  background-position: 0 0;
}
.modal--contact input[type=email]:not([value=""]):focus::-webkit-input-placeholder {
  color: #1abc9c;
}
.modal--contact input[type=email]:not([value=""]):focus:not(:valid)::-webkit-input-placeholder {
  color: #E91E63;
}
.modal--contact input[type=email]:focus:not(:valid):not([value=""]) {
  border-bottom: solid 1px #E91E63;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #E91E63 4%);
}
.modal--contact input[type=email]:not(:focus):not(:valid):not([value=""]) {
  border-bottom: solid 1px #E91E63;
  background-position: 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #E91E63 4%);
}
.modal--contact input[type=email]:not(:focus):not(:valid):not([value=""])::-webkit-input-placeholder {
  color: #E91E63;
}
.modal--contact input[type=email]:not(:focus):not(:valid):not([value=""]) ~ span.validation-text {
  visibility: visible;
  color: #E91E63;
}
.modal--contact .flex {
  display: flex;
  align-items: stretch;
}
.modal--contact .flex textarea {
  line-height: 1.2;
}
.modal--contact button {
  transition: transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), box-shadow 0.2s cubic-bezier(0.64, 0.09, 0.08, 1);
  border: none;
  background: #1abc9c;
  cursor: pointer;
  border-radius: 3px;
  padding: 15px;
  font-size: 20px;
  color: white;
  margin: 30px auto 25px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.modal--contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}
.modal--contact button[type=submit] {
  min-width: 238px;
}
.modal--contact a {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  background: #1abc9c;
  display: inline-block;
  margin: 50px calc(50% - 21px);
  white-space: nowrap;
  padding: 13px;
  color: white;
  transition: all 0.2s cubic-bezier(0.64, 0.09, 0.08, 1);
  font-family: Lato, sans-serif;
  text-decoration: none;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}
.modal--contact a.a-phone {
  font-size: 18px;
}
.modal--contact a i {
  margin-right: 20px;
  transition: margin-right 0.2s cubic-bezier(0.64, 0.09, 0.08, 1);
}
.modal--contact a:hover {
  width: 134px;
  transform: translateX(-50px);
}
.modal--contact a:hover i {
  margin-right: 10px;
}

#contact-info {
  text-align: left;
  padding: 10px 20px;
}
#contact-info span {
  padding: 5px;
  display: inline-block;
  font-size: 18px;
}
#contact-info a {
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: 0;
  color: #1abc9c;
  margin: inherit;
  padding: 5px;
  box-shadow: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 92%, #1abc9c 100%) no-repeat;
  background-size: 100% 100%;
  background-position: -100vw 0;
}
#contact-info a[href*="mailto:"] {
  padding: 0;
}
#contact-info a:hover {
  width: inherit;
  transform: none;
  background-position: 100% 0;
}

/* Media Queries
=====================================================================================================================
=====================================================================================================================*/
.container {
  width: calc(100vw - 30px);
}

.customer-message {
  display: none !important;
}

@media (min-width: 768px) {
  .standard-img,
.retina-img {
    max-width: 100%;
  }

  .sector-links--art .company-sector__sector-list {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .col--half {
    width: 50%;
  }

  .col--third {
    width: 33.3333333333%;
  }

  .col--fourth {
    width: 25%;
  }

  .col--fifth {
    width: 20%;
  }

  .company-sector {
    display: flex;
    flex-flow: column nowrap;
  }
  .company-sector h2 {
    font-size: 60px;
  }
  .company-sector .company-sector__sector-list {
    flex-flow: row nowrap;
  }

  .sector-links--art .company-sector__sector-list::after {
    top: -20px;
    bottom: -20px;
    left: unset;
    right: -2px;
    width: 4px;
    height: auto;
    background: #6c6c6c;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1410px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #about-container {
    width: 85%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #about-container {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .col_half {
    padding: 20px 15px;
  }

  .standard-img {
    max-width: 200px;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: inline;
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  header {
    height: 120px;
  }
  header span {
    font-size: 20px;
  }
  header h1 {
    font-size: 48px;
  }

  .col_half {
    width: 100%;
    min-height: 300px;
  }
  .col_half.art-links::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #616161;
    position: absolute;
    bottom: -1px;
    right: inherit;
    top: inherit;
    left: 0;
  }

  .logo-container {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }

  footer {
    margin-top: 0;
  }

  #about-container {
    width: 85%;
  }
}
@media (max-width: 479px) {
  .container {
    width: 100% !important;
  }

  header {
    height: 100px;
  }
  header span {
    font-size: 18px;
  }
  header h1 {
    font-size: 38px;
  }

  .col_half {
    width: 100%;
    min-height: 300px;
  }
  .col_half.art-links::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #616161;
    position: absolute;
    bottom: 0;
    right: inherit;
    top: inherit;
    left: 0;
  }

  .logo-container {
    display: inline-table;
  }

  footer {
    margin-top: 0;
  }
  footer p.cc {
    font-size: 12px;
  }

  #about-container,
#contact-container {
    width: 80%;
  }

  #contact form {
    width: 100%;
  }
  #contact input,
#contact textarea {
    width: 85%;
    margin: 28px auto 10px;
  }
  #contact button {
    width: 85%;
  }
}
@media (max-width: 390px) {
  header {
    height: 90px;
  }
  header.container {
    padding: 5px 0;
  }
  header span {
    font-size: 16px;
    top: 10px;
  }
  header h1 {
    font-size: 34px;
    margin-top: 12px;
  }

  #about-container,
#contact-container {
    max-width: 90%;
  }

  #contact-container {
    width: 90%;
  }

  footer p.cc {
    font-size: 11px;
  }
}
@media (max-width: 340px) {
  header {
    height: 80px;
  }
  header .container {
    padding: 5px 0;
  }
  header span {
    font-size: 16px;
    top: 10px;
  }
  header h1 {
    font-size: 30px;
    margin-top: 10px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .standard-img {
    display: none;
  }

  .retina-img {
    display: inline-block;
  }
}
/* D and B verified link */
#dandb {
  padding: 0;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
}
#dandb:hover {
  background: none;
}/*# sourceMappingURL=style.css.map */