/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #81B29A;
  --secondary-color:              #901d20;
  --section-bg-color:             #F4F1DE;
  --custom-btn-bg-color:          #ffdfab;
  --custom-btn-bg-hover-color:    #901d20;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --link-hover-color:             #ffdfab;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  TICKER FOR ANNOUNCEMENTS               
-----------------------------------------*/
        .ticker {
            height: 50px;
            top: 0; 
            margin-top: 140px;
			position: absolute;
            overflow: hidden;
            width: 100%;
			z-index: 9999;
}

        .info-container {
            font-size: 30px;
            line-height: 1.5;
            white-space: nowrap; 
        }

        .info {
            color: white;
            animation-name: marquee;
            animation-duration: 20s;
            animation-timing-function: ease-in;
            animation-iteration-count: infinite;
            text-align: center;
            position: absolute;
            right: 29%;  /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  Lower number = more right align*/
            white-space: nowrap; 
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 100px);
            }
            10% {
                transform: translate(0, 0);
            }
            20% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(-400%, 0);
            }
			}
		
@media screen and (max-width: 767px) {
        .ticker {
			border-left: none;
			border-right: none;
            height: 50px;
            bottom: 0;
            width: 100%;
        }
	
        .info {
            text-align: right;
            position: absolute;
            white-space: nowrap; 
			right:-60%; /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  Lower number = more right align*/
		    animation-duration: 15s;
	
        }
	
        .info-container {
            font-size: 24px;
            line-height: 1.8;
            white-space: nowrap; 
        }
		
}



/*---------------------------------------
  GENERAL STYLES               
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(201,108,110,0) 0%, rgb(144, 29, 32,0.5) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  text-shadow:
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}

.secondarypageheaderfont {
  color: #fff;
  margin-top: 13%;
  font-size: 45px;
}




/*---------------------------------------
  HOMEPAGE - ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateY(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateY(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateY(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateY(120deg);
    -moz-transform: rotateY(120deg);
    -ms-transform: rotateY(120deg);
    -o-transform: rotateY(120deg);
    transform: rotateY(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateY(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateY(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateY(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateY(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateY(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateY(-40deg);
    -moz-transform: rotateY(-40deg);
    -ms-transform: rotateY(-40deg);
    -o-transform: rotateY(-40deg);
    transform: rotateY(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 991px) {
  .cd-headline.rotate-1 b {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .cd-headline.rotate-1 b.is-visible {
    -webkit-animation: cd-fade-in 1.2s;
    -moz-animation: cd-fade-in 1.2s;
    animation: cd-fade-in 1.2s;
  }
}






/*---------------------------------------
  HOMEPAGE - NAVIGATION BAR & LOGIN PROMPT SLIDE              
-----------------------------------------*/
.offcanvas {
  background-color: #ffdfab;
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #901d20;
}

.navbar {
  background: transparent;
  z-index: 99;
  height: 125px;
  /*padding-bottom: 15px;*/
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width: 48px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  width: 150px;
  height: auto;
  padding-top: 10px;
  position: relative;
}


.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HOMEPAGE - TOP IMAGE/HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/ShulerOutside.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  height: 100vh;
  min-height: 670px;
  margin-bottom: -90px;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}


/*---------------------------------------
  HOMEPAGE - ABOUT        
-----------------------------------------*/
.homeaboutimage {
    border-radius: 20px;
    margin-left: -50%;
}


/*---------------------------------------
  HOMEPAGE - BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
  background-image: url('../images/StoreBackground.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
}

.section-bg-image .container + svg {
  transform: rotate(180deg);
  position: relative;
  bottom: -1px;
}

.section-bg-image-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  padding: 50px;
}

.section-bg-image-block .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}




/*---------------------------------------
  HOMEPAGE - GOOGLE REVIEWS SECTION            
-----------------------------------------*/
.reviews-section .container {
  position: relative;
  z-index: 2;
}

.generalcenteredimage {
    border-radius: 60px;
    margin: 0 auto;
    display: block;
    padding: 20px;
}


/*---------------------------------------
  HOMEPAGE - AWARDS SECTION           
-----------------------------------------*/
.awards {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.awards img {
	height: auto;
	border-radius: 60px;
	padding: 20px;
	

}

.awardtext {
	text-align: center;
}


/*---------------------------------------
  HOMEPAGE - EVENTS SECTION            
-----------------------------------------*/
.events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  background-color: #ffdfab;
  border: 2px solid #fff;
  border-radius: var(--border-radius-medium);
  text-align: center;
  padding: 20px 30px;
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.30px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn  {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 110px;
  margin-right: 10px;
}

.custom-block-icon {
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: var(--h3-font-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.custom-block-icon:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}



/*---------------------------------------
  SITE FOOTER / CONTACT / FORMS       
-----------------------------------------*/

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 120px;
}

.contact-info {
  position: relative;
}

.contact-info-item {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-info-body {
  padding: 20px 30px;
}

.contact-info-body strong,
.contact-info-item a {
  color: var(--white-color);
}

.contact-info-footer {
  background-color: var(--custom-btn-bg-hover-color);
  padding: 10px 20px;
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
}


.site-footer {
  position: relative;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer p span {
  font-weight: var(--font-weight-medium);
  margin-right: auto;
}

.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--link-hover-color);
  color: var(--white-color);
}

.partner-logos{
  --logo-h: 100px;            /* tweak common logo height */
  display:flex;
  align-items:center;
  justify-content: space-evenly;  /* or 'center' with gap */
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logos img{
  height: var(--logo-h);
  width: auto;
  display:block;
  object-fit: contain;
}

/* Optional: reduce logo size on small screens */
@media (max-width: 576px){
  .partner-logos{ --logo-h: 56px; }
}

/* Optional: give the text a min width so logos don’t wrap too early */
.hours-copy{ min-width: 220px; }

















/*---------------------------------------
  ABOUT US PAGE              
-----------------------------------------*/

.hero-section-about {
  background-image: url('../images/AboutPage-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}


.hero-section-about .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-about svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-about > svg {
  top: 0;
}

.hero-section-about .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-about .row {
  position: relative;
  z-index: 22;
}

.aboutimage {
    border-radius: 20px;
    margin-left: -50%;
    padding: 10px;
    border: 2px solid #901d20;
    
}


/*---------------------------------------
  WEEKLY AD PAGE              
-----------------------------------------*/

.hero-section-weeklyad {
  background-image: url('../images/WeeklyAd-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-weeklyad .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-weeklyad svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-weeklyad > svg {
  top: 0;
}

.hero-section-weeklyad .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-weeklyad .row {
  position: relative;
  z-index: 22;
}

.imgflyer {
  box-shadow: 0px 3px 24px 3px rgba(166,166,166,1);
  height:auto;
  max-width:750px;
  width: 100%;
  margin: auto;
  display: block;
	
}

.section-weeklyad {
  background-color: #dfdfdf;
  background-image: url(../images/black-thread-light.png);
  padding: 30px;
}

.section-bg-image-block input[type="email"] {
  /*border: 0;*/
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
  background-color: var(--custom-btn-bg-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

.newslettersignup {
    margin: 0 auto;
    max-width: 60%;
}


/*---------------------------------------
  WHOLESALER AD PAGE              
-----------------------------------------*/

.hero-section-wholesalerad {
  background-image: url('../images/WholesalerAd-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-wholesalerad .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-wholesalerad svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-wholesalerad > svg {
  top: 0;
}

.hero-section-wholesalerad .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-wholesalerad .row {
  position: relative;
  z-index: 22;
}



/*---------------------------------------
  NEWS PAGE              
-----------------------------------------*/

.hero-section-newspage {
  background-image: url('../images/NewsPage-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-newspage .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-newspage svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-newspage > svg {
  top: 0;
}

.hero-section-newspage .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-newspage .row {
  position: relative;
  z-index: 22;
}


/*---------------------------------------
  RESOURCES & PARTNERS PAGE              
-----------------------------------------*/

.hero-section-resources {
  background-image: url('../images/ResourcesPartners-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-resources .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-resources svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-resources > svg {
  top: 0;
}

.hero-section-resources .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-resources .row {
  position: relative;
  z-index: 22;
}

.resourcescolumn {
  float: left;
  width: 33.3%;
  padding-right: 50px;
}

.resource:after {
  content: "";
  display: table;
  clear: both;
  padding-top: 10%;
}

.accordionconnected {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.accordionconnected-item {
  width: 33.33%;
  padding: 0 10px;
  margin-bottom: 80px;
}

.accordionconnected-header {
  background: rgb(201,108,110);
  background: linear-gradient(141deg, rgba(201,108,110,1) 0%, rgba(144,29,32,1) 100%);  
  margin: 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  font-size: 35px;
  padding: 0px;
}

.accordionconnected-header-text {
  padding: 20px 0px!important;
  color: #FFF;
}

.accordionconnected-header img {
  width: 100%;
  height: auto;
  display: block;
}


.accordionconnected-content {
  display: none;
  padding: 10px;
  border: thin solid #CCCCCC;
}

.accordionconnected-item.active .accordionconnected-content {
  display: block;
}


@media screen and (max-width: 991px) {
.resourcescolumn {
  width: 100%;
  padding-top: 50px;
  border-bottom: thin solid #B3B3B3;
 }
    
.accordionconnected {
  margin: 0;
}

.accordionconnected-item {
  width: 100%;
  padding: 0;
}
}


/*---------------------------------------
  CONTACT PAGE              
-----------------------------------------*/

.hero-section-contact {
  background-image: url('../images/Contact-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-contact .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-contact svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-contact > svg {
  top: 0;
}

.hero-section-contact .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-contact .row {
  position: relative;
  z-index: 22;
}

.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  border: 1px solid #901d20;

}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
  margin-bottom: 8%;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}



/*---------------------------------------
  PRODUCTS PAGE              
-----------------------------------------*/

.hero-section-products {
  background-image: url('../images/Products-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-products .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-products svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-products > svg {
  top: 0;
}

.hero-section-products .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-products .row {
  position: relative;
  z-index: 22;
}

.container-overlay {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.image-overlay1 {
  display: block;
  width: 80%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.image-overlay2 {
  display: block;
  width: 50%;
  max-width: 400px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: translate(25%, 25%);
  border-radius: 20px;
  border: thin solid #000;
}

* {
	box-sizing: border-box;
}



.prod-list li {
	--stop: calc(100% / var(--length) * var(--i));
	--l: 62%;
	--l2: 88%;
	--h: calc((var(--i) - 1) * (180 / var(--length)));
	--c1: hsl(var(--h), 71%, var(--l));
	--c2: hsl(var(--h), 71%, var(--l2));
	
	position: relative;
	counter-increment: list;
	max-width: 45rem;
	margin: 2rem auto;
	padding: 2rem 1rem 1rem;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: white;
}

.prod-list li::before {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}

.h3prod {
	display: flex;
	align-items: baseline;
	margin: 0 0 1rem;
	color: rgb(70 70 70);
}

.h3prod::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--c1);
	color: white;
}

.list-container {
      column-count: 2;
      column-gap: 20px; /* Adjust the gap between columns as needed */
    }

@media (min-width: 40em) {
	.prod-list li {
		margin: 3rem auto;
		padding: 3rem 2rem 2rem;
	}
	
	.h3prod {
		font-size: 2.25rem;
		margin: 0 0 2rem;
	}
	
	h3prod::before {
		margin-right: 1.5rem;
	}
}



/*---------------------------------------
  PACKAGED DEALS PAGE              
-----------------------------------------*/

.hero-section-packageddeals {
  background-image: url('../images/PackagedDeals-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-packageddeals .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-packageddeals svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-packageddeals > svg {
  top: 0;
}

.hero-section-packageddeals .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-packageddeals .row {
  position: relative;
  z-index: 22;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0px 3px 24px 3px rgba(166,166,166,1);}

th, td {
  padding: 10px 20px;
  text-align: left;
  border-bottom: 2px solid #fff;
  background-color: #dbdbdb;
  background-image: url("../images/cutcube.png");
}

th {
  background: linear-gradient(to bottom, #777777 0%,#4b4b4b 100%);
  color: #fff;
}

td:first-child {
  width: 35%; 
}



/*---------------------------------------
  RETAIL STORE PAGE              
-----------------------------------------*/

.hero-section-store {
  background-image: url('../images/Store-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-store .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-store svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-store > svg {
  top: 0;
}

.hero-section-store .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-store .row {
  position: relative;
  z-index: 22;
}

.slide {
  width: 600px;
  height: 375px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  border: 8px solid #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.slide > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  animation: slide 25s infinite;
  opacity: 0;
}

.slide > div:nth-child(2) {
  animation-delay: 5s;
}
.slide > div:nth-child(3) {
  animation-delay: 10s;
}
.slide > div:nth-child(4) {
  animation-delay: 15s;
}
.slide > div:nth-child(5) {
  animation-delay: 20s;
}

@keyframes slide {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    transform: scale(1.2);
  }
}

.productimage {
    border-radius: 20px;
    padding: 10px;
    border: 2px solid #901d20;
    
}


/*---------------------------------------
  PRIVACY POLICY PAGE              
-----------------------------------------*/

.hero-section-privacy {
  background-image: url('../images/PrivacyPolicy-Header.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  min-height: 500px;
  margin-bottom: -90px;
}


.hero-section-privacy .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section-privacy svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section-privacy > svg {
  top: 0;
}

.hero-section-privacy .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section-privacy .row {
  position: relative;
  z-index: 22;
}

.resourcesimage {
    border-radius: 20px;
    margin-left: -50%;
    padding: 10px;
}













/*---------------------------------------
  MEMBERSHIP SECTION (NOT CURRENTLY USED)           
-----------------------------------------*/
.membership-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody, 
.table-responsive td, 
.table-responsive tfoot, 
.table-responsive th, 
.table-responsive thead, 
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table>:not(caption)>*>* {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.membership-form {
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.membership-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 100px;
}


































/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/



@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
    height: 95px;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
    

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    background-color: #B33E41;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-left: -3.5%;
    margin-right: -3.5%;
    
      
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0px 0px 0px 25px ;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }
    
  .homeaboutimage {
    max-width: 100%;
    margin-left: 0%;
  }

  .aboutimage {
    max-width: 100%;
    margin-left: 0%;
  }
    
  .resourcesimage {
    max-width: 100%;
    margin-left: 0%;
  }
    
  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
    margin-bottom: 5%;
  }

  .homeweeklyad {
    max-width: 100%;
  }    
    
  .footer-right {
    margin-top: 20%;
  }    
    
  .site-footer {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .navbar-brand-image {
    width: 115px;
    height: auto;
    padding-top: 0px;

}
    
   .newslettersignup {
    max-width: 100%;
}
   
   .secondarypageheaderfont {
    margin-top: 40%;
    font-size: 35px;
}    
    
  .container-overlay {
    max-width: 80%;
    margin: 0 auto;
}	

  .slide {
    width: 360px;
    height: 300px;
}
    
  td:first-child {
    width: 10%; 
}    

    
    
   .hero-section-about {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-weeklyad {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-wholesalerad {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-newspage {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-privacy {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-resources {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-contact {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-products {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}
    
   .hero-section-packageddeals {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}    
    
   .hero-section-store {
    min-height: 350px;
    height: 350px;
    margin-bottom: 0px;
}     
	
.awards {
	display: block;
}
	



	
	
}

@media screen and (max-width: 480px) {
	
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }
	
    
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}

