*
{
    box-sizing: border-box;
}
body{
	min-width: unset;
    font-family: "Open Sans","Arial",sans-serif;
    overflow: auto;
}
.landing-page-main
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background:url(../images/landing-page-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.landing-page-main::before
{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0,0,0,0.7);
}
.container-landing
{
    position: relative;
    width: 100%;
    padding: 0 25px;
}
.scrolldown
{
    width: 135px;
    text-align: center;
}
.landing-wrapper
{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}
.landing-project-current
{
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: rgba(255,255,255,0.7);
    padding: 20px 0;
}
.landing-project-current h2
{
color: #005a95;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.landing-project-current img
{
    max-width: 280px;
}
.landing-project-current h4
{
    color: #005a95;
    font-size: 24px;
}
.landing-project-current .site-btn a
{
    background:#ec894d;
    padding: 15px;
    display: inline-block;
    margin-top: 20px;
    color: #fff;
}
.landing-logo img
{
    max-width: 170px;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (max-width:600px) 
{
    .landing-project-current
    {
        padding: 15px 0;
        max-width: 310px;
    }   
    .landing-project-current h2
    {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .landing-project-current img {
        max-width: 230px;
    }
    .landing-project-current h4
    {
        font-size: 18px;
    }
    .landing-project-current .site-btn a
    {
        padding: 10px;
        font-size: 14px;
        margin-top: 15px;
    }
    .landing-logo img {
        max-width: 120px;
        margin-bottom: 20px;
    }
}