/******/
/*** GLOBAL ***/
/******/

a {
	text-decoration: none;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

a:visited {
	text-decoration:none;
}

html {
	scroll-padding-top: 6.438rem;
}

.main section:nth-of-type(2) {
  	padding-top: 7.568rem;
	padding-bottom: 4rem;
}

.button-container {
	padding: 2.25rem 0 .875rem 0;
}

a.button {
	font-weight: 600;
	border-radius: .25rem;
	padding: .75rem 1.125rem .75rem 1.125rem;
	text-decoration: none;
}

a.button:hover, nav a:hover {
	opacity: .6;
}

nav a {
	text-decoration: none;
}

#top:after {
    position: absolute;
    content: "";
    bottom: -40px;
    height: 40px;
    width: 1px;
}

footer ul {
	padding-inline-start: 0!important;
}

nav ul li, footer ul li {
	padding-right: .75rem;
	margin-block-start: .0625rem;
}

nav .grid-parent, section .grid-container-full .grid-parent {
	padding-left: 0;
	padding-right: 0;
}

.menu li {
	float: left;
}

#top {
	width: 100%;
	position: fixed;
}

.logo img {
	width: 12rem;
	height: auto;
}

#scroll-to-top {
	position: fixed;
	display: none;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 10;
}

#scroll-to-top.show {
	display: hidden;
}

#scroll-to-top.show a {
	padding: .6rem 1rem .375rem 1rem;
	color: var(--brown-light);
	text-transform: uppercase;
	border-radius: .25rem;
}

.global-nav {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

/* SECTIONS */

.Ink {
	border: solid .0625rem var(--white);
}

.color-square {
	border-radius: .25rem;
	margin-bottom: .75rem;
}

.RETRO {
	border: solid;
}

#column-padding .grid-33 div:nth-child(-n+3) {
    padding-bottom: 1rem;
}

.columns ul {
	padding-left: 1em;
}

.columns ul li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: var(--pink); /* Change the color */
  	font-weight: bold; /* If you want it to be bold */
  	display: inline-block; /* Needed to add space between the bullet and the text */
  	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em;
	float: left;
}

.columns li {
	padding-bottom: .75rem;
}

.intro-box {
	position: absolute;
	bottom: 1.25rem;
}

.intro-box img {
	max-width: 15rem;
}

.menu-container {
	width: 100%;
}

.main-nav li {
	padding: 0 .75rem;
	text-align: center;
}

.images .padding-10 img {
	max-width: 65%;
}

.images .grid-container .grid-parent .grid-100 {
	padding-left: 0;
	padding-right: 0;
}

.image-single {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

#logo .grid-container.display-flex {
	padding-bottom: 10%;
}

.text-image-image, .text-image-text {
	padding-left: 0;
	padding-right: 0;
}

li.color-square {
	height: 11rem;
	padding: .5rem 0 0 1.5rem;
}

li.color-square-small {
	height: 8rem;
}

.color-square.chocolate {
	border: solid .125rem var(--brown-medium);
}

.Comfort {
	border: solid .0625rem var(--blue);
}

.voice img {
	max-width: 1.5rem;
}

.type p {
	font-size: 3em;
	margin-block-start: .5em;
	margin-block-end: .5em;
}

.type-text h2, .type-text h5{
	text-transform: none;
}

.type-text p {
	line-height: none;
	margin-block-start: 0em;
	margin-block-end: 0em;
}

.Regular .padding-bottom {
	padding-bottom: 0;
}

.Regular .type-link {
	padding-top: 0;
	margin-top: 2rem;
}

.type {
	word-wrap: break-word;
}

@media screen and (min-width: 48rem) {
	
	.hide-above-mobile {
		display: none !important;
	}
	
}

.image-text-repeater ul {
	list-style-type: disc;
}

.image-text-repeater li {
	margin-bottom: .5rem;
	margin-left: 1rem;
}

/* MOBILE NAV */

/* Hamburger Button */
	.mobile-menu-btn {
		color: var(--cream);
		font-size: 1.5rem;
		border: none;
		background-color: transparent;
		padding: .625rem 1rem;
		cursor: pointer;
		border-radius: .25rem;
		z-index: 1001;
	}

	/* Sidebar Menu */
	.mobile-sidebar {
		position: fixed;
		display:none;
		top: 0;
		left: -250px;
		background-color: var(--brown);
   	 	width: 100%;
		height: 100%;
		overflow-y: auto;
		padding-top: 60px;
		transition: left 0.3s ease-in-out;
		z-index: 1000;
	}

	.mobile-sidebar.active {
		left: 0;
		display:block;
	}

	/* Close Button */
	.mobile-close-btn {
		font-size: 30px;
		background: none;
		color: var(--cream);
		border: none;
		cursor: pointer;
		margin-top: 22px;
    	margin-left: 10px;
	}

	/* Mobile Navigation Links */
	.mobile-nav {
		width: 100%;
		height: 100%;
		text-align:center;
	}

	.mobile-navigation {
		list-style: none;
		padding: 0;
	}

	.mobile-navigation li {
		padding: 10px 0;
	}

	.mobile-navigation li a {
		color: white;
		text-decoration: none;
		font-size: 18px;
		display: block;
		padding: 10px;
	}

@media screen and (max-width: 767px) {
	
	.text-image-image {
		padding-bottom: 30px;
	}
	
	.padding-top-bottom-2x {
    	padding-top: 2rem;
    	padding-bottom: 2rem;
	}
	
	.type p {
		font-size: 1rem;
	}
	
	.type-fix h1 {
		font-size: 2rem;
	}
	
	.logo img {
		width: 80px;
		height: 80px;
	}
	
	.hide-on-mobile {
		display: none !important;
	}
	
	.image-single {
    	padding-top: 1rem;
    	padding-bottom: 1rem;
	}
	
	.padding-global {
    	padding-top: 10px;
    	padding-bottom: 10px;
	}
	
	li.color-square {
		height: 11rem;
		padding: .5rem 0 0 .5rem;
	}

}
