/*
Theme Name: Hybride Design 
Theme URI: https://hybride.design/
Author: Hybride Design
Author URI: https://hybride.design/
Version: 1.1
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* CSS RESET */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,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:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* GLOBAL */
body {
	width: 100%;
	font-family: 'Lato';
}

img {
	max-width: 100%;
	height: auto;
}

/* GRID */
.container {
	width: 1400px;
	margin: 0 auto;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.column {
	flex-basis: 0;
	flex-grow: 1;
}

.column:not(:first-child) {
	padding-left: 40px;
}

.section_with_background {
	padding: 50px 60px;
	box-sizing: border-box;
}

.column.column_with_background:not(:first-child) {
	margin-left: 40px;
}

.column.column_with_background {
	padding: 40px 0;
	background-position: center center !important;
	margin-bottom: 20px;
}


.column.column_with_background * {
	padding: 0 40px;
	box-sizing: border-box;
}

/* TYPO */
h1 {
	font-weight: 400;
	font-size: 70px;
	text-transform: uppercase;
	text-align: left;
	letter-spacing: 2px;
	width: 100%;
	padding: 50px 0 20px;
}

h2 {
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 50px;
}

p {
	font-size: 15px;
	line-height: 25px;
	padding-bottom: 20px;
}

a {
	text-decoration: none;
	color: #163c98;
	transition: all ease 0.4s;
	font-weight: 700;
}

a:hover {
	color: #1b1b1b;
}

/* HEADER */
header {
	width: 100%;
	padding: 20px 0;
	background: #efefef;
	box-sizing: border-box;
}

header .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

#logo {
	flex-grow: 2;
}

#logo img {
	width: 200px;
}

/* menu */
#hamburger_menu, #hamburger_menu_close {
	display: none;
}

#menu nav > ul {
	display: flex;
}

#menu nav ul li {
	padding-left: 20px;
	position: relative;
}

#menu nav ul li a {
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 400;
	transition: color ease 0.3s;
	letter-spacing: 1px;
	padding: 20px 5px;
	color: #1b1b1b;
	display: block;
}

nav ul li a:visited {
	color: unset;	
}

#menu nav ul li a:hover {
	color: #666;
}

#menu nav ul .current-menu-item a, #menu nav ul .current-menu-item a:hover {
	color: #163c98;
	font-weight: 900;
}

/* submenu */
nav ul li ul {
	display: none;
}

#menu nav ul li:hover ul {
	display: block;
}

#menu nav ul li ul {
	position: absolute;
	background: #1b1b1b;
	padding: 15px 10px;
	min-width: 250px;
	z-index: 10;
}

#menu nav ul li ul li {
	padding: 0;
	margin: 0;
}

#menu nav ul li ul li a {
	padding: 7px 10px;
	margin-bottom: 10px;
	transition: all ease 0.3s;
	display: block;
}

#menu nav ul li ul li a:hover {
	background: #333;
	color: #fff;
}

#menu nav ul li ul li:last-child a {
	margin-bottom: 0;
}

#menu nav ul li ul li a {
	color: #fff;
}

/* PAGE HEADING STYLE */
#page_heading {
	background-size: cover;
	background-position: center bottom;
}

#page_heading header {
	background: transparent;
}

#page_heading h1 {
	font-weight: 300;
	text-align: center;
	padding: 200px 0 100px;
	color: #fff;
}

#page_heading nav ul li a {
	color: #fff;
}

#page_heading nav ul .current-menu-item > a {
	font-weight: 900;
}

#page_heading nav ul .current-menu-item a, #page_heading nav ul .current-menu-item a:hover {
	color: #fff;
}

/* FOOTER */
footer {
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	background: #1b1b1b;
	color: #fff;
	padding: 15px 0;
}

footer a {
	text-decoration: none;
	color: grey;
	transition: all ease 0.4s;
}

footer a:hover {
	color: #fff;
}