

@import url('https://fonts.googleapis.com/css2?family=Cabin&family=Montserrat:wght@400;700&family=Viga&family=Permanent+Marker&display=swap');

  body {
    background: #ffffff;
    font-family: 'Cabin', sans-serif;
    overflow-x: hidden;
  }


/*font-family: 'Cabin', sans-serif; 			/* main body font*/
/*font-family: 'Montserrat', sans-serif; 		/*Headings*/
/*font-family: 'Permanent Marker', cursive; 	/*Use for speciality headings*/
/*font-family: 'Viga', sans-serif;				/*Use for navigation*/


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4 {
    font-weight: bold;
    line-height: inherit;
	font-family: 'Montserrat', sans-serif;
  }

  h1 {
    color: #252525;
    font-size: 3em;
    line-height: 50px;
	font-family: 'Montserrat', sans-serif;
  }

  h2 {
    color: #353535;
    font-size: 2em;
    padding-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
  }

  h3 {
    font-size: 1.5em;
    margin-bottom: 0;
	font-family: 'Montserrat', sans-serif;
  }

  h3,
  h3 a {
    color: #454545;
  }

  h5 {
    font-size: 22px;
    margin-bottom: 0;
	font-family: 'Permanent Marker', cursive;
  }





  p {
    color: #757575;
    font-size: 19px;
    font-weight: normal;
    line-height: 26px;
    font-family: 'Cabin', sans-serif;
  }


/*---------------------------------------
  TICKER FOR ANNOUNCEMENTS               
-----------------------------------------*/
        .ticker {
            border-bottom: 5px solid #ccc;
            height: 50px;
            top: 0; /*IF BOTTOM ALIGNMENT IS NEEDED, CHANGE TO BOTTOM */
			margin-top: 100px;
            position: absolute;
            overflow: hidden;
            width: 100%;
			z-index: 500;
			background: rgb(0,93,44);
			background: -moz-linear-gradient(0deg, rgba(0,93,44,1) 0%, rgba(0,0,0,1) 100%);
			background: -webkit-linear-gradient(0deg, rgba(0,93,44,1) 0%, rgba(0,0,0,1) 100%);
			background: linear-gradient(0deg, rgba(0,93,44,1) 0%, rgba(0,0,0,1) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005d2c",endColorstr="#000000",GradientType=1);		}

        .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: 20%;  /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  LONGER EQUALS HIGHER NUMBER*/
            white-space: nowrap; 
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 100px);
            }
            10% {
                transform: translate(0, 0);
            }
            20% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(-150%, 0);
            }
			}
		
@media screen and (max-width: 767px) {
        .ticker {
            border-bottom: 5px solid #ccc;
			margin-top: 80px;
			border-left: none;
			border-right: none;
            height: 50px;
            bottom: 0;
            width: 100%;
        }
	
        .info {
            text-align: left;
            position: absolute;
            white-space: nowrap; 
			right:-20% /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  LONGER EQUALS HIGHER NUMBER*/
        }
	
        .info-container {
            font-size: 24px;
            line-height: 1.8;
            white-space: nowrap; 
        }
		
}


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #735032;
    outline: none;
	text-decoration: underline;  
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    margin: 0;
  }

  .section-title h4 {
    color: #bfbdbd;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
  }

  .overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #local, 
  #tiles,
  #testimonial {
    text-align: center;
  }

  .about-image img,
  .about-image2 img,
  .local-thumb img {
    width: 100%;
  }
  
  #google-map iframe {
    border: 0;
    width: 100%;
    height: 390px;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 50%);

  }

  #facebook iframe {
    border: 0;
    width: 90%;
    height: 390px;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 50%);

  }

.insidecenterblock {
		max-width:1000px;
		width: 85%;
		text-align:center;
		display:block;
		margin: 0px auto;
		padding:15px;

}





  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #735032;
    border-radius: 0;
    border: 0;
    color: #f9f9f9;
    font-size: inherit;
    font-weight: normal;
    padding: 10px 25px;
    transition: 0.5s 0.2s;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }

.announcementblocksmaller {
		max-width:100%;
		text-align:center;
		display:block;
		margin: 0px auto;
		background:url("../images/AnnouncementBCK.png") 0% 0;
		background-repeat:repeat;
		padding:15px;
		font-size: 18px;
		color: #000000;
		animation: blinker 1.5s linear;
		height: 250px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #000; /*CHANGE TO WHITE FOR BAR TO BLEND BACK WITH BACKGROUND*/
    font-size: 18px;
    font-weight: bold;
  }

  .custom-navbar .navbar-brand span {
    color: #735032;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .navbar-nav.navbar-nav-first {
    /*margin-left: 8em;  REMOVED WITH ADDITION OF APP CARD*/
	margin-top: 10px;
  }

  .custom-navbar .navbar-nav.navbar-right li a {
    padding-right: 12px;
    padding-left: 12px;
  }

  .custom-navbar .navbar-nav.navbar-right .section-btn {
    display: inline-block;
    margin: 0.2em 0 0 1em;
  }

  .custom-navbar .navbar-nav.navbar-right .section-btn:hover {
    background: #735032;
    color: #ffffff;
  }

  .custom-navbar .navbar-nav.navbar-right .section-btn:focus {
    color: #ffffff;
  }

  .custom-navbar .navbar-nav.navbar-right .section-btn a {
    padding: 10px 25px;
  }

  .custom-navbar .nav .section-btn a:hover {
    color: #ffffff;
  }

  .custom-navbar .nav li a {
    font-size: 17px;
    color: #252525; /*CHANGE TO WHITE FOR BAR TO BLEND BACK WITH BACKGROUND*/
    padding-right: 20px;
    padding-left: 20px;
    text-transform: uppercase;
	font-family: 'Viga', sans-serif;  
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #735032;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #735032;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #252525;
    border-color: transparent;
  }


.mobilelogo {
	display:none;
}


.logo {
	margin-top: -30px;
}




  @media(min-width:768px) { /*Uncomment border-bottom and background and remove everything else to make top nav blend with background*/
    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
	  /*border-bottom: 0;
      background: 0 0; */
	  background-color: #d5c295;
	  background-image: url("../images/clean-textile.png");
	  height: 100px;	
	
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
	  background-color: #d5c295;
	  background-image: url("../images/clean-textile.png");
	
    }

    .top-nav-collapse .navbar-brand {
      color: #454545;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
	  
	.navbar-brand>img {
		  display: none;
	  }  
	  
	.regularlogo {
	display:none;
	}
	  
	  
	.mobilelogo {
	display:block;
}  

	  
	  
	  
	  
  }



  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home {
    padding: 0;
  }

  #home h1 {
    color: #ffffff;
    padding-bottom: 30px;
  }

  #home h3 {
    color: #f9f9f9;
    font-size: 14px;
    line-height: inherit;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
  }

  @media (min-width: 768px) {
    .slider .col-md-8 {
      padding-left: 0;
    }
  }

  .slider .owl-dots {
    position: absolute;
    top: 50%;
    right: 2em;
    justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot {
    display: block;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 7px 10px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background-color: rgba(20,20,20,0.2);
    height: 100%;
    color: #fff;
    cursor: e-resize;
    padding: 4em 0 0 2em;
  }

  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }

  .slider .item-first {
    background-image: url(../images/slider-image1.jpg);
  }

  .slider .item-second {
    background-image: url(../images/slider-image2.jpg);
  }

  .slider .item-third {
    background-image: url(../images/slider-image4.jpg);
  }

  .slider .item-fourth {
    background-image: url(../images/slider-image3.jpg);
  }

  .slider .item-fifth {
    background-image: url(../images/slider-image5.jpg);
  }

  .slider .item-sixth {
    background-image: url("../images/slider-image8.jpg");
  }


  .slider .item-second .section-btn {
    background: #292929;
  }

  .slider .item-second .section-btn:hover {
    background: #ffffff;
  }

  .slider .item-third .section-btn {
    background: transparent;
    border: 1px solid #ffffff;
  }

  .slider .item-third .section-btn:hover,
  .slider .item-third .section-btn:focus {
    background: #735032;
    border-color: transparent;
    color: #ffffff;
  }

  /*---------------------------------------
      VIDEO              
  -----------------------------------------*/
	.video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        overflow: hidden;
    }

    .video-container {
        width: 100%;
        height: 100%;
    }

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
		border-radius: 10px;
    }
  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    padding-bottom: 0;
  }

  .about-info {
    padding: 0 6em 5em 0;
  }

  .about-info .section-title {
    padding-bottom: 20px;
  }

  .about-image {
    position: absolute;
  }



  /*---------------------------------------
      LOCAL              
  -----------------------------------------*/

  #local {
    background: #f9f9f9;
  }

  .local-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .local-info {
    padding: 10px 30px 20px 30px;
  }

  .local-thumb .local-hover {
    position: absolute;
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
  }

  .local-thumb:hover .local-hover {
    opacity: 0.95;
    transition-delay: 0.3s;
    transform: translateY(0);
  }

  .local-thumb img {
    transition: 0.5s 0.2s;
  }

  .local-thumb:hover img {
    transform: scale(1.2);
  }

  .local-thumb .social-icon li a {
    background: #292929;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #d9d9d9;
    font-size: 20px;
    margin: 15px 5px 0 5px;
  }

  .local-thumb .local-item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  .local-item h4 {
    color: #ffffff;
  }

  .local-info p {
    color: #bfbdbd;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
  }




  /*---------------------------------------
     TILES              
  -----------------------------------------*/

  #tiles {
    padding-bottom: 0;
  }

  #tiles .container {
    width: 100%;
  }

  #tiles .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .tiles-thumb img {
    width: 100%;
    transition: 0.5s;
  }

  .tiles-thumb:hover img {
    transform: scale(1.05);
  }

  #tiles .tiles-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 102%;
  }

  .tiles-thumb .tiles-info {
    position: absolute;
    top: 60%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: left;
    padding: 25px 30px;
    transition: 0.5s 0.2s;
  }

  .tiles-info .tiles-item {
    float: left;
  }

  .tiles-info .tiles-price {
    float: right;
  }

  .tiles-info .tiles-price span {
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    display: block;
    margin-top: 10px;
  }

  .tiles-thumb .tiles-info h3,
  .tiles-thumb .tiles-info p,
  .tiles-thumb .tiles-info span {
    transform: translateY(100%);
    opacity: 0;
    display: block;
    transition: 0.5s 0.2s;
    color: #ffffff;
    z-index: 2;
    position: relative;
  }

  .tiles-thumb .tiles-info h3 {
    margin-top: 0;
  }

  .tiles-thumb .tiles-info p {
    color: #d9d9d9;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .tiles-thumb:hover .tiles-info h3,
  .tiles-thumb:hover .tiles-info p,
  .tiles-thumb:hover .tiles-info span {
    transform: translateY(0px);
    opacity: 1;
  }

  .tiles-thumb:hover .tiles-info {
    background: rgba(0,0,0,0.8);
  }



  /*---------------------------------------
      TESTIMONIAL             
  -----------------------------------------*/

  #testimonial {
    background: url('../images/testimonial-bg.jpg') center center no-repeat;
    background-size: cover;
  }

  #testimonial .owl-dots {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
  }

  #testimonial .owl-theme .owl-dots .owl-dot,
  #testimonial .owl-theme .owl-dots .owl-dot span {
    display: inline-block;
  }

  #testimonial .owl-theme .owl-dots .owl-dot span {
    margin: 20px 5px;
  }

  #testimonial h2 {
    color: #ffffff;
  }

  #testimonial p,
  .tst-author h4,
  .tst-author span {
    display: inline;
  }

  #testimonial p {
    color: #d9d9d9;
    font-size: 20px;
    line-height: 35px;
  }

  .tst-author {
    margin-top: 20px;
  }

  .tst-author h4,
  .tst-author span {
    color: #b2b2b2;
  }

  .tst-author span {
    margin-left: 5px;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact .section-title {
    padding-bottom: 0;
  }

  #contact .text-success,
  #contact .text-danger {
    display: none;
  }

  #contact .form-control {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: all ease-in-out 0.4s;
  }

  #contact .form-control:hover,
  #contact .form-control:focus {
    border-bottom-color: #c9c9c9;
  }

  #contact input {
    height: 55px;
  }

  #contact button#cf-submit {
    background: #735032;
    border-radius: 0;
    border: 0;
    color: #ffffff;
    font-weight: bold;
    height: 50px;
  }

  #contact button#cf-submit:hover {
    background: #292929;
    color: #ffffff;
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 120px 0;
    padding-bottom: 80px;
	background-color:#F8F8F8;
    background-image: url("../images/checkered-pattern.png");
  }

  footer .section-title {
    padding-bottom: 10px;
  }

  footer h2 {
    font-size: 20px;
  }

  footer a,
  footer p {
    color: #909090;
	font-size: 18px;  
  }

  footer strong {
    color: #d9d9d9;
  }

  footer address p {
    margin-bottom: 0;
  }

  .footer-info,
  footer .social-icon {
    margin-top: 20px;
  }

  .footer-open-hour {
    background: #ce3232;
    background: url('../images/footer-open-hour-bg.jpg') center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-top: 0;
    padding: 40px 0 40px 80px;
    overflow: hidden;
    position: relative;
    z-index: 22;
    right: 20px;
    bottom: 20px;
  }

  .footer-open-hour::after {
    background: rgba(29,29,29,0.85);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2222;
  }

  .footer-open-hour h2 {
    color: #ffffff;
  }

  .footer-open-hour p {
    color: #d9d9d9;
  }

  .footer-open-hour strong {
    color: #f9f9f9;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #735032;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .social-icon li a:hover {
    background: #735032;
    color: #ffffff;
  }

  /*---------------------------------------
     ABOUT US PAGE              
  -----------------------------------------*/


/*  Page Header   */

.aboutus #sdl1 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.aboutus #sdl1 .inner1 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_970.jpg"); margin-bottom: -5%; margin-top: -8%; max-height: 700px;}

@media only screen and (max-width: 320px) {
    .aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .aboutus #sdl1 { background-image: url("../images/Headers/AboutUs_970@2x.jpg"); margin-bottom: -5%; margin-top: -8%; max-height: 700px; }
}


  #about2 {
    padding-bottom: 0;
	background: #FFF url("../images/CedarLodgeLOGO_ForWebTrans.png") no-repeat left;
	  
  }



  /*---------------------------------------
     HOURS AND LOCATION PAGE              
  -----------------------------------------*/


/*  Page Header   */



.hours #sdl2 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.hours #sdl2 .inner2 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.hours #sdl2 { background-image: url("../images/Headers/Hours_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .hours #sdl2 { background-image: url("../images/Headers/Hours_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .hours #sdl2 { background-image: url("../images/Headers/Hours_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .hours #sdl2 { background-image: url("../images/Headers/Hours_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .hours #sdl2 { background-image: url("../images/Headers/Hours_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .hours #sdl2 { background-image: url("../images/Headers/Hours_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}



  /*---------------------------------------
     SALES FLYER PAGE              
  -----------------------------------------*/


/*  Page Header   */

.imgflyer {

	border: 6px solid #FFFFFF;
    box-shadow: 0px 3px 24px 3px rgba(166,166,166,1);
	height:auto;
	max-width:750px;
	width: 100%;
	text-align: center;
	
}

.salesflyer #sdl3 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.salesflyer #sdl3 .inner3 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.salesflyer #sdl3 { background-image: url("../images/Headers/Sales_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .salesflyer #sdl3 { background-image: url("../images/Headers/Sales_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .salesflyer #sdl3 { background-image: url("../images/Headers/Sales_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .salesflyer #sdl3 { background-image: url("../images/Headers/Sales_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .salesflyer #sdl3 { background-image: url("../images/Headers/Sales_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .salesflyer #sdl3 { background-image: url("../images/Headers/Sales_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}


  /*---------------------------------------
     STORE PAGE              
  -----------------------------------------*/

.featcolumn {
    float: left;
    width: 20%;
    margin-bottom: 11px;
    padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media (max-width: 650px) {
    .featcolumn {
        width: 50%;
        display: block;
    }
}

/* Add some shadows to create a card effect */
.featcard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	background-color: #b3f9d4;
}

/* Some left and right padding inside the container */
.featcontainer {
    padding: 0 11px;
}

/* Clear floats */
.featcontainer::after, .ttdrow::after {
    content: "";
    clear: both;
    display: table;
}

.feattitle {
    color: grey;
	font-size: 20px;
}


/*  Page Header   */


.store #sdl4 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.store #sdl4 .inner4 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.store #sdl4 { background-image: url("../images/Headers/Store_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .store #sdl4 { background-image: url("../images/Headers/Store_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .store #sdl4 { background-image: url("../images/Headers/Store_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .store #sdl4 { background-image: url("../images/Headers/Store_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .store #sdl4 { background-image: url("../images/Headers/Store_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .store #sdl4 { background-image: url("../images/Headers/Store_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}


  /*---------------------------------------
     LOCAL NC PAGE           
  -----------------------------------------*/


/*  Page Header   */



.insidecenterblock2 {
		width: 85%;
		text-align:center;
		display:block;
		margin: 0px auto;
		padding:15px;

}


/** - Old LOCAL PRODUCTS PAGE -*/

  #localpage {
    background: #f9f9f9;
  }

  .localpage-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
  }

  .localpage-info {
    padding: 10px 30px 20px 30px;
  }

  .localpage-thumb .localpage-hover {
    position: absolute;
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
  }

  .localpage-thumb:hover .localpage-hover {
    opacity: 0.95;
    transition-delay: 0.3s;
    transform: translateY(0);
  }

  .localpage-thumb img {
    transition: 0.5s 0.2s;
  }

  .localpage-thumb:hover img {
    transform: scale(1.2);
  }

  .localpage-thumb .social-icon li a {
    background: #292929;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #d9d9d9;
    font-size: 20px;
    margin: 15px 5px 0 5px;
  }

  .localpage-thumb .localpage-item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  .localpage-item h4 {
    color: #ffffff;
  }

  .localpage-info p {
    color: #bfbdbd;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
  }

.localproducts #sdl7 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.localproducts #sdl7 .inner7 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .localproducts #sdl7 { background-image: url("../images/Headers/NCSpotlight_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}






  /*---------------------------------------
     RECIPES PAGE              
  -----------------------------------------*/

/*  Recipe Tiles */


.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}

.u-clearfix:after {
  clear: both;
}

.u-clearfix {
  *zoom: 1;
}

.card-container {
  margin: 25px auto 0;
  position: relative;
  width: 692px;
}

.card {
  background-color: #FEFFE4;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 5px rgba(75, 75, 75, .19);
  z-index: 1;
}

.card-body {
  display: inline-block;
  float: left;
  width: 325px;
  text-align: left;
}

.card-body-description {
  display: inline-block;
  float: left;
  width: 100%;
  text-align: left;
}

.card-number {
  margin-top: 15px;
}

.card-circle {
  border: 1px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  line-height: 22px;
  font-size: 12px;
  height: 25px;
  text-align: center;
  width: 25px;
}

.card-author {
  display: block;
  font-size: 12px;
  letter-spacing: .5px;
  margin: 15px 0 0;
  text-transform: uppercase;
}

.card-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 35px;
  font-weight: 300;
  line-height: 60px;
  margin: 10px 0;
}

.card-description {
  font-weight: 300;
  line-height: 22px;
  margin: 10px 0;
  width: 100%;    
}

.card-read {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  margin: 5px 0 20px;
  position: relative;
  text-align: right;
  text-transform: uppercase;
}

.card-read:after {
  background-color: #b8bddd;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 9px;
  width: 75%;
}

.card-tag {
  float: right;
  margin: 5px 0 0;
}

.card-media {
  float: right;
}

.card-shadow {
  background-color: #fff;
  box-shadow: 0 2px 25px 2px rgba(0, 0, 0, 1), 0 2px 50px 2px rgba(0, 0, 0, 1), 0 0 100px 3px rgba(0, 0, 0, .25);
  height: 1px;
  margin: -1px auto 0;
  width: 80%;
  z-index: -1;
}





/*  Page Header   */


.recipes #sdl6 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.recipes #sdl6 .inner6 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.recipes #sdl6 { background-image: url("../images/Headers/Recipes_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .recipes #sdl6 { background-image: url("../images/Headers/Recipes_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .recipes #sdl6 { background-image: url("../images/Headers/Recipes_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .recipes #sdl6 { background-image: url("../images/Headers/Recipes_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .recipes #sdl6 { background-image: url("../images/Headers/Recipes_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .recipes #sdl6 { background-image: url("../images/Headers/Recipes_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}



  /*---------------------------------------
     EVENTS PAGE              
  -----------------------------------------*/



.events #sdl9 {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.events #sdl9 .inner9 {
    padding-top: 63.35%; /* height/width of image */
    display: block;
    height: 0;
}

.events #sdl9 { background-image: url("../images/Headers/Events_970.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px;}

@media only screen and (max-width: 320px) {
    .events #sdl9 { background-image: url("../images/Headers/Events_290.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (max-width: 320px) {
    .events #sdl9 { background-image: url("../images/Headers/Events_290@2x.jpg"); padding-top: 140px; }
}
@media only screen and (min-width: 321px) and (max-width: 538px) {
    .events #sdl9 { background-image: url("../images/Headers/Events_538.jpg"); padding-top: 140px; }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 321px) and (max-width: 538px) {
    .events #sdl9 { background-image: url("../images/Headers/Events_538@2x.jpg"); padding-top: 140px;  }
}
@media
only screen and (min-resolution: 2dppx) and (min-width: 539px) {
    .events #sdl9 { background-image: url("../images/Headers/Events_970@2x.jpg"); margin-bottom: 0%; margin-top: -8%; max-height: 600px; }
}


.event-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.event-card {
  width: 350px;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  margin: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.event-image {
  height: 250px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.event-info {
  padding: 20px;
  text-align: center;
  background-color: #FFF;
  background-image: url("../images/Events/checkered-pattern.png");
}


.event-info h3 {
  margin-top: 0;
}

.event-info h7 {
  font-size: 18px;
}

.event-info p {
  margin: 10px 0;
  text-align: left;
}

.event-info a {
  display: block;
  margin-top: 20px;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.event-card:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.event-card:hover .event-image img {
  transform: scale(1.2);
}

.event-info a:hover {
  background-color: #fff;
  color: #4CAF50;
}

.photo-section {
  line-height: 1;
  -webkit-column-count: 4;
  -webkit-column-gap: 3px;
  -moz-column-count: 4;
  -moz-column-gap: 3px;
  column-count: 6;
  column-gap: 3px;
}

.photo-section img {
  width: 100% !important;
  height: auto !important;
  padding: 2px;
}

@media (max-width: 1200px) {
  .photo-section {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (max-width: 1000px) {
  .photo-section {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .photo-section {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 400px) {
  .photo-section {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}













  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 1170px) {
    .custom-navbar .navbar-nav.navbar-nav-first {
      margin-left: inherit;
    }
	  
.announcementblocksmaller {
		max-width:100%;
		text-align:center;
		display:block;
		margin: 0px auto;
		background:url("../images/AnnouncementBCK.png") 0% 0;
		background-repeat:repeat;
		padding:100px;
		font-size: 18px;
		color: #000000;
		animation: blinker 1.5s linear;
		height: 250px;
}  
}


  @media only screen and (max-width: 1200px) {
    .about-info {
      padding-right: 0;
    }

    .about-image {
      position: relative;
    }
	  
	.custom-navbar .nav li a {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }
  
	  
	  
	  
	  
	  
	  
	  
	  
  }


  @media only screen and (max-width: 992px) {
    section {
      padding: 60px 0;
    }

    .custom-navbar .section-btn {
      margin-left: 1em;
    }

    .slider .item {
      background-position: center;
    }

    .about-info {
      padding: 0;
    }

    .local-info {
      margin-bottom: 50px;
    }

    #tiles .tiles-thumb {
      width: 103%;
    }

    #testimonial {
      background-position: 50% 0 !important;
    }

    #google-map,
    .footer-info {
      margin-bottom: 50px;
    }
	  
    #facebook,
    .footer-info {
      margin-bottom: 50px;
    }
	  
.announcementblocksmaller {
		max-width:100%;
		text-align:center;
		display:block;
		margin: 0px auto;
		background:url("../images/AnnouncementBCK.png") 0% 0;
		background-repeat:repeat;
		padding:100px;
		font-size: 18px;
		color: #000000;
		animation: blinker 1.5s linear;
		height: 250px;
}  
	  

  }


  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .custom-navbar .nav li a {
      padding-right: 10px;
      padding-left: 10px;
	  font-size: 12px;	
    }
	  
	.custom-navbar .navbar-nav.navbar-nav-first {
	/*	margin-left: 22%; REMOVED WITH ADDITION OF APPCARD */
		float: right;
		margin-top: -40px;
		margin-right: -4%;
    }
  
	  
  
  }

  @media only screen and (max-width: 767px) {
    h1 {
      font-size: 2.5em;
    }

    h1,h2,h3 {
      line-height: normal;
    }

    .custom-navbar {
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      text-align: center;
	  background-color: #d5c295;
	  background-image: url("../images/clean-textile.png");
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 10px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #252525;
      font-weight: 600;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .custom-navbar .navbar-nav.navbar-right li {
      display: inline-block;
    }

    .custom-navbar .navbar-nav.navbar-right .section-btn {
      display: block !important;
      width: 50%;
      margin: 10px auto 10px auto;
      padding: 10px;
    }

    .custom-navbar .section-btn a {
      color: #ffffff !important;
    }

    .slider .caption {
      padding: 0;
    }

    .tiles-thumb .tiles-info {
      top: 80%;
    }

    footer {
      padding: 60px 0;
      padding-bottom: 60px;
    }

    .footer-open-hour {
      right: 0;
      bottom: 0;
      margin-top: 30px;
    }
  }


  @media only screen and (max-width: 580px) {
    h1 {
      font-size: 2.1em;
    }

    h2 {
      font-size: 1.8em;
    }

    .tiles-thumb .tiles-info {
      top: 60%;
    }
	  
	  #facebook {
		  display: none;
	  }  
      
    .card-container {
      margin: 25px auto 0;
      position: relative;
      width: 100%;
    }

    .card-media {
      float: left;
      width: 90%;  
      padding-bottom: 12px;
    }

    .card-author {
      display: block;
      font-size: 12px;
      letter-spacing: .5px;
      margin: 15px 0 0;
      text-transform: uppercase;
      max-width: 75%;    
    }
      
      

  }

