/*--------------------------------------------------------------
# color 1, 	red: 	#b42e20, #812319
# color 2, 	gray: #e5e5e5
# color 3,	text:	#222222 #6E368C
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BASIC TAGS
--------------------------------------------------------------*/

html, body {
	font-family: 'PT Sans', sans-serif;
	color: #222222;
	font-size: 18px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
}

a {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	color: #002fa7;
	position: relative;
}

a:hover {
	text-decoration: none;
	color: #A2A2A2;
}

strong {
	font-weight: bold;
}

hr {
	border-top: 1px solid #E5E5E5;
	margin: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'EB Garamond', serif;
	margin: .5rem 0 .5em 0;
	font-weight:500;
}

h1, h2 {
	font-size: 1.75rem;
	margin-top: 2rem;
}

label {

}

/*--------------------------------------------------------------
# LAYOUT
--------------------------------------------------------------*/


.site-container {
}

.site-header {
	padding: 1.75rem 1rem;
	position: fixed;
	top: 0;
	border-bottom: 1px solid #E5E5E5;
	width: 100%;
	left: 0;
	background: #FFFFFF;
	z-index: 100;
}

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

.site-main {
	padding-top: 96px;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: 3rem;
	min-height: 100vh;
	position: relative;
}

.site-footer {
	padding: 1.5rem 1rem;
	background: #E5E5E5;
	font-size: .85rem;
	line-height: 1.75;
	text-align: center;
}

/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/

.site-nav {
	position: fixed;
	top: 100vh;
	left: 0;
	background: #ffffff;
	width: 100%;
	-webkit-transition: 400ms ease-in;
	-ms-transition: 400ms ease-in;
	-moz-transition: 400ms ease-in;
	-o-transition: 400ms ease-in;
	transition: 400ms ease-in;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	opacity: 0;
	padding: 2rem 0;
	height: calc(100vh - 96px);
}

.site-nav.open {
	-webkit-transition: 400ms ease-out;
	-ms-transition: 400ms ease-out;
	-moz-transition: 400ms ease-out;
	-o-transition: 400ms ease-out;
	transition: 400ms ease-out;
	-webkit-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
	top: 96px;
	opacity: 1;
}

.site-nav .menu-primary,
.site-nav .lang-selector {
	font-family: 'EB Garamond', serif;
	list-style-type: none;
	padding: 0 1rem;
	margin: 0;
	display: block;
}

.site-nav .menu-primary a,
.site-nav .lang-selector a {
	display: block;
	color: #A2A2A2;
	font-weight: bold;
	border-bottom: 0;
	padding: .25rem 0;
	font-size: 1.25rem;
}

.site-nav .menu-primary a:hover,
.site-nav .lang-selector a:hover {
	color: #222222;
	background: transparent;
}

.site-nav .menu-primary .current-menu-item a,
.site-nav .lang-selector .current-lang a {
	color: #222222;
}

.site-nav .lang-selector a {
	text-transform: capitalize;
}

.site-footer .menu-primary,
.site-footer .lang-selector
 {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.site-footer .menu-primary a,
.site-footer .lang-selector a {
	color: #222222;
}

.site-footer .lang-selector a {
	text-transform: uppercase;
}

.site-footer .menu-primary .current-menu-item a,
.site-footer .lang-selector .current-lang {
	font-weight: bold;
}


/*--------------------------------------------------------------
# SERVICES
--------------------------------------------------------------*/

.service {
	display: block;
	padding: 1rem;
	border-top: 6px solid #ffffff;
	border-right: 6px solid #ffffff;
	margin: 1rem 0;
	color: #222222;
}

.service:hover {
	color: #222222;
}


.service:focus {
	outline: 0;
}

.service-title {
	margin: 0;
}

.service-more {
	text-align: right;
	font-size: .8rem;
	margin-top: .5rem;
}


.service.theme-red {
	border-color: #ffd1d1;
	background: #fff3f3;
}

.service.theme-red:hover {
	background: #ffd1d1;
}

.service.theme-green {
	border-color: #aef5ae;
	background: #ebffeb;
}

.service.theme-green:hover {
	background: #aef5ae;
}

.service.theme-blue {
	border-color: #b8d4ff;
	background: #edf4ff;
}

.service.theme-blue:hover {
	background: #b8d4ff;
}

.service.theme-purple {
	border-color: #dac2ff;
	background: #f6f0ff;
}

.service.theme-purple:hover {
	background: #dac2ff;
}

.service.theme-yellow {
	border-color: #ffe1aa;
	background: #fff9ef;
}

.service.theme-yellow:hover {
	background: #ffe1aa;
}

.service.theme-gray {
	border-color: #d1d1d1;
	background: #f0f0f0;
}

.service.theme-gray:hover {
	background: #d1d1d1;
}



/*--------------------------------------------------------------
# BOOTSTRAP
--------------------------------------------------------------*/

.accordion .card {
	margin-bottom: .25rem;
}

.accordion .card,
.accordion .card-header {
	border: 0;
}

.accordion .card-header h2 {
	margin: 0;
}

.accordion .card-header .btn-link {
	color: #222222;
	font-size: 1.35rem;
	font-weight: 500;
	transition: opacity .25s ease;
}

.accordion .card-header .btn-link:hover {
	color: #222222;
	opacity: .75;
	text-decoration: none;
}

.modal-theme-yellow .accordion .card-header {
	background-color: #ffe1aa;
}

.modal.modal-page .modal-dialog {
	position: fixed;
	-webkit-transition: 400ms ease-in top;
	-ms-transition: 400ms ease-in top;
	-moz-transition: 400ms ease-in top;
	-o-transition: 400ms ease-in top;
	transition: 400ms ease-in top;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	opacity: 1;
	margin: 0;
	top: 100vh;
	width: 100%;
	max-width: none;
}

.modal.modal-page.show .modal-dialog {
	-webkit-transition: 400ms ease-out top;
	-ms-transition: 400ms ease-out top;
	-moz-transition: 400ms ease-out top;
	-o-transition: 400ms ease-out top;
	transition: 400ms ease-out top;
	-webkit-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}

.modal.modal-page .modal-dialog .modal-content {
	-webkit-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
	position: relative;
	border: 0;
	border-radius: 0;
	padding-bottom: 0;
}

.modal.modal-page .modal-aside {
	font-size: .85rem;
}

.modal-theme-red .modal-content {
	background: #fff3f3;
}

.modal-theme-green .modal-content {
	background: #ebffeb;
}

.modal-theme-purple .modal-content {
	background: #f6f0ff;
}

.modal-theme-blue .modal-content {
	background: #edf4ff;
}

.modal-theme-yellow .modal-content {
	background: #fff9ef;
}

.modal-theme-gray .modal-content {
	background: #ececec;
}

.modal-page .modal-content {
	padding: 2rem 1rem;
	position: relative;
	overflow-y: scroll;
	height: calc(100vh);
}

.modal-page .modal-body {
	padding: 0;
	position: relative;
}

.modal-page .modal-title {
	line-height: 100%;
	font-size: 2.5rem;
	margin: 0 0 2rem 0;
}

.modal-page .modal-text {
	margin-top: 2rem;
	border-top: 1px solid #DDDDDD;
	padding-top: 2rem;
}

.modal-page .modal-dismiss {
	display: block;
	position: absolute;
	top: 2rem;
	right: 1rem;
	z-index: 2;
	cursor: pointer;
	transform: rotate(45deg);
}

.modal-backdrop.show {
	opacity: 0;
}

.btn,
.card,
.form-control,
.input-group,
.navbar,
.modal-content,
.dropdown-menu,
.alert,
.badge,
.progress,
.pagination,
.img-thumbnail {
  border-radius: 0 !important;
}

/*--------------------------------------------------------------
# WORDPRESS
--------------------------------------------------------------*/

.screen-reader-text {
	display: none;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# PLUGINS
--------------------------------------------------------------*/

.hf-message {
	margin-top: 1rem;
	position: relative;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
}

.hf-message-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.hf-message-warning {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.hamburger {
	padding: 0;
	line-height: .85;
}

/* Rules for sizing the icon. */
.material-icons { vertical-align: middle;}
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
