/* -> Fonts
================================ */
@font-face {
    font-family: "Muller";
    src: url("MullerLight.ttf");
}
@font-face {
    font-family: "Muller";
    src: url("MullerBold.ttf");
    font-weight: bold;
}
/*================================ */


/* -> Cookie bar
================================ */
#cookie-bar {
	background: #353535;
	height: auto;
	color: #fff;
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 600;
	padding: 8px 20px;
}

#cookie-bar p {
	margin: 0;
	padding: 0;
}

#cookie-bar a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
	padding: 4px 10px;
	margin-left: 20px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	border: 1px solid #fff;
}

#cookie-bar a:hover {
	color: #353535;
	background-color: #fff;
}
/*================================ */


/* -> Main
================================ */
body {
	font-family: 'Muller', serif;
	line-height: 32px;
	font-size: 18px;
    color: #000;
    overflow-x: hidden;
}

a{
	color: #fff;
}

a:hover {
	color: #b3b7b5;
    text-decoration: none;
}

.transition{
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

.green{
    color: #3EAD9D;
}


h1{
    font-size: 22px;
    line-height: 52px;
}

h2{
    font-size: 44px;
    font-weight: 400;
    z-index: 40;
    position: relative;
}

h3{
    font-size: 24px;
    font-weight: bold;
}


h4{
    font-size: 26px;
}

.btn{
    margin-top: 20px;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 20px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    color: #000;
    border: none;
    position: relative;
    z-index: 1;
    border: 1px solid #000;
}

    .btn:hover{
        color: #fff!important;
        background-color: #00ae9d;
        border-color: #00ae9d;
    }

.btn-alt{
    margin-top: 20px;
    cursor: pointer;
    font-size: 20px;
    padding: 5px 0px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    color: #000;
    border: none;
    position: relative;
    z-index: 1;
    font-weight: 600;
    -webkit-text-stroke: 1px transparent;
}

    .btn-alt i{
        border: 2px solid #000;
        height: 35px;
        width: 35px;
        border-radius: 50%;
        font-size: 18px;
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        line-height: 30px;
        margin-left: 15px;
    }

    .btn-alt:hover{
        color: transparent!important;
        -webkit-text-stroke: 1px #00ae9d;
    }

    .btn-alt:hover i{
        border: 2px solid #00ae9d;
    }

    .container{
        padding: 0px 50px;
    }

/* Loader */
#loading{
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #00ae9d;
    visibility: visible;
    transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
    -o-transition: all 1s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading.hidden{
    opacity: 0;
    visibility: hidden;
}


#loading img{
    width: 60%;
    max-width: 500px;
    opacity: 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

#loading img.show{
    opacity: 1;
}
/* ============================= */


/* -> Menu
================================ */
.navbar {
    background-color: transparent;
    z-index: 1000;
    height: 110px;
    padding: 0px;
}

.navbar.scrolled,
.navbar.opaque {
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.1);
    box-shadow: 1px 1px 3px rgba(0,0,0,.1);
}

    .navbar-brand{
        margin: 0px;
        padding: 0;
    }

        .navbar-brand img{
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .navbar.scrolled .navbar-brand img,
        .navbar.opaque .navbar-brand img{
            filter: none;
        }

	.navbar ul > li{
    	margin: 0 25px;
    }

    .navbar ul > li:first-child{
        margin-left: 0px;
    }

    .navbar ul > li:last-child{
        margin-right: 0px;
    }

		.navbar ul > li > a{
		    color: #ffffff!important;
            -webkit-text-stroke: 1px transparent;
		    position: relative;
		    padding: 0!important;
		    display: inline-block;
            font-size: 18px;
            line-height: 22px;
			font-weight: bold;
		}

        .navbar.scrolled ul > li > a,
        .navbar.opaque ul > li > a{
            color: #3EAD9D!important;
        }

        .navbar ul > li > a:hover{
            color: transparent!important;
            -webkit-text-stroke: 1px #fff;
        }

        .navbar.scrolled ul > li > a:hover,
        .navbar.opaque ul > li > a:hover{
            color: transparent!important;
            -webkit-text-stroke: 1px #00ae9d;
        }
/* ============================= */



/* -> Intro
================================ */
#intro {
	position: relative;
    min-height: 600px;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
}

    #intro:before{
        content: "";
        position: absolute;
        background-image: url('../img/intro-overlay.svg');
        opacity: 0.8;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    #intro h1{
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 38px;
        line-height: 58px;
    }

        #intro h1 b{
            color: #fff;
        }
/* ============================= */



/* -> About
================================ */
#about{
    padding: 300px 0px 150px;
    position: relative;
}

    #about-img{
        position: absolute;
        width: 50%;
        top: 0;
        bottom: 0;
        right: 0;
        background-size: cover;
        background-position: center;
    }
/* ============================= */


/* -> Eco
================================ */
#eco{
    background-color: #eef7f6;
    position: relative;
    padding: 180px 0px;
}

    .eco-img{
        width: 60%;
        margin-bottom: 60px;
    }


    .eco-icons{
        margin-top: 130px;
        text-align: center;
    }
    
        .eco-icon{
            position: relative;
        }
    
        .eco-icon:not(:last-child):after{
            position: absolute;
            content: '+';
            color: #000;
            right: 35px;
            font-weight: bold;
            font-size: 60px;
            top: 20px;
        }
    
        .eco-icon img{
            height: 60px;
            margin-right: 20px;
        }
    
        .eco-icon span{
            margin-top: 30px;
            display: block;
            font-weight: 400;
            font-size: 18px;
        }

@media (min-width: 992px) and (max-width: 1200px) {
        .eco-icon{
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
        .eco-icon:not(:last-child):after{
            position: relative;
            right: auto;
            top: 0px;
            margin: 20px 0px;
        }
    
        .eco-icon img{
            margin-right: 0px;
            margin-bottom: 15px;
        }
}
/* ============================= */


/* -> Portfolio 
================================ */
#portfolio{
    position: relative;
}

    .p-item{
        position: relative;
        display: block;
        z-index: 2;
    }

    .p-item-small{
        margin-bottom: 30px;
    }

    .p-item-vertical{
        padding-bottom: 0;
        height: 100%;
    }

        .p-item-img{
            padding-bottom: 100%;
            background-size: cover;
            background-position: center;
            display: block;
        }

        .p-item-vertical .p-item-img{
            height: 100%;
        }

            .p-item-info{
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(255,255,255,.7);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                text-align: center;
                opacity: 0;
                visibility: hidden;
                color: #000;
            }

            .p-item:hover .p-item-info{
                opacity: 1;
                visibility: visible;
            }

            .p-item-button{
                font-size: 75px;
                margin-top: 38px;
                display: inline-block;
            }

    #portfolio .container{
        position: absolute;
        right: 0;
        left: 0;
        bottom: 25%;
        z-index: 1;
    }
/* ============================= */



/* -> Products 
================================ */
#products{
    padding: 180px 0px;
}

    .product-item{
        margin-bottom: 30px;
    }

        .product-img{
            padding-bottom: 200%;
            background-size: cover;
            background-position: center;
            display: block;
        }

        .product-info{
            text-align: center;
            margin-top: 30px;
        }

            .product-info h3{
                font-size: 20px;
                font-weight: 400;
            }
/* ============================= */



/* -> Contacts
================================ */
#contacts{
    padding: 130px 0px 180px;
}

    .contacts-info{
        margin-top: 80px;
    }

    #contacts form{
    }

    .form-input{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 50px;
    }

    .form-text{
        font-weight: 600;
    }

        .form-text a{
            text-decoration: underline;
        }

        input[type='text'],
        input[type='email'],
        textarea{
            width: 100%;
            color: #777;
            font-size: 16px;
            padding: 5px 10px;
            border: none;
            border-bottom: 1px solid #000;
        }

        textarea{
            height: 45px;
            resize: none;
        }

        input[type='text']:focus,
        input[type='email']:focus,
        textarea:focus{
            border-bottom: 1px solid #000;
        }

        .form-input.error input[type="text"],
        .form-input.error input[type="email"],
        .form-input.error textarea,
        .form-input.error select{
            border-color: #e10000;
        }

        .form-text{
            font-size:15px;
            line-height: 26px;
            margin-top: 0;
        }
        
            .form-text input{
                -webkit-transform: translateY(2px);
                    -ms-transform: translateY(2px);
                        transform: translateY(2px);
                display: inline-block;
            }
        
            .form-text label{
                cursor: pointer;
                line-height: 26px;
                text-align: justify;
                font-weight: normal;
            }
        
            .form-text.error label{
                color: #e10000;
            }
        
            .form-text a{
                color: #000!important;
                text-decoration: underline!important;
            }

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #262626;
    text-transform: lowercase;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #262626;
    text-transform: lowercase;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #262626;
    text-transform: lowercase;
}
:-moz-placeholder { /* Firefox 18- */
    color: #262626;
    text-transform: lowercase;
}
/* ============================= */


/* -> Footer
================================ */
footer{
    position: relative;
    color: #fff;
    padding: 50px 0px;
    background-color: #00ae9d;
}

    .footer-logo{
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
        height: 60px;
    }

    .socials{
        margin-right: 80px;
        padding-bottom: 5px;
    }

        .socials span{
            font-size: 18px;
        }

        .socials img{
            height: 30px;
            margin-right: 10px;
        }

        .socials a:hover img{
            filter: invert(1);
        }

    footer a{
        color: #fff;
    }

        footer a:hover{
            color: #000;
        }

    footer h2{
        font-size: 38px;
    }

    .copy-img{
        -webkit-filter: none;
                filter: none;
        height: 20px;
        margin-left: 5px;
        margin-right: 0;
        -webkit-transform: translateY(-4px);
            -ms-transform: translateY(-4px);
                transform: translateY(-4px);
    }

    footer hr{
        border-top: 1px solid #fff;
        margin-bottom: 50px;
    }
/* ============================= */


/* -> Project Page
================================ */
#portfolio-page{
    padding: 125px 0px 15px;
}

    .portfolio-item{
        background-position: center;
        background-size: cover;
        border: 15px solid #ffffff;
        padding-bottom: 50%;
        max-height: 50%;
        display: block;
        position: relative;
    }

    .portfolio-item.big{
        height: 0;
    }
    
    .portfolio-item.vertical{
        height: auto;
    }
/* ============================= */


/* -> Project Page
================================ */
#project-page{
    padding: 110px 0px 40px;
    font-size: 16px;
    line-height: 24px;
}

    .project-image-text-section{
        padding: 180px 50px;
    }

        .project-image-text-section h1{
            font-size: 48px;
            font-weight: 400;
            z-index: 40;
            position: relative;
        }

    .project-images-section{
        padding: 180px 50px 0px;
    }

        .project-images-item{
            background-position: center;
            background-size: cover;
            margin-top: 30px;
            min-height: 1000px;
        }
/* ============================= */


/* -> Product Page
================================ */
#product-page{
    padding: 110px 0px;
}

    .product-image-text-section{
        padding: 180px 50px 80px;
    }

        .product-image-text-section h1{
            font-size: 44px;
            font-weight: 400;
            z-index: 40;
            position: relative;
        } 

        .product{
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin-top: 150px;
        }

            .product img{
                width: 80%;
            }

    .product-image-subtitle{
        display: inline-block;
        text-align: left;
        margin-top: 20px;
    }
/* ============================= */