﻿
/* Box */

.box {
	position:relative;
	margin: 0 auto;
	width:94%;
	height: auto;
	padding:20px;
	border:1px solid #c59f1f;
	border-style: double;
	text-align:left;
	word-wrap: break-word;
}


/* Form */

	form label {
		display: block;
	}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		display: block;
		width: 90%;
		max-width:90%;
		padding: 1em 1em;
		background: none;
		border: solid 1px #aaa;
		color: inherit;
		border-radius: 0.1em;
		outline: none;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
		border-color: #999;

		}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"] {
		line-height: 1.35em;
	text-transform:none;
	}

	form select {
		line-height: 1.35em;
	}

	form textarea {
		min-height: 8em;
	}

	form .formerize-placeholder,
	form ::-webkit-input-placeholder,
	form :-moz-placeholder,
	form ::-moz-placeholder,
	form :-ms-input-placeholder {
		color: rgba(145, 146, 147, 0.85) !important;
	}

	form ::-moz-focus-inner {
		border: 0;
	}






/* Contact */

	#contact {
		padding-bottom: 0;
		overflow: hidden;
	}

		#contact .box {
			-moz-transition: all 1s ease;
			-webkit-transition: all 1s ease;
			-ms-transition: all 1s ease;
			transition: all 1s ease;
			-moz-transform: translateZ(0);
			-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
			transform: translateZ(0);
			position: relative;
			bottom: 0;
		}

		#contact.inactive .box {
			bottom: -30em;
		}



	input, textarea, select {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		font-size: 11pt;
		line-height: 1.5em;
		letter-spacing: 0.5px;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	}


@media screen and (max-device-width: 480px) {
#scroll div{height:150px;
overflow:auto;
-webkit-overflow-scrolling: touch;}
}

@media screen and (max-width: 320px) {
#scroll div{height:150px;
overflow:yes;
-webkit-overflow-scrolling: touch;}
}



/*footernavigations*/

.policy {
    margin: 0.8em auto;
    padding: 0;
    max-width: 88%;
}
@media screen and (max-width: 640px){
.policy {max-width: 100%;
}}
@media only screen and (max-width:320px){
.policy {max-width: 100%;
}}
.policy label {
    display: block;
    margin: .1px 0;
    padding : 5px 12px;
    text-align:left;
    color: #111;
    border: 1px solid #bbb;
    font-weight: normal;
    background: transparent;
    cursor :pointer;
    transition: all 0.3s;
}

.policy label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

.policylabel:hover {
    background :#ac924d;
}

.policy input {
    display: none;
}

.policy .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

/*show*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 12px;
    background: rgba(255,255,255, .5);
    text-align:left;
    opacity: 1;
}

.policy .accshow p {
    margin: 12px 10px;
    color: #111;
}


/*icon*/
.cssacc:checked + label:before {
    content: '\f078';
}






.90p{
width:90%;
max-width:90%;
}
























