/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/
.clients-list {
    margin: auto;
    width: 50%;
}
.project-container {
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
    max-height: 60%;
}
.project-description {
    min-width: 200px;
    margin: auto;
    background-color: #fff;
    text-align: justify;
}
.project-media {
    min-width: 200px;
    margin: auto;
}
@media (max-width: 768px) {
    .project-container {
        grid-template-columns: auto;
        overflow: auto;
    }
    .project-description {
        width: 100%;
    }
    .project-media {
        width: 100%;
    }
    
}

.pub{
    text-align: center;
    margin: auto;
    padding: 20px;
}
.pub-title {
    font-family: "Open Sans", sans-serif;
    font-size: large;
}
.pub-venue {
    font-family: "Open Sans", sans-serif;
    font-size: small;
}
.pub-banner {
    font-weight: bold;
    color: goldenrod;
}

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
  
.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
  
.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #009cf2;
    bottom: 0;
    left: calc(50% - 20px);
}
  
.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}
  
/* Section with background
--------------------------------*/

.section-nobg {
    background: #fff;
    padding: 60px 0;
}

.section-bg {
    background: #f7f7f7;
    padding: 60px 0;
}

/* Section with background Images
--------------------------------*/

.section-img1 {
    background: url("../img/backgrounds/about-bg.jpg") center top no-repeat fixed;
}
.section-img1::before {
    background: rgba(255, 255, 255, 0.92);
}
.section-img2 {
    background: url("../img/backgrounds/facts-bg.jpg") center top no-repeat fixed;
}
.section-img2::before {
    background: rgba(255, 255, 255, 0.88);
}
.section-img3 {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/backgrounds/call-to-action-bg.jpg) fixed center center;
}

.section-bg-img {
    background-size: cover;
    padding: 60px 0;
    position: relative;
}
  
.section-bg-img::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 7;
}

.section-bg-img .container {
    position: relative;
    z-index: 8;
}
.section-bg-img .text-center {
    position: static;
}
