/* TypoGraphy */
* {
	box-sizing: border-box;
}
:focus {
	outline: none !important;
	box-shadow: none;
	border-color: inherit;
}
textarea.form-control {
	resize: none;
	overflow: hidden;
}
html, body {
	width: 100%;
}
body {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
	font-size: 16px;
	color: #000;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
a, a:hover {
	text-decoration: none;
}
p {
	font-size: 16px;
	color: #000;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px 0 20px;
	padding: 0px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover,h6 a:hover {
	color: #01a4ec;
}
h1 {
	font-weight: bold;
	font-size: 98px;
	line-height: 84px;
	color: #585B5D;
}
h2 {
	font-weight: bold;
	font-size: 36px;
	line-height: 37px;
	color: #585B5D;
}
h3 {
	font-weight: bold;
	font-size: 28px;
	line-height: 43px;
	color: #585B5D;
}
h4 {
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
	color: #585B5D;
}
h5 {
	font-weight: bold;
	font-size: 22px;
	line-height: 30px;
	color: #585B5D;
}
h6 {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #585B5D;
}
p {
	font-size: 16px;
	line-height: 24px;
	color: #000;
}
p:last-child {
	margin-bottom: 0;
}
ul {
	padding: 0px 0 20px 18px;
	margin: 0px;
}
ol {
	padding-bottom: 20px;
	padding-left: 15px;
}
ol li {
	position: relative;
	padding-left: 5px;
}
li {
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #1A1A1A;
}
li a {
	color: #01a4ec;
}
li a:hover {
	color: #1A1A1A;
}
a {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #03b1e7;
}
a:hover {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #1A1A1A;
}
button {
	padding: 0;
	background-color: transparent;
	border: none;
}
body.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
footer {
    margin-top: auto;
}
.btn-yellow {
	background: #E9B43D;
	border: 2px solid #FFFFFF;

	font-weight: 700;
	font-size: 12px;
	line-height: 110%;
	letter-spacing: 0.11em;
	color: #0B0B0B;
	text-transform: uppercase;
	border-radius: 0px;
	padding: 0px 30px;

	min-width: 160px;
	min-height: 43px;
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
}
.btn-yellow::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../images/btn-lines.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
}
.btn-yellow span {
	position: relative;
	z-index: 1;
}
.btn-yellow:hover {
	background: #2a612d;
	color: #fff;
}
.btn-border {
	background: transparent;
	border: 2px solid #000000;

	font-weight: 700;
	font-size: 12px;
	line-height: 108%;
	letter-spacing: 0.15em;
	color: #000000;
	text-transform: uppercase;
	border-radius: 0px;
	padding: 0px 20px;

	min-width: 142px;
	min-height: 45px;
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
}
.btn-border:hover {
	background: #2a612d;
	border-color: #2a612d;
	color: #fff;
}
/** ================== // HEADER CSS START // ================== **/
.header {
	background: #000000;
	padding: 10px 0px;
}
.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
    position: relative;
    bottom: 2px;
}
.main-nav {
    position: relative;
    top: 3px;
}
.navigation .moblelogo {
	display: none;
}
.main-nav .menu-bar {
	display: none;
}
.nav-manu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.nav-manu ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style-type: none;
}
.nav-manu ul li {
	padding: 0 0;
	position: relative;
	margin-right: 87px;
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
}
.nav-manu ul li:last-child {
	margin-right: 45px;
}
.nav-manu ul li a {
	color: #fff;
	position: relative;
}
.nav-manu ul li a:hover {
	color: #E9B43D;
}
.nav-manu ul li.current-menu-item > a {
	color: #E9B43D;
}
/** SUB MENU **/
.navigation ul li ul.sub-menu {
	position: absolute;
	display: block;
	top: 36px;
	width: auto;
	transform: scale(1, 0);
	transition: all 0.5s;
	transform-origin: top center;
	opacity: 0;
	visibility: hidden;
	min-width: 208px;
	padding: 0;
	left: 0;
	z-index: 1999;
	padding: 0;
	width: auto;
}
.navigation ul li ul.sub-menu.shop-submenu {
	left: auto;
	right: 0;
}
.navigation ul li:hover>ul.sub-menu {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.navigation ul li ul.sub-menu.shop-submenu::before {
	left: auto;
	right: 40px;
}
.navigation ul li ul.sub-menu li:first-child {
	border-radius: 10px 10px 0px 0px;
}
.navigation ul li ul.sub-menu li:last-child {
	border-radius: 0px 0px 10px 10px;
}
.navigation ul li ul.sub-menu li {
    padding: 0;
    width: 100%;
    margin: 0px 0 0;
    transition: .4s;
    background-color: #ffffff;
    border-bottom: none;
    position: relative;
    box-shadow: 0 20px 30px rgb(88 91 93 / 15%);
    border-radius: 0;
    border-bottom: 1px solid #c3c3c3;
}
.navigation ul li ul.sub-menu li::after {
	display: none;
}
.navigation ul li ul.sub-menu li::before {
	right: 15px;
	transform: rotate(-40deg) translateY(-20%);
	top: 43%;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    padding: 12px 15px;
    line-height: 20px;
    color: #000;
}
.navigation ul li ul.sub-menu li a::after {
	display: none;
}
.navigation ul li ul.sub-menu li:last-child a {
	border-bottom: none;
}
.navigation ul li ul.sub-menu li:hover {
	background-color: #1b541e;
}
.navigation ul li ul.sub-menu li.current-menu-item {
	background-color: #e04f26;
}
.navigation ul li ul.sub-menu li.current-menu-item a {
	color: #fff;
}
.navigation ul li ul.sub-menu li:hover a {
	color: #fff;
}
.navigation ul li ul.sub-menu ul.sub-menu {
	left: 100%;
	top: 0;
	width: max-content;
	margin-left: 3px;
}
.navigation ul li ul.sub-menu li:last-child {
	border-bottom: none;
}
.navigation ul li ul.sub-menu ul.sub-menu li {
	border-left: 0;
}
.navigation .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	top: 55%;
	right: -12px;
	width: 7px;
	height: 7px;
	transform: translateY(-50%);
	transition: 0.4s;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #fff;
	margin-top: 2px;
}
.navigation ul li.menu-item-has-children:hover a::before {
	border-top-color: #e9b43d;
	transition: 0.4s;
}
.navigation ul li.current-menu-item ul.sub-menu li a::before {
	display: none;
}
.navigation ul li ul.sub-menu li::before {
	display: none;
}
.navigation ul li ul.sub-menu li:hover::before {
	border-color: #fff;
}
.navigation ul li ul.sub-menu li a:hover {
	color: #fff;
}
.navigation ul li ul.sub-menu ul.sub-menu li a {
	color: #08161D;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a {


}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li:hover a {
	color: #fff;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu a {
	color: #08161D;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li ul.sub-menu li:hover a {
	color: #fff;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover a::before {
	border-top-color: #fff;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li a::before {
	border-top-color: #e04f26;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover ul.sub-menu li:hover a::before {
	border-top-color: #fff;
}
.navigation .menu-item-has-children ul.sub-menu li a::before {
	right: 10px;
	transform: rotate(-95deg);
	top: 46%;
	border-top-color: #000000;
}
/** ================== // HEADER CSS END // ================== **/

/** ================== // BANNER SECTION CSS START // ================== **/
.banner-section {
    width: 100%;
    height: calc(100vh - 105px);
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-banner .slider-content-absolute {
    max-width: 665px;
    margin: 0 auto;
}
.banner-logo {
    margin-bottom: 55px;
}
.slider-content-absolute h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 108%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
/** ================== // BANNER SECTION CSS END // ================== **/

/** ================== // TREEHOUSE CATALOG SECTION CSS START // ================== **/
.section {
	padding: 70px 0px;
}
.heading {
	text-align: center;
	margin-bottom: 40px;
}
.heading h2 {
	background: #E9B43D;
	border: 2px solid #FFFFFF;

	font-weight: 800;
	font-size: 32px;
	line-height: 108%;
	color: #000000;
	text-transform: uppercase;
	border-radius: 0px;
	padding: 0px 30px;
	margin: 0;

	min-width: 446px;
	min-height: 59px;
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
}
.heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../images/heading-line.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
}
.heading h2 span {
	position: relative;
	z-index: 1;
}
.section.catalog-section {
    padding-bottom: 99px;
}
.tabbing-menu-fillter{
	margin: 0 0 88px;
}
.tabbing-menu-fillter ul {
    margin: 0;
    padding: 0;
    justify-content: center;
}
.tabbing-menu-fillter ul li {
    display: block;
	padding: 0 6px;
}
.tabbing-menu-fillter ul li a{
    display: inline-flex;
	background: #ffffff;
	border: 2px solid #000000;
	font-size: 12px;
	color: #000;
	font-weight: bold;
	min-width: 123px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-align: center;
	justify-content: center;
}
.tabbing-menu-fillter ul li a.active, .tabbing-menu-fillter ul li a:hover{
	background: #E8B440;
}

.catalog-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 130px;
    padding-top: 42px;
}
.catalog-item {
    width: 25%;
    padding: 0px 5px;
    text-align: center;
}
.catalog-holder {

}
.catalog-img-card {
    position: relative;
}
.catalog-small-img {
    position: absolute;
    top: -42px;
    right: 45px;
    width: 129px;
    height: 129px;
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
}
.catalog-img-card .catalog-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.catalog-content-card {
    margin-top: 22px;
}
.catalog-content-card h3 {
    font-weight: 800;
    font-size: 20px;
    line-height: 108%;
    color: #000000;
    text-transform: capitalize;
    margin: 0;
}
.catalog-see-btn {
    margin-top: 27px;
}
/** ================== // TREEHOUSE CATALOG SECTION CSS END // ================== **/

/** ================== // WE ARE TREEHOUSE SECTION CSS START // ================== **/
.we-are-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	padding: 100px 0px;
}
.we-are-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.we-are-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1052px;
    margin: 0 auto;
}
.we-are-left-col {
    width: 413.42px;
}
.we-are-logo-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 65px;
}
.we-are-logo-holder {
    margin-bottom: 60px;
}
.we-are-logo-holder:last-child {
    margin-bottom: 0px;
}
.we-are-right-col {
    width: 490px;
}
.we-are-content h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 108%;
    text-transform: uppercase;
    color: #FFFFFF;
}
.we-are-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 156%;
    color: #FFFFFF;
	margin-bottom: 20px;
}
.we-are-content p:last-child {
	margin-bottom: 0;
}
/** ================== // WE ARE TREEHOUSE SECTION CSS END // ================== **/

/** ================== // FIND US SECTION CSS START // ================== **/
.find-us-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 456px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.find-us-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.find-us-wrap {
    position: relative;
    z-index: 1;
}
.find-us-wrap h2 {
    font-weight: 800;
    font-size: 48px;
    line-height: 108%;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.bg-attachment {
	background-attachment: fixed !important;
}
/** ================== // FIND US SECTION CSS END // ================== **/

/** ================== // BLOG SECTION CSS START // ================== **/
.catalog-wrap.blog-wrap {
    column-gap: 50.28px;
    row-gap: 50px;
    padding-top: 0;
}
.catalog-item.blog-item {
    width: calc(33.33% - 50.28px);
    padding: 0;
}
.blog-item .catalog-content-card {
    padding: 0px 30px;
}
.blog-item .catalog-content-card h3 {
    text-transform: uppercase;
}
/** ================== // BLOG SECTION CSS END // ================== **/

/** ================== // SITE FOOTER CSS START // ================== **/
.site-footer {
    background: #000000;
}
.footer-inner {
    max-width: 1273px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.footer-col4 {
    width: 33.33%;
}
.footer-col4:nth-child(1) {
	width: 160px;
}
.footer-col4:nth-child(3) {
	width: 309px;
}
.footer-info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-info ul li {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    text-transform: uppercase;
}
.footer-info ul li a {
    color: #fff;
}
.footer-info ul li a:hover {
    color: #E9B43D;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-social-info ul {
    display: flex;
    column-gap: 20px;
}
.footer-info .footer-social-info ul li {
    font-size: 16px;
}
.footer-col4:nth-child(2) {
    width: 500px;
}
.footer-info.footer-menu {
    margin-bottom: -7px;
}
.footer-menu ul {
    column-count: 3;
}
.footer-menu ul li {
    margin-bottom: 25px;
}
.footer-menu ul li:last-child {
    margin-left: 40px;
}
.footer-form .heading {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}
.footer-form .heading h2 {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    min-width: 244px;
    min-height: 33px;
}
.footer-join-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.footer-join-wrap .form-control,
.business-inquiries-form-wrap .footer-join-wrap select.form-control  {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    box-shadow: none;
    outline: none;
    width: 100%;
    border-radius: 0;
    padding: 0;
    height: 40px;
    text-transform: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    letter-spacing: 0.1em;
    padding-right: 20px;
}
.footer-join-wrap .form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.footer-join-wrap .btn {
    background-image: url(../images/form-btn-arrow.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 14px;
    position: absolute;
    background-position: right;
    right: 0;
    top: 13px;
    font-size: 0;
    background-size: 100%;
    min-width: auto;
    padding: 0;
    border: 0;
    background-color: inherit !important;
}
.copyright {
    background: #E9B43D;
    padding: 15px 0;
}
.copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.copyright-right ul {
    list-style-type: none;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
	margin: 0;
	padding: 0;
}
.copyright-right ul li {
    margin-left: 12px;
    padding-left: 12px;
    position: relative;
    line-height: 1;
}
.copyright-right ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #0B0B0B;
}
.copyright-wrapper ul li a, .copyright-wrapper p {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -0.03em;
	color: #0B0B0B;
}
.copyright-wrapper ul li a:hover {
	text-decoration: underline;
}
/** ================== // SITE FOOTER CSS END // ================== **/

/** ================== // ABOUT PAGE CSS START // ================== **/
.banner-section.about-banner {
	position: relative;
    height: 334px;
    min-height: auto;
}
.about-banner::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.about-section .we-are-left-col {
    width: 265px;
}
.about-section .we-are-right-col {
    width: 648px;
}
/** ================== // ABOUT PAGE CSS END // ================== **/

/** ================== // OUR PRODUCT PAGE CSS START // ================== **/
.our-product-top-section .we-are-wrap {
    max-width: 1122px;
}
.about-section.our-product-top-section .we-are-left-col {
    width: 332px;
}
/** ================== // OUR PRODUCT PAGE CSS END // ================== **/

/** ================== // LOCATION PAGE CSS START // ================== **/
.location-banner .we-are-content h2, .location-banner .we-are-content p {
	color: #000;
}
.location-banner.we-are-section::before {
	display: none;
}
.location-banner.we-are-section {
    background: #fff;
    padding-bottom: 47px;
    padding-top: 47px;
}
.container.container-sm {
    max-width: 952px !important;
}
.location-banner .we-are-left-col {
    width: 280px;
}
.location-banner .we-are-right-col {
    width: 534px;
}
.zip-code-wrap {
    background: #E9B43D;
    padding: 55px 25px 45px;
}
.zip-code-form {
	max-width: 441px;
	margin: 0 auto;
}
.zip-code-form h2 {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #000000;
    margin-bottom: 10px;
}
.zip-code-form .footer-join-wrap .form-control {
    border-bottom: 1px solid #000;
    color: #000;
    letter-spacing: 0.1em;
}
.zip-code-form .footer-join-wrap .form-control::placeholder {
	color: #000;
}
.zip-code-form .footer-join-wrap {
    display: block;
}
.form-group.submit-btn {
    text-align: center;
    margin-top: 30px;
}
.form-group.submit-btn input.btn-border {
    min-width: 207px;
}
.map-card {
	width: 100%;
	height: 500px;
}
.map-card img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-card iframe {
    width: 100%;
    height: 100%;
}
.location-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 55px;
    column-gap: 28px;
    row-gap: 57px;
    padding-bottom: 80px;
}
.location-list-item {
    width: calc(33.33% - 28px);
}
.location-list-info h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 156%;
    color: #285D2B;
    margin-bottom: 14px;
}
.location-list-info h3 {
    font-weight: 800;
    font-size: 20px;
    line-height: 108%;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}
.location-list-info p {
    font-size: 14px;
    line-height: 156%;
    color: #000000;
}
/** ================== // LOCATION PAGE CSS END // ================== **/

/** ================== // BUSINESS INQUIRIES PAGE CSS START // ================== **/
.business-inquiries-section .container.container-sm {
    max-width: 600px !important;
}
.business-inquiries-section .heading {
    margin-bottom: 50px;
}
.business-inquiries-heading {
    text-align: center;
    margin-bottom: 60px;
}
.business-inquiries-heading h3 {
    font-weight: 800;
    font-size: 28px;
    line-height: 108%;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 24px;
}
.business-inquiries-heading p {
    font-size: 16px;
    line-height: 156%;
    color: #000000;
}
.business-inquiries-form-wrap .footer-join-wrap .form-control,
.business-inquiries-form-wrap .select2-container--default .select2-selection--single .select2-selection__rendered  {
    border-color: #000000;
    letter-spacing: 0.1em;
    color: #000000;
    height: 30px;
    padding: 0px 0px 3px;
    text-transform: uppercase;
	font-size: 14px;
	line-height: 150%;
}
.form-group.group-half {
    width: 48%;
}
.form-group.group-full {
    width: 100%;
}
.business-inquiries-form-wrap .footer-join-wrap .form-control::placeholder {
	color: #000000;
	text-transform: uppercase;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
    font-size: 14px;
    line-height: 150%;
	text-transform: uppercase;
}
.business-inquiries-form-wrap .footer-join-wrap {
    row-gap: 35px;
}
.form-group label {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.select2-container--default .select2-selection--single {
    border: 0px solid #aaa;
    border-radius: 0px;
    border-bottom: 1px solid #000;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.select2-results__option {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 150%;
}
.select2-search--dropdown {
    display: none;
}
.business-inquiries-section .form-group.submit-btn {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
/** ================== // BUSINESS INQUIRIES PAGE CSS END // ================== **/

/** ================== // PDP PAGE CSS START // ================== **/
.tag-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 10px;
}
.tag-btn a {
    display: inline-block;
}
.pdp-banner-section .tag-btn span {
    background: #E9B43D;
    border: 2px solid #000000;
    font-weight: 700;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0.15em;
    color: #0B0B0B;
    text-transform: uppercase;
    border-radius: 0px;
    min-width: 81px;
    min-height: 24.03px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
    -webkit-transition: 1
}
.pdp-banner-section .tag-btn .tag-btn-grn {
    background: #285D2B;
}
.pdp-banner-section .tag-btn .tag-btn-red {
    background: #B52B36;
}
.pdp-banner-section .we-are-left-col {
    width: 376px;
}
.pdp-banner-section .we-are-right-col {
    width: 654px;
}
.pdp-banner-section .container.container-sm {
    max-width: 1121px !important;
}
.pdp-banner-section .catalog-holder>.catalog-img-card>img {
    width: 376px;
}
.pdp-banner-section .we-are-wrap {
    max-width: 1121px;
}
.pdp-banner-section .catalog-small-img {
    top: -57px;
    right: -10px;
    width: 197px;
    height: 198px;
    border: 8px solid #FFFFFF;
}
.pdp-banner-section .we-are-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    width: 654px;
    color: #000000;
    margin-top: 29px;
    padding-right: 5px;
}
.pdp-banner-section .we-are-content h2 {
    line-height: 108%;
    width: 456px;
    text-transform: capitalize;
    font-weight: 800;
    font-style: normal;
    width: 416px;
    padding-right: 20px;
}
.pdp-banner-section .pick-up-btn {
    margin: 34px 0px 27px 0px;
}
.pdp-banner-section .btn-border.pick-up {
    width: 405px;
    height: 45px;
}
.pdp-banner-section .warning-paragraph p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 169%;
    width: 609px;
}
.pdp-banner-section .warning-paragraph p a {
    color: #000;
    text-decoration: underline;
}
.pdp-banner-section .warning-paragraph p a:hover {
    color: #2a612d;
}

/** ================== // PDP PAGE CSS END // ================== **/


/* ====================== BLOG DETAILS PAGE  CSS START ====================== */
.blog-page-section .heading {
    margin-bottom: 60px;
}
.blog-details-wrapper {
    max-width: 674px;
    margin: auto;
}
.blog-details-section {
    margin: 40px 0px 72px 0px;
}
.blog-banner-info {
    width: 100%;
    text-align: center;
}
.blog-details-wrapper h2 {
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin: 20px 0px 30px 0px;
    font-weight: 800;
    line-height: 108%;
}
.blog-details-wrapper h6 {
    font-size: 16px;
    line-height: 108%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 6px;
}
.blog-details-wrapper .blog-banner-info img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.blog-details-wrapper p {
    font-size: 14px;
    line-height: 156%;
    text-align: center;
    color: #000000;
    font-weight: 400;
}
.blog-details-wrapper .blog-details-inner-content p {
    text-align: left;
}
.blog-details-img-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0px 0px 0px;
    max-width: 662px;
    column-gap: 10px;
    row-gap: 10px;
}
.blog-details-card-box {
    width: 326px;
}
.header-social-info {
	display: none;
}
/* ====================== BLOG DETAILS PAGE  CSS END ====================== */

.select2-container .select2-dropdown {
    background-color: #D9D9D9;
    border: none;
    border-radius: 0;
    padding: 10px 16px 16px;
}
.select2-container .select2-results__option {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 4px;
}
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: inherit;
    color: #265d29;
}
.map-card div#mapdiv {
    height: 100% !important;
}
.business-inquiries-section .form-group.submit-btn p {
    display: inline-block;
    position: relative;
}
.business-inquiries-section .form-group.submit-btn span.wpcf7-spinner {
    position: absolute;
    margin: auto;
    right: 10px;
    top: 0;
    bottom: 0;
}
html.age-active {
    overflow: hidden;
}
.footer-join-wrap span.wpcf7-spinner {
    position: absolute;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}
.footer-form .wpcf7 form .wpcf7-response-output {
    color: #dc3232;
    margin: 10px 0 0;
    border: 0;
    padding: 0;
    font-size: 13px;
}
.footer-form .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450 !important;
}
/* ====================== AGE GATE PAGE CSS START ====================== */
#age-gate {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(0, 0, 0, 0.9); */
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.modal__overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.48);
    z-index: var(--chakra-zIndices-modal);
    backdrop-filter: var(--chakra-backdrop-blur) var(--chakra-backdrop-brightness) var(--chakra-backdrop-contrast) var(--chakra-backdrop-grayscale) var(--chakra-backdrop-hue-rotate) var(--chakra-backdrop-invert) var(--chakra-backdrop-opacity) var(--chakra-backdrop-saturate) var(--chakra-backdrop-sepia);
    --chakra-backdrop-blur: blur(10px);
    --chakra-backdrop-brightness: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-contrast: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-grayscale: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-hue-rotate: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-invert: invert(10%);
    --chakra-backdrop-opacity: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-saturate: var(--chakra-empty, /*!*/ /*!*/);
    --chakra-backdrop-sepia: var(--chakra-empty, /*!*/ /*!*/);
}
.age-gate-content {
    text-align: center;
    display: flex;
    width: 100vw;
    height: 100lvh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1400;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    overflow: auto;
}
.age-gate-holder {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    outline: transparent solid 2px;
    outline-offset: 2px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 4rem;
    z-index: 1400;
    box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 8px 16px rgba(48, 49, 51, 0.1);
    max-width: 28rem;
    padding: 0px;
    row-gap: 25px;
	overflow: hidden;
}
.age-gate-info-card {
    padding: 0px 32px 20px;
}
.age-gate-info-card h2 {
    color: #fff;
    font-size: 26px;
    line-height: 25px;
    margin-bottom: 18px;
}
.age-gate-info-card p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.5px;
}
.age-gate-info-card p:last-child {
    margin-bottom: 0px;
}
.age-gate-info-card p a {
	text-decoration: underline;
	color: #fff;
}
.age-gate-btn-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}
.age-gate-btn-wrap button {
    display: inline-flex;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline: transparent solid 2px;
    outline-offset: 2px;
    height: 48px;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.3);
    color: rgb(255, 255, 255);
    padding: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}
.age-gate-logo {
    width: 150px;
    margin: 25px auto 7px;
}
.age-gate-logo img {
    width: 100%;
}
/* ====================== AGE GATE PAGE CSS START ====================== */


.default-content h1.entry-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 108%;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px;
}
.default-content .entry-content h1, .default-content .entry-content h2, .default-content .entry-content h3,
.default-content .entry-content h4, .default-content .entry-content h5, .default-content .entry-content h1 {
	font-weight: 800;
    font-size: 24px;
    line-height: 108%;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}
.default-content .we-are-content li {
    font-weight: 400;
    font-size: 14px;
    line-height: 156%;
    margin: 0 0 5px;
}
.default-content ol {
    margin-bottom: 0;
}
.default-content  .we-are-content p a {
    color: #145017;
    text-decoration: underline;
}
.default-content  .we-are-content p a:hover {
    text-decoration: none;
}
input#zipcode:-webkit-autofill,
input#zipcode:-webkit-autofill:hover,
input#zipcode:-webkit-autofill:focus,
input#zipcode:-webkit-autofill:active {
    background: #E9B43D !important;
    background-color: #E9B43D !important;
    -webkit-text-fill-color: #000000 !important;
    -webkit-background-clip: text !important;
}
