/* Custom color theme properties */
:root {
   --theme-color:       #E84C0A;
   --theme-color-light: #EC6602;
   --theme-color-dark:  #C43A00;
   --theme-footer-bg:   #263238;
   --theme-color-page:  #F6F6F6;
   --theme-color-gray:  #424242;
   --color-gray-light:  #bdbdbd;
   --theme-color-white: #FFFFFF;
   --theme-color-black: #000000;
   --theme-color-yelow: #FFCC00;
}

* {
	margin: 0;
	padding: 0;
}

body {
	width: 100%;
	height: auto;
	max-width: 120rem;
   margin: 0 auto;
}

.wrapper {
	min-height: 100vh;
   display: grid;
	overflow-x: hidden;
   grid-template: minmax(2.5rem, auto) minmax(5rem, auto) 1fr minmax(20rem, auto) / 1fr;
}

.wrapper.home {
   color: var(--theme-color-gray);
	background-color: var(--theme-color-page);
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	line-height: 1;
}

.bg-theme-color,.uk-button-primary {
   background-color: var(--theme-color)!important;
}

.uk-navbar-nav> li > a {
   color: var(--theme-color-page);
}

.uk-navbar-nav > li:hover > a {
   color: var(--theme-color-white);
}

.uk-button-primary:hover {
   background-color: var(--theme-color-dark)!important;
}

.uk-navbar-nav > li.uk-active > a {
   font-weight: 600;
   color: var(--theme-color-white);
}

.uk-navbar-nav > li.uk-active {
   position: relative;
}

.uk-navbar-nav > li.uk-active::before {
    content: "";
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    border-bottom: .18rem solid var(--theme-color-white);
}

h6.uk-card-title {
   color: var(--theme-color-dark)!important;
   font-weight: bold;
   font-size: 1.25rem;
   text-transform: uppercase;
}

.uk-tab > * > a {
   color: var(--theme-color-page);
   font-size: 1rem;
}

.uk-tab > .uk-active > a {
   font-weight: 600;
   border-color: var(--theme-color);
}

.start-button {
   width: 12rem;
}

