@charset "utf-8";
/* CSS Document */

*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 300;
	src: url(fonts/FuturaPTLight.otf);
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 400;
	src: url(fonts/FuturaPTBook.otf);
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 500;
	src: url(fonts/FuturaPTMedium.otf);
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 600;
	src: url(fonts/FuturaPTDemi.otf);
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 700;
	src: url(fonts/FuturaPTHeavy.otf);
}

@font-face	{    
	font-family: futura pt;
    font-style: normal;
	font-weight: 800;
	src: url(fonts/FuturaPTExtraBold.otf);
}

/*.wrapper    {
    position: relative;
    min-height: 100%;
    min-width: 100%;
}*/

/* Header and Navbar */

header  {
    background-color: #43484b;
    padding: 15px 0;
    text-align: center;
    overflow: auto;
    
}

header h1 {
    font-family: futura pt;
    font-size: 35px;
    font-weight: 700;
}

header h1 a    {
    text-decoration: none;
    color: #fff;
    float: none; 
}

#language {
    display: none;
    font-family: futura pt;
    font-size: 20px;
    font-weight: 600;
    float: none;
    margin: 15px 0;
}

#language a   {
    display: inline;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    transition: 0.5s;
}

#language .active   {
    background-color: white;
    color: #43484b;
}

#language a:hover {
    background-color: white;
    color: #43484b;
}

nav {
    display: none;
    font-family: futura pt;
    font-size: 20px;
    font-weight: 600;
    float: none;
    margin: 15px 0;
}

nav a   {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border-top: 1px solid #909090;
    transition: 0.5s;
}

nav a:last-child	{
	border-bottom: 1px solid #909090;
}

nav a:hover {
    background-color: white;
    color: #43484b;
}

/* Home */

#intro {
    background: url(images/banner.jpg) no-repeat left top;
    min-height: 300px;
    background-size: cover;
    color: white;
    text-align: center;
}

#intro h2   {
    font-size: 55px;
    font-weight: 700;
    font-family: futura pt;
    padding-top: 100px;
}

#intro p    {
    font-size: 25px;
    font-weight: 600;
    font-family: futura pt;
    text-transform: uppercase;
}

#info   {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 25px;
}

#info img   {
    width: 200px;
    border-radius: 120px;
    border: 5px solid #43484b;
}

#info h2    {
    font-size: 40px;
    font-weight: 500;
    font-family: futura pt;
    text-transform: uppercase;
    color: #43484b;
}

#info p {
    font-size: 22px;
    font-weight: normal;
    font-family: futura pt;
    color: #43484b;
    padding-left: 25%;
    padding-right: 25%;
}

/* Examples  */

#examples    {
    text-align: center;
    padding: 25px 0;
    font-family: futura pt;

}

#examples h2 {
    font-weight: 500;
    font-size: 40px;
    text-transform: uppercase;
    color: #43484b;
    padding-bottom: 15px;
}

#example-thumbnails  {
    margin: 0 10%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

#example-thumbnails img   {
    width: 100%;
}

/* Contact */

#personal-info  {
    text-align: center;
    padding: 15px 0;
    font-family: futura pt;
}

#personal-info h2   {
    color: #43484b;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

#personal-info p    {
    color: #43484b;
    font-size: 20px;
    font-weight: normal;
    text-decoration: none;
}

#personal-info a    {
    text-decoration: underline;
    color: #43484b;
}

#personal-info img  {
    max-width: 100%;
}

#contact    {
    text-align: center;
    padding: 25px 0;
    font-family: futura pt;
}

#contact h2 {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: #43484b;
}

#contact form   {
    font-size: 20px;
    color: #43484b;
}

form input, form textarea	{
	display: block;
	margin: 0 auto;
	width: 50%;
	border: 1px solid #43484b;
	border-radius: 5px;
	font-size: 18px;
	padding: 5px;
	font-family: futura pt;
	margin-top: 15px;
	margin-bottom: 15px;
}

form input[type="text"]:focus, form input[type="email"]:focus, form textarea:focus	{
	color: #43484b;
}

form label	{
	margin-bottom: 15px;
	font-size: 18px;
}

form button	{
	border: 2px solid white;
	padding: 10px;
	border-radius: 10px;
	background-color: #43484b;
	color: white;
	font-size: 16px;
	margin-top: 20px;
	transition: 0.2s;
}

form button:hover	{
	background-color: white;
    border: 2px solid #43484b;
	color: #43484b;
}

/* About */

#about-info    {
    text-align: center;
    padding: 25px 0;
    font-family: futura pt;
}

#about-info h2  {
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    color: #43484b;
    padding-bottom: 10px;
}

#about-info p {
    font-weight: 400;
    font-size: 20px;
    color: #43484b;
    padding-bottom: 2%;
    margin: 0 5%;
}

#about-images   {
    padding: 25px;
    text-align: center;
}

#about-images img {
    display: inline-block;
    max-width: 50%;
    border-radius: 10px;
    border: 3px solid #43484b;
}

/* Gallery */

#projects    {
    text-align: center;
    padding: 25px 0;
    font-family: futura pt;
}

#projects h2 {
    font-weight: 500;
    font-size: 35px;
    text-transform: uppercase;
    color: #43484b;
    padding-bottom: 10px;
}

#projects p {
    font-weight: 400;
    font-size: 25px;
    color: #43484b;
    padding-bottom: 2%;
}

#project-thumbnails  {
    margin: 0 10%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

#project-thumbnails img   {
    width: 100%;
}

.overlay-text {
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: absolute;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 30px;
    opacity: 0;
}

.overlay-text:hover {
    opacity: 1;
    transition: 0.5s;
}

.thumb:hover img    {
    filter: brightness(15%);
    transition: 0.5s;
}

/* Footer */

footer  {
    background-color: #43484b;
    color: white;
    text-align: center;
    /*text-transform: uppercase;*/
    padding: 10px;
    font-size: 20px;
    font-family: futura pt;
    font-weight: normal;
    overflow: auto;
    width: 100%;
}

@media only screen and (min-width: 760px)   {
    
    header h1 a {
        float: left;
        margin-left: 2%;
    }
    
    #intro h2    {
        font-size: 75px;
    }
    
    #language {
        display: block;
        float: right;
        margin-right: 2%;
    }
    
    #language a   {
        display: inline;
        margin-left: 1px;
    }

    nav {
        display: block;
        float: right;
        margin-right: 2%;
    }
    
    nav a   {
        display: inline;
        border: none;
        margin-left: 10px;
    }
    
    nav a:last-child    {
        border: none;
    }

    #project-thumbnails  {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #example-thumbnails  {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-info    {
        width: 65%;
        margin-right: 5%;
        float: left;
    }

    #about-info p   {
        text-align: left;
    }

    #about-images   {
        float: right;
        width: 30%;
    }

    #about-images img   {
        max-width: 100%;
    }
}

@media only screen and (min-width: 960px)   {
    #project-thumbnails  {
        grid-template-columns: repeat(3, 1fr);
    }

    #example-thumbnails  {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumb  {
    overflow: hidden;
    position: relative;
    
}

.example-thumb  {
    overflow: hidden;
    position: relative;
}