@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
	--main-color: #E0C9A6;
}

body {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.3;
	font-size: 1.2rem;
}

#banner {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

#bannerMedia {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#bannerMedia video, #bannerMedia img {
	min-width: 100%;
	min-height: 100%;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	pointer-events: none;
}

#content {
	z-index: 2;
}

.navbar{
	background-color: var(--main-color) !important;
}

h1 {
	font-weight: 300;
	font-size: 60px;
	line-height: 1.2;
	margin-bottom: 15px;
}

h2 {
	font-size: 2rem;
	margin: 30px 0;
	color: var(--primary-color);
}

h3 {
	font-size: 1.5rem;
	margin: 30px 0;
	color: var(--primary-color);
}

.btn {
	display: inline-block;
	padding: 10px 30px;
	background: var(--bs-success);
	color: #fff;
	border-radius: 5px;
	border: solid #fff 1px;
	margin-top: 25px;
	opacity: 0.7;
}

.btn:hover {
	transform: scale(0.98);
}

#main p {
	text-align: justify;
}


.row div{
	margin-bottom: 1rem;
}

.inline-quote{
	color: grey;
	font-style: italic;
}

.quote{
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	color: grey;
	text-align: center;
}

.quote-text{
	font-style: italic;
}

table{
	background-color: var(--main-color) !important;
}

td, th{
	border: 1.5px solid black;
	border-collapse: collapse;
}

thead{
	text-align: center;
}

.table-title{
	font-weight: bold;
	text-transform: uppercase;
}

img{
	margin-bottom: 1rem;
}

#scrollTop{
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	background-color: var(--main-color);
	border-radius: 50%;
}

.card-text{
	text-align: start !important;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  }

  .video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}