/* ==========================================================================

  custom-people-process-tools-hero.css
  
  This stylesheet styles the custom module `People + Process + Tools - Hero`

/* ========================================================================== */




/*-------------------------- Featured Services  -----------------------*/ 

.ppt-hero {
    display: flex;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: contain;
}
@media (min-width: 1825px) {
    .ppt-hero {
        background-size: 50%;
    }
}

.ppt-hero-content {
    background-color: #1B1E20;
    color: #ffffff;
    width: 50%;
    padding: 40px 4% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ppt-hero-content h1 {
    font-size: 58px;
    color: #ffffff;
    border-bottom: 2px solid #3E4548;
    padding-bottom: 40px;
}

.ppt-hero-content h2 {
    color: #7D8C93;
}

.ppt-hero-text {
    font-size: 38px;
    font-weight: 300;
}

.body-container .ppt-hero-text ul {
    margin-bottom: 0;
    padding-left: 0;
}
.body-container .ppt-hero-text ul li {
    list-style: none;
    line-height: 1;
}

.ppt-hero-content a {
    color: #9AB7E8;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}
.ppt-hero-content a:hover {
    color: #ffffff;
    
-webkit-transition: color 0.8s ease;
-moz-transition: color 0.8s ease;
-o-transition: color 0.8s ease;
-ms-transition: color 0.8s ease;
transition: color 0.8s ease;

}

.ppt-hero-image {
    display: none;
}

@media (max-width: 950px) {
    .ppt-hero {
        background-size: cover;
    }
    .ppt-hero-content {
        width: 100%;
        background-color: rgba(27, 30, 32, 0.8);
    }
}

@media (max-width: 480px) {
    .ppt-hero-content {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .ppt-hero-content h2 {
        margin-top: 10px;
    }
    .ppt-hero-text {
        font-size: 26px;
    }
    .ppt-hero-content a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}






