.full-width {
  max-width: 100% !important; }

.button {
  background: #40444f;
  border-radius: 100px;
  display: block;
  width: 150px;
  padding: 10px;
  margin: auto;
  text-align: center;
  color: #fff;
  cursor: pointer; }

.orange {
  background-color: #e05b36;
  background-color: #ec855c;
  position: absolute;
  top: 50%;
  z-index: 1; }

img.logo {
  width: 250px;
  margin: 15px auto;
  text-align: center;
  display: block; }

.heroImage {
  width: 100%; }

.california,
.nevada {
  background-position: center center;
  background-color: #000;
  height: 100vh;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 6-9 */
  display: flex;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s; }
  .california:hover,
  .nevada:hover {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none; }

.california {
  background-image: url("../images/CA-Background.jpg"); }

.nevada {
  background-image: url("../images/NV-Background.jpg"); }

.dialog,
.dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.dialog {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; }

.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(55, 58, 71, 0.9);
  opacity: 0;
  transition: opacity 0.3s; }

.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto; }

.dialog__content {
  width: 80%;
  max-width: 1000px;
  min-width: 290px;
  background: #fff;
  padding: 3em;
  text-align: left;
  position: relative;
  z-index: 5;
  opacity: 0;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  font-size: 14px; }
  .dialog__content fieldset {
    width: 75%;
    padding: 5%;
    background-color: #efefef;
    margin: auto; }
  .dialog__content label {
    margin-bottom: 5px;
    font-weight: bold; }
  .dialog__content legend {
    color: #1b9ee9;
    font-weight: bold;
    font-size: 2em;
    padding-bottom: 20px;
    margin-bottom: 0px; }
  .dialog__content .icon {
    margin-bottom: 10px;
    text-align: center; }

.dialog--open .dialog__content {
  pointer-events: auto; }

/* Content */
.dialog h2 {
  margin: 0;
  font-weight: 400;
  font-size: 2em;
  padding: 0 0 2em;
  margin: 0; }

.dialog.dialog--open .dialog__content,
.dialog.dialog--close .dialog__content {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.dialog.dialog--open .dialog__content {
  -webkit-animation-name: anim-open;
  animation-name: anim-open; }

.dialog.dialog--close .dialog__content {
  -webkit-animation-name: anim-close;
  animation-name: anim-close; }

@-webkit-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1); } }

@keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes anim-close {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1); } }

@keyframes anim-close {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1);
    transform: scale3d(0.9, 0.9, 1); } }

button.action {
  margin: -35px;
  position: absolute;
  right: 8%;
  top: 0; }
  button.action:hover {
    cursor: pointer; }
  button.action svg {
    width: 25px;
    fill: #388694; }
    button.action svg:hover {
      fill: #20364c; }

@media only screen and (max-width: 40em) {
  .dialog__content {
    width: 95%;
    max-height: 95%;
    padding: 1em 1em; }
    .dialog__content fieldset {
      width: 100%; }
  button.action {
    float: right;
    margin: 0px; } }

@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .dialog__content {
    width: 95%;
    max-height: 95%;
    padding: 1em 1em; }
    .dialog__content fieldset {
      width: 100%; }
  button.action {
    float: right;
    margin: 0px; } }

body.modal-open {
  overflow: hidden; }

.welcome-button {
  width: 50%;
  text-align: center;
  float: left;
  background-color: #798f9a;
  padding: 10px;
  color: white;
  font-weight: bold; }
  .welcome-button:hover {
    background-color: #e05b36; }

.california-button {
  border-radius: 0px 0px 0px 5px;
  border-right: 1px solid #e0e0e0; }

.nevada-button {
  border-radius: 0px 0px 5px 0px; }

.welcome-message {
  width: 20%;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 41vh;
  left: 40%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 17px -8px rgba(0, 0, 0, 0.8); }
  .welcome-message p {
    text-align: center;
    color: #e05b36;
    font-weight: bold;
    font-size: 16px; }

.text-link {
  text-decoration: underline; }

nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  padding: 15px; }
  nav ul li,
  nav ul li a {
    display: inline;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px;
    text-decoration: none;
    padding-bottom: 50px;
    font-weight: bold; }
  nav ul li a {
    color: #388694; }
  nav img {
    width: 50px;
    display: inline; }
  nav img.header-logo {
    width: 180px; }
  nav img.state {
    max-width: none;
    width: 110px; }

.main-nav {
  margin: auto; }

@media only screen and (max-width: 40em) {
  nav {
    display: none; } }

@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  nav {
    display: none; } }

.state-container {
  width: 55px;
  overflow: hidden; }
  .state-container img {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.1s ease-in-out; }
    .state-container img:hover {
      transform: translate3d(-55px, 0px, 0px);
      cursor: pointer; }

.state-container-nv {
  width: 55px;
  overflow: hidden; }
  .state-container-nv img {
    transform: translate3d(-55px, 0px, 0px);
    transition: transform 0.1s ease-in-out; }
    .state-container-nv img:hover {
      transform: translate3d(0px, 0px, 0px);
      cursor: pointer; }

.ticket-button svg {
  position: relative;
  left: -5px;
  top: 2px; }

a#ticket {
  background: #e05b36;
  border-radius: 50px;
  padding: 12px 15px 12px 20px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-decoration: none;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  a#ticket:hover {
    background: #20364c;
    color: #fff; }

ul li.levelOne:hover > a {
  background-color: #40444f;
  border-radius: 5px 5px 0 0; }

ul li:hover > a {
  color: white; }

nav ul li:hover > ul li a {
  min-height: 30px;
  display: inline-block;
  padding: 0px 10px;
  color: #fff; }

nav ul li:hover > ul {
  display: flex;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  padding-bottom: 0px;
  height: auto; }

nav ul ul {
  background: #e0e0e0;
  padding: 0;
  text-align: center;
  display: none;
  width: 100%;
  position: absolute;
  left: 0px;
  z-index: 1;
  padding-bottom: 0px;
  height: 0px; }

nav ul li ul li {
  padding: 0px; }

.nav-bar-item {
  width: 20%;
  border-right: 1px solid rgba(8, 24, 34, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  box-shadow: 0px 4px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #40444f;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #e0e0e0;
  padding: 10px;
  height: 225px; }
  .nav-bar-item p {
    color: white; }
  .nav-bar-item h2 {
    color: white; }
    .nav-bar-item h2:hover {
      color: 0; }
  .nav-bar-item.why-important {
    width: 25%;
    padding: 20px 10px 10px 10px; }
  .nav-bar-item:hover {
    background-color: #343842;
    color: 0; }
    .nav-bar-item:hover h2 {
      font-size: 1.25em;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s;
      margin-bottom: 0px;
      color: white; }

.QL-List li {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 125px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  box-shadow: 0px 4px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #40444f;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .QL-List li:hover {
    background-color: #343842; }
  .QL-List li a:hover {
    color: white; }
  .QL-List li img {
    display: block;
    margin: 10px auto; }

#step5,
#step6,
#step7,
#step8 {
  background-image: none;
  min-height: 230px; }
  #step5 img,
  #step6 img,
  #step7 img,
  #step8 img {
    display: block;
    margin: 10px auto; }

#description.nav-bar-item {
  background-image: none;
  padding: 10px; }
  #description.nav-bar-item h2 {
    font-size: 1em;
    text-transform: none; }
  #description.nav-bar-item:hover h2 {
    font-size: 1em; }

ul .nav-bar-item:last-child {
  border-right: 0px; }

.back-button {
  color: #e05b36;
  text-transform: uppercase; }
  .back-button a {
    text-decoration: none;
    color: #e05b36;
    margin-left: 20px;
    -webkit-transition: 1;
    -moz-transition: 1;
    -o-transition: 1;
    -ms-transition: 1;
    transition: 1; }
    .back-button a:hover {
      margin-left: 15px; }
    .back-button a svg {
      width: 27px;
      fill: #ec855c;
      height: 11px; }

.siteNotification p {
  color: white;
  background-color: #e05b36;
  text-align: center;
  padding: 15px; }
  .siteNotification p a {
    color: white; }

.embed-container {
  position: relative;
  padding-bottom: 41.6%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.quick-links,
.quick-links-mobile {
  background: #20364c;
  padding: 60px;
  background-size: cover;
  background-image: url("/images/quick-links-bg-pattern.svg"); }

@media only screen and (min-width: 1024px) {
  .quick-links p {
    height: 100px; } }

/* min-width 641px, medium screens */
.DIY-QL,
.DIY-QL-Mobile,
.DIY-Contractor,
.DIY-Contractor-Mobile,
.Utility-Operator,
.Utility-Operator-Mobile {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  margin: 25px auto; }

a.button {
  background: #388694;
  width: 100%;
  margin: 10px auto;
  text-decoration: none;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s; }
  a.button:hover {
    background: #40444f; }

img.diy-icon {
  position: absolute;
  width: 180px; }
  img.diy-icon.contractor {
    top: -60px;
    left: 140px;
    -ms-transform: rotate(12deg);
    /* IE 9 */
    -webkit-transform: rotate(12deg);
    /* Chrome, Safari, Opera */
    transform: rotate(12deg); }
  img.diy-icon.utility-operator {
    top: -60px;
    left: 240px;
    -ms-transform: rotate(18deg);
    /* IE 9 */
    -webkit-transform: rotate(18deg);
    /* Chrome, Safari, Opera */
    transform: rotate(18deg);
    background-color: transparent;
    padding: 0;
    margin: 0; }
  img.diy-icon.diyer {
    top: -50px;
    left: -20px;
    -ms-transform: rotate(-15deg);
    /* IE 9 */
    -webkit-transform: rotate(-15deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-15deg); }

.hp-links-container {
  background: #e0e0e0;
  padding: 60px;
  position: relative; }

.quick-links-mobile {
  display: none; }

.mobile-icon {
  display: none;
  margin: 10px auto 13px; }

@media only screen and (max-width: 40em) {
  .hp-links-container {
    padding: 40px 20px; }
  .diy-icon {
    display: none; }
  .mobile-icon {
    display: block; }
  .quick-links {
    padding: 40px 20px;
    display: none; }
  .quick-links-mobile {
    display: block; }
    .quick-links-mobile h1 {
      padding-top: 0px; }
  .DIY-QL-Mobile,
  .DIY-Contractor-Mobile,
  .Utility-Operator-Mobile {
    padding: 5px 20px;
    margin: 15px auto; } }

.hp-link,
#ticket-copy-expand,
#utility-member-expand {
  background: #ffffff;
  border: 1px solid rgba(150, 150, 150, 0.73);
  border-radius: 12px;
  margin: 5px auto;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px; }
  .hp-link:hover,
  #ticket-copy-expand:hover,
  #utility-member-expand:hover {
    background: #388694;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
  .hp-link:hover #TicketCopy,
  .hp-link:hover #UtilityMember,
  .hp-link:hover #MarkingGuidlines,
  .hp-link:hover #EventsAndPresentations,
  .hp-link:hover #DesignResarchForm,
  .hp-link:hover #TicketResarchForm,
  .hp-link:hover #TicketResarchForm,
  .hp-link:hover #WebTMSInfoRequest,
  .hp-link:hover #DesignInquirySignUp,
  .hp-link:hover #BoardOfDirectorPortal,
  .hp-link:hover #MCDWalkThrough,
  .hp-link:hover #MemberInvoice,
  .hp-link:hover #ReportIncorrectExcavatorContactInfo,
  .hp-link:hover #faq,
  .hp-link:hover #HoursAndHolidays,
  .hp-link:hover #DirtReporting,
  #ticket-copy-expand:hover #TicketCopy,
  #ticket-copy-expand:hover #UtilityMember,
  #ticket-copy-expand:hover #MarkingGuidlines,
  #ticket-copy-expand:hover #EventsAndPresentations,
  #ticket-copy-expand:hover #DesignResarchForm,
  #ticket-copy-expand:hover #TicketResarchForm,
  #ticket-copy-expand:hover #TicketResarchForm,
  #ticket-copy-expand:hover #WebTMSInfoRequest,
  #ticket-copy-expand:hover #DesignInquirySignUp,
  #ticket-copy-expand:hover #BoardOfDirectorPortal,
  #ticket-copy-expand:hover #MCDWalkThrough,
  #ticket-copy-expand:hover #MemberInvoice,
  #ticket-copy-expand:hover #ReportIncorrectExcavatorContactInfo,
  #ticket-copy-expand:hover #faq,
  #ticket-copy-expand:hover #HoursAndHolidays,
  #ticket-copy-expand:hover #DirtReporting,
  #utility-member-expand:hover #TicketCopy,
  #utility-member-expand:hover #UtilityMember,
  #utility-member-expand:hover #MarkingGuidlines,
  #utility-member-expand:hover #EventsAndPresentations,
  #utility-member-expand:hover #DesignResarchForm,
  #utility-member-expand:hover #TicketResarchForm,
  #utility-member-expand:hover #TicketResarchForm,
  #utility-member-expand:hover #WebTMSInfoRequest,
  #utility-member-expand:hover #DesignInquirySignUp,
  #utility-member-expand:hover #BoardOfDirectorPortal,
  #utility-member-expand:hover #MCDWalkThrough,
  #utility-member-expand:hover #MemberInvoice,
  #utility-member-expand:hover #ReportIncorrectExcavatorContactInfo,
  #utility-member-expand:hover #faq,
  #utility-member-expand:hover #HoursAndHolidays,
  #utility-member-expand:hover #DirtReporting {
    fill: white;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
  .hp-link .icon,
  #ticket-copy-expand .icon,
  #utility-member-expand .icon {
    margin: auto;
    text-align: center; }

@media only screen and (max-width: 64em) {
  .hp-link {
    height: 220px; } }

#marking-guidelines-expand,
#design-inquiry-login-expand,
#membership-application-expand,
#faq-expand,
#EventsAndPresentations-expand,
#DesignResarchForm-expand,
#ticket-resarch-form-expand,
#webtms-info-request-expand,
#design-inquiry-sign-up-expand,
#board-of-director-portal-expand,
#mcd-walk-through-expand,
#member-invoice-expand,
#report-incorrect-excavator-contact-info-expand,
#hours-and-holidays-expand,
#direct-reporting-expand,
#CGA-Best-Practices {
  background: #ffffff;
  border: 1px solid rgba(150, 150, 150, 0.73);
  border-radius: 12px;
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px !important; }

.nopadding {
  padding: 0 !important; }

.blue {
  background: #388694;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s; }
  .blue h2 {
    color: #fff; }
  .blue g {
    fill: white; }

/*
.arrow:after {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid #f00;
content: '';
top: 10px;
left:0;
position: relative;
}

*/
.white-icon {
  fill: white; }

body.modal-open {
  overflow: hidden; }

.btn {
  margin: auto;
  text-align: center;
  background-color: #40444f;
  padding: 20px;
  border-radius: 50px;
  min-width: 150px;
  color: #fff;
  display: block; }
  .btn:hover {
    -webkit-box-shadow: 0px 2px 81px -50px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 81px -50px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 81px -50px rgba(0, 0, 0, 0.75); }

select {
  -webkit-appearance: none; }

#slideshow {
  margin: auto;
  position: relative;
  width: 100%;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  background-color: #1c384c;
  text-align: center;
  display: none;
  height: 165px; }

#slideshow > div {
  height: 165px;
  color: #fff; }

@media only screen and (max-width: 40em) {
  #slideshow {
    display: block; } }

/* header */
.mobile-header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 3; }

.mobile-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff; }

.mobile-header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none; }

.mobile-header li a:hover,
.mobile-header .menu-btn:hover {
  background-color: #f4f4f4; }

li a.get-a-ticket {
  text-align: center;
  background-color: #40444f;
  color: white; }
  li a.get-a-ticket:hover {
    background: #388694;
    color: #fff;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }

.mobile-header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none; }

/* menu */
.mobile-header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out; }

/* menu icon */
.mobile-header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none; }

.mobile-header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px; }

.mobile-header .menu-icon .navicon:before,
.mobile-header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%; }

.mobile-header .menu-icon .navicon:before {
  top: 5px; }

.mobile-header .menu-icon .navicon:after {
  top: -5px; }

/* menu btn */
.mobile-header .menu-btn {
  display: none; }

.mobile-header .menu-btn:checked ~ .menu {
  max-height: 580px; }

.mobile-header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent; }

.mobile-header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg); }

.mobile-header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg); }

.mobile-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.mobile-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0; }

/* 48em = 768px */
@media (min-width: 64em) {
  .mobile-header {
    display: none; }
  .mobile-header li {
    float: left; }
  .mobile-header li a {
    padding: 20px 30px; }
  .mobile-header .menu {
    clear: none;
    float: right;
    max-height: none; }
  .mobile-header .menu-icon {
    display: none; } }

/* section */
.mobile-section {
  overflow: hidden;
  margin: auto;
  max-width: 1400px; }

.mobile-section a {
  position: relative;
  float: left;
  width: 100%; }

.mobile-section a img {
  width: 100%;
  display: block; }

.mobile-section a span {
  color: #fff;
  position: absolute;
  left: 5%;
  bottom: 5%;
  font-size: 2em;
  text-shadow: 1px 1px 0 #000; }

.mobile-section-split a span {
  display: none; }

.mobile-section-split a:hover span {
  display: block; }

/* 48em = 768px */
@media (min-width: 64em) {
  .mobile-section-split a {
    width: 50%; } }

.modalIcon {
  fill: #e05b36;
  vertical-align: -0.15em;
  overflow: hidden;
  text-align: center; }
  .modalIcon svg {
    max-height: 40px;
    max-width: 40px; }

.icon {
  fill: #e05b36;
  vertical-align: -0.15em;
  overflow: hidden;
  text-align: center; }
  .icon:hover {
    fill: white; }
  .icon svg {
    max-height: 40px;
    max-width: 40px; }

.largeIcon:hover {
  fill: #e05b36; }

.largeIcon svg {
  max-width: 55px;
  max-height: 55px; }

#viewotherservices.icon {
  fill: #e05b36; }
  #viewotherservices.icon:hover {
    fill: white; }

.hp-link:hover {
  cursor: pointer; }

.hp-link:hover .icon {
  fill: white; }

.modals-container {
  position: relative;
  z-index: 50; }

.reveal-overlay {
  background-color: rgba(10, 10, 10, 0.85); }

.reveal {
  border-radius: 5px;
  top: 50% !important;
  transform: translateY(-50%) !important;
  max-height: 90vh;
  max-width: 950px !important; }

.employee h1 {
  font-size: 15px;
  margin-bottom: 2px;
  color: #e05b36;
  padding-top: 10px; }

.employee h2 {
  padding-bottom: 2px;
  text-transform: none;
  font-size: 15px; }

.employee .phone-number,
.employee .emailaddress {
  display: block;
  text-align: center;
  color: #40444f; }

.imageMask {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto 0; }
  .imageMask img {
    max-width: 130%; }

.content-container {
  background: #ffffff;
  border: 1px solid rgba(150, 150, 150, 0.73);
  border-radius: 12px;
  margin: 5px auto;
  padding: 30px; }

.blog-post {
  max-width: 900px;
  margin: auto; }
  .blog-post h1 {
    text-align: left;
    color: #e05b36;
    margin-bottom: 0px; }
  .blog-post h2 {
    text-align: left;
    font-size: 15px;
    margin-top: 0px;
    color: #388694; }

.imageRow {
  width: 95%;
  margin: 10px auto; }

body {
  font-family: sans-serif; }

h1 {
  font-family: 'ProximaNova-Bold' sans-serif;
  font-size: 30px;
  color: #40444f;
  letter-spacing: 0;
  text-align: center;
  padding-top: 30px; }

h2 {
  /* Quick Links Copy 5: */
  font-family: 'ProximaNova-Bold' sans-serif;
  font-size: 18px;
  color: #40444f;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase; }

.propercase {
  text-transform: none; }

p {
  font-size: 14px;
  color: #242424;
  letter-spacing: 0.5px;
  line-height: 21px; }

.DIY-QL p, .DIY-Contractor p, .Utility-Operator p {
  text-align: center; }

footer {
  background: #20364c;
  min-height: 200px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 3;
  background-size: cover;
  background-image: url("/images/quick-links-bg-pattern.svg"); }
  footer li {
    list-style: none;
    text-align: center;
    padding: 3px; }
    footer li h2 {
      margin: 12px auto 7px;
      color: white; }
  footer #logo {
    max-width: 125px;
    padding: 0 15px;
    margin: auto;
    margin-top: -40px; }

.social-icons img {
  width: 40px; }
  .social-icons img:hover {
    width: 50px;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s; }
