/*
Theme Name: Raven Capital
Author: Digital Dots
Version: 1.0
*/

:root {
	--primary:#15263E;
	--text:#fff;
	--white:#fff;
	--red:#EE3333;
}

* {
	box-sizing:border-box;
}

body, html {
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

html {
	background-color: #15263E;
	color: var(--text);	
	margin: 0;
	font-family: "Helvetica Neue", Helvetica , Arial, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;	
}

body {
	background-color: #15263E;
	color: var(--text);	
	margin: 0;
	font-family: "Helvetica Neue", Helvetica , Arial, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;	
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}

*:focus {
	outline: none !important;
	box-shadow:  none !important;	
}

p {
    margin: 0 0 1rem 0;	
}

a {
	color: var(--red);
    text-decoration: none;  
}

a:hover {
	color: #dc1212;
}

h1 {
	font-size: 100px;
    font-weight: 400;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.site-header {
	background-color: rgba(55, 56, 70, 0.16);
	padding: 25px 0;
}

.header-inner {
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.site-logo img {
	width: 203px;
}

.nav-menu {
	display:flex;
	gap:35px;
	list-style:none;
	margin:0;
	padding:0;
}

.nav-menu a {
	color:#fff;
	text-decoration:none;
}

.header-login a {	
	font-size: 15px;
	text-transform: uppercase;
    background: transparent;
    color: rgb(158, 158, 158);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgb(158, 158, 158);	
    text-decoration: none;
}

.site-main {
	background-color: var(--primary);
	color: var(--white);
	padding: 40px 0;
}

.home .site-main {
	padding: 120px 0;
}

.page-title {
	font-size: 48px;
	font-weight: 300;
	text-align: center;
}

.content {
	font-size:15px;
}

.site-footer {
	background:#15263E;
	color:#fff;
	padding:40px 0;
}

.footer-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-content {
	text-align: center;
	font-size: 12px;
}

@media(max-width:768px){

	.header-inner,
	.footer-inner {
		flex-direction:column;
		gap:25px;
	}
	
	.home .site-main { 
		padding: 80px 0;
    }

	.nav-menu {
		flex-direction:column;
		text-align:center;
	}

	.page-title {
		font-size:36px;
	}
	
	h1 {
		font-size: 50px;
	}

	.footer-content {
		text-align:center;
	}

}
