/*Menu CSS and HTML https://blog.logrocket.com/create-responsive-mobile-menu-with-css-no-javascript/ */


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap"); /* import font */
body {
	font-family: 'Quicksand','Roboto', sans-serif;
	margin: 0;
	padding: 0;
}
/*
header {
	background-color: #216C2A;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

header h1 {
	font-size: 3rem;
	margin: 0;
}
*/
/* Theming */


:root{
    --white: #f9f9f9;
    --black: #993399; /*PRIMARY SITE COLOR*/
    --gray: #ecd9ec; /* SECONDARY complimentary site color*/
	--blue: #A2D4F2;
	--lilac: #B9C2FD;
	--green: #c2e3ab;
	--yellow: #fdd482;
	--red: #fc9c9e;
	--yellowishgreen: #ececd9;
	--aquablue: #d9ecec;
	--lightgray: #d9d9d9;
	--verylightgray: #f5f5f5;
	--purple: #e5e1f9;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white); /*WAS --white*/
    font-family: "Quicksand", sans-serif; /*WAS Poppins*/
	font-size: 1.3em;
}
body h1{
	font-family: "comic-serif-pro", sans-serif; /*WAS comic-serif-pro*/
	font-weight: 400;
	font-style: normal;
}
body h2{
	font-family: "Quicksand", sans-serif; /*WAS comic-serif-pro*/
	font-weight: 400;
	font-style: normal;
	/*margin-bottom: 20px;*/
	color: var(--black);
}
.section_container h2{
	margin-bottom: 20px;
}
body h3{
	margin-bottom: 15px;
	color: var(--black);
}
body h4{
	margin-bottom: 15px;
	margin-top: 15px;
	color: var(--black);
}

a{
    text-decoration: none;
	color: var(--black);
}
ul{
    list-style: none;
}
ul li{
	line-height: 1.4em;
	margin-bottom: 20px;
}
ul lh{
	font-weight: 600;
}
.div_product_box li{
	display: block;
	padding: 25px;
}
main p {
	line-height: 1.7em;
	font-size: 1.1em;
	margin-bottom: 25px;
	margin-top: 25px;
}
/* Header */
.header{
    background-color: var(--gray);
    box-shadow: 0px 0px 0px 0px var(--gray); /*WAS 1px 1px 5px 0px var(--gray)*/
    position: sticky;
    top: 10px;
    width: 100%;
	margin-bottom: 10px;
}


/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: 10px;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--gray);
    overflow: hidden;
	background-blend-mode: multiply;

}
.menu{
	font-family: "Quicksand", sans-serif;
	/*font-weight: 400;
	font-style: normal;*/
}
.menu a{
    display: block;
    padding: 30px;
    color: var(--black);
	z-index: 10;
}
.menu a:hover{
	color: var(--white);/*background-color: var(--gray)*/
}
.menu li:hover{
	display: block;
	background-color: var(--black);
	border-bottom: solid;
	border-bottom-width: 2px;
	/* border-bottom-color: var(--yellow); */ /* This will coded directly into the individual li tags to allow different color for each link */
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */


/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
@media (max-width: 768px) {
	.side-menu:checked ~ nav{
		clear: right;
    /*top:175px;  Tells nv (navigation menu) to display 175px lower, this allows the X close checkbox and logo to display in Opera browser*/
}
} 
.side-menu:checked ~ .hamb .hamb-line {
   background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/* Responsiveness */
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: right;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--white);

    }

    .hamb{
        display: none;
    }
}





/* Sub nav */
.subnavbtn{
	display: block;
    padding: 30px;
    color: var(--black);
}
.subnav:hover{
	color: var(--white);
}
.subnav:hover .subnavbtn{
	color: var(--yellow);
	text-align: right;
}
.subnav-content {
    background-color:  var(--white);
    width: 100%;
    z-index: 1;
    padding: 20px 0px 20px 50px;
    display: none;
  }
.subnav-content a {
    color: var(--white);
    text-decoration: none;
    padding: 0;
    margin: 10px 0;
    text-align: right;
}
.subnav:hover .subnav-content {
    display: block;
}
.subnav-content a:hover{
	color: var(--yellow);
}
@media (min-width: 768px) {

    /* Sub nav */
    .subnav-content {
        padding: 0px 40px 20px 40px;/*WAS 20px 40px*/
        display: none;
        background-color:  var(--black);
    }
    .subnav-content a {
        color: var(--white);
    }
}



@media (min-width: 575.98px) {
#mobile_hero{
	display: none;
}
}
@media (max-width: 575.98px) {
#desktop_hero{
	display: none;
}
}


header.home-hero {
	z-index: -50;
	position: absolute;
	top: 0px;
   }

header.home-hero video {
	width: 100%;
   }
header.home-hero img {
	width: 100%;
   }








#div_hero_adcopy{
	display: block;
	max-width: 550px;
	padding: 70px; /*WAS 60px*/
	margin: 100px auto;
	text-align: center;
	background-color: rgba(194,227,171,0.7); /* WAS 232,240,233,0.7. | 236,217,236 | 236,236,217 | NOW #A2D4F2 */
	z-index: -45;
}
#div_hero_adcopy h1{
	color: var(--black);
}
#div_hero_adcopy h2{
	
}





/* CSS Button*/
.button-28 {
  appearance: none;
  background-color: var(--black);/*WAS transparent | ecd9ec*/
  border: 2px solid var(--gray); /*WAS 2px solid var(--black)*/
  border-radius: 15px;
  box-sizing: border-box;
  color: var(--white); /*WAS 3b3b3b*/
  cursor: pointer;
  display: inline-block;
  font-family: Quicksand, Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 25px;
  font-weight: 510;
  line-height: normal;
  margin: 20px 0px;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: var(--black);
  background-color: var(--purple);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: 2px solid var(--black);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}


/*Space*/
.section_spacer{
	margin-top: 130px;
	clear: both;
}

/*Deals*/
@media (min-width: 1279.98px) {/*WAS 575.98px*/
.div_deal_box{
	max-width: 250px;
	text-align: justify;
	margin: 30px 30px 0px 0px;
	float: left;
	}
}
@media (max-width: 575.98px) {/*WAS 575.98px*/
.div_deal_box{
	max-width: 100%;
	text-align: justify;
	margin: 30px 0px 0px 0px;
	/*float: left;*/ /*We only want deal boxes to float left and sit side by side on large screens*/
	}
.div_deal_box img{
	width: 100%;
	height: auto;
}
}
@media (min-width: 575.99px) and (max-width: 1279.97px) {/*WAS 575.98px*/
.div_deal_box{
	max-width: 40%;
	text-align: justify;
	margin: 30px 0px 0px 30px;
	float: left;
	}
.div_deal_box img{
	width: 100%;
	height: auto;
}
}

.featureimg img{
	margin: 15px 0;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}
.div_deal_box img{
	margin: 15px 0;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}
.featured_shops img{
	margin: 15px 0;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}

.div_video {
	margin: 20px 0px 60px 0px;
	/*border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;*/
}
.div_featured_store_left img{
	margin: 0px 0px;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}
.div_featured_store_right img{
	margin: 0px 0px;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}
.div_product_box img{
	margin: 25px 0;
	border-top: thin;
	border-top-style: solid;
	border-top-width: 3px;
	border-bottom-style: solid;
	border-bottom-width: 15px;
}
.div_product_box h4{
	margin-top: 20px; 
	margin-bottom: 7px;
}
.featured_shops h4{
	margin-top: 20px; 
	margin-bottom: 7px;
}
.new_price{
	font-size: 30px;
	color: var(--black);
}
@media (min-width: 1279.98px) {/*WAS 575.98px*/
.todays_deals{
	width: 1150px;
	margin: 0px auto;
}
}
@media (max-width: 1279.99px) { /*WAS 575.98px*/
.todays_deals{
	width: 100%; /*WAS 260px*/
	margin: 0px auto;
}
}
.div_deal_box h4{
	color: var(--black);
	font-size: 21px;
	font-weight: 300;
}
@media (min-width: 1279.98px) {
	.section_container{
	width: 100%;
	padding: 50px 50px;
	background-color: rgba(255,255,255,0.93);
}
}
@media (max-width: 1279.97px) {
	.section_container{
	width: 100%;
	padding: 50px 7px;
	background-color: rgba(255,255,255,0.93);
}
}
.clear{
	clear: both;
}

/*Featured stores*/



@media (min-width: 1279.98px) {/*WAS 575.98px*/
.div_featured_store_left{
	width: 545px;
	text-align: justify;
	margin: 30px 30px 0px 0px;
	float: left;
}
.div_featured_store_right{
	width: 545px;
	text-align: justify;
	margin: 30px 0px 0px 0px;
	float: left;
}
}


@media (max-width: 1279.99px) {
.div_featured_store_left{
	width: 100%;
	text-align: justify;
	margin: 0px;
	/*float: left;*/
}
.div_featured_store_left img{
	width: 100%;
	height:auto;
	}
.div_featured_store_right{
	width: 100%;
	text-align: justify;
	margin: 30px 0px 0px 0px;
	/*float: left;*/
}
.div_featured_store_right img{
	width: 100%;
	height:auto;
	}
}



@media (min-width: 1279.98px) {/*WAS 575.98px*/
.featured_shops{
	width: 1150px;
	margin: 0px auto;
}
}
@media (max-width: 1279.99px) {/*WAS 575.98px*/
.featured_shops{
	width: 100%;
	margin: 0px auto;
	}
}


/*Featured services*/
@media (min-width: 1279.98px) {/*WAS 575.98px*/
.div_product_box{
	max-width: 350px;
	text-align: justify;
	margin: 30px 30px 0px 0px;
	float: left;
}
.div_product_box img{
	margin: 0 auto;
	width: 350px;
}
}


@media (min-width: 575.99px) and (max-width: 1279.97px) {/*WAS 575.98px*/
.div_product_box{
	max-width: 40%;
	text-align: justify;
	margin: 30px 0px 0px 30px;
	float: left;
	}
.div_product_box img{
	width: 100%;
	height: auto;
}
}


@media (max-width: 575.98px) {/*WAS 575.98px*/
.div_product_box{
	width: 100%;
	text-align: justify;
	margin: 30px auto;
}
.div_product_box img{
	margin: 0px;
	width: 100%;
}
}

.div_product_box h4{
	color: var(--black);
	font-size: 21px;
	font-weight: 300;
}



@media (min-width: 1279.98px) {
.todays_featured_products{
	width: 1150px;
	margin: 0px auto;
}
	
}

@media (min-width: 575.99px) and (max-width: 1279.97px) {
.todays_featured_products{
	width: 100%;
	margin: 0px auto;
	}
}

@media (max-width: 575.99px) {
.todays_featured_products{
	width: 350px;  
	margin:0 auto;
}
.todays_featured_products img{
	width: 100%;
	margin: 0px;
}
}


/*General SECTION styles*/
@media (min-width: 575.98px) {
.section_general{
	width: 1150px;
	margin: 0px auto;
}
}
@media (max-width: 575.99px) {
.section_general{
	width: 100%;
	margin: 0px auto;
}
}

/*PROGRESS bar*/
.progressbarcontainer{
	margin-bottom: 25px;
	width: 100%;
	background-color: var(--verylightgray);
	border-radius: 5px;
}
.progressbar{
	padding: 7px 25px;  
	min-height: 2em;
	border-radius: 5px;
}









/* START TIMELINE*/

* {
  box-sizing: border-box;
}

/* Set a background color */
/*
body {
  background-color: #474e5d;
  font-family: Helvetica, sans-serif;
}
*/

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--purple);/*WAS white*/
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: var(--blue);/*WAS white*/
  border: 4px solid var(--purple);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.yellowbubble .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--yellow);/*WAS white*/
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--yellow);/*WAS white*/
}
.bluebubble .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--blue);/*WAS white*/
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--blue);/*WAS white*/
}
.lightgraybubble .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--lightgray);/*WAS white*/
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--lightgray);/*WAS white*/
}


/* Add arrows to the right container (pointing left) */
.aquabluebubble .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--aquablue);/*WAS white*/
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--aquablue) transparent transparent;
}

.greenbubble .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--green);/*WAS white*/
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--green) transparent transparent;
}

.purplebubble .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--purple);/*WAS white*/
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--purple) transparent transparent;
}




/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: var(--yellow);/*WAS white*/
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid var(--purple);/*WAS white*/
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--purple) transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

/* END TIMELINE*/















/*BEGIN IMAGE GALLERY*/


* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.gallery_container {
  position: relative;
}

/* Hide the images by default */

.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


/*END IMAGE GALLERY*/

/*Stripe CSS*/
.Text-fontSize--14 {
    font-size: 18px !important;
    text-align: justify !important;
}


/*LISTS*/

ol li{
	margin-bottom: 25px;
}
li strong{
	color: #939;
}
main {
	padding: 0px 20px;
}
