.project-desc{
    background: #f7f7f7;
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 150px;
}
.project-logo-main-images{
    width: 78%;
}
.website-btn {
    background-color: #385A60;
    border: 1px solid #385A60;
}
.project-logo-desc{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: #385A60;
    text-transform: uppercase;
    text-align: left;
    height: 100%;
    padding: 0 20px 0 0px;
}
.main-image-wide,.main-image-portrait{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    border-radius: 5px;
    transition: .4s all;
    opacity: 0;
}
.location {
    width: 100%;
}
.location a.website-btn {
    width: 100%;
}
.main-image-wide:hover,.main-image-portrait:hover{
    box-shadow: none;
}
.main-image-wide{
    width: 60%;
    float: right;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}
.main-image-portrait{
    width: calc(40% - 110px);
    float: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin-left: 70px;
}
.main-image-wide img{
    width: 100%;
}
.project-logo-desc p.website-p{
    text-align: left;
}
.project-logo-desc h5{
    font-family: 'bold';
    padding-left: 20px;
    font-size: 18px;
}
.project-logo-desc p.website-p{
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 14px;
    /* width: 90%; */
}
.project-logo-desc p.website-p:last-child{
    margin-bottom: 0;
}
.project-logo{
    width: 100%;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    box-shadow: 0px 0px 5px 0px rgba(186,186,186,1);
    margin-bottom: 40px;
}

.project-images{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 70px 0;
    align-items: flex-start;
    justify-content: space-between;

}
.project-images a{
    width: calc(33.333333% - 20px);
    margin-right: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
.video{
    position: relative;
}
.video::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(000,000,000,.4);
    opacity: 0;
    transition: .4s all;
}
.video:hover::before{
    opacity: 1;
}
.video img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
}
.explore-title{
    margin-top: 175px;
}
@media (min-width:320px) and (max-width:768px){
    .project-logo-main-images{
        width: 100%;
        padding: 0 20px;
    }
    .main-image-wide, .main-image-portrait{
        height: 50vh;
    }
    .main-image-wide{
        width: 100%;
        margin-left: 0px;
        margin-bottom: 30px;
        
    }
    .main-image-portrait{
        width: 100%;
        margin-left: 0;
    }
    .project-logo-desc{
        width: 100%;
        padding: 20px;
    }
    .project-images{
        padding: 0 20px;
    }
    .project-images a{
        width: 100%;
        margin-right: 0;
    }
    .project-logo {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}