/*************FONTS**************/
@import url('https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900');

/*************BASIC SETTINGS**************/
html {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: scroll;
	font-family: 'Catamaran', sans-serif;
	color: #666;
	background-color: white;
	font-size: 1.4vw;
	font-weight: 200;
}

a {
	color: #a41f1f;
	text-decoration: none;
}

.button_outline {
	display: inline-block;
	border-radius: 30px;
	padding: 2px 20px;
	border: 2px solid white;
}

.wrapper {
	width: 100%;
	max-width: 1280px;
	margin: auto;
}

/*************HEADER / NAVIGATION**************/
.header {
	width: 100%;
	min-height: 60px;
	background-color: #282f39;
}

.header .wrapper {
	position: relative;
	height: 100%;
}

#logo {
	display: block;
	width: 200px;
	height: 60px;
	background: url(/images_new/viewar_logo.svg) no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 30px;
	top: 0;
}

.topnav {
	position: absolute;
	right: 30px;
	top: 0;
	display: flex;
	align-items: center;
	min-height: 60px;
}

.topnav a {
	color: white;
	margin: 0 0 0 30px;
}

.topnav a:hover {
	color: #abacac;
}

.topnav .button_outline {
	border-color: white;
}

.topnav .button_outline:hover {
	border-color: #abacac;
	color: abacac;
}

.txt_menu {
	color: white;
	display: none;
	margin-right: 30px;
}

.icon_menu {
	display: none;
	align-items: center;
	font-weight: 100;
	font-size: 1.2em;
	line-height: 0;
	position: absolute;
	right: 0;
	height: 60px;
	top: 0;
}

/*************MEDIA SCREEN SETTINGS TOP NAVIGATION**************/
@media screen
and (min-device-width : 375px)
and (max-device-width : 667px),
screen and (max-width: 880px) {

	.topnav a:not(.icon_menu) {
		display: none;
	}

	.txt_menu {
		display: block;
	}

	.icon_menu {
		display: flex;
	}

	.topnav.responsive {
		position: static;
		flex-direction: column;
		align-items: center;
		padding-top: 105px;
	}

	.topnav.responsive a:not(.icon_menu) {
		display: block;
		margin: 0 30px 30px 30px;
	}

	.topnav.responsive .txt_menu {
		display: none;
	}

	.topnav.responsive .icon_menu {
		margin-right: 30px;
	}
	
	.topnav .button_outline {
		margin-top: 20px;
	}

}

 /*************MEDIA SCREEN SETTINGS CONTENT**************/
 @media screen and
(min-width: 1280px) {
	
	body {
		font-size: 112%;
	}

}

@media screen 
and (min-device-width : 375px) 
and (max-device-width : 667px),
screen and (max-width: 660px) {

	body {
		font-size: 100%;
	}
}