/* ****** */
/* images */
/* ****** */
.img-bg{
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover; /* auto|length|cover|contain|initial|inherit|100% 100%|200px 200px; */	/**** if made "!important" it will break the zoom effect below */
}
.img-bg{
	min-height: 20px; /* just to be safe */
}
/* ****** */
/* [end]images */
/* ****** */

/* ********************* */
/* CSS bg zoom in effect */
/* ********************* */
/* this version zooms in and zooms out infinitely */
.bg-zoom-in {
    animation: bg-zoom-in 30s ease-in-out infinite;
}
@keyframes bg-zoom-in {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 120%; /* zoom in */
    }
    100% {
        background-size: 100%; /* zoom back out */
    }
}
/* Mobile version */
@media screen and (max-width: 920px) {
    @keyframes bg-zoom-in {
        0% {
            background-size: auto 100%;
        }
        50% {
            background-size: auto 120%;
        }
        100% {
            background-size: auto 100%;
        }
    }
}

/* this version stops at the end of the first zoom in */
.bg-zoom-in-2{ 
    animation-duration: 30s;
    animation-name: bg-zoom-in-2;
	animation-fill-mode: forwards; /* stops at the end and does not come back to original */
}

@keyframes bg-zoom-in-2{
    from {
    	background-size: 100%;
    }    
    to {
    	background-size: 120%;
    }
}
@media screen and (max-width: 920px){ /* for small resolutions */
@keyframes bg-zoom-in-2{
    from {
    	background-size: auto 100%;
    }    
    to {
    	background-size: auto 120%;
    }
}
}
/* ********************* */
/* [end]CSS bg zoom in effect */
/* ********************* */

/* **************************** */
/* CSS img hover zoom in effect */
/* **************************** */
.zoom-it {
	overflow: hidden; /* Clips the growing image inside the box */
}

/* Create a pseudo-element to hold the background image */
.zoom-it::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--bg-img); /* Safely reads the inline HTML variable */
	background-position: center;
	background-size: cover;
	transition: transform 0.5s ease; /* Controls the grow animation speed */
}

/* Trigger the grow effect on the background image when the main div is hovered */
.zoom-it:hover::before {
	transform: scale(1.15); /* Magnifies the background image by 15% */
}
/* **************************** */
/* [end]CSS img hover zoom in effect */
/* **************************** */

/* ********************* */
/* CSS Text Blink Effect: Just add class "blink-it" */
/* ********************* */
.blink-it {
    animation: blink-it 1s infinite;
}
@keyframes blink-it {
    from { opacity: 1.0; }
    50% { opacity: 0.5; }
    to { opacity: 1.0; }
}
/* ********************* */
/* [END] CSS Text Blink Effect */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect: Just add class "shake-it" */
/* ********************* */
.shake-it:hover, .shake-it-1:hover {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 0.5s;
	/* When the animation is finished, start again */
	animation-iteration-count: infinite;
}
@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}
/* ********************* */
/* [END] CSS Button Shake Effect */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect v2: Just add class "shake-it-2" */
/* ********************* */
.shake-it-2:hover {
	animation: shake-it-2 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	perspective: 1000px;
}
@keyframes shake-it-2 {
	10%, 90% { transform: translate3d(-1px, 0, 0); }
	20%, 80% { transform: translate3d(2px, 0, 0); }
	30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
	40%, 60% { transform: translate3d(4px, 0, 0); }
}
/* ********************* */
/* [END] CSS Button Shake Effect v2 */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect v3: Just add class "shake-it-3" */
/* ********************* */
.shake-it-3:hover {
	animation: shake-it-3 0.4s infinite;
}

@keyframes shake-it-3 {
	0% { transform: translateX(0px) rotate(0deg); }
	20% { transform: translateX(-4px) rotate(-4deg); }
	40% { transform: translateX(-2px) rotate(-2deg); }
	60% { transform: translateX(4px) rotate(4deg); }
	80% { transform: translateX(2px) rotate(2deg); }
	100% { transform: translateX(0px) rotate(0deg); }
}
/* ********************* */
/* [END] CSS Button Shake Effect v3 */
/* ********************* */











/* *********** */
/* sticky menu */
/* *********** */
.sticky-menu{
	position: sticky;
	top: 0;
	z-index: 1000; /* Keeps it above other content */
}
/* *********** */
/* [end]sticky menu */
/* *********** */






/* *********************************** */
/* triangle border in beetwen sections */
/* *********************************** */
.tringle-border{
	position: relative; /* Required for absolute positioning of the triangle */
}
.tringle-border::after{
	content: "";
	position: absolute;
	top: 100%;       /* Positions it just below the div */
	left: 50%;      /* Moves it to the horizontal center */
	margin-left: -60px; /* Offset by half the triangle's width to perfectly center */
	
	/* The Triangle Shape */
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 20px solid #fbfbfb; /* Match the container's background color */
}
.tringle-border.white::after{
	border-top-color: red;
	border-top-color: #ffffff; /***** tiangle color! *****/
}
.tringle-border.gray::after{
	border-top-color: black;
	border-top-color: #fbfbfb; /***** tiangle color! *****/
}
/* *********************************** */
/* [end]triangle border in beetwen sections */
/* *********************************** */






/* ************ */
/* circle icons */
/* ************ */
.circle-icon{
    vertical-align: middle;
    border-radius: 50%;
	
    text-align: center;
	border: 1px solid black;
}
.circle-icon{
    width: 45px;
    height: 36px;
	padding-top: 9px;
	font-size: 28px;
}
.circle-solid{
	color: #ffffff;
    background: #000000;
}
/* ************ */
/* [end]circle icons */
/* ************ */






/* ******* */
/* buttons */
/* ******* */
.button{
	/*width: fit-content !important;*/
	padding: 12px 24px !important;
	display: inline-block;
	
	text-transform: uppercase;
	/*border: 1px solid #bfbfbf;*/
	color: #ffffff !important;
}
.button,
.button.small{	 
	font-size: 16px;
}
.button.medium{
	font-size: 24px;
}
.button.large{
	font-size: 36px;
}
/* ******* */
/* [end]buttons */
/* ******* */






/* ********************** */
/* footer contact section */
/* ********************** */
.contact-footer-bit{
  display: flex;
  gap: 3px;
}

.contact-footer-bit div:first-child {
  width: 20px;
  flex-shrink: 0; /* Prevents the 20px box from squishing */
}

.contact-footer-bit div:last-child {
  flex: 1; /* Takes up all remaining space */
}
/* ********************** */
/* [end]footer contact section */
/* ********************** */












/* ******************** */
/* horizontal separator */
/* ******************** */
hr{
	border: none; /* Removes the default 3D browser shading */
	height: 2px;
	background-color: #333;
	width: 50px;
	margin-left: 0; 
}
hr.center{
	margin-left: auto
}
/* ******************** */
/* [end]horizontal separator */
/* ******************** */












/* ************ */
/* social icons */
/* ************ */
.social-icons a{
	display: inline-block;
	line-height: 1;
}
.social-icons i{
	/* Optional: ensure block alignment for proper clipping rendering */
	display: inline-block;
	
	/* Clip the background to the text/icon shape */
	-webkit-background-clip: text !important;
	background-clip: text !important;
	
	/* Make the center color transparent so the gradient shows through */
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.social-icons i.fa-facebook{
	/* Define a modern blue-to-purple Facebook brand gradient */
	background-image: linear-gradient(45deg, #00c6ff, #0072ff);
}
.social-icons i.fa-instagram{
	/* The official Instagram multi-color radial gradient */
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	/* Fallback color for unsupported browsers */
	color: #0866FF; 	
}
.social-icons i.fa-tiktok{
	background: linear-gradient(135deg, #00fff8 0%, #fe2c55 100%);
}
.social-icons i.fa-youtube{
	/* Create the YouTube red-to-dark-red gradient */
	background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
}
.social-icons i.fa-x-twitter{
	/* Define your gradient colors and direction */
	background: linear-gradient(135deg, #4da6ff 0%, #1a75ff 100%);
	/* Fallback color for unsupported browsers */
	color: #1a75ff; 	
}
.social-icons i.fa-linkedin{
	/* Set the background gradient using LinkedIn brand variations */
	background: linear-gradient(135deg, #004182 0%, #0077B5 50%, #00a0dc 100%);
}



div[color="orange"] #top-bar .social-icons i,
div[color="orange"] #footer .social-icons i,
div[color="pink"] #top-bar .social-icons i,
div[color="pink"] #footer .social-icons i,
div[color="blue"] #top-bar .social-icons i,
div[color="blue"] #footer .social-icons i,
div[color="gray"] #top-bar .social-icons i,
div[color="gray"] #footer .social-icons i,
div[color="green"] #top-bar .social-icons i,
div[color="green"] #footer .social-icons i,
div[color="gold"] #top-bar .social-icons i,
div[color="gold"] #footer .social-icons i,
div[color="brown"] #top-bar .social-icons i,
div[color="brown"] #footer .social-icons i,
div[color="red"] #top-bar .social-icons i,
div[color="red"] #footer .social-icons i,
div[color="blue-red"] #top-bar .social-icons i,
div[color="blue-red"] #footer .social-icons i,
div[color="blue-green"] #top-bar .social-icons i,
div[color="blue-green"] #footer .social-icons i,
div[color="yellow"] #top-bar .social-icons i,
div[color="yellow"] #footer .social-icons i{
	background: none;
}
div[color="orange"] #top-bar .social-icons i,
div[color="orange"] #footer .social-icons i,
div[color="pink"] #top-bar .social-icons i,
div[color="pink"] #footer .social-icons i,
div[color="blue"] #top-bar .social-icons i,
div[color="blue"] #footer .social-icons i,
div[color="gray"] #top-bar .social-icons i,
div[color="gray"] #footer .social-icons i,
div[color="green"] #top-bar .social-icons i,
div[color="green"] #footer .social-icons i,
div[color="gold"] #top-bar .social-icons i,
div[color="gold"] #footer .social-icons i,
div[color="brown"] #top-bar .social-icons i,
div[color="brown"] #footer .social-icons i,
div[color="red"] #top-bar .social-icons i,
div[color="red"] #footer .social-icons i,
div[color="blue-red"] #top-bar .social-icons i,
div[color="blue-red"] #footer .social-icons i,
div[color="blue-green"] #top-bar .social-icons i,
div[color="blue-green"] #footer .social-icons i{
	-webkit-text-fill-color: #ffffff;
	color: #ffffff;
}
div[color="yellow"] #top-bar .social-icons i,
div[color="yellow"] #footer .social-icons i{
	-webkit-text-fill-color: #121212;
	color: #121212;
}



/* custom */
#top-bar .social-icons a{
	font-size: 18px;
}
#top-bar .social-icons a:not(:last-child){
	margin-right: 5px;
}
/* custom */
#footer .social-icons a{
	font-size: 32px;
}
#footer .social-icons a:not(:last-child){
	margin-right: 3px;
}
/* custom */
body.contact .section.contact .social-icons a{
	font-size: 32px;
}
body.contact .section.contact .social-icons a:not(:last-child){
	margin-right: 10px;
}
/* ************ */
/* [end]social icons */
/* ************ */










/* ***************************** */
/* main nav menu and mobile menu */
/* ***************************** */
#menu-main .block-wrap > div{
	flex-grow: 1 !important;
	flex-shrink: 1 !important;
	flex-basis: 0 !important;	
	
	box-sizing: border-box;
}

#mobile-menu-open,
#mobile-menu-close{
	display: none
}
@media screen and (max-width: 920px){
#menu-main{
	position: fixed;
	width: 200px;
	top: 0;
	right: -200px;
}
#menu-main .block-wrap{
	flex-direction: column;
	align-items: stretch;   /* Ensures children stretch to 100% width of the parent */
	height: 100vh;     /* Uses 100% of the viewport height */
}
#menu-main .block-wrap > div{
	flex-grow: 0 !important;
	width: 100%;
}
#menu-main .block-wrap > div:last-child{	
	margin-bottom: auto; /* Pushes all remaining space below this child, floating items to the top */
}

#header .block-wrap{
	position: relative
}
#mobile-menu-open,
#menu-main #mobile-menu-close{ /* only reveal the closign tab in the main menu */
	display: block;
}
#mobile-menu-open{
	z-index: 1;
	
	position: absolute; /* Removes the div from normal document flow */
	top: 50%;                  /* Pushes top edge to the vertical middle */
	right: 20px;                  /* Flushes right edge against parent container */
	transform: translateY(-50%); /* Shifts element up by half its own height */
}
#menu-main .menu-item{
	text-align: left !important;
	padding-left: 20px;
}
#mobile-menu-close{
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
}
}
/* The overlay is created entirely in CSS using the body's pseudo-element */
body.overlay-active::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7); /* Dark transparent tint */
	z-index: 5; /* Sits behind the active element but over everything else */
	opacity: 0;
	animation: fadeInOverlay 0.5s forwards; /* Fades the overlay in smoothly */
}
@keyframes fadeInOverlay {
	to { opacity: 1; }
}

#mobile-menu-open i,
#mobile-menu-close i{
	cursor: pointer
}
#mobile-menu-open i{
	font-size: 28px;
}
/* ***************************** */
/* [end]main nav menu and mobile menu */
/* ***************************** */


















/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* layout below: positions, widths, heights, floats 
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */









.square{ /* used mostly for images */
	aspect-ratio: 1/1;
}














.top-bar > div > div{
	flex-grow: 1 !important;
	flex-shrink: 1 !important;
	flex-basis: 0 !important;	
}
@media screen and (max-width: 920px){
.top-bar > .block-wrap {
	display: block !important
}
}






















.header > .block-wrap{
	display: flex;
	gap: 30px;
	align-items: center; /* Options: flex-start, flex-end, center, stretch, baseline */
}
@media screen and (max-width: 920px){
.header > .block-wrap{
	flex-direction: column; /* Stack vertically */
	gap: 20px;
}
}
.header-logo{
	flex-grow: 1; /* Allows this child to expand and take up all remaining space */
}
.header-side{
	flex-shrink: 0; /* Prevents the text/content from wrapping or squeezing */
}



.header-side{
	display: flex;                 /* Activates Flexbox layout */
	flex-direction: row;           /* Aligns items in a horizontal line (Default) */
	justify-content: center;  /* Centers the children horizontally */
	justify-content: flex-end;     /* Moves all children tightly to the right side */
	align-items: center;      /* Optional: Centers the children vertically */
	gap: 30px;  
}

.header-side .contact-widget{
	display: flex;
}
.header-side .contact-widget.phone-block{
	flex-direction: column; /* Stacks children vertically, one per row */
	align-items: flex-start; /* Aligns items to the left based on content size */
	align-items: flex-end;  /* Aligns the content-width children to the right */
	gap: 5px; /* Optional: Adds spacing between rows */
}
@media screen and (max-width: 920px){
.header-side{
	justify-content: center;  /* Centers the children horizontally */
}

.contact-widget.address,
.contact-widget.email{
	display: none !important
}
}














#menu-main .block-wrap{
	flex-wrap: wrap;
	align-items: center; /* Vertically centers all child items */
}





















#menu-main .menu-item a,
#menu-footer .menu-item a{
	display: inline-block;
}
#menu-main .menu-item a{
	width: 100%;
}











.section > .block-wrap {
	overflow: hidden;
	flex-wrap: wrap;
}
div:not(#content) > .block-wrap{
	display: flex;
	justify-content: center;
}
.block-wrap{
	width: 1200px; /* if chanhing this value, change also the width css query that adds left and right paddings on mobile */
	max-width: 100%;
	margin: auto;
	box-sizing: border-box
}

























/*.section.hero > div,*/
.img-bg:has(.hero-title){
	display: flex;
	justify-content: center; /* Centers horizontally along the main axis */
	align-items: center;     /* Centers vertically along the cross axis */
	flex-direction: column;  /* Stacks children vertically */
}

.img-bg:has(.image-caption){
	position: relative;
}
.image-caption{
	position: absolute;    /* Removes from normal flow */
	bottom: 30px;             /* Pins to the bottom edge */
	left: 0;               /* Optional: stretches or aligns left */
}










body .hero > .img-bg{
	height: 340px; /* about less than 340 makes it look back in mobile , TODO */
}
body.index .hero > .img-bg{
	height: 560px;
}
.section .side > .img-bg{
	height: 460px;
}










/* content section mobile display layout */
/* reverse divs in mobile */
#content .section .block-wrap:has( > .side ){
	gap: 20px
}
#content .section .block-wrap > .side{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	flex-basis: calc(50% - 10px) !important; /* deduct the padding on the sides */
}
@media screen and (max-width: 920px){
#content .block-wrap{
	flex-direction: column !important
}
#content > :nth-child(2n + 1) .block-wrap > div.side:nth-child(1){
	order: 2 
}
#content > :nth-child(2n + 1) .block-wrap > div.side:nth-child(2){
	order: 1 
}
}

















.section .title,
.section .entries{
	width: 100%
}







.contact-widgets,
.contact-widgets > div{
	display: flex;
	flex-wrap: wrap
}
.contact-widgets > div{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	flex-basis: 100%; /* deduct the padding on the sides */
}










.entries{
	display: flex;
	flex-wrap: wrap;
	gap: 10px; 
}
.entries > div{
	flex: 0 0 100%;  /* 1 per row */
	flex: 0 0 calc(50% - 5px);  /* 2 per row */
	flex: 0 0 calc((100% - 20px) / 3); /* 3 per row */
	flex: 0 0 calc((100% - 30px) / 4); /* 4 per row */
	box-sizing: border-box; 
}
@media screen and (max-width: 920px){
.entries > div{
	flex: 0 0 calc(50% - 5px); 
}
}
.section.reviews .entries > div{
	flex: 0 0 calc(50% - 5px);  /* 2 per row */
}




.full-width{
	width: 100%
}








#footer .block-wrap{
	display: flex;
	flex-wrap: wrap; /* Allows items to break to a new line */
	gap: 30px;
}
#footer .block-wrap > div{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
}
#footer .block-wrap > div:nth-child(1){
	flex-basis: calc(50% - 15px); /* deduct the padding on the sides */
}
#footer .block-wrap > div:nth-child(2),
#footer .block-wrap > div:nth-child(3){
	flex-basis: calc(25% - 22.5px); /* deduct the padding on the sides */
}
@media screen and (max-width: 920px){
#footer .block-wrap > div{
	flex-basis: 100% !important; /* deduct the padding on the sides */
}
}





/* images */
.footer-contact{
	width: 75px;
}








.section.contact .contact-widgets .circle-icon{
    width: 45px;
    height: 36px;
}








.section.gallery-photos .img-bg,
.section.gallery-videos .img-bg,
.entries-grid .img-bg{ 
	aspect-ratio: 1 / 1;
}












t{
	width: fit-content;
}












.lil-cart-wrapper > div{
	display: flex;
	flex-wrap: wrap;
}
.lil-cart-wrapper > div > div{
	flex: 0 0 50%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}
@media screen and (max-width: 920px){

}





.section.cart .full-width{
	display: flex;
	flex-wrap: wrap;
}
.section.cart .full-width > div{
	flex: 0 0 50%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}
@media screen and (max-width: 920px){

}
.section.cart .cart-products{
	display: flex;
	flex-wrap: wrap;
}
.section.cart .cart-products > div{
	flex: 0 0 100%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
	
	
	display: flex;
	flex-wrap: wrap;
}
.section.cart .cart-products > div > div{
	flex: 0 0 33%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}













































/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* distances below: paddings and margins
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */






body{
	margin: 0px
}



#content{
	padding: 0px
}


.hw-icon{
	margin-right: 10px !important
}












#menu-main .menu-item a,
#menu-footer .menu-item a{
	padding: 12px 0px 12px 0px
}
#menu-footer .menu-item a{
	padding: 12px 0px 12px 0px
}
#content .hero-title,
#content .hero-subtitle{
	padding: 0px 25px
}
.image-caption{
	padding: 6px 20px
}









/* padings, important for mobile display */
#top-bar .block-wrap{
	padding-top: 8px;
	padding-bottom: 8px;
}
#header .block-wrap,
#footer .block-wrap{
	padding-top: 30px;
	padding-bottom: 30px;
}
#content .section .block-wrap{
	padding-top: 60px;
	padding-bottom: 60px;
}
#content .section.hero-cta .block-wrap{
	padding-top: 5px;
	padding-bottom: 5px;
}
#footer-bottom .block-wrap{
	padding-top: 16px;
	padding-bottom: 16px;
}
@media screen and (max-width: 1240px){ /* if chanhing this value, change also the wrapper width which handles the general document width */
#top-bar .block-wrap,
#header .block-wrap,
#content .block-wrap,
#footer .block-wrap,
#footer-bottom .block-wrap,
.section.hero .img-bg{
	padding-left: 20px;
	padding-right: 20px;
}
}










#menu-main{
	margin-bottom: -28px
}





.section .hero-title{
	margin-bottom: 5px
}





.section.hero-cta{
	margin-top: -26px;
}






.section.contact .form-fields{
	margin-top: 20px;
}
.section.contact .form-fields > div:nth-child(even):not(:last-child){
	margin-bottom: 20px;
}
.section.contact .form-fields > div:nth-child(odd):not(:last-child){
	margin-bottom: 5px;
}
.section.contact .contact-widgets{
	margin-top: 30px;
}
.section.contact .contact-widgets > div:not(:last-child){
	margin-bottom: 30px;
}
.section.contact .contact-widgets .circle-icon{
	padding-top: 9px;
}








.section .side .button-wrapper{
	margin-top: 20px
}









#footer .footer-col .title{
	margin-bottom: 10px
}





.section .title,
.section hr,
#footer .footer-col .footer-logo{
	margin-bottom: 20px
}


#footer .social-icons{
	margin-top: 20px
}



#footer .contact-footer > div:not(:last-child){
	margin-bottom: 15px;
	border: 0px solid red
}
#footer .contact-footer > div:first-child{
	margin-top: 25px;
}


















































/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* style below: colors, fonts, backgrounds, ...
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */







{
	font-family: "Lato", Helvetica, Arial, sans-serif !important;
	font-family: "Bebas", Helvetica, Arial, sans-serif !important;
	font-family: "Poppins", Helvetica, Arial, sans-serif !important;
	font-family: "Montserrat", Helvetica, Arial, sans-serif !important;
}

.header-logo,
.footer-logo{
	font-family: "Bebas Neue", Helvetica, Arial, sans-serif !important;	
	word-spacing: 8px; /* Can use px, em, rem, or normal */
}
.section .hero-title,
.section .title,
.footer-col .title{
	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif !important;
	font-family: "Lato", Helvetica, Arial, sans-serif !important;
}









#document{
	font-family: "Arial", "Helvetica", sans-serif;
}

#document a{
	text-decoration: none;
	color: inherit;
}











#document{
	font-size: 16px;
}
#top-bar,
#footer{
	font-size: 14px;
}
#footer-bottom{
	font-size: 12px;
}
#menu-main .menu-item a{
	font-size: 16px;
}
.section .hero-subtitle,
.entries-grid .entry-title,
.section.contact .hw-value,
.footer-col .title{
	font-size: 24px;
}
.section.hero-cta,
.section .title{
	font-size: 32px !important
}
.section .hero-title{
	font-size: 36px;
}
.header-logo,
.footer-logo{
	font-size: 48px;
}








#document{
	line-height: 1.6
}
.header .header-logo,
.contact-widget.phone-block{
	line-height:1
}





.contact-widget.phone-block .hwp-msg{
	font-style: italic;
}
.contact-widget.phone-block .hwp-content{
	font-size: 28px;
	font-weight: 700;
}
.contact-widget.phone-block .hwp-content i{
	color: #881616
}









#menu-main .menu-item a{
	text-transform: uppercase
}







.section .hero-title,
.section .hero-subtitle,
.image-caption{
	color: #ffffff;
}
.section.hero > div > div,
.image-caption{
	background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
}










#content .section:nth-child(2n):not(.hero-cta){
	background-color: #fbfbfb 
}
#menu-main .menu-item:not(:last-child){
	border-right: 1px solid white
}
@media screen and (max-width: 920px){
#menu-main .menu-item{
	border: none !important
}
}






body:not(.index) .hero > .img-bg{
	text-transform: capitalize
}









#top-bar .block-wrap > div,
.section.hero-cta,
.section.hero > div > div,
.entries-grid .entry-title,
#footer-bottom,
#menu-main .menu-item,
.section.checkout .title{
	text-align: center
}
@media screen and (max-width: 920px){
.header-logo{
	text-align: center !important;
}
}










.hw-label,
.entries-grid .entry-title,
.cart-products > :first-child,
.lil-cart-wrapper > div > :first-child{
	font-weight: bold;
}
.header-logo,
#footer .footer-col .footer-logo,
.section .hero-title,
.section .title{
	font-weight:900
}










.section.reviews .entries .entry > :nth-child(2){
	text-align: right
}

.section.reviews .entries .entry > :nth-child(1){
	background-color: #fbfbfb;
	border: 1px solid #efefef;
	border-radius: 5px;
	padding: 10px !important;
	
	position: relative; /* Required for absolute positioning of the triangle */	
	
	margin-bottom: 10px
}
.section.reviews .entries .entry > :nth-child(1)::after{
	content: "";
	position: absolute;
	top: 100%;       /* Positions it just below the div */
	left: 50%;      /* Moves it to the horizontal center */
	margin-left: 100px; /* Offset by half the triangle's width to perfectly center */
	
	/* The Triangle Shape */
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 10px solid #121212; /* Match the container's background color */
}
@media screen and (max-width: 920px){
.section.reviews .entries .entry > :nth-child(1)::after{
	margin-left: 60px; /* Offset by half the triangle's width to perfectly center */
}
}








/* reviews page stars */
.section.reviews .fa-star{
	color: #F2B500
}




















#menu-footer .menu-item{
	border-bottom: 1px dotted white;
}





























.section.checkout .full-width{
	max-width: 100%;
	width: 500px;
}








.form-fields input,
.form-fields textarea{
	width: 100%;
}
.form-fields input:not([type=submit]),
.form-fields textarea,
.form-fields select{
	max-width: 100%;
	font-size: 18px;
	padding: 5px 10px;
	box-sizing: border-box
}
.form-fields textarea{
	height: 60px
}
.form-fields input[type=submit]{
	border: none;
}


























.lil-cart-wrapper{
	border: 1px solid #bfbfbf;
	margin-bottom: 10px
}






.add-2-cart,
.add-2-cart select,
.add-2-cart button{
	font-size: 20px;
	margin-top: 10px
}
.add-2-cart select{
	margin-right: 5px
}
























