/*
Theme Name: Allegro
Author: Alyssie
Author URI: https://alyssie.com/
*/

/*
 * Font smoothing.
 * This is a niche setting that will not be available via Global Styles.
 * https://github.com/WordPress/gutenberg/issues/35934
 */
/*** VAR & MIXINS ***/
/* --- END VAR & MIXINS --- */
.relative{
	position: relative;
}
.underline{
	text-decoration: underline;
}
.object-fit{
	object-fit: cover;
}
.row-flex {
	display: flex;
	flex-wrap: wrap;
}
[class*="col-"] {
	margin-bottom: 30px;
}
section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
  
.info-card {
	padding: 1.125rem;
	-webkit-box-shadow: 0 2px 4px 0px #23232323;
	-o-box-shadow: 0 2px 4px 0px #23232323;
	box-shadow: 0 2px 4px 0px #23232323;
	border-radius: 8px;
	background: #ffffff;
}
  
.full-overlay {
	width: 100%;
	height: 100%;
	background: #00000040;
}
  
.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
  
.w-fit-content{
	width: fit-content;
}
  
/*** TEXT ***/
*{
	color: #000000;
}
h4, h2, h3, h4, h5, h6 {
    font-family: "Prompt", sans-serif;
	font-weight: 700;
}
  
  h1, .h1 {
	font-size: 48px;
	font-weight: 700;
}
  
  h2, .h2 {
    font-size: 28px;
    font-weight: 700;
}
  
  h3, .h3 {
	font-size: 28px;
	font-weight: 700;
}
  
  h4, .h4 {
	font-size: 24px;
	font-weight: 700;
}
  
  h5, .h5 {
	font-size: 20px;
	font-weight: 600;
}
  
  h6, .h6 {
	font-size: 18px;
	font-weight: 600;
}
  
  p {
	font-weight: 400;
	font-family: "Gotham", sans-serif;
	font-size: 1rem;
	margin-bottom: 0;
}
  
  a {
	font-family: "Gotham", sans-serif;
	color: #000000;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	text-decoration: none;
}
  
  a:hover {
	text-decoration: none;
	color: inherit;
}
  
  a:focus {
	text-decoration: none;
	color: inherit;
}
  
.light-text {
	color: #ffffff;
}
  
.dark-text {
	color: #000000;
}
  
.fa-square-check {
	color: #02bf70;
}
  
  /* --- END TEXT --- */
  /*** LOADER ***/
  #loader-ripple {
	position: fixed;
	z-index: 99999;
	background: #000000c0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	-ms-flex-line-pack: center;
		align-content: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
  
  #loader-ripple .loader-ripple {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
}
  
  #loader-ripple .loader-ripple div {
	position: absolute;
	border: 4px solid #1CA8DD;
	opacity: 1;
	border-radius: 50%;
	-webkit-animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
			animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
  
  #loader-ripple .loader-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
			animation-delay: -0.5s;
}
  
  @-webkit-keyframes loader-ripple {
	0% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 0;
	}
	4.9% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 0;
	}
	5% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 1;
	}
	100% {
	  top: 0px;
	  left: 0px;
	  width: 72px;
	  height: 72px;
	  opacity: 0;
	}
}
  
  @keyframes loader-ripple {
	0% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 0;
	}
	4.9% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 0;
	}
	5% {
	  top: 36px;
	  left: 36px;
	  width: 0;
	  height: 0;
	  opacity: 1;
	}
	100% {
	  top: 0px;
	  left: 0px;
	  width: 72px;
	  height: 72px;
	  opacity: 0;
	}
}
  
/* --- END LOADER --- */
/*** BUTTONS ***/
.aly-btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
		user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 8px 16px;
	font-size: 16px;
	border-radius: 5rem;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.aly-btn:hover {
	-webkit-filter: brightness(1.07);
	filter: brightness(1.07);
}
  
.aly-btn:focus {
	-webkit-filter: brightness(1.07);
	filter: brightness(1.07);
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
}
  
.aly-btn:focus-within {
	-webkit-filter: brightness(1.07);
	filter: brightness(1.07);
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
}
  
.aly-btn:focus-visible {
	-webkit-filter: brightness(1.07);
	filter: brightness(1.07);
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
	outline: 0;
}
  
.aly-btn.aly-btn-badge {
	padding: 5px 12px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
}
  
.aly-btn.aly-btn-primary {
	color: #fff;
	background-color: #1CA8DD;
	border-color: #1CA8DD;
}
  
.aly-btn.aly-btn-secondary {
	color: #fff;
	background-color: #01D17A;
	border-color: #01D17A;
}
  
.aly-btn.aly-btn-success {
	color: #fff;
	background-color: #02bf70;
	border-color: #02bf70;
}
  
.aly-btn.aly-btn-danger {
	color: #fff;
	background-color: #DD1C1C;
	border-color: #DD1C1C;
}
  
.aly-btn.aly-btn-warning {
	color: #fff;
	background-color: #DD6D1C;
	border-color: #DD6D1C;
}
  
.aly-btn.aly-btn-light {
	color: #fff;
	background-color: #FFFFFF;
	border-color: #FFFFFF;
}
  
.aly-btn.aly-btn-dark {
	color: #fff;
	background-color: #000000;
	border-color: #000000;
}
  
.aly-btn.aly-btn-br-primary {
	color: #1CA8DD;
	background-color: transparent;
	border-color: #1CA8DD;
}
  
.aly-btn.aly-btn-br-secondary {
	color: #01D17A;
	background-color: transparent;
	border-color: #01D17A;
}
  
.aly-btn.aly-btn-br-success {
	color: #02bf70;
	background-color: transparent;
	border-color: #02bf70;
}
  
.aly-btn.aly-btn-br-danger {
	color: #DD1C1C;
	background-color: transparent;
	border-color: #DD1C1C;
}
  
.aly-btn.aly-btn-br-warning {
	color: #DD6D1C;
	background-color: transparent;
	border-color: #DD6D1C;
}
  
.aly-btn.aly-btn-br-light {
	color: #FFFFFF;
	background-color: transparent;
	border-color: #FFFFFF;
}
  
.aly-btn.aly-btn-br-dark {
	color: #000000;
	background-color: transparent;
	border-color: #000000;
}
  
.btn-close {
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.btn-close:hover {
	-webkit-box-shadow: 0 0 0 0 transparent;
	-o-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}
  
.btn-close:focus {
	-webkit-box-shadow: 0 0 0 0 transparent;
	-o-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}
  
.btn-close:focus-within {
	-webkit-box-shadow: 0 0 0 0 transparent;
	-o-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
}
  
.btn-close:focus-visible {
	-webkit-box-shadow: 0 0 0 0 transparent;
	-o-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	outline: 0;
}
  
.none-btn {
	background: transparent;
	border: 0;
}
  
.none-btn:hover {
	background: transparent;
	border: 0;
	outline: 0;
}
  
.none-btn:focus {
	background: transparent;
	border: 0;
	outline: 0;
}
  
.none-btn:focus-within {
	background: transparent;
	border: 0;
	outline: 0;
}
  
.none-btn:focus-visible {
	background: transparent;
	border: 0;
	outline: 0;
}
  
.search-btn-abs {
	position: absolute;
	top: 0;
	right: 0;
}
  
/* --- END BUTTONS --- */
/*** INPUT ***/
select {
	background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 100%;
	background-position-y: 5px;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}
  
.form-control {
    display: block;
    width: 100%;
    min-height: 43px;
    padding: 8px 16px;
    font-size: 14px;
    font-family: "Gotham", sans-serif;
	font-weight: 600;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid transparent;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border-radius: 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
  
.form-control:hover {
	-webkit-filter: brightness(1.07);
	filter: brightness(1.07);
}
  
.form-control:focus {
	border-color: #1CA8DD;
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
}
  
.form-control:focus-within {
	border-color: #1CA8DD;
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
}
  
.form-control:focus-visible {
	border-color: #1CA8DD;
	-webkit-box-shadow: 0 0 0 1px #1ca8dd7a;
	-o-box-shadow: 0 0 0 1px #1ca8dd7a;
	box-shadow: 0 0 0 1px #1ca8dd7a;
	outline: 0;
}
  
.form-control.aly-btn-primary {
	background-color: #000000;
	border-color: #000000;
}
  
.form-control.aly-btn-primary:hover {
	background-color: #1CA8DD;
	border-color: #1CA8DD;
}
  
.form-control.aly-btn-primary:focus {
	background-color: #1CA8DD;
	border-color: #1CA8DD;
}
  
.form-control.aly-btn-primary:focus-within {
	background-color: #1CA8DD;
	border-color: #1CA8DD;
}
  
.form-control.aly-btn-primary:focus-visible {
	background-color: #1CA8DD;
	border-color: #1CA8DD;
}
  
/* --- END INPUT --- */
/*** NAVBAR ***/
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0 18px 0;
}
.aly-std-nav {
    background-color: #ffffff;
	-webkit-box-shadow: 0 0 6px 0px #23232329;
	-o-box-shadow: 0 0 6px 0px #23232329;
	box-shadow: 0 0 6px 0px #23232329;
}
.aly-std-nav .navbar-brand img {
	height: 60px;
}
.aly-std-nav .navbar-nav .nav-link {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-size: 1em;
	transition: all 0.2s ease-in-out;
}
.aly-std-nav .navbar-nav .nav-link {
	font-weight: 600;
}
.navbar-expand-lg .navbar-nav .nav-link {
	margin-right: 50px;
  	padding-right: 0;
  	padding-left: 0;
}
a.nav-link.nav-social {
    margin-right: 0 !important;
    margin-left: 20px;
}
/* @media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
	  padding-right: 1.1250em;
	  padding-left: 1.1250em;
	}
}
@media (min-width: 768px) {
	.navbar-expand-md .navbar-nav .nav-link {
	  padding-right: 1em;
	  padding-left: 1em;
	}
} */
  
/* --- END NAVBAR --- */
/*** CAROUSEL ***/
.carousel-half .aly-carousel .slide-img {
	height: 500px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
  
.carousel-full .aly-carousel .slide-img {
	height: calc(100vh - 86px);
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
  
.aly-carousel .carousel-caption {
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 50px 0;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	background: #00000040;
}
  
.aly-carousel .carousel-caption.top {
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: start;
}
  
.aly-carousel .carousel-caption.center {
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
  
.aly-carousel .carousel-caption.bottom {
	-webkit-box-align: end;
		-ms-flex-align: end;
			align-items: end;
}
  
  @media (max-width: 1199.98px) {
	.aly-carousel .carousel-caption {
	  padding: 50px 120px;
	}
}
  
  @media (max-width: 991.98px) {
	.aly-carousel .carousel-caption {
	  padding: 50px 100px;
	}
}
  
  @media (max-width: 767.98px) {
	.aly-carousel .carousel-caption {
	  padding: 50px 80px;
	}
}
  
  @media (max-width: 575.98px) {
	.aly-carousel .carousel-caption {
	  padding: 50px 40px;
	}
}
  
  /* --- END CAROUSEL --- */
  /*** BANNER ***/
.banner-half .aly-banner .contents {
	height: 420px !important;
}
  
.banner-full .aly-banner .contents {
	height: calc(100vh - 86px) !important;
}
  
.aly-banner .banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
  
.aly-banner .full-overlay {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 25px;
}
  
.aly-banner a {
	font-family: "Montserrat", sans-serif;
	color: inherit;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.aly-banner {
    margin-top: -1px;
}
.banner h4 {
    font-size: 24px;
    font-weight: 400;
}
.banner-search .banner, .banner-title .banner {
    height: 167px;
} 
.banner-input {
    font-size: 16px;
    height: 40px;
    border: 0;
    border-radius: 4px;
    padding: 16px;
    max-width: 324px;
    height: 43px;
}
.banner-input:hover, .banner-input:focus {
    border-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1px transparent !important;
    -o-box-shadow: 0 0 0 1px transparent !important;
    box-shadow: 0 0 0 1px transparent !important;
}
.banner-btn {
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    padding: 7px 20px;
    border-radius: 4px;
    border: 0;
    background: #4E2D1E;
    color: #ffffff;
	margin-left: 7px;
    height: 43px;
	transition: all 0.2s ease-in-out;
}
.banner-btn:hover, .banner-btn:focus {
    background: #222222;
    color: #ffffff;
}
.product-btn {
    font-family: "Gotham", sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 4px;
    border: 0;
    background: #4E2D1E;
    color: #ffffff;
    margin-left: 7px;
    height: 43px;
    transition: all 0.2s ease-in-out;
}
.product-btn:hover, .product-btn:focus {
    background: #222222;
    color: #ffffff;
}
form.the-search-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

  /* --- END BANNER --- */
  /*** ITEM GRID ***/
.aly-item-grid a {
	font-family: "Montserrat", sans-serif;
	color: inherit;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.aly-item-grid .item-grid {
	min-height: 100px;
}
  /* --- END ITEM GRID --- */
  /*** BUILDINGS ***/
.aly-show-buildings .show-buildings a {
	font-family: "Montserrat", sans-serif;
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.aly-show-buildings .show-buildings a:hover {
	text-decoration: none;
	color: inherit;
}
  
.aly-show-buildings .show-buildings a:focus {
	text-decoration: none;
	color: inherit;
}
  
.aly-show-buildings .buildings {
	min-height: 100px;
	border-radius: 8px;
	border: 1px solid #ababab4a;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 4px 0px #23232323;
	-o-box-shadow: 0 2px 4px 0px #23232323;
	box-shadow: 0 2px 4px 0px #23232323;
}
  
.aly-show-buildings .buildings .buildings-img {
	height: 150px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}
  
.aly-show-buildings .buildings .full-overlay {
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	opacity: 1;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
	background: linear-gradient(transparent, #000000);
}
  
  /* --- END BUILDINGS --- */
  
  /*** LISTINGS ***/
.aly-show-listings .show-listings a {
	font-family: "Montserrat", sans-serif;
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.aly-show-listings .show-listings a:hover {
	text-decoration: none;
	color: inherit;
}
  
.aly-show-listings .show-listings a:focus {
	text-decoration: none;
	color: inherit;
}
  
.aly-show-listings .listings {
	min-height: 100px;
	border-radius: 8px;
	border: 2px solid #4e2d1e !important;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 4px 0px #23232323;
	-o-box-shadow: 0 2px 4px 0px #23232323;
	box-shadow: 0 2px 4px 0px #23232323;
}
  
.aly-show-listings .listings .listings-img {
	height: 210px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}
.listings-img img {
    height: 100%;
}
.aly-show-listings .listings .full-overlay {
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	opacity: 1;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
	background: linear-gradient(transparent, #000000);
}
  
  /* --- END LISTINGS --- */
  
  /*** INSIDE - LISTING ***/
.page-nav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	padding: 24px 12px;
}
  
.page-nav-container .page-numbers {
	padding: 4px 8px;
	line-height: 0;
	color: #000000;
	font-weight: 700;
	font-size: 14px;
	opacity: 0.7;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
  
.page-nav-container .page-numbers:hover {
	color: #1CA8DD !important;
	opacity: 1;
}
  
.page-nav-container .page-numbers.current {
	opacity: 1;
}
  
.page-nav-container .current:hover {
	color: #000000 !important;
	opacity: 1;
}
  
  /* --- END LISTIINGS --- */
  /*** INSIDE - LISTING ***/
.single-listings .listing-header {
	border-radius: 8px;
	overflow: hidden;
}
  
.single-listings .listing-cover img {
	height: 504px;
	-o-object-fit: cover;
	   object-fit: cover;
}
  
  @media (max-width: 991.98px) {
	.single-listings .listing-cover img {
	  height: 300px;
	}
}
  
  @media (max-width: 767.98px) {
	.single-listings .listing-cover img {
	  height: 200px;
	}
}
  
.single-listings .listing-photos img {
	height: 250px;
	-o-object-fit: cover;
	   object-fit: cover;
}
  
  @media (max-width: 991.98px) {
	.single-listings .listing-photos img {
	  height: 75px;
	}
}
  
.single-listings .empty-img {
	-o-object-fit: contain !important;
	   object-fit: contain !important;
	-webkit-filter: grayscale(1);
			filter: grayscale(1);
	width: 100%;
	background: #00000023;
	padding: 1.75rem;
}
  
  @media (max-width: 991.98px) {
	.single-listings .empty-img {
	  padding: 1rem;
	}
}
  
  /* --- END INSIDE - LISTING --- */
  /*** WP OVERRIDE ***/
.aligncenter {
	margin: auto;
	display: block;
}
  
  /* --- END WP OVERRIDE --- */
  /*** BOOTSTRAP OVERRIDE ***/
.badge {
	display: inline-block;
	padding: 3px 6px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background: #000;
}
  
  /* --- END BOOTSTRAP OVERRIDE --- */
  /*** LIGHTBOX ***/
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100vh;
	overflow: hidden;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	background: #000000db;
}
  
.lightbox .lSSlideWrapper {
	height: 70vh;
}
  
.lightbox .btn-close {
	position: relative;
	margin-right: 0;
	margin-left: auto;
	text-align: center;
	display: block;
}
  
.lightbox .lbslide-cont {
	height: 70vh;
	background: #030303;
}
  
.lightbox .lbslide-cont .lbslide-bg {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	filter: blur(8px);
	-webkit-filter: blur(8px);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
  
.lightbox .lbslide-cont .lbslide-img {
	height: 100%;
	display: block;
	margin: auto;
}
  
/* --- END LIGHTBOX --- */
  

/*** CUSTOM CSS ***/
.form-control:focus {
    border-color: #000000;
    -webkit-box-shadow: 0 0 0 1px #0000007a;
    -o-box-shadow: 0 0 0 1px #1ca8dd7a;
    box-shadow: 0 0 0 1px #0000007a;
}
.aly-std-nav{
    background-color: #301C12;
    -webkit-box-shadow: 0;
    -o-box-shadow: 0;
    box-shadow: 0;
}
.aly-std-nav .navbar-nav .nav-link {
    font-weight: 400;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}
.aly-std-nav .navbar-nav .nav-link:hover,.aly-std-nav .navbar-nav .nav-link:focus {
	color: #ffffffb5;
}
.aly-std-nav .navbar-nav .current-menu-item .nav-link {
    font-weight: 500;
}
.aly-std-nav .navbar-nav .current-menu-item .nav-link:hover, .aly-std-nav .navbar-nav .current-menu-item .nav-link:focus {
	color: #ffffff;
}
/*Slider*/
.slider-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.slide-caption p, .slide-caption h1, .slide-caption h2, .slide-caption h3, .slide-caption h4, .slide-caption h5, .slide-caption h6, .slide-caption b, .slide-caption em{
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
}
.slide-caption p{
    font-size: 24px;
}
.carousel-indicators {
    bottom: 26px !important;
    align-items: center;
}
.slider-indicator[data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 100px !important;
    margin-right: 10px !important;
    margin-left: 10px !important;
    border: 1px solid #ffffff;
    background: transparent;
}
.carousel-indicators .active {
    background: #ffffff;
    opacity: 1;
}
.slider-control[data-bs-target] {
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 24px !important;
    width: 24px !important;
    height: 24px !important;
}
.slider-control[data-bs-target]:hover{
	opacity: 1;
}
.carousel-item {
    max-height: calc(100vh - 133px);
}
/* Category */
.category-cont {
	min-height: 316px;
    display: flex;
    overflow: hidden;
    position: relative;
    border: 1px solid #CCCCCC;
}
.home .cat-Coffees {
    border-right: 0;
    border-left: 0;
}
.home .aly-categoryblock .col-12.col-md-4.h-100.m-0 {
    padding: 0;
}
.category-cont img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    transition: all 0.15s ease-in-out;
    max-width: 428px;
    margin: auto;
    display: block;
}
.category-cont:hover img{
/* 	filter: blur(10px); */
}
.category-cont:hover .cat-children{
	opacity: 1;
}
.cat-children{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	color: #ffffff;
    background: #000000bd;
	transition: all 0.15s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
	opacity: 0;
}
.cat-children h3 {
    font-family: "Prompt", sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cat-btn{
    display: block;
    text-align: center;
    color: #ffffff;
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 5px;
}
.cat-btn:hover{
    color: #ffffff;
}
/* Content */
.aly-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
/* Subscription */
.aly-subscribe {
    padding: 90px;
}
.aly-subscribe h4 {
    font-size: 28px;
}
.aly-subscribe p {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-size: 20px;
}
.aly-subscribe .form-group{
	height: 50px;
}
.subscribe-input {
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    border: 0;
    border-radius: 0px;
    padding: 8px 11px;
    margin: 0 0 12px 0;
}
.subscribe-btn {
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    padding: 7px 20px;
    border-radius: 8px;
    border: 0;
    background: #000000;
    color: #ffffff;
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 6px;
}
/* Content */
.aly-content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.wys-img-100 img{
	width: 100%;
	margin: 10px 0 15px 0;
}

/* Footer */
ul#menu-footer-sub-menu {
    display: flex;
    list-style: none;
    font-weight: 400;
    font-family: "Gotham", sans-serif;
    font-size: 1rem;
    margin-bottom: 0;
}
#menu-footer-sub-menu li a {
    color: #000;
    padding: 0 10px;
}
#menu-footer-sub-menu li:first-child {
    border-right: 1px solid #000;
}
.footer-logo{    
	max-height: 123px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left;
}
ul#menu-footer-menu {
    display: flex;
    list-style: none;
    font-weight: 400;
    font-family: "Gotham", sans-serif;
    font-size: 1rem;
    margin-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    right: 10px;
    width: 100%;
    max-width: 570px;
}
.menu-sub-footer-menu-container {
    height: 85px;
}
#menu-footer-menu li {
    width: 33%;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}
#menu-footer-menu li a {
    color: #000;
    padding: 0px 10px;
    width: auto;
}
.row-socials {
    background: #e1e1e1;
    padding: 50px;
}
.row-socials h4 {
    font-family: 'Gotham Black', sans-serif;
    font-size: 24px;
    font-weight: 500;
}
/* .page-id-132 .footer .row-socials{
	display: none;
} */
.aly-contactus .row-socials {
    background: #e6d8c7;
    max-width: 512px;
    margin: auto;
}
.aly-contactus .row-socials h4 {
    font-family: 'Gotham Black', sans-serif;
    font-size: 36px;
    font-weight: 500;
}
.newsletter-cont {
    border-top: 1px solid #000000;
    padding: 17px 0;
    margin-top: 10px;
}
.newsletter-cont form {
    background: #000;
    padding: 16px;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
}
a .product-subject {
    display: flex;
    align-items: center;
    background: #ffffff;
    justify-content: flex-start;
    padding: 0;
	margin-bottom: 15px;
}
.product-subject p {
    font-family: "Gotham", sans-serif;
    font-weight: 800;
}
.product-subject p span {
    color: #6c757d;
}
.product-subject img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 15px 10px;
}

/* Branches */
#branches .h-fit h1, #branches .h-fit h2, #branches .h-fit h3, #branches .h-fit h4, #branches .h-fit h5, #branches .h-fit h6, #branches .h-fit p, #branches .h-fit strong {
    color: #ffffff;
}
/* Contact Component */
img.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-btn {
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    padding: 7px 20px;
    border-radius: 4px;
    border: 0;
    background: #4E2D1E;
    color: #ffffff;
	height: 38px;
}
textarea {
    resize: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
}
.wpcf7 form .wpcf7-response-output {
    margin: 8px 0;
    padding: 0 12px;
    border: 1px solid transparent;
    color: red;
}
::-webkit-input-placeholder { /* Edge */
    font-family: "Gotham", sans-serif;
	color: #939594;
	font-weight: 600;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: "Gotham", sans-serif;
	color: #939594;
	font-weight: 600;
}
::placeholder {
    font-family: "Gotham", sans-serif;
	color: #939594;
	font-weight: 600;
}
.subscribe-input::-webkit-input-placeholder { /* Edge */
    font-family: "Gotham", sans-serif;
	color: #000000;
	font-weight: 400;
}
.subscribe-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: "Gotham", sans-serif;
	color: #000000;
	font-weight: 400;
}
.subscribe-input::placeholder {
    font-family: "Gotham", sans-serif;
	color: #000000;
	font-weight: 400;
}
/* Category Page */
.category-nav {
    border-bottom: 1px solid #B49B90;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.category-nav a {
    font-family: "Gotham", sans-serif;
    color: #000000;
    margin-bottom: -1px;
    white-space: nowrap;
}
.category-nav a.active {
    font-weight: 700;
    border-bottom: 3px solid #4E2D1E;
}
.category-nav::-webkit-scrollbar {
    height: 5px;
}
.category-nav::-webkit-scrollbar-thumb {
    background-color: #4E2D1E;
    outline: 1px solid #b49b90;
    border-radius: 10px;
}
.category-nav::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #B49B90;
    border-radius: 10px;
}
.grandchild {
	display: none;
    position: absolute;
    margin-top: 4px;
    z-index: 1;
}
.grandchild a {
    margin: 2px 0;
    background: #4e2d1ecc;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    min-width: 180px;
	font-weight: 400;
}
/* Listings */
.aly-show-listings .listings .listings-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.aly-show-listings .listings {
    min-height: 100px;
    border-radius: 0;
    overflow: hidden;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    position: relative;
}
.listings-caption {
    background: #000000bd;
    width: 50%;
    padding: 16px;
    position: absolute;
    bottom: 0;
}
.listings-caption h6{
    color: #ffffff;
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}
.listings-caption p {
    color: #ffffff;
    font-family: 'Gotham', sans-serif;
    font-size: 12px;
}
.aly-show-listings .listings .rellistings-img {
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* Product */
.tag-list {
    display: flex;
}
.tag-list a {
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    padding: 10px 8px;
    text-transform: uppercase;
    background: #222222;
    color: #ffffff;
    border-radius: 8px;
    margin-right: 7px;
    line-height: 1.2;
    display: flex;
    height: 33px !important;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.product-label {
    border-bottom: 1px solid #B49B90;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.product-label p {
    font-family: "Gotham", sans-serif;
    color: #000000;
    margin-bottom: -1px;
    white-space: nowrap;
    font-weight: 700;
    border-bottom: 3px solid #4E2D1E;
}
.prod-img {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prod-img img {
    height: 442px !important;
    object-fit: contain;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    border: 1px solid #00000029;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
	transition: all 0.2s ease-in-out;
}
.lSSlideOuter .lSPager.lSGallery li.active{
    border-radius: 0;
    border: 1px solid transparent;
}
.lSSlideOuter .lSPager.lSGallery li:hover {
/*     border: 1px solid #000000; */
    border-radius: 0;
}
.lSSlideOuter .lSPager.lSGallery li a{
    height: 100%;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    background: #b2b2b2;
    opacity: 0.7;
	transition: all 0.2s ease-in-out;
}
.lSSlideOuter .lSPager.lSGallery li:hover img {
    opacity: 1;
}
.lSSlideOuter .lSPager.lSGallery .active img {
    background: transparent;
    opacity: 1;
}
/* Whats New */
.whats-new h3 {
    text-align: center;
}
.whats-new .aly-content{
	padding-left: 45px;
    margin: auto;
}
.whats-new .aly-content a{
	text-decoration: underline;
}
.whats-new .aly-content a:hover{
	text-decoration: none;
}
.whats-new .aly-caption{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    align-items: center;
    width: 100%;
}
.whats-new .aly-content-block {
    padding: 0 75px;
}
/* Contact Us Banner */
#contact-us-banner .content-btn {
    color: #0a0a0a;
    background: transparent;
    border: 1px solid #0a0a0a;
    padding: 20px 32px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    font-family: 'Gotham', sans-serif;
}
/* About Banner */
#aboutbanner h1 {
    font-size: 40px;
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
}
/* Dealers */
#dealers h3 {
    font-size: 24px;
    font-weight: 700;
}
#dealers .container {
    padding: 0 25px;
}
/* FAQ */
#faq h3 {
    font-size: 24px;
    font-weight: 700;
}
#faq .container {
    padding: 0 25px;
}
.cat-list a {
    display: block;
    margin-bottom: 10px;
}
.aly-show-listings .bloglistings {
    min-height: 100px;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    position: relative;
    height: 100%;
    background: #000;
}
.aly-show-listings .bloglistings .bloglistings-img{
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.bloglistings-caption {
    background: #000000;
}
.bloglistings-caption p {
    color: #ffffff;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.readmore span {    
	font-family: "Gotham", sans-serif !important;
	font-size: 13px;
	font-weight: 700;
    color: #ffffff !important;
	margin-right: 10px;
	transition: all 0.2s ease-in-out;
}
.blog-title {
    font-family: "Gotham", sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
}
.show-listings a:hover .readmore span,.show-listings a:focus .readmore span {    
	margin-right: 13px;
	margin-left: 3px;
}
.date-floating {
    background: #ffffff;
    padding: 0;
    width: 66px;
    height: 66px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 20px;
    text-align: center;
    line-height: 1;
}
body {
    max-width: 100%;
    overflow-x: hidden;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgb(0 0 0 / 0%);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
ul#menu-menu-social {
    flex-direction: initial;
}

.privacy-policy .aly-banner h1, .page-id-295 .aly-banner h1 {
    font-size: 36px;
}
.article-content img.size-full {
    width: 100%;
}
.article-content img{
    width: 100%;
}
/* @media(max-width: 1399.98px){
	ul#menu-footer-menu {
		right: 10px;
	}
} */
/* FAQ */
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #301c12;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    transform: rotate(-180deg);
}
.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.pum-container.pum-responsive img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
@media(max-width: 1399.98px){
	section#homecomponent-2 {
		height: 550px;
	}
}
@media(max-width: 1199.98px){
	section#homecomponent-2 {
		height: 600px;
	}
}
@media(max-width: 991.98px){
	section#homecomponent-2 {
		height: 840px;
	}
	.listings-caption {
		background: #000000bd;
		width: 100%;
	}
	.aly-show-listings .listings .listings-img {
		height: 280p;
	}
	.lSSlideOuter .lSPager.lSGallery li {
		height: 80px;
	}
	.category-cont {
		min-height: 214px;
		display: flex;
	}
}
@media(max-width: 767.98px){
	section#homecomponent-2 {
		height: auto;
	}
	.grandchild {
		position: relative;
		display: block !important;
	}
	.grandchild a {
		background: transparent;
		color: #000000;
		text-align: left;
		padding: 10px 15px;
		min-width: 100%;
	}
	.category-nav a {
		width: 100%;
	}
	.accordion-flush .accordion-item:last-child {
		border-bottom: 1px solid rgba(0,0,0,.125);
	}
	.privacy-policy h4, .privacy-policy h2, .privacy-policy h3, .privacy-policy h4, .privacy-policy h5, .privacy-policy h6 {
		font-family: "Prompt", sans-serif;
		font-weight: 600;
	}
	.privacy-policy .aly-banner h1, .page-id-295 .aly-banner h1 {
		font-size: 32px;
		margin-top: 8px;
	}
	.banner-title-caption h4{
		text-align: center;
    	font-size: 18px;
	}
	.aly-contactus .row-socials h4 {
		font-size: 24px;
	}
	.aly-contactus .row-socials {
		padding: 25px 10px 10px 10px;
	}
	#aboutbanner h1 {
    	font-size: 24px;
	}
	#aboutbanner img {
		padding: 0 15px;
	}
	.carousel-indicators {
		bottom: 0px !important;
    	margin-bottom: 0;
	}
	.slider-indicator[data-bs-target] {
		width: 7px !important;
		height: 7px !important;
	}
	ul#menu-footer-menu {
		position: relative;
	}
	#menu-footer-menu li a {
		width: auto;
	}
	.category-cont {
		min-height: auto;
		max-height: 180px;
	}
	.category-cont img {
		height: 110px;
		width: 100%;
		max-width: 100%;
		object-fit: contain;
	}
	.cat-btn {
		width: fit-content;
		margin: 3px auto 0 auto;
		font-size: 16px;
	}
	.aly-caption {
		position: relative !important;
	}
	.whats-new .aly-content {
		padding-left: 0;
	}
	.whats-new .aly-content-block {
		padding: 25px 25px;
	}
	.aly-subscribe {
		padding: 70px 25px;
	}
	.content-btn {
		padding: 10px 22px !important;
	}
	section#homecomponent-2 {
		padding: 0 !important;
	}
	a.footer-brand {
		display: flex;
		justify-content: center;
	}
	#menu-footer-menu li {
		justify-content: center;
	}
	ul#menu-footer-menu, ul#menu-footer-sub-menu {
		padding: 0;
	}
	section#about-uscomponent-1 {
		margin: 15px 0 !important;
	}
	section#about-uscomponent-2 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		margin-bottom: 35px !important;
	}
	[class*="col-"] {
		margin-bottom: 15px;
	}
	.banner-caption-container {
		width: 100%;
		padding: 15px;
	}
	.banner-input {
		max-width: 100%;
	}
	.lSSlideOuter .lSPager.lSGallery li {
		height: 110px;
	}
	.navbar {
		padding: 12px 0 12px 0;
	}
	ul#menu-header-menu {
		padding: 15px;
	}
	#menu-header-menu li {
		/* border-top: 1px solid #ffffff12; */
		border-bottom: 1px solid #ffffff12;
		padding: 10px;
	}
	a.nav-link.nav-social {
		margin-right: 20px !important;
		margin-left: 20px;
	}
	.footer-social img {
		width: 50px;
		height: 50px;
	}
	.footer-logo {
		object-position: center;
	}
}
@media(max-width: 574.98px){
	.single-article h1{
    	font-size: 28px;
	}
	section#servicescomponent-1 {
		padding-top: 0 !important;
	}
	.cat-children h3 {
		font-size: 16px;
	}
	.home .cat-Coffees {
		border-right: 1px solid #CCCCCC;
		border-left: 1px solid #CCCCCC;
	}
	.footer-social img {
		width: 30px;
		height: 30px;
	}
}
.wpcf7 form .wpcf7-response-output {
    margin: 8px 0;
    padding: 0 0;
    border: 0px solid transparent;
    color: white;
}