html, body {
	max-width: 100%;
	overflow-x: hidden;
	font-size:16px;
}
body {
	overscroll-behavior-x: none;
}
/*custom fonts*/
@font-face {
	font-family: 'Brusher';
	src: url('https://www.globallee.com/globalleeinc/dist/assets/fonts/Brusher.ttf') format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Malibu';
	src: url('https://www.globallee.com/globalleeinc/dist/assets/fonts/Malibu.otf') format("opentype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'JimmyScript';
    src: url('https://www.globallee.com/globalleeinc/dist/assets/fonts/JimmyScript-RG.woff2') format('woff2'),
         url('https://www.globallee.com/globalleeinc/dist/assets/fonts/JimmyScript-RG.woff') format('woff'),
         url('https://www.globallee.com/globalleeinc/dist/assets/fonts/JimmyScript-RG.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/*common elements*/
.row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}
.row-gap {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 50px;
}
.row-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}
.row-margin {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	margin:40px 0 40px 9;
}
.column {
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}
.column-40{
	flex-direction: column;
	flex-basis: 40%;
}
.column-wide {
	flex-direction: column;
	flex-basis: 60%;
}
.column-narrow{
	flex-direction: column;
	flex-basis: 25%;
	align-items:center;
}
.content-wrapper{
	margin:50px 250px 50px 250px ;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.content-wrapper2{
	margin:0 150px 0 150px ;
	display:flex;
	flex-direction:column;
	align-items:center;
}
/*STARTING SPECIFIC STYLES FOR ABOUT PAGE*/
.aboutBanner {
	background-image:url("/custom/DefaultTheme/storage/assets/about/banner/AboutBG.webp");
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	min-height:100vh;
	display: flex;
	justify-content:center;
	position: relative;
}
.banner-text-about {
	text-align:center;
	position: relative;
	z-index: 2;
	margin-top:300px;
}
.title-custom-style-about span {
	font-size: clamp(32px, 7vw, 90px);
	display: block;
	color: #ffffff;
	font-weight:700;
	text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	text-transform:uppercase;
	white-space:nowrap;
}
.title-custom-style-about span+span {
	font-size: clamp(24px, 5vw, 40px);
	font-weight:700;
	display: block;
	color: #ffffff;
	text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}
.bannerButtonAbout{
	text-align:center;
	width:auto;
	position: relative;
	display: inline-block;
	padding: 14px 34px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: clamp(12px, 6vw, 18px);
	color: #fff;
	background: linear-gradient(135deg,#D9F76A 0%,#B8E830 45%,#8CCB1F 100%);
	box-shadow:0 10px 20px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.1);
	transform-style: preserve-3d;
	transition: all .4s cubic-bezier(.23,1,.32,1);
	overflow: hidden;
	margin-top:50px;
}
.bannerButtonAbout:hover {
	transform:translateY(-6px)translateZ(20px)rotateX(6deg);
	box-shadow:0 18px 35px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.2);
	text-decoration:none !important;
	color:#ffffff !important;
}
.bannerButtonAbout span {
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 6px rgba(0,0,0,.6);
	font-size: clamp(1rem, 3vw, 2rem);
}
/*where we started section*/
.whereWeStarted{
	margin:75px 0 75px 0;
}
.whereWeStarted h2{
	font-size: clamp(32px, 5vw, 40px);
	color:#b8e830;
	font-weight:700;
}
.whereWeStarted p{
	font-size:17.5px;
}
/*where we are going section*/
.whereWeAreGoing{
	margin:75px 0 75px 0;
}
.whereWeAreGoing h2{
	font-size: clamp(32px, 5vw, 40px);
	color:#5ce1e6;
	font-weight:700;
}
.whereWeAreGoing p{
	font-size:17.5px;
}
.foundersInspiration{
	background-color:#eeeeee;
	margin:75px 250px 75px 250px;
	padding:50px;
	box-shadow: 8px 10px 25px rgba(0, 0, 0, 0.12);
}
.foundersInspiration h2{
	font-weight:700;
	color:#000000;
	font-size: clamp(32px, 5vw, 40px);
	margin:0 0 20px 125px;
}
.foundersInspiration p{
	font-size:17.5px;
	line-height:2.25em;
}
.foundersInspiration img{
	display: block;
}
.foundersInspiration figcaption{
	position: relative;
	width: 50%;
	background: rgba(255, 255, 255, 1);
	/* soft white overlay */
	color: #000;
	padding: 5px;
	z-index:100;
	margin-top:-70px;
}
.foundersInspiration figcaption h4{
	color:#000000;
	font-size:14px;
}
.foundersInspiration figcaption h5{
	color:#000000;
	font-size:12px;
	font-style:italic;
}
.founder-member-first{
	margin-right:25px;
}
.founder-member-last{
	margin-left:25px;
}
.founderSignatures{
	display:flex;
	flex-direction:row;
	list-style-type:none;
	justify-content:space-around;
	margin:0 0 20px 0;
	padding:0;
}
.founderSignatures .MarkM{
	font-family: 'Brusher';
	font-weight:normal;
	color:#000000;
	font-style:normal;
	font-size:120%;
	margin:0 5px 0 5px;
}
.founderSignatures .Nicole{
	font-family: 'Malibu';
	font-weight:normal;
	color:#000000;
	font-style:normal;
	font-size:120%;
	margin:0 5px 0 5px;
}
.founderSignatures .Lamia{
	font-family: 'Jimmy Script';
	font-weight:normal;
	color:#000000;
	font-style:normal;
	font-size:120%;
	margin:0 5px 0 5px;
}
.founderNames{
	background-color:#ffffff;
	padding:5px;
}
.founderNames h4{
	font-weight:bold;
}
.founderNames h5{
	font-style:italic;
}
.meetOurTeam{
	margin:75px 0 75px 0;
	text-align:center;
}
.meetourTeam h2{
	color:#b8e830;
	font-weight:bold;
	font-size:52px;
}
.team-member{
	margin:0 50px 0 50px;
}
.team-member figcaption{
	margin-top:10px;
}
.team-member figcaption h4{
	font-weight:700;
	font-size:14px;
}
.team-member figcaption h5{
	font-size:12px;
}
.teamAchievements-manufacturingHighlights{
	background-color:#b8e830;
	text-align:center;
	margin:75px 0 75px 0;
	position:relative;
	overflow:hidden;
	padding:150px 0 150px 0;
}
/* TOP */
.wave-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 0;
}
.wave-top svg {
	width: 100%;
	height: 180px;
}
.wave-top path {
	fill: #ffffff;
}
/* BOTTOM */
.wave-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 0;
}
.wave-bottom svg {
	width: 100%;
	height: 180px;
}
.wave-bottom path {
	fill: #ffffff;
}
.teamAchievements-manufacturingHighlights h2{
	color:#ffffff;
	font-weight:bold;
	font-size: clamp(32px, 5vw, 40px);
	margin:40px 0 40px 0;
}
.achievement{
	max-width:200px;
}
.manufacturers{
	display:flex;
	flex-direction:row;
	list-style-type:none;
	margin:20px 0 20px 0;
}
ul.manufacturers li{
	list-style-type:none;
	padding:0 10px 0 0;
}
/*image sizes*/
.npa{
	width:176px;
	height:78px;
	margin:0 5px 0 5px;
}
.usda{
	width:124px;
	height:131px;
	margin:0 5px 0 5px;
}
.otco{
	height:118px;
	width:124px;
	margin:0 5px 0 5px;
}
.oregon{
	height:126px;
	width:133px;
	margin:0 5px 0 5px;
}
.aloe{
	height:80px;
	width:263px;
	margin:0 5px 0 5px;
}
.aib{
	height:110px;
	width:125px;
	margin:0 5px 0 5px;
}
.ift{
	height:98px;
	width:126px;
	margin:0 5px 0 5px;
}
.abc{
	height:80px;
	width:166px;
	margin:0 5px 0 5px;
}
.plma{
	height:93px;
	width:183px;
	margin:0 0 0 5px;
}
.Events-Vacations{
	text-align:center;
}
.Events-Vacations h2{
	color:#b8e830;
	font-weight:700;
	font-size: clamp(32px, 5vw, 40px);
	margin-bottom:40px;
}
.Events-Vacations img{
	margin:0 10px 0 10px;
}
.Events-Vacations figcaption{
	margin-top:10px;
}
.Events-Vacations figcaption h4{
	font-weight:700;
	font-size:1em;
}
.Events-Vacations figcaption h5{
	font-size:.8em;
}
.vacation-2026{
	text-align:center;
	margin:75px 0 75px 0;
	background-image:url("/custom/DefaultTheme/storage/assets/about/curves/FtLauderdale-curves.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	min-height:334px;
	padding-right:150px;
}
.vacation-2026 h2{
	font-size: clamp(24px, 5vw, 40px);
	color:#b8e830;
	font-weight:700;
	width:15em;
	margin-left:500px;
}
.vacation-2026 img{
	margin:-50px 350px 0 0;
}
.FL-Vacation{
	margin-right:50px;
}
.bannerButtonAboutLearnMore{
	text-align:center;
	width:250px;
	position: relative;
	display: inline-block;
	padding: 14px 34px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: clamp(12px, 6vw, 18px);
	color: #fff;
	background: linear-gradient(135deg,#D9F76A 0%,#B8E830 45%,#8CCB1F 100%);
	box-shadow:0 10px 20px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.1);
	transform-style: preserve-3d;
	transition: all .4s cubic-bezier(.23,1,.32,1);
	overflow: hidden;
	margin:40px 0 0 500px;
}
.bannerButtonAboutLearnMore:hover {
	transform:translateY(-6px)translateZ(20px)rotateX(6deg);
	box-shadow:0 18px 35px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.2);
	text-decoration:none !important;
	color:#ffffff !important;
}
.bannerButtonAboutLearnMore span {
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 6px rgba(0,0,0,.6);
	font-size: clamp(1rem, 3vw, 2rem);
}
@media only screen and (max-width: 768px) {
	body{
		width:100%;
	}
	.row {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		width: 100%;
		justify-content: center;
		align-items: center;
		max-width:100%;
	}
	.row-wrap {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
		align-items: center;
		max-width:100%;
	}
	.row-gap {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		gap: 0;
		align-items: center;
		max-width:100%;
	}
	.column {
		display: flex;
		flex-direction: column;
		flex-basis: 100%;
		flex: 1;
		margin:0;
	}
	.column-40{
		flex-basis:100%;
	}
	.column-wide{
		flex-basis:100%;
	}
	.content-wrapper{
		margin:0;
		padding:180px 0 0 0;
	}
	.content-wrapper2{
		margin:0;
		padding:10px;
	}
	.whereWeStarted{
		margin:0;
		padding:0;
	}
	.whereWeStarted .row {
		display: flex;
		flex-direction: column-reverse;
	}
	.whereWeStarted h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.whereWeAreGoing{
		margin:0;
		padding:0;
	}
	.manufacturers{
		flex-direction:column;
	}
	.whereWeAreGoing h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.foundersInspiration{
		background-color:#eeeeee;
		margin:0;
		padding:0;
		box-shadow: 8px 10px 25px rgba(0, 0, 0, 0.12);
	}
	.foundersInspiration h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.founder-member-first{
		margin:0 0 5px 0;
		padding:0;
	}
	.founder-member-middle{
		margin:0;
		padding:0;
	}
	.founder-member-last{
		margin:5px 0 0 0;
		padding:0;
	}
	.meetOurTeam{
		margin:0;
		padding:0;
	}
	.meetOurTeam h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.teamAchievements-manufacturingHighlights{
		margin:0;
		padding:0 0 100px 0;
	}
	.teamAchievements-manufacturingHighlights h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.Events-Vacations{
		margin:0;
		padding:0;
	}
	.Events-Vacations h2{
		text-align:center;
		margin:0 0 10px 0;
	}
	.vacation-2026{
		margin:0;
		padding:0;
		background-image:none;
		padding:0 0 0 20px;
	}
	.vacation-2026 .row{
		display: flex;
		flex-direction: column-reverse;
	}
	.vacation-2026 h2{
		text-align:center;
		margin:20px 0 10px 0;
	}
	.vacation-2026 img{
		margin:0;
	}
	.bannerButtonAboutLearnMore{
		margin:20px 0 0 0;
	}
}
/*End About Page*/
