/*

Theme Name: PMV

/* Basic Elements */

:root {
  --primary-color: #17243e;
  --text-dark: #17243e;
  --tint-color: #E0924B;
  --text-light: #fafafa;
  --bg-light: #ffffff;
}

html {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}
body {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 700;
  font-family: 'aktiv-grotesk', sans-serif;
  line-height: 1.4;
  color:var(--primary-color);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
  padding-bottom: 30px;
  margin-top: 0;
}

@media (max-width: 480px) {
h2 {
    padding-bottom: 10px;
}
}

@media (max-width: 480px) {
  .hero-home h1 {
    font-size: 32px;
  }

  .hero-home h2 {
    font-size: 20px;
  }
}

h4 {
  font-size: 27px;
}

p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
}

hr {
  border-top: 1px solid #eee;
  opacity: 0.2;
}

.active {
  display: inherit !important;
}

.icon {
	font-size: 34px;
	color: #E0924B;
}

@media (min-width:481px) {
.mobile {
	display:none;
}
}
@media (max-width:480px) {
.desktop {
  display:none;
}
}

.services.card {
  	background-color: #17243e;
    color: #fff;
    border: 1px solid #17243e03;
    margin: 15px;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
}
@media (max-width:480px) {
  .services.card {
  	background-color: #17243e;
    color: #fff;
    border: 1px solid #17243e03;
    margin: 15px;
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
}
}

.sector.card {
  	background-color: #fff;
    color: #17243e;
    border: 1px solid #17243e1f;
    border-radius: 5px;
    margin: 15px;
	min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
}

a.col-sm-3 {
    margin-bottom: 30px;
}
a.col-sm-3:hover {
    text-decoration: none;
}

img.img-fluid {
    object-fit: cover;
}

@media (max-width:480px) {
.col-lg-6.about-phil {
    padding-bottom: 30px;
}
}

/* Navigation */

/* Static Nav - Enabled */

a.anchor {
  display: block;
  position: relative;
  top: -97px;
  visibility: hidden;
}

@media screen and (max-width: 1179px) {
  a.anchor {
    top: -71px;
  }
}

.nav-container {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 0 15px;
  background-color: #16253e;
  transition: 0.1s ease-out;
}


h1.site-identity {
  padding: 0px;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  transition: 0.1s ease-out;
  transform-origin: left;
}

@media (max-width: 480px) {
  h1.site-identity {
    font-size: 24px;
    width: 7.3em;
  }
}

.nav-scrolled {
  position: fixed;
  top: 0;
  background-color: var(--primary-color);
}

.nav-scrolled h1.site-identity {
  margin: 0.1em 0;
  transform: scale(0.8);
}

.nav {

  text-align: center;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.row-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-logo {
  display: inline-block;
  padding-left: 0px;
}

.nav-logo img {
  height: auto;
  max-width: 100%;
  width: 110px;
  margin: 5px auto 5px 0;
}

.nav-link {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  float: left;
  transition: transform 0.1s ease-out;
}

.nav-link-active {
  text-decoration: none !important;
  color: var(--tint-color);
  padding-bottom: 5px;
}


.nav-link:hover {
  text-decoration: none;
  color: var(--tint-color);
  transform: translateY(-2px);
}


.mobile-nav {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo img {
  height: auto;
  width: 100%;
  max-width: 100px;
  margin: 15px auto 15px 0;
}




.mobile-nav .mobile-menu {
 width: 250px;
 height: 100vh;
 background-color: var(--primary-color);
 position: absolute;
 top: 0;
 /*right: -300px;*/
 transition: .3s all;
 z-index: 99;
 padding: 30px 15px 0 15px;
 opacity: 0.0;
 display: none;

}

.show-mobile-menu {
  right: 0!important;
  display:block !important;
  opacity: 1.0 !important;
}

.mobile-nav-is-open {
  overflow: hidden;
  width: 100%;
}



.mobile-menu .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.5px;
  display: block;
  width: auto;
  margin: 0 10px 0 30px;
  text-align: left;
  padding-top: 15px;
  text-decoration: none;
  vertical-align: middle;
  float: none;
  height: 52px;
}

.mobile-menu .nav-link--active {
  text-decoration: none !important;
  color: #4a4a4a;
  border-top: none !important;
}

.mobile-menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
}

.mobile-menu .nav-link {
  display: block;
}

/* Hero and Slides */

.col-hero-text {
    padding: 100px;
}

.col-lg-6.col-hero-text img {
    width: 30%;
}
@media (max-width:480px) {
  .col-hero-text {
    padding: 150px 50px 50px;
}
  .col-lg-6.col-hero-text img {
    width: 50%;
}
}

.col-lg-6.about {
    padding: 100px 0 100px 100px;
}
@media (max-width:480px){
  .col-lg-6.about {
    padding: 30px 30px 0 30px;
}
}
.col-hero {
    height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


.hero-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-home-slide {
  position: absolute;
  z-index: 3;
/*   background: url('-/img/hero.png'); */
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #a9a9a9;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text-box {
  background-color: #ffffffaa;
  padding: 50px;
  margin-top: 146px;
  width:700px;
  max-width: 1200px;
}

.hero-headline {
  margin: 0 auto;
  top: 35%;
  vertical-align: middle;
  position: relative;
  text-align: center;
  color: var(--primary-color);
}

.hero-sub-headline {
  max-width: 80%;
  margin: 0 auto;
  top: 40%;
  vertical-align: middle;
  position: relative;
  text-align: center;
  color: var(--text-dark);
}


/* Content Styles */

.row-nav {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  float: none;
}

.row-padded {
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
  float: none;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-wrapper.about-text {
    padding-top: 90px;
}
@media (max-width:480px) {
  .content-wrapper.about-text {
    padding-top: 0;
}
}

.content-wrapper-left {
  max-width: 600px;
  display: block;
  padding-top: 100px;
  padding-bottom: 100px;
}

.content-wrapper-wide {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

button {
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  border: solid 0;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
}

.button-dark {
  background-color: #33336b;
  padding: 10px 35px;
}

.button-dark:hover {
  background-color: #1ab29b;
  color: #fff;
  text-decoration: none;
}

.button-light {
  background-color: #1ab29b;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  border: solid 0;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  display: inline-block;
  font-weight: 400;
}

.button-light:hover {
  background-color: #52a8ff;
  color: #fff;
  text-decoration: none;
}

.heading-alternate {
  font-weight: 400;
  font-size: 30px;
}

.blackstone-logo {
  max-width: 250px;
  margin: 50px auto;
  height: auto;
}


/* Sections */

#about {
  background-color: var(--bg-light);
}

#about p, #about h2 {
  color: var(--text-dark);
}

#about p {
  margin-bottom: 30px;
}

#about p.statement {
  margin-top: 60px;
}

#about p.statement:before {
  content: '';
  display: block;
  background-size: cover;
  height: 2em;
  width: 2em;
  margin: 0 auto 1em;
}

#about p#statement-1:before {
  background-image: url(-/img/light-bulb.svg);
}

#about p#statement-2:before {
  background-image: url(-/img/project.svg);
}

#about p#statement-3:before {
  background-image: url(-/img/team.svg);
}

#about p#statement-4:before {
  background-image: url(-/img/strategy.svg);
}

@media screen and (min-width: 768px) {
  #about div.statements-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  #about div.statements-wrap p {
    width: 40%;
  }
}

#team {
 padding-top: 100px;
 padding-bottom: 100px;
}

#team .content-wrapper-wide {
  padding-top: 0;
}

@media (min-width: 992px) {

  .team-member {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .team [class*='col-'] {
    padding: 60px;
  }

}

.team-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}

.team-header h3 {
  margin-bottom: 0;
}

.team [class*='col-'] {
  padding: 30px;
}

.team .quals {
  opacity: 0.8;
  font-size: 16px;
  display: block;
}

div#about-phil {
   padding: 0 20% 5% 20%;
}

#about-phil h3{
  margin-bottom:30px;
}
@media (max-width:480px) {
div#about-phil {
	padding: 0 10% 5% 10%;
}
}

#services {
  background-color: #fff;
  padding: 5% 20% 5% 20%;
}
@media (max-width:480px) {
#services {
  background-color: #f5f7f8;
  padding: 15% 10% 5% 10%;
}
}

div#sectors {
  background-color: #17243e;
  color:#fff;
  padding: 5% 20% 5% 20%;
}

@media (max-width:480px) {
  div#sectors {
  background-color: #17243e;
  color:#fff;
  padding: 15% 10% 5% 10%;
}
}

#projects {
  background-color: #f5f7f8;
  padding: 5% 20% 5% 20%;
}
@media (max-width:480px) {
#projects {
  background-color: #f5f7f8;
  padding: 15% 10% 5% 10%;
}
}

#projects .project-slide {
  width: 600px;
  height: 400px;
  background-size: cover;
}

img.project-img {
    width: 100%;
    height: 200px;
    margin: 5px;
}

.splide__pagination {
    bottom: -2em;
}

.splide__pagination__page.is-active {
    background: #555;
}

span.service {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
	font-weight: bold;
}

span.service:last-child {
  margin-bottom: 0;
}

.project-slide-overlay, .project-slide.is-active .project-slide-overlay:hover {
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-out;
  max-width: 100vw;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
}

.project-slide.is-active .project-slide-overlay {
  background-color: rgba(255,255,255,0.3);
}


footer h1.site-identity {
  background-color: var(--text-light);
  color: var(--primary-color);
  font-size: 28px;
  width: 7em;
  margin: 20px auto;
}

#footer {
  background-color: var(--primary-color);
  margin: 0 -15px;
  padding-bottom: 20px;
}

#footer, #footer a {
  color: var(--text-light);
}

#footer .content-wrapper {
  padding-top: 60px;
  padding-bottom: 20px;
}
p.footer-copyright {
    font-size: 14px;
}

/* Responsive Styles */

@media only screen and (min-width: 1180px) {
  .hamburger {
    display: none!important;
  }
  .mobile-nav-logo {
    display: none;
  }
}


@media only screen and (max-width: 1179px) {
  .hero-sub-headline {
    top: 40%;
    max-width: 85%;
  }
  .hero-sub-headline h1 {
    font-size: 48px;
  }
  .mobile-hide {
    display: none;
  }

  .hamburger {
    /*position: absolute;*/
    padding: 0;
    right: 0px;
    z-index: 999;
    top: 23px;
  }

  .hamburger-box {
    vertical-align: middle;
  }

  .hamburger-inner {
    width: 30px;
  }

  .desktop-nav {
    display: none;
  }
}


@media only screen and (max-width: 991px) {
  .nav {
    margin-top: 0px;
  }
  .hero-sub-headline h1 {
    font-size: 44px;
  }
  .nav-logo {
    padding-left: 15px;
  }
  .nav-logo img {
    max-width: 190px;
    margin: 15px auto;
  }
  .nav {
    padding-bottom: 15px;
  }
  .nav div {
    float: none;
    margin: 0 auto;
    max-width: 99%;
  }
}

@media only screen and (max-width: 768px) {
  .hero-headline {
    top: 30%;
  }
  .hero-sub-headline {
    top: 25%;
    max-width: 95%;
  }
  .hero-sub-headline h1 {
    font-size: 42px;
  }
  .nav-logo {
    padding-left: 15px;
  }
  .nav-logo img {
    max-width: 190px;
    margin: 15px auto;
  }
  .nav {
    padding-bottom: 15px;
  }
  .nav div {
    float: none;
    margin: 0 auto;
    max-width: 99%;
  }

}



@media only screen and (max-width: 480px) {
  .hero-headline {
    top: 30%;
  }
  .hero-sub-headline {
    top: 30%;
    max-width: 95%;
  }
  .hero-sub-headline h1 {
    font-size: 32px;
  }

  #team .content-wrapper-left, #board .content-wrapper-left {
    padding: 30px 30px 30px 15px;
  }
  .nav-logo {
    padding-left: 15px;
  }
  #footer .content-wrapper-left {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 380px) {

  .hero-sub-headline {
    top: 25%;
    max-width: 95%;
  }
  .hero-sub-headline h1 {
    font-size: 28px;
  }

}