:root {
	--col_skyblue: #80c4e4;
	--col_bluegreen: #219ebc;
	--col_olive: #b1c36f;
	--col_prussianblue: #023047;
	--col_orange: #ff8142;
	--sunit: clamp(.44rem, .85vw, 1rem);
	--ssunit: clamp(.875rem, .85vw, 1rem);
	--panel_col: rgba(255, 255, 255, 0.90);
	--root_width: min(100%, 1440px);
	--root_gutter: calc(var(--ssunit) * 5);
}

.grid-column {
	display: flex;
	flex-direction: column;
	gap: calc(var(--sunit) * 2.5);
}

.content-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-title {
	color: #FFF;
	text-align: center;
	font-family: "rl-aqva";
	font-size: calc(var(--ssunit) * 3.75);
	/*clamp(1.65rem, 3vw, 3.75rem);*/
	margin: calc(var(--root_gutter)) calc(var(--root_gutter) * 2.5);
	margin-bottom: calc(var(--ssunit) * 1.25);
	font-weight: 900;
	line-height: 120%;
	/*1.65rem to 3.75rem*/
}

.dark {
	color: var(--col_prussianblue);
}

* {
	box-sizing: border-box !important;
}

html {
	min-height: 100vh;
	scroll-behavior: smooth;
}

body {
	padding: 0px;
	background-color: var(--col_prussianblue);
	margin: 0px;
	display: flex;
	font-family: "rl-aqva";
	align-items: start;
	justify-content: center;
}

.clickable{
	cursor: pointer;
}

.root {
	width: var(--root_width);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url('./imgs/water_t.png');
	background-size: contain;
	overflow-x: hidden;
	clip-path: border-box;
}

/* .root::before {
	min-height: 100vh;
	display: flex;
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	background-color: #219EBCcc;
} */

.btn {
	color: var(--col_prussianblue) !important;
	text-align: center;
	font-family: "area-normal";
	font-size: calc(1 * var(--ssunit));
	font-style: normal;
	font-weight: 1000;
	/* line-height: normal; */
	background-color: var(--col_orange);
	padding: calc(1.35 * var(--ssunit)) calc(1.75 * var(--sunit));
	line-height: 100%;
	cursor: pointer;
	text-decoration: none;
	border-radius: calc(1.25 * var(--ssunit));
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
	transition: all .5s;
}

.btn:hover {
	background-color: var(--col_prussianblue) !important;
	color: white !important;
}

.panel {
	margin: 0rem calc(var(--ssunit) * 5);
	padding: calc(var(--ssunit) * 3.75) calc(var(--ssunit) * 5);
	border-radius: 1.25rem;
	background: var(--panel_col);
	backdrop-filter: blur(2px);
	margin: 0rem var(--root_gutter);
	padding: calc(var(--root_gutter) * 1) calc(var(--root_gutter) * 1);
}

.panel-title {
	color: var(--col_prussianblue, #023047);
	font-family: "rl-aqva";
	font-size: calc(2.5 * var(--ssunit));
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}

.sbold {
	font-weight: 1000;
}

.panel-title {
	color: var(--col_prussianblue, #023047);
	font-family: "rl-aqva";
	font-size: calc(1.5 * var(--ssunit));
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}
.panel-copy {

	color: #000;
	font-family: "area-normal";
	font-size: calc(1.25 * var(--ssunit));
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.top-section {
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
}

.top-section::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: calc(var(--top_section_h) * .75px);
    right: 0;
    z-index: 0;
    background-image: url(./imgs/desert.webp);
    background-size: var(--root_width) auto;;/* calc(var(--root_width) * 1.35) auto;*/
    background-position: center top;
    background-color: var(--col_skyblue);
    clip-path: url(#wave_clip);
}

@media (max-width: 768px) {
	:root {
		--root_gutter: calc(var(--ssunit) * 2.5);

	}
	.panel 
	{
	padding: calc(var(--root_gutter) * 2) calc(var(--root_gutter) * 2);
}
.panel-title {
	font-size: calc(1.5 * var(--ssunit));
}
.panel-copy {
	font-size: calc(1.0 * var(--ssunit));
}
.section-title {
	font-size: calc(2 * var(--ssunit));
}
}

@media (max-width: 768px) {
	@media (max-width: 768px) {
	:root {
		--root_gutter: calc(var(--ssunit) * 1.25);
	}
}
	.btn {
		font-size: calc(1.15 * var(--ssunit));
		padding: calc(1.35 * var(--ssunit)) calc(2 * var(--sunit));
	}

	
}