/*===================================================================================================
Reset & basics
===================================================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/*===================================================================================================
Basic styles
===================================================================================================*/
body {
	font: 14px/21px 'Arial', serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	/* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	-webkit-transition: background-color 0.8s ease-out;
	-moz-transition: background-color 0.8s ease-out;
	-o-transition: background-color 0.8s ease-out;
	transition: background-color 0.8s ease-out;
}

/*===================================================================================================
Typography
===================================================================================================*/
h1,
h2,
h3,
h4,
h5,
h6,
strong,
header,
#clock strong,
.button {
	color: #fff;
	font-family: 'BenchNine', sans-serif;
	font-weight: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
}

h1 {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 14px;
}

h2 {
	font-size: 35px;
	line-height: 40px;
	margin-bottom: 10px;
}

h3 {
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 6px;
}

h4 {
	font-size: 21px;
	line-height: 30px;
	margin-bottom: 6px;
}

h5 {
	font-size: 17px;
	line-height: 24px;
}

h6 {
	font-size: 16px;
	line-height: 21px;
}

p,
.subscribe-box h6 {
	font-family: 'Arial', serif;
	font-size: 1.1em;
	line-height: 1.6;
	color: #555;
}

/*===================================================================================================
Links
===================================================================================================*/
a,
a:visited {
	color: #444;
	text-decoration: none;
	outline: 0;
	cursor: pointer;
}

a.whiteLink,
a:visited.whiteLink {
	color: #FFF;
	text-decoration: underline;
	outline: 0;
	cursor: pointer;
}

/*
section.contact a,a:visited {
	color: #444;
	text-decoration: none;
	outline: 0;
	cursor: pointer;
}
*/

a:hover,
a:focus {
	opacity: 0.55;
}

/*===================================================================================================
Images
===================================================================================================*/
img.scale-with-grid {
	max-width: 100%;
	height: auto;
}

/*===================================================================================================
Buttons
===================================================================================================*/

.button {
	padding: 0 22px;
	height: 42px;
	font-size: 1.2em;
	font-weight: 700;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	border: none;
	width: auto !important;
	cursor: pointer;
	text-align: center;
}

.button:hover {
	padding: 0 25px;
	opacity: 0.87;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/*===================================================================================================
Forms
===================================================================================================*/
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
	border: 0;
	padding: 10px;
	outline: none;
	font: 15px 'Arial', sans-serif;
	color: #555;
	margin: 0;
	display: block;
	margin-bottom: 18px;
	background: #fff;
}

select {
	padding: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
	border: 1px solid #ccc;
	color: #444;
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

textarea {
	min-height: 200px;
}

label,
legend {
	display: block;
	font-weight: bold;
	font-size: 13px;
}

select {
	width: 220px;
}

input[type="checkbox"] {
	display: inline;
}

label span,
legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444;
}

/*===================================================================================================
All
===================================================================================================*/
/*effect*/
.cbp-af-header,
a,
.iconFont,
.feature {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/*==========================*/

.row {
	width: auto;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/*=waypoint effect=*/
header {
	opacity: 0;
	top: -50px;
}

#feature1,
#feature2,
.info,
.form-contact {
	opacity: 0;
	position: relative;
	-webkit-transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*===================================================================================================
Section Style 
===================================================================================================*/

/*==header section css=====*/
header {
	position: fixed;
	z-index: 2;
	width: 100%;
	height: 0px;
	background: transparent;
	color: #fff;
	width: 100%;
}

header nav {
	float: right;

}

header .row {
	padding: 22px 20px;
}

header a,
.separator {
	color: #fff;
	text-shadow: 0 1px 2px #777;
}

header .separator {
	margin-right: 10px !important;
	padding-top: 2px;
}

header .logo {
	float: left;
	background: url("../img/logo-pdc-white.webp") no-repeat;
	width: 280px;
	height: 50px;
	position: absolute;
	top: 35px;
	font-size: 2.2em;
}

header .text-logo {
	font-size: 2.3em;
	line-height: 52px;
	width: 211px;
}

.cbp-af-header.cbp-af-header-shrink .logo,
.hsvs-header .logo {
	background: url("../img/logo-pdc-black.webp") no-repeat;
	top: 10px;
}

header .logo span {
	font-size: 0.8em;
}

header .sub-row {
	width: auto;
	max-width: 1000px;
	padding-top: 30px;
}

.cbp-af-header.cbp-af-header-shrink,
.hsvs-header {

	border-top: solid 1px;
	height: 70px;
	box-shadow: 0px 0px 4px #000;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, .5);
	top: 0 !important;
	opacity: .7;
	background: #fff;

}

.cbp-af-header.cbp-af-header-shrink a,
.cbp-af-header.cbp-af-header-shrink .separator,
.hsvs-header a,
.hsvs-header .separator {
	text-shadow: none;
}

.cbp-af-header.cbp-af-header-shrink .row {
	max-width: 1000px;
	width: auto;
}

.cbp-af-header.cbp-af-header-shrink .sub-row,
.hsvs-header .sub-row {
	max-width: 1000px;
	width: auto;
	padding-top: 5px;
}

.cbp-af-header.cbp-af-header-shrink .menu-list li {
	float: left;
	margin: 0 0 0 25px;
}

.cbp-af-header.cbp-af-header-shrink .separator {
	margin-right: 10px;
}

.menu-list {
	float: left;
}

.menu-list li {
	float: left;
	margin: 0 0 0 25px;
	font-size: 1.4em;
	font-weight: normal;
}

.social-list {
	float: left;
	margin-left: 10px;
}

.social-list li {
	float: left;
	margin-right: 6px;
}

.hsvs-header {
	opacity: 1 !important;
}

/*==home section css===*/
section.home {
	height: 700px;
	/*background: url("../img/bg9.jpg") no-repeat scroll center top transparent;*/
	background-size: cover;
	background-position: 0 0;
}

.home-content {
	float: left;
	max-width: 500px;
	margin: 170px 0 0 0;
}

.home h1 {
	text-transform: uppercase;
	text-shadow: 0 1px 4px #000000;
	font-size: 4.5em;
	line-height: 60px;
}

#clock {
	float: left;
	clear: both;
	text-shadow: 0 1px 2px #000000;
}

#clock span {
	font-family: Arial;
	padding-right: 1px;
	font-size: 1.4em;
	color: #fff;
}

#clock strong {
	font-size: 1.1em;
}

#clock p {
	float: left;
	clear: right;
	margin: 0 20px 0 0;
}

.subscribe-box {
	float: left;
	width: 100%;
}

.subscribe-box h6 {
	padding-bottom: 9px;
	letter-spacing: 0.5px;
	color: #fff;
	text-shadow: 0 1px 2px #000000;
	font-size: 1.1em;
}

.subscribe-box form {
	display: table;
	width: 100%;
}

.subscribe-box input {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.subscribe-box input#email-subscribe {
	width: 60%;
	background: rgba(255, 255, 255, 0.1);
	border: solid 1px rgba(255, 255, 255, 0.1);
	float: left;
	color: #fff;
	padding: 10px;
	margin-right: 5px;
}


.subscribe-box input.error {
	-moz-box-shadow: 0 0 0 1px #E50000;
	-webkit-box-shadow: 0 0 0 1px #E50000;
	border: solid 1px rgba(255, 102, 51, 0.6) !important;
}

/*=====================*/

/*==about section css===*/
section.about {
	padding: 60px 0;
}

.about h2,
.webcam h2 {
	float: left;
	font-size: 3.3em;
	margin: 5px 0 0 0;
}

.about p {
	float: right;
	width: 70%;
}

.webcam-image-big {
	float: right;
	width: 70%;
}

.webcam-image-big img {
	width: 100%;
	height: auto;
	display: block;
}

.about p.desc {
	margin-bottom: 15px;
}

/*=====================*/

/*==service section css===*/
section.service {
	background: #fff;
	padding: 60px 0;
}

.feature {
	float: left;
	width: 31%;
	text-align: center;
	margin-right: 3%;
}

.feature .iconFont {
	margin: 10px 0;
	display: block;
	font-size: 6em;
}

.feature.left .iconFont {
	float: left;
	height: 25%;
	margin: 0 20px 0 0;
	font-size: 5em;
	width: auto;
	min-width: 61px;
}

.feature h3 {
	color: #222;
}

.feature.left h3 {
	float: left;
}

.feature p {
	text-align: left;
	margin: 0 auto;
	width: 90%;
}

.feature.left p {
	float: left;
	width: 69%;
	line-height: 1.5em;
	font-size: 1em;
}

.feature.last {
	margin-right: 0;
}

.service p span,
.tech p span {
	display: block;
}

.service p span.first,
.tech p span.first {
	margin-top: 15px;
}

/*==value-prop section css===*/
section.value-prop {
	background: #E3511A;
	padding: 60px 0;
}

section.value-prop p {
	color: #fff;
	font-size: 1.25em;
	line-height: 1.7;
	text-align: center;
	margin: 0 auto;
}

section.value-prop p strong {
	color: #fff;
	font-weight: 700;
	font-family: inherit;
}

/*==tech section css===*/
section.tech {
	background: #f5f5f5;
	padding: 60px 0;
}

section.tech h2 {
	display: block;
	font-size: 3.3em;
	margin: 0 0 50px 0;
	color: #222;
	width: 100%;
	text-transform: uppercase;
}

.tech-subtitle {
	display: block;
	font-size: 1.1em;
	color: #555;
	margin: 0 0 40px 0;
	width: 100%;
}

.tech-features {
	display: block;
	width: 100%;
	overflow: hidden;
}

/* Reduce visual size of tech icons because they are much bulkier than service icons */
.tech .feature.left .iconFont {
	font-size: 4em;
}

@media only screen and (max-width: 1023px) {
	.tech .feature.left .iconFont {
		font-size: 4.5em;
		/* Slightly smaller than the 5.5em service icons */
	}
}

@media only screen and (max-width: 767px) {
	.tech .feature.left .iconFont {
		font-size: 3.5em;
		/* Slightly smaller than the 4.4em service icons */
	}
}

.service-title {
	display: block;
	font-size: 3.3em;
	margin: 0 0 50px 0;
	color: #222;
	width: 100%;
	text-transform: uppercase;
}

.service-features {
	display: block;
	width: 100%;
	overflow: hidden;
}

/*=====================*/

/*==projects section css===*/
section.projects {
	padding: 60px 0;
}

.projects h2 {
	float: left;
	font-size: 3.3em;
	margin: 5px 0 0 0;
}

section.projects i.icon-external-link {
	font-size: 0.9em;
}

.projects p {
	float: right;
	width: 70%;
}

.projects p.desc {
	margin-bottom: 15px;
}

/*=====================*/

/*==contact section css===*/
section.contact {}

.contact .row {
	max-width: 900px;
	padding: 40px 20px;
}

.contact .info {
	float: left;
	width: 38%;
	margin-right: 5%;
	margin-top: 5px;
}

.info ul {
	border-top: solid 1px #F0F0F0;
	padding: 15px 0;
	display: table;
	width: 80%;
}

.info ul li {
	clear: both;
	float: left;
	margin-bottom: 5px;
}

.info .iconFont {
	float: left;
	margin-right: 5px;
	font-size: 1.1em;
}

.info .text {
	margin-bottom: 10px;
}

.contact .form-contact {
	float: left;
	width: 55%;
	padding-top: 35px;
}

.contact h2 {
	color: #222;
	font-size: 3.3em;
}

.contact h3 {
	color: #222;
	font-family: 'Arial', serif;
	font-size: 1.3em;
	line-height: 24px;
	margin: 0 0 10px 0;
}

.contact p {
	font-size: 1.1em;
}

.contact .bold {
	font-weight: bold;
}

.contact input,
.contact textarea {
	width: 100%;
	border: solid 1px #e2e2e2;
}

.contact input.error,
.contact textarea.error {
	border-top: solid 1px rgba(255, 102, 51, 0.6) !important;

}

.name-input-cont {
	margin-right: 4%;
}

.name-input-cont,
.email-input-cont {
	width: 47%;
	float: left;
	display: block;
}

.message-cont {
	float: left;
	width: 98%;
}

label.error {
	display: none !important;
}

.contact .form-contact .button {
	float: right;
	margin-right: 4px;
}

.contact .social {
	float: left;
	clear: both;
	margin-top: 20px;
}

.contact label {
	font-family: 'Arial', serif;
	font-size: 1.2em;
	color: #555;
	font-weight: normal;
	margin: 0 0 5px 0px;
}

#coment {
	height: 90px;
}

#map-canvas {
	max-width: 100%;
	width: auto;
	height: 300px;
}

.cont-send {
	float: left;
	width: 100%;
}

#load_mensaje {
	float: left;
}

.load-form {
	background: url("../img/load-ch.gif") no-repeat;
	width: 14px;
	height: 14px;
	display: none;
	float: left;
	margin: 10px 0 0 15px;
}

p.success {
	display: none;
	clear: both;
	width: 100%;
	margin: 0 0 20px 0;
	padding: 14px 18px;
	background: #f0f0f0;
	border-left: 4px solid #4CAF50;
	border-radius: 4px;
	font-size: 1em !important;
	color: #333;
	box-sizing: border-box;
}

/*=====================*/

#prev {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: url("../img/top.webp") no-repeat;
	width: 43px;
	height: 43px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.visible#prev {
	display: block;
	opacity: 0.8;
}

/*==contact section css===*/
footer .row {
	max-width: 950px !important;
}

footer {
	background: #222;
	padding: 20px 0;
	font-size: 1em;
}

footer small {
	font-size: 1em;
	padding-top: 5px;
	display: inline-block;
	float: left;
	font-family: 'Arial', serif;
}


footer ul {
	float: right;
}

footer ul li {
	float: left;
	margin-left: 15px;
}

footer .social {
	float: right;
}

footer .iconSocial {
	font-size: 2.1em;
	margin: 0 5px 0 0;
	display: block;
	text-align: center;
}

/*==jquery popup css===*/
#jquery-popup,
#privacy-policy {
	display: none;
	overflow: visible !important;
	vertical-align: middle;
}

span.close-popup {
	background: none repeat scroll 0 0 #E3511A;
	color: #FFFFFF;
	cursor: pointer;
	font: bold 131%/30px sans-serif;
	padding: 3px 13px;
	position: absolute;
	right: -10px;
	top: -10px;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	display: none;
	opacity: 0;
}

.popup-iframe iframe {
	width: 100%;
}

span.close-popup:hover {
	opacity: .86 !important;
}

img.loading {
	display: none;
	top: 50%;
	left: 49%;
	position: absolute;
	width: 30px;
}

#img-loading {
	display: none;
	left: 49%;
	position: absolute;
	width: 30px;
}

/*=====================*/

/*==policy section css===*/
.policy {
	margin-right: 20px;
	font-size: 1.1em;
	line-height: 1.6;
	color: #555;
}

.policy h1 {
	color: #222;
	font-size: 1.8em;
}

.policy h2 {
	color: #222;
	font-size: 1.3em;
	margin-top: 10px;
}

.policy p {
	font-size: 0.9em;
	line-height: 1.6;
	color: #555;
}

/*=====================*/

/*===================================================================================================
	WebCam - Hram Svetog Save
===================================================================================================*/
/*== section webcam (about) ==*/
.webcam-image-big {
	margin: 0 auto;
	display: block;
	width: 60%;

}

.webcam-image-big img {
	width: 90%;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

/*== section webcam-hram (projects) ==*/
.feature img {
	width: 80%;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}


/*===================================================================================================
 Tablets & smaller screens   
===================================================================================================*/
@media only screen and (max-width: 1440px) {
	section.home {
		height: 600px;
	}
}

@media only screen and (max-width: 1023px) {

	/*==service section css===*/
	.feature.left h3 {
		clear: both;
		float: none;
	}

	.feature.left .iconFont {
		float: none;
		margin-bottom: 15px;
		font-size: 5.5em;
		min-width: 0;
	}

	.feature.left p {
		float: none;
		width: 80%;
	}

	.feature.left .dev-two-col {
		float: none;
		width: 80%;
	}

	#map-canvas {
		height: 200px;
	}
}

/*===============================
/*RESPONSIVE DESIGN ADAPTER CSS
/*===============================

/*===================================================================================================
Tablet (Portrait)
===================================================================================================*/
/* Note: Design for a width of 768px */
@media only screen and (max-width: 767px) {

	/*==home section css===*/
	.cbp-af-header.cbp-af-header-shrink {
		height: 70px;
	}

	.menu-list li {
		font-size: 1.3em;
	}

	.home h1 {
		font-size: 4em;
		line-height: 50px;
	}

	.subscribe-box h6 {
		font-size: 1.1em;
	}

	/*==about section css===*/
	section.about {
		padding: 50px 0;
	}

	.about h2 {
		float: left;
		font-size: 3.2em;
		margin: 5px 0 10px 0;
	}

	.about p {
		float: left;
		width: 100%;
		font-size: 1.1em;
	}

	/*==service section css===*/

	.feature {
		width: 100%;
		margin: 0 0 30px 0;
	}

	.feature.last {
		margin-bottom: 0px;
	}

	/*==tech section css===*/

	.feature.left h3 {
		float: none;
		clear: both;
		text-align: left;
	}

	.feature.left .iconFont {
		margin-bottom: 10px;
		margin-right: 0;
		float: none;
		clear: both;
		font-size: 4.4em;
		width: auto;
		text-align: left;
		display: block;
	}

	.feature.left p {
		float: none;
		width: 100%;
	}

	.feature.left .dev-two-col {
		float: none;
		width: 100%;
	}

	#feature2 .dev-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	/*==projects section css===*/
	section.projects {
		padding: 50px 0;
	}

	.projects h2 {
		float: left;
		font-size: 3.2em;
		margin: 5px 0 10px 0;
	}

	.projects p {
		float: left;
		width: 100%;
		font-size: 1.1em;
	}

	/*==contact section css===*/
	.contact h2 {
		font-size: 3.2em;
		margin-bottom: 2px;
	}

	.contact .info {
		width: 100%;
	}

	.info ul {
		width: 100%;
	}

	.contact .form-contact {
		width: 100%;
	}

	/*==top button===*/
	#prev {
		background-size: 100%;
		width: 32px;
		height: 32px;
	}

	/*==footer css===*/
	footer {
		padding: 10px 0 20px 0;
	}

	footer small {
		font-size: 0.8em;
		display: block;
		text-align: center;
		width: 100%;
		margin-bottom: 8px;
	}

	footer .social {
		display: table;
		margin: 0 auto;
		float: none;
	}

	/*== section webcam-hram (projects) ==*/
	.feature img {
		width: 60%;
	}

	.webcam-image-big {
		width: 100% !important;
	}

	.webcam-image-big img {
		display: block;
		width: 75% !important;
		margin: 0 auto;
	}
}

/*===================================================================================================
Tablet (Portrait)
===================================================================================================*/
@media only screen and (max-width:680px) {

	/*==header css===*/
	header .logo {
		float: left;
		background: url("../img/logo-pdc-small.webp") no-repeat;
		width: 46px;
		height: 50px;
		position: absolute;
		top: 35px;
		font-size: 2.2em;
	}

	.cbp-af-header.cbp-af-header-shrink .logo {
		background: url("../img/logo-pdc-small.webp") no-repeat;
		top: 10px;
	}
}

/*===================================================================================================
Mobile (Landscape)
===================================================================================================*/
/* Note: Design for a width of 480px */
@media only screen and (max-width:466px) {
	/*==header css===*/

	.menu-list li {
		font-size: 1.3em;
	}

	.menu-list li:first-child,
	.cbp-af-header.cbp-af-header-shrink .menu-list li:first-child {
		margin-left: 0;
	}

	.cbp-af-header.cbp-af-header-shrink nav {
		margin-top: 0;
	}

	.social-list {
		display: none;
	}

	/* 
	br {
		display: none;
	}
	 */

	/*==home section css===*/
	.home-content {
		margin: 130px 0 0 0;
	}

	section.home {
		height: 500px;
	}

	.home h1 {
		font-size: 3.2em;
		line-height: 45px;
	}

	.subscribe-box h6 {
		font-size: 1em;
	}

	#clock p {
		margin: 0 20px 0 0;
		line-height: 24px;
		text-align: center;
	}


	#clock span {
		font-size: 1.3em;
		display: block;
	}


	#clock strong {
		font-size: 1.2em;
		display: block;
	}

	.button {
		font-size: 1.1em;
		padding: 0 18px;
		letter-spacing: 1px;
	}

	.button:hover {
		padding: 0 19px;
		opacity: 0.87;
	}

	/*==service section css===*/
	section.service {
		padding: 60px 0;
	}

	/*==contact section css===*/
	.name-input-cont,
	.email-input-cont {
		width: 98%;
	}

	#map-canvas {
		height:
	}

}

/*===================================================================================================
Mobile (Landscape)
===================================================================================================*/

@media only screen and (max-width:385px) {

	/*==header css===*/
	header .logo {
		display: none;
	}

	header nav {
		float: left;
		clear: both;
		margin-top: 8px !important;
		margin-left: 0px !important;
	}

	.cbp-af-header.cbp-af-header-shrink .logo {
		display: none;
	}

	.cbp-af-header.cbp-af-header-shrink .logo {
		display: none;
	}

	/* Added by PDC/JB */
	header .row {
		padding-top: 12px;
	}

	header .sub-row {
		padding-top: 6px;
	}

}

/*===================================================================================================
 Mobile (Landscape)
===================================================================================================*/
@media only screen and (max-width:322px) {

	/*==header css===*/
	.cbp-af-header.cbp-af-header-shrink .menu-list li {
		margin: 0 0 0 10px;
	}

	.menu-list li {
		margin: 0 0 0 10px;
	}

	.cbp .button {
		font-size: 0.5em;
		padding: 0 7px;
	}

	.button:hover {
		font-size: 0.5em;
		padding: 0 8px;
	}
}

/*===================================================================================================
 Mobile (Landscape)
===================================================================================================*/
/*==header css==*/
@media only screen and (max-width:270px) {
	.menu-list li {
		font-size: 1.15em;
		margin: 0 0 0 7px;
	}

	.cbp-af-header.cbp-af-header-shrink .menu-list li {
		font-size: 1.15em;
		margin: 0 0 0 7px;
	}

}

/*===================================================================================================
Clearing
===================================================================================================*/

.container:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.row:after,
.clearfix:after {
	clear: both;
}

.row,
.clearfix {
	zoom: 1;
}

.subscribe_loading {
	display: none;
}

.subscribe_message {
	display: none;
	color: #fff;
	margin: 10px 0 20px 0;
}

.subscribe_message h3 {
	margin: 0;
}

.subscribe_message p {
	color: #fff;
}