/**** VARIABLES ****/
:root {
	--header-spacing-mobile: 80px;
	--header-spacing-desktop: 130px;
	--side-spacing-mobile: 5%;
	--side-spacing-desktop: 7%;
	--vert-spacing-mobile: 35px;
	--vert-spacing-desktop: 50px;

	/* colors */
	--dark-gray: #45464e;
	--gray: #aaa;
	--red: #d62e29;
	--orange: #ff9900;
	--green: #78be20;
	--blue: #005a97;
	--light-blue: #0185de;
}

/**** VARIABLES END  ****/

html,
body {
	height: 100%;
	color: #333333;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	background-color: #eee;
}

/****  ****/
/**** END  ****/

/**** GLOBALS ****/

h2 {
	color: var(--blue);
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 30px;
}

h2.thin {
	font-weight: 300;
}

h3 {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	color: var(--blue);
	font-size: 24px;
	font-weight: 700;
}

p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 30px;
	color: var(--dark-gray);
}

p:last-child {
	margin-bottom: 0;
}

p.large {
	font-size: 1.25rem;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

span.orange {
	color: var(--orange);
	font-weight: bold;
}

.container {
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: auto;
	background-color: #fff;
}

.img-full {
	width: 100%;
	height: auto;
}

section {
	scroll-margin-top: var(--header-spacing-mobile);
}

.main {
	margin-top: var(--header-spacing-mobile);
}

.white-bg {
	background-color: #fff;
}

.blue-bg {
	background-color: var(--blue);
	border-top: 4px solid var(--gray);
	border-bottom: 4px solid var(--gray);
}

.blue-gray-bg {
	background-color: #dce4ef;
}

.blue-bg h2,
.blue-bg p {
	color: #fff;
}

.standard-padding {
	padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
}

.overflow-hidden {
	overflow: hidden;
}

.footer-logo {
	max-width: 235px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.florida-map-bg {
	background-image: url("../assets/images/florida-map.svg");
	background-position: top right;
	background-repeat: no-repeat;
}

.page-heading {
	background-color: var(--blue);
	padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
}
.page-heading h1 {
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
}

@media (min-width: 992px) {
	h2 {
		font-weight: 700;
		font-size: 45px;
		margin-bottom: 50px;
	}

	section {
		scroll-margin-top: var(--header-spacing-desktop);
	}

	.main {
		margin-top: var(--header-spacing-desktop);
	}

	.standard-padding {
		padding: var(--vert-spacing-desktop) var(--side-spacing-desktop);
	}

	.footer-logo {
		margin-bottom: 0px;
	}

	.page-heading {
		padding: var(--vert-spacing-desktop) var(--side-spacing-desktop);
	}
	.page-heading h1 {
		font-size: 60px;
	}
}

/**** END GLOBALS ****/

/**** Lightbox ****/
/* LIGHTBOX */

#lightbox {
	height: 100%;
	position: fixed;
	top: -100%;
	transition: top 0.85s;
	width: 100%;
	z-index: 200;
}

#lightbox > span {
	background-color: rgba(35, 35, 35, 0.8);
	cursor: pointer;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

#lightbox > span span {
	color: #fff;
	font-size: 3.6em;
	line-height: 0.4em;
	padding: 15px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
}

#lightbox div {
	box-shadow: 0 8px 15px 0 #000;
	margin: -120px auto 0;
	max-height: 80%;
	overflow: auto;
	position: relative;
	transform: rotateX(90deg) translateY(-160px);
	transition: 0.24s;
	width: 88%;
}

#lightbox img {
	display: block;
	width: auto;
	height: 80vh;
	background: white;
	padding: 15px;
}

@media (min-width: 992px) {
	#lightbox img {
		width: 100%;
		height: auto;
	}
}

#lightbox.on {
	top: 0;
}

#lightbox.on div {
	margin-top: 50px;
	transition: 0.8s ease-out 0.32s;
	transform: rotateX(0deg) translateY(0px);
}

.lightbox {
	cursor: pointer;
}

/**** END Lightbox ****/

/* Header */
.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 15px 30px;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 4px solid var(--blue);
}

.header .logo {
	width: auto;
	height: 50px;
}

.header .mobile-nav {
	width: 100%;
}

.header .mobile-nav-cta a {
	font-size: 40px;
	color: var(--blue);
	padding: 0;
}

.header .desktop-nav {
	display: none;
}

.header .nav-items {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header .mobile-nav .nav-items {
	padding-top: 20px;
}

.header .nav-items .nav-item {
	color: var(--dark-gray);
	text-decoration: none;
	margin-bottom: 5px;
	display: inline-block;
	transition: 0.25s ease-in-out;
}

.header .nav-items .nav-item:hover,
.header .nav-items .nav-item.selected {
	color: var(--blue);
}

.header .desktop-nav .nav-items {
	display: flex;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	font-size: 16px;
}

.header .desktop-nav .nav-items .nav-item {
	padding: 0 20px;
}

.header .desktop-nav .nav-items li:first-child .nav-item {
	padding-left: 0;
}

.header .desktop-nav .nav-items li:last-child .nav-item {
	padding-right: 0;
}

@media (min-width: 992px) {
	.header {
		padding: 15px 30px;
		flex-wrap: nowrap;
		border-bottom: 5px solid var(--blue);
	}

	.header .desktop-nav {
		display: block;
	}

	.header .mobile-nav-cta,
	.header .mobile-nav {
		display: none;
	}

	.header .logo {
		height: 100px;
	}

	.header .nav-items .nav-item {
		margin-bottom: 0;
	}
}

/* END Header */

/* Banner and carousel */
.banner {
	position: relative;
	width: 100%;
}

.banner::before {
	content: "";
	background-image: url("../assets/images/garnish/banner-carousel-top.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: -2px;
	width: 100%;
	height: 6.5vw;
	z-index: 2;
}

.banner::after {
	content: "";
	background-image: url("../assets/images/garnish/banner-carousel-bottom.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 6.5vw;
	z-index: 2;
}

.banner .carousel .slide-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 35vw;
	z-index: 1;
}

/*END Banner and carousel */

/* Circle Icon and Text */

.circle-icon-and-text {
	width: 130px;
	height: 130px;
	padding: 15px;
	background-color: var(--dark-gray);
	border-radius: 100%;
	margin: 8px;
	text-align: center;
	color: #fff;
}

@media (min-width: 992px) {
	.circle-icon-and-text {
		width: 165px;
		height: 165px;
		margin: 15px;
	}
}

.circle-icon-and-text.big-padding {
	padding: 20px;
}

@media (min-width: 992px) {
	.circle-icon-and-text.big-padding {
		padding: 30px;
	}
}

.circle-icon-and-text.green {
	background-color: var(--green);
	color: #000;
}
.circle-icon-and-text.blue {
	background-color: var(--blue);
}
.circle-icon-and-text.yellow {
	background-color: #fdb71a;
	color: #000;
}
.circle-icon-and-text.red {
	background-color: #d62e29;
}
.circle-icon-and-text.orange {
	background-color: var(--orange);
}
.circle-icon-and-text.purple {
	background-color: #1b2e5a;
}
.circle-icon-and-text.light-blue {
	background-color: #0ea5d2;
}

.circle-icon-and-text .icon {
	width: auto;
	height: 50px;
	margin-bottom: 5px;
}

@media (min-width: 992px) {
	.circle-icon-and-text .icon {
		height: 75px;
	}
}

.circle-icon-and-text .amount {
	font-weight: 900;
	font-size: 14px;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.circle-icon-and-text .amount {
		font-size: 16px;
	}
}

/* End Circle Icon and Text */

/* Icon and Text */
.icon-and-text {
	text-align: center;
	margin-bottom: 30px;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.icon-and-text.max-500 {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.icon-and-text .icon {
	width: auto;
	height: 100%;
	height: 115px;
	margin-bottom: 15px;
}

.icon-and-text .amount {
	color: var(--blue);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
	text-transform: uppercase;
	width: 100%;
}

.icon-and-text .amount a {
	color: var(--blue);
}

.icon-and-text .copy {
	margin-bottom: 0;
	margin-top: auto;
}

@media (min-width: 992px) {
	.icon-and-text {
		margin-bottom: 0px;
	}

	.icon-and-text .icon {
		margin-bottom: 20px;
	}

	.icon-and-text .amount {
		margin-bottom: 20px;
	}
}

/* End Icon and Text */

/* Stats Block */
.stats-block {
	margin-top: var(--vert-spacing-mobile);
}

.stats-block .flex-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.stats-block .info-block {
	width: 50%;
	text-align: center;
}

.stats-block .info-block .statistic {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
}

.stat-copy {
	position: relative;
	padding-top: 25px;
}

.stat-copy::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -22.5px;
	width: 45px;
	height: 5px;
	background-color: var(--green);
}

@media (min-width: 992px) {
	.stats-block {
		margin-top: 0;
	}

	.stats-block .flex-row {
		margin-bottom: 80px;
	}

	.stats-block .info-block {
		width: 35%;
	}

	.stats-block .info-block .statistic {
		font-size: 60px;
		margin-bottom: 10px;
	}

	.stats-block .info-block .stat-copy {
		font-size: 20px;
	}
}

/* END Stats Block */

/* Circle Stats */
.circle-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.circle-stats .circle {
	width: 200px;
	height: 200px;
	padding-top: 50px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 100%;
	background-color: var(--dark-gray);
	color: #fff;
	text-align: center;
	margin: 10px;
}

.circle-stats .circle.green {
	background-color: var(--green);
	color: #000;
}

.circle-stats .circle.blue {
	background-color: var(--blue);
}

.circle-stats .circle.red {
	background-color: var(--red);
}

.circle-stats .circle.orange {
	background-color: var(--orange);
	color: #000;
}

.circle-stats .circle .number {
	font-size: 50px;
	line-height: 50px;
	margin-bottom: 0;
	font-weight: 700;
}

.circle-stats .circle .copy {
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
}

@media (min-width: 992px) {
}

/* END Circle Stats */

/* Map and Tables */
.map-and-tables .map-header {
	display: block;
	width: 100%;
	background-color: var(--blue);
	color: #fff;
	padding: 20px;
	margin: 0;
	text-align: center;
	font-style: italic;
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
}

.map-and-tables .tables .table-header-orange {
	padding: 15px 5px;
	background-color: var(--orange);
	color: #000;
	font-size: 18px;
	margin-bottom: 5px;
}

.map-and-tables .tables .red-table {
	width: 100%;
}

.map-and-tables .tables table {
	margin-bottom: 5px;
}

.map-and-tables .tables .red-table td {
	padding: 10px;
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
}

.map-and-tables .tables .red-table .number {
	color: #fff;
	background-color: var(--red);
	font-size: 20px;
	width: 45px;
	height: 45px;
	text-align: center;
}

.map-and-tables .tables .red-table .amount {
	color: var(--red);
	font-weight: 700;
}

.map-and-tables .tables .table-sub-header-blue {
	color: #fff;
	display: block;
	background-color: var(--blue);
	padding: 10px 5px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}

.map-and-tables .tables .blue-table td {
	padding: 5px 10px;
	color: #000;
}

.map-and-tables .tables .blue-table .number {
	font-weight: 600;
	color: var(--blue);
	padding-right: 20px;
}

.map-and-tables .icon-column {
	margin-top: 25px;
	margin-bottom: 25px;
}

@media (min-width: 992px) {
	.map-and-tables .map-header {
		font-size: 30px;
		line-height: 30px;
	}
	.map-and-tables .icon-column {
		max-width: 500px;
		margin-top: 20px;
	}
}

/* END Map and Tables */

/* Planning Resource */
.planning-resource {
	height: 100%;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
	gap: 20px;
}

.planning-resource .cover-image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	width: 100px;
	height: 100px;
}

.planning-resource a {
	text-decoration: none;
	color: #fff;
}
.planning-resource a:hover {
	text-decoration: underline;
}

.planning-resource .resource-title {
	flex: 1;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 600;
}

@media (min-width: 992px) {
	.planning-resource .resource-title {
		font-size: 18px;
	}
}

.planning-resource .resource-content a {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
	gap: 20px;
}

@media (min-width: 992px) {
	.planning-resource .resource-content a {
		display: block;
	}
}

.planning-resource .links {
	position: relative;
	padding-top: 25px;
	margin-top: auto;
	width: 100%;
}

.planning-resource .links::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 5px;
	background-color: var(--green);
}

.planning-resource .links .tile-link {
	color: #fff;
	text-decoration: none;
	font-style: italic;
	display: inline-block;
	margin-bottom: 10px;
	width: 50%;
	background-size: cover;
	background-position: top center;
}

.planning-resource .links .tile-link:first-child {
	padding-right: 1%;
	padding-left: 0 !important;
}
.planning-resource .links .tile-link:last-child {
	padding-left: 1%;
}

.planning-resource .links .tile-link .title-cover {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 31vw;
	margin-bottom: 10px;
}

.planning-resource .links .tile-link:hover {
	text-decoration: underline;
}

@media (min-width: 992px) {
	.planning-resource {
		padding-bottom: 0px;
	}

	.planning-resource .cover-image {
		width: 100%;
		height: 300px;
		margin-bottom: 25px;
	}

	.planning-resource .links .tile-link .title-cover {
		height: 8.5vw;
	}
}

/* END Planning Resource */

/* Contact Block */
.contact-block {
	color: #fff;
	padding-left: 40px;
	margin-bottom: 25px;
}

.contact-block .contact-name {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 10px;
}

.contact-block .icon-and-info {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 10px;
}

.contact-block .icon-and-info .icon {
	width: 20px;
	height: auto;
	position: absolute;
	left: -40px;
}

.contact-block .icon-and-info a {
	color: white;
	text-decoration: none;
}

.contact-block .icon-and-info a:hover {
	text-decoration: underline;
}

@media (min-width: 992px) {
	.contact-block {
		margin-bottom: 0;
	}
}

/* End Contact Block */

/* Industry click map */

.click-map-container {
	width: 100%;
	overflow: auto;
}

.industry-click-map {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	overflow: hidden;
}
.industry-click-map .industry-layout {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}

.industry-click-map .label {
	font-size: 30px;
	line-height: 32px;
	background-color: var(--blue);
	color: #fff;
	padding: 5px;
	width: fit-content;
	margin-left: 10px;
	cursor: pointer;
}

.industry-click-map .exports {
	background-color: var(--blue);
}

.industry-click-map .imports {
	background-color: var(--green);
}

.industry-click-map .point-container {
	position: absolute;
	display: flex;
	align-items: center;
}

.industry-click-map .point-container.p1 {
	top: 51%;
	left: 5.5%;
}

.industry-click-map .point-container.p2 {
	top: 19%;
	left: 23.5%;
}

.industry-click-map .point-container.p3 {
	top: 43%;
	left: 54%;
}

.industry-click-map .point-container.p4 {
	top: 36%;
	left: 76.5%;
}

.industry-click-map .point-container.p5 {
	top: 89%;
	left: 3%;
}

.industry-click-map .point-container.p6 {
	top: 42%;
	left: 84%;
}

.industry-click-map .point-container .point {
	width: 40px;
	height: 40px;
	padding: 5px;
	background-color: #ff8200;
	border: 2px solid #ff8200;
	border-radius: 100%;
	transition: 0.25s ease-in-out;
}

.industry-click-map .point-container:hover .point {
	background-color: #ffdab3;
	cursor: pointer;
}

.industry-click-map .point-container .point .icon {
	width: 100%;
	height: auto;
}

.industry-click-map .point-container .point .icon path {
	fill: #fff;
	transition: 0.25s ease-in-out;
}

.industry-click-map .point-container:hover .point .icon path {
	fill: #ff8200;
}

.industry-click-map .point-container .point-label {
	position: absolute;
	bottom: -1000%;
	transition: 0.5s ease-in-out;
	white-space: nowrap;
	left: 9.5%;
	height: 100%;
	border-left: 5px dashed #ff8200;
	z-index: 2;
}

.industry-click-map .point-container.active .point-label {
	bottom: 270%;
	z-index: 1;
}

.industry-click-map .point-container .point-label .label-copy {
	background-color: #f2f2f2;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	padding: 10px;
	border-left: 5px solid #ff8200;
	margin-left: -5px;
	border-radius: 0 10px 10px 0;
	z-index: 3;
	display: inline-block;
}

.industry-click-map .point-container .point-label.reversed .label-copy {
	margin-left: -100%;
	border-radius: 10px 0 0 10px;
	border-left: 0;
	border-right: 5px solid #ff8200;
}

@media (min-width: 992px) {
	.industry-click-map {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.industry-click-map .label {
		font-size: 50px;
		line-height: 52px;
	}
	.industry-click-map .point-container .point {
		width: 60px;
		height: 60px;
		padding: 10px;
	}

	.industry-click-map .point-container.active .point-label {
		bottom: 100%;
		z-index: 1;
	}

	.industry-click-map .point-container .point-label {
		height: 400%;
	}
	.industry-click-map .point-container .point-label .label-copy {
		font-size: 16px;
		line-height: 18px;
	}
	.industry-click-map .point-container.p5 {
		top: 85%;
		left: 0%;
	}
	.industry-click-map .point-container.p6 {
		top: 50%;
		left: 65%;
	}
}
/* END industry click map */

/* Link List*/
.link-list {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.link-list li {
	font-weight: 700;
	margin-bottom: 10px;
}

.link-list li a {
	font-weight: 600;
	color: var(--blue);
	word-wrap: break-word;
}
/* END Link List */

/* Accordion */

.accordion {
	margin-bottom: 20px;
}

.accordion .accordion-button {
	background-color: #fff;
	color: var(--blue);
	font-size: 1.25rem;
	font-weight: 600;
	transition: filter 150ms ease-in-out;
	padding-left: 20px;
	padding-right: 20px;
}

.accordion .accordion-button:hover {
	filter: brightness(80%);
}

.accordion .accordion-item {
	margin-bottom: 20px;
}

.accordion .accordion-body {
	padding: 20px;
	padding-bottom: 0;
}

/* County Click Map */

.county-click-map {
	position: relative;
	width: 100%;
	overflow: auto;
}

.county-click-map .map-mobile {
	display: block;
}

.county-click-map .map-mobile .county-profile {
	background-color: #fff;
	padding: 20px;
    margin-bottom: 30px;
	border-radius: 8px;
	text-align: center;
}

.county-click-map .map-mobile .county-profile h3 {
	margin-bottom: 20px;
}


.county-click-map .map-mobile .county-profile .map-image {
	width: 100%;
	height: auto;
	max-width: 200px;
    margin-bottom: 20px;
}

.county-click-map .map-mobile .county-profile-link {
	position: relative;
	display: block;
	max-width: 300px;
	margin: 0 auto;
	top: unset !important;
	left: unset !important;
}

@media (min-width: 992px) {
	.county-click-map .map-mobile {
		display: none;
	}
}

.county-click-map .map-mobile .instructions {
	width: 100%;
}

.county-click-map .map {
	display: none;
	position: relative;
	width: 100%;
	height: auto;
	min-width: 600px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.county-click-map .map {
		display: block;
	}
}

.county-click-map .county-profile-link {
	display: inline-block;
	position: absolute;
	padding: 5px;
	border-radius: 8px;
	background-color: var(--blue);
	color: #fff;
	font-size: 1rem;
	transition: background-color 150ms ease-in-out;
	text-decoration: none;
}

.county-click-map .county-profile-link:hover {
	background-color: #023f68;
	text-decoration: none;
}

.county-click-map .county-profile-link.orange {
	background-color: var(--orange);
	color: #000;
}

.county-click-map .county-profile-link.orange:hover {
	background-color: #d87103;
}

.county-click-map .instructions {
	display: block;
	font-weight: 500;
	text-align: center;
}

@media (min-width: 992px) {
	.county-click-map .instructions {
		position: absolute;
		top: 5%;
		right: 8%;
		width: 200px;
		text-align: left;
	}
}

#flagler {
	top: 27%;
	left: 64%;
}

#volusia {
	top: 39%;
	left: 67%;
}

#brevard {
	top: 62%;
	left: 80%;
}

#osceola {
	top: 68%;
	left: 69%;
}

#orange {
	top: 56%;
	left: 64%;
}

#seminole {
	top: 49%;
	left: 65%;
}

#lake {
	top: 46%;
	left: 52%;
}

#sumter {
	top: 51%;
	left: 43%;
}

#marion {
	top: 35%;
	left: 44%;
}
