/* Globals */
:root {
	--bs-body-font-family: "Open Sans",sans-serif;
	--bs-secondary-color: #a86000;
	--rizes-blue: #375e97;
}

body {
	padding-top: 80px;
	color: #646464;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	color: black;
	line-height: 1.4;
}
h1, h2 {
	font-size: 26px;
}

a {
	text-decoration: none;
}

p {
	font-weight: 300;
}
footer, footer a {
	color: #aaa;
}

.lead {
	font-size: 16px;
}

.title-letter-spacing {
	letter-spacing: 3px;
}

.hyper-title {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--bs-secondary-color);
	letter-spacing: 1px;
}

.navbar {
	--bs-navbar-nav-link-padding-x: 12px;
}

.navbar-nav {
	--bs-nav-link-hover-color: var(--rizes-blue);
}

.nav-item .nav-link {
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.container {
	padding-left: 24px;
	padding-right: 24px;	
}

.bg-body-tertiary .list-group-item {
    background-color: rgb(var(--bs-tertiary-bg-rgb));
}

.bg-body-tertiary .list-group-item:hover {
	background-color: rgb(var(--bs-secondary-bg-rgb));
	
}

.btn {
    --bs-btn-padding-x: 36px;
    --bs-btn-padding-y: 16px;
    --bs-btn-font-size: 11px;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1.6;
}
.btn-primary {
    --bs-btn-color: #333;
    --bs-btn-bg: #eee;
    --bs-btn-border-color: #eee;
    --bs-btn-hover-color: white;
    --bs-btn-hover-bg: var(--rizes-blue);
    --bs-btn-hover-border-color: var(--rizes-blue);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--rizes-blue);
    --bs-btn-active-border-color: var(--rizes-blue);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--rizes-blue);
    --bs-btn-disabled-border-color: var(--rizes-blue);
	text-transform: uppercase;
	border-radius: 0;
	font-size: 13px;
}



/* Carousel */
.carousel {
	margin-bottom: 64px;
}

.carousel-caption {
	bottom: 50%;
    transform: translateY(40%);
	z-index: 10;
}

.carousel-caption h1 {
	color: white;
}

.carousel-caption p {
	color: white;
}

.carousel-item {
	height: 640px;
}

@media (min-width: 640px) {
	.carousel-caption p {
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 1.4;
	}
}

@media (min-width: 992px) {
	.carousel-item {
		height: 800px;
	}
	h1, h2 {
		font-size: 32px;
	}
}