/** 
* Imports and plugins 
*/
@use postcss-custom-media;
@use postcss-nested;
@use postcss-simple-vars;
@import url('https://fonts.googleapis.com/css?family=Eczar:400,700|Gentium+Basic');

/** 
* Base 
*/

html {
    height: 100%;
    scroll-behavior: smooth;
}

h3 {
    text-align: center;
}

hr {
    max-width: 500px;
    border-color: #E0E0E0;
}

head, body {
    font-family: 'Roboto', sans-serif;
}

/**
* Nav Bar
**/

.navbar {
    background-color: #0F2944;
}

.nav-link {
    color: #F2F2F2;
}

.nav-link:hover {
    color: #B0B0B0;
}

.nav-highlight {
    color: #FE9004;
    font-weight: bold;
}


.hcenter {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
}

/**
*   Hero Image
**/

.hero-container {
    position: relative;
    
    display: block;
    width: 100%;
    height: 56vh;
	min-height:500px;
}

.hero-image {
    position: absolute;

    width: 100%;
    height: 100%;

    clip: rect(0, auto, auto, 0);

    background-image: url(images/hero.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-child {
    position: absolute;
    text-align: center;
}

.hero-info-container {
	position: relative;

	width: 350px;
	min-height: 450px;

	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}

.hero-contact {
    z-index: 1;
    
    opacity: 1;
    
    font-size: 58px;
	font-size: calc(20px + 1.5vw);
    line-height: 64px;

	width: 100%;
	bottom: 48px;
	text-align: center;

    color: white;
}

.hero-title {
    color: white;

	width: 100%;
	top: 270px;
	text-align: center;

    font-size: 24px;
    line-height: 32px;
}

.hero-button {
    border: 3px solid #FE9004;
    border-radius: 8px;

    padding: 14px 18px;
    text-shadow: 1px 1px #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: bold;
	text-align: center;
	
	width: 240px;
	bottom: 0px;

    background-color: #FE9004;
    color: white;
}

.hero-button:hover {
    background-color: transparent;
    color: #FE9004;
    text-shadow: 0px 0px;
}

/**
*   Content
**/

.content {
    padding: 14px 24px;
}

.content-inside {
    margin: 0 auto;
    max-width: 650px;
}

.content-about {
    background-color: #303030;
    color: white;
}

.content-white {
    background-color: white;
    color: black;
}

.content-gray {
    background-color: #FAFAFA;
    color: black;
}

.service-icon {
    max-width: 180px;
    margin: 8px;
}

/**
*   Footer
**/

.footer {
    background-color: #303030;
    color: white;
    text-align: center;
}
