
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
	margin: 0;
	padding:0;
	font-family: 'Poppins', sans-serif;
}

.splash-bg {
	width: 100vw;
    height: 100vh;
    background-image: url(../images/GoldenJubileeSplash.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-inner {
	padding: 50px;
	background: white;
	text-align: center;
	max-width: 600px;
}

.splash-logo {
	margin: 0 0 20px;
}

.splash-logo img {
	margin: 0 auto;
}

.splash-text {
	font-size: 19px;
	margin: 0 0 20px;
	color: #054888;
}

.splash-button a {
	display: inline-block;
	padding: 12px 45px;
	background: #034888;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s ease-in all;
    text-align: center;
    text-decoration: none;
}

.splash-button a:hover {
	background: #000;
}

#panorama {
    width: 100vw;
    height: 100vh;
}

.panorama-container {
	position: relative;
}

.left-content {
	position: absolute;
	top: 50px;
	left: 50px;
	/*bottom: 50px;*/
	width: 45%;
	background: rgb(255 255 255 / 70%);
	display: flex;
	align-items: center;
	padding: 50px;
}

.left-content-inner {
	width: 100%;
}

.left-content-inner-title {
	margin: 0 0 20px 0;
    font-size: 32px;
    color: #034888;
}

.btn {
	display: inline-block;
    padding: 12px 40px;
    background: #034888;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease-in all;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}

.btn:hover {
	background: #fff;
	color: #000;
}

.nav-button-container {
	position: absolute;
	left: 50px;
	bottom: 50px;
	right: 50px;
}

.nav-button-container-inner {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: space-between;
}

.nav-button a {
	display: inline-block;
	padding: 12px 45px;
	background: #034888;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.2s ease-in all;
	text-align: center;
}

.nav-button a:hover {
	background: #fff;
	color: #000;
}

.block {
	margin: 0 0 20px;
}

.scene-title {
	font-weight: 600;
    margin: 0 0 10px;
    font-size: 20px;
}

.button-group {
	display: flex;
	gap: 10px;
	margin: 0 0 20px;
	flex-wrap: wrap;
}

.hidden {
	display: none;
}

.scene-info {
	position: absolute;
	top: 50px;
	right: 50px;
	background: rgb(255 255 255 / 60%);
	width: 250px;
	padding: 30px;
	text-align: center;
}

.scene-info-title {
	font-size: 20px;
	font-weight: 600;
}

.lottie {
	position: absolute;
	bottom: 10px;
	left: calc(50% - 25px);
}

.quotation-bg {
	width: 100vw;
    height: 100vh;
    background-image: url(../images/GoldenJubileeSplash.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.quotation-inner {
	padding: 50px;
    background: white;
    max-width: 1200px;
    width: 1000px;
}

.quotation-left-title {
	font-size: 32px;
	margin: 0 0 30px;
	color: #054888;
}

.quotation-left-content h4 {
    margin: 0 0 5px;
    text-decoration: underline;
    color: #054888;
}

.quotation-left-content p {
	margin: 0 0 20px;
}

.quote-cta {
	margin: 30px 0 0;
}

.quote-cta a {
	display: inline-block;
	padding: 12px 45px;
	background: #034888;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s ease-in all;
    text-align: center;
    text-decoration: none;
}

.quote-cta a:hover {
	background: #000;
}

.developed-by {
	position: absolute;
	bottom: 50px;
	left: 50px;
	color: white;
	font-size: 12px;
}
