/*$brown: #CFAC61;
$light-brown: #D1A281;
$green: #AFC1A8;
$red: #B46246;*/

html {scroll-behavior: smooth;}

body { 
	/*background: url(Bloom.png);*/
	/*background-size: 18%; */
	background: #fff;
	position: relative;
	margin: auto;
	font-family: "Cabin Sketch", sans-serif;
	background-color: #fff;
}

h1 {
	z-index: 5;
    position: relative;
    margin-top: 0;
    text-align: center;
    font-size: 45px;
    font-family: "Cabin Sketch", sans-serif;
    color: #fff;
    letter-spacing: 4px;
}

h2 {
  font-family: "Cabin Sketch", sans-serif;
}

.subpage-h1 {
	background: #AFC1A8;
	padding: 20px;
	text-align: left;
}
.container {
	max-width: 1200px; /* max 'width' of contents of site */
	margin: 0 auto; /* centered horizontally  */
}

.nav-bar {
	top: 0;
	width: 100%; /* full width */
	background-color: white;
	height: auto;
}

.nav-bar .container {
	display: flex;
	align-items: center; /* vertically center */
	height: 100%;
}

/* Hide checkbox that controls Mobile Nav Button*/
#drop-down-cbox {
	display: none;
}

/* Mobile Nav Button */
#drop-down-cbox + label {
	position: relative;
	display: none;
	width: 60px;
	height: 60px;
	overflow: hidden;
	background-color: transparent;
	transition: all 300ms ease-in-out;
}

/* Mobile Nav Button Bars */
#drop-down-cbox + label span {
	position: absolute;
	display: block;
	background-color: #AFC1A8;
	width: 34px;
	height: 4px;
	border-radius: 2px;
	left: 50%;
	transform: translate(-50%, -50%); /* centering trick */
	transition: all 300ms ease-in-out;
}

/* Mobile Nav Button Bars Invididually */
#drop-down-cbox + label span:nth-child(1) {
	top: 35%; /* evenly spaced */
}
#drop-down-cbox + label span:nth-child(2) {
	top: 50%; /* evenly spaced */
}
#drop-down-cbox + label span:nth-child(3) {
	top: 65%; /* evenly spaced */
}

/* Mobile Nav Button Styling for Checked */
#drop-down-cbox:checked + label {
	background-color: #AFC1A8;
}

#drop-down-cbox:checked + label span {
	background-color: white;
}

/* Transform the bars into an 'X' */
#drop-down-cbox:checked + label span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg); /* center, then rotate */
}
#drop-down-cbox:checked + label span:nth-child(2) {
	left: -150%; /* move center bar out of the picture */
}
#drop-down-cbox:checked + label span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg); /* center, then rotate */
}

/* Main Nav Desktop */
.main-nav {
	flex-grow: 1; /* fill remaining space */
	display: flex;
	justify-content: space-around; /* evenly space items */
	align-items: center; /* center vertically */
}

.main-nav li {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px; /* vertically center text, matches height */
	text-align: center;
}

.main-nav li a,
.main-nav li span {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #D1A281;
	font-weight: bolder;
}

.main-nav li a:hover,
.main-nav li span:hover {
	border-bottom: 4px solid #AFC1A8;
}

.main-nav li > ul {
	max-height: 0px; /* max-height instead of height, height can't transition to auto */
	transition: all 500ms ease-in-out;
	overflow: hidden; /* make it so nav doesn't show beyond the 0px max-height */
}

.main-nav li:hover > ul {
	max-height: 180px; /* height x how many links */
	height: auto;
}

.main-nav li > ul li a,
.main-nav li > ul li span {
	background-color: white;
}

.main-nav li > ul li a:hover,
.main-nav li > ul li span:hover {
	background-color: #666;
	color: white;
	border-bottom: none;
}

/* Tablet and Mobile View */
@media (max-width: 768px) {
	.site-logo {
		font-size: 1.5rem;
		flex-grow: 1;
		text-align: center;
	}
	
	#drop-down-cbox + label {
		display: block; /* unhide the mobile nav button */
	}
	
	.main-nav {
		max-height: 0px; /* same vertical grow transition trick as above */
		height: calc(100vh - 60px); /* take full vertical viewport height, -60px for nav-bar */
		overflow: hidden;
		position: absolute;
		top: 3.5%;
		line-height: auto;
		left: 0;
		width: 100%;
		flex-direction: column;
		background-color: white;
		transition: all 500ms ease-in-out;
		z-index: 6;
	}
	
	#drop-down-cbox:checked ~ .main-nav {
		max-height: calc(100vh - 60px);
		transition: all 500ms ease-in-out;
	}

	.main-nav li span {
		position: relative;
	}
	
	/* design and position downward arrow */
	.main-nav li span:after {
		content: "";
		width: 6px;
		height: 6px;
		position: absolute;
		top: 50%;
		margin-top: -2px;
		margin-left: 8px;
		transform: translateY(-50%) rotate(-45deg);
		border-left: 2px solid #666;
		border-bottom: 2px solid #666;
	}
	
	.main-nav li a:hover,
	.main-nav li span:hover {
		background-color: #666;
		color: white;
		border-bottom: none;
	}
	
	.main-nav li > ul li {
		position: relative;
	}
	
	.main-nav li > ul li a,
	.main-nav li > ul li span {
		background-color: #eee;
	}
	
}

.image-container {
	width: 90%;
	margin: auto;
}

img {
	width: 100%;
}

.header-overlay {
	height: 100vh;
	position: absolute;
	top: 0;
	background: #fff;
	opacity: .5;
	width: 100%;
}

.sr-only {
	position: absolute;
}

header {
	// background: #fff;
}

header .brand {
	width: 25%;
	position: relative;
	z-index: 2;
	padding: 10px;
}

header .brand img {
	width: 80%;
	display: block;
	margin: auto;
}

header .nav-container {
	// position: relative;
	display: flex;
	justify-content: center;
	// position: absolute;
	flex-direction: column;
}

header .nav-primary {
	width: 70%;
	position: relative;
	z-index: 2;
	padding: 10px;
	margin: auto;
}

#menu-primary {
	display: flex;
	justify-content: space-evenly;
}

#menu-primary li {
	list-style-type: none;
	margin: 3px 10px;
}

.hero-image {
	img {width: 100%;}
}

#menu-primary a {
	text-decoration: none;
	color: #D1A281;
	font-weight: bolder;
}

.hero-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: .3;
	background: #000;
	z-index: 1;
	top: 0;
}

.hero-container {
	position: relative;
	width: 100%;
	height: auto;
}

.button {
	border-radius: 25px;
	background: #000;
	color: #fff;
	border: none;
	padding: 15px;
	font-size: 20px;
	font-family: "Cabin Sketch", sans-serif;
}
.hero-container img {
	width: 100%;
	height: auto;
}
.hero-container .hero-header-button {
	position: absolute;
	top: 5%;
	right: 0;
	left: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
	text-align: center;
}

.hero-header-button p {
	background-color: #fff;
	border-radius: 10px;
	border: solid #000 3px;
	padding: 5px;
	width: 50%;
	margin: 25px auto;

}

.button, .hero-container a {
	background: #000;
	// border: solid 3px #AFC1A8;
	color: #fff;
	border-radius: 15px;
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 6px;
	display: inline-block;

}

/*.hero-container button:hover {
	background-color: #B46246;
}*/

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

a {
	cursor: pointer;
}
.card-container {
	display: flex;
	justify-content: space-between;
	padding: 100px;
	position: relative;
}

.card-tree {
	position: absolute;
  top: -3px;
  width: 108px;
  height: auto;
  right: 45%;
}

.card-lightbrown {
	position: absolute;
	top: 0;
	width: 50px;
	height: auto;
	left: 2%;
}
.card-darkbrown2 {
	position: absolute;
	top: 20%;
	width: 50px;
	height: auto;
	left: 1%;
}

.card-lightbrown2 {
	position: absolute;
	top: 20%;
	width: 50px;
	height: auto;
	right: 1%;
}
.card-darkbrown {
	position: absolute;
	top: 0;
	width: 50px;
	height: auto;
	right: 2%;
}
.multiple-container {
	display: flex;
	width: 45%;
	flex-direction: column;
}

.single-container {
	display: flex;
	width: 50%;
}

.single-container > * {
	width: 100%;
}
.img-area{
  width: 1170px;
  margin: 2% auto;
}

.multiple-container .single-img {
  position: relative;
  width: 100%;
  float: left;
  padding: 15px 0;
}

.single-container .single-img {
  position: relative;
  width: 100%;
  float: left;
  padding: 15px 0;
}

.single-img h2 {
	position: absolute;
	z-index: 4;
	color: #fff;
	padding: 5px;
	margin-left: 10px;
	font-size: 35px;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 1s ease;
  z-index: 5;
}

.single-img:hover .img-overlay {
  height: 100%;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}
.text span{
  font-weight: 300;
}

#about {
	background: #AFC1A8;
	color: #fff;
}

#about p, #about h2 {
	padding: 15px;
}

.main {
  display: grid;
  padding: 2rem;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 5% auto;
  font: 500 100%/1.5 system-ui;
  background:#fff;
  position: relative;
}

.main2 {
  display: grid;
  padding: 2rem;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 5% auto;
  font: 500 100%/1.5 system-ui;
  background:#fff;
  position: relative;
 }

.main h2, .main2 h2{
  font-size: 42px;
  font-weight:700;
  line-height: 1.2;
  color:#000000;
}
.main p, .main2 p{
  font-size:18px;
  line-height:1.3;
  
}
.rainbowtree-about {
	position: absolute;
  width: 75%;
  height: auto !important;
  right: 121px;
  z-index: 1;
  margin-right: -119px;
  top: 8%;
}

.main2 .rainbowtree-about {
	position: absolute;
  width: 75%;
  height: auto !important;
  left: 121px;
  z-index: 1;
  margin-left: -119px;
  top: 8%;
}
	
.rainbowtree-about img {
	box-shadow: none !important;
}

.rainbowtree-about .rainbowtree-overlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	opacity: .86;
}

.textsection-img {
	position: relative;
	z-index: 2;
	object-fit: cover;
}

.h1-p {
	position: relative;
	z-index: 2;
}

.main img, .main2 img {
  max-width: 100%;
  height: 450px;
}

@media (max-width: 600px) {
  .main, .main2 {
    display: block;
  }
  .main p, .main2 p {
    position: relative;
    background-color: #ffffff85

  }
  .main img, .main2 img {
    max-width: 100%;
    background-position:center;
    object-fit:cover;
  }
  .main h2, .main2 h2{
    font-size:35px;
    padding-top:0px;
    padding-bottom:0px;

  }
}
.footer {
  background-color: #fff;
  width: auto;
  text-align: left;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 50px;
  margin-top: 50px;
  border-top: 25px solid #AFC1A8;
  border-bottom: 25px solid #AFC1A8;

}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}


/* footer left*/

.footer .footer-left {
  width: 33%;
  padding-right: 15px;
  background: #fff;
;
}

.footer .about {
  line-height: 20px;
  color: #000;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer .about span {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .icons {
  margin-top: 25px;
}

.footer .icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}


/* footer center*/

.footer .footer-center {
  width: 30%;
}

.footer .footer-center i {
  background-color: #33383b;
  color: #000;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer .footer-center p {
  display: inline-block;
  color: #000;
  vertical-align: middle;
  margin: 0;
}

.footer .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer .footer-center p a {
	color: #B46246;
  text-decoration: none;
}

.footer .footer-center p a:hover {
	color: #B46246;
  text-decoration: underline;
}
/* footer right*/

.footer .footer-right {
  width: 35%;
  background-color: #fff;
}

.footer-right img {
	width: 30%;
}

.footer h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: normal;
  margin: 0;
}

.footer h2 span {
  color: #0099ff;
}

.footer .menu {
  color: #000;
  margin: 20px 0 12px;
  padding: 0;
}

.footer .menu a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer .menu a:hover {
  color: #0099ff;
}

.footer .name {
  color: #0099ff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

@media (max-width: 767px) {
  .footer {
    font-size: 14px;
  }
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer .footer-center i {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
	.card-container {
		flex-direction: column;
	}

	.single-container, .multiple-container {
		width: 100%;
	}
}

@media (max-width: 721px) {
		.main-nav {
		top: 110px;
	}

	.card-tree {
		right: 41%;
	}
}

@media (max-width: 500px) {
		.main-nav {
		top: 60px;
	}

	.card-tree {
		right: 38%;
	}
}

/*$brown: #CFAC61;
$light-brown: #D1A281;
$green: #AFC1A8;
$red: #B46246;*/
