html, body { font-family: "Gotham Narrow", sans-serif; background-color: #efeff0; font-size: 19px; line-height: 1.4; }

h1, h1 a, .h1, h2, h2 a, .h2, h3, h3 a, .h3, h4, h4 a, .h4 { font-family: "Cormorant Upright", serif; margin-top: 0; }
h1 span, h2 span, h3 span {  }
h1, .h1, h1 a 	{ font-size: 49px; line-height: 1.15; }
h2, .h2, h2 a 	{ font-size: 39px; line-height: 1.2; }
h3, .h3, h3 a 	{ font-size: 31px; line-height: 1.2; }
h4, .h4, h4 a 	{ font-size: 29px; line-height: 1.2; }

a { /*color: #dacc99;*/ }
a { color: #888888; }
a, a:active, a:focus{
	outline: none !important;
}
/* font*/



.bg-dk-grey { background-color: #414141; }
.bg-white { background-color: #FFF; }

.lg-txt { font-size: 26px; }


.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
	color: #262626;
	background-color: #dacc99;
	border-color: #dacc99;
	background-image: none;
	outline: none;
}

#page-top { position: absolute; bottom: 100%; right: 15px; background: #dacc99; width: 40px; height: 40px; color: #262626; text-align: center; }
#page-top .fa { font-size: 16px; line-height: 40px; }

#main {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	max-width: 100dvw;
	overflow: clip;
}

header.site_header {
	background: #393938;
	padding-top: 56px;
	/* overflow: clip; */
    /* background: repeating-linear-gradient(
      to right,
      #FFF,
      #FFF 10px,
      #f8f8f8 10px,
      #f8f8f8 20px
    ); */
}


#logo {
	text-align: center;
	/* height: 150px; */
    overflow: hidden;
}
#logo a:hover, #logo a:focus, #logo a:active {
    outline: none;
}
#logo img {
	height: 138px;
}

.navbar {
	background-color: #262626;
    /* border-top: solid 12px #888888; */
    font-family: 'Gotham XNarrow', sans-serif;
	margin-bottom: 0;
	/* min-height: calc(62px + 12px); */
	border-radius: 0;
	margin-top: 49px;
}
.navbar .navbar-nav {
	width: 100%;
	text-align: center;
}
.navbar .navbar-nav > li {
	float: none;
	display: inline-block;
	font-size: 21px;
	font-weight: 400;
	position: static;
}
.navbar .navbar-nav > li > a {
	text-shadow: none;
	color: #a2a2a2;
	text-transform: uppercase;
	padding: 20px 30px;
}
.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar .navbar-nav > li > a:active, .navbar .navbar-nav > li.active > a {
	background: none;
	color: #dacc99;
	outline: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
	display: flex;
}
.navbar .dropdown-menu {
	width: 100dvw;
	background-color: #efeff0;
	padding: 30px;
	flex-wrap: wrap;
	gap: 70px;
	justify-content: center;
	border-radius: 0;
}
.navbar .dropdown-menu::before,
.navbar .dropdown-menu::after {
	display: none;
}
.navbar .dropdown-menu > li {
	flex: 1 0 168px;
	max-width: 168px;
}
.navbar .dropdown-menu > li a {
	padding: 0;
	color: #262626;
	text-align: center;
	font-family: "Cormorant Upright", serif;
	font-size: 18px;
}
.navbar .dropdown-menu > li a:hover {
	color: #262626;
}
.navbar .dropdown-menu > li .image {
	width: 168px;
	aspect-ratio: 1/1;
	overflow: hidden;
	margin-bottom: 5px;
}
.navbar .dropdown-menu > li .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	background: none;
}



footer.site_footer {
	background: #262626;
	border-top: solid 12px #888888;
	color: #FFF;
	position: relative;
	margin-top: auto;
}

.footer-top {
	padding-top: 60px;
}

.footer-bot {
	padding-top: 50px;
	padding-bottom: 40px;
}

.footer-bot .btn {
	border: solid 3px #888;
	color: #262626;
	background-color: #dacc99;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
	justify-content: flex-end;
    gap: 20px;
}
.social-links a {
    color: inherit;
}
.social-links a .fa {
    font-size: 31px;
}




.home-intro {
	padding: 50px 0;
	font-size: 21px;
	line-height: 1.4;
}
.home-intro h1 {
	max-width: 700px;
	margin: 0 auto 30px;
}

.home-features {
	padding: 15px 0 50px;
}
.home-features .item {
	position: relative;
	margin-bottom: 15px;
	width: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
}
.home-features .item .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(65,65,65,0.7);
	color: #FFF;
	text-align: center;
	font-size: 42px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 100%;
	transition: opacity 0.5s ease;
	opacity: 0;
	pointer-events: none;
}
.home-features .item .overlay span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}
.home-features .item:hover .overlay {
	opacity: 1;
}


.home-callout {
	padding-top: 50px;
	padding-bottom: 40px;
	position: relative;
}
.home-callout .photo {
	padding-left: 6%;
}
.home-callout .text {
	position: relative;
	padding: 0;
}
.home-callout .text .text-inner {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	left: 0;
	text-align: center;
	font-size: 52px;
	line-height: 1.2;
	color: #666;
	font-style: italic;
}
.home-callout .text .text-inner cite {
	font-size: 20px;
	font-style: normal;
	display: block;
	text-align: right;
	padding-right: 20%;
	text-transform: uppercase;
	letter-spacing: 2px;
}


.gallery {

}
.gallery .item {
	margin-bottom: 20px;
}
.gallery .item .image {
	aspect-ratio: 1/1;
	margin-bottom: 10px;
}
.gallery .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery .item h3,
.gallery .item p {
	color: #333;
}
.gallery .item > a {
	cursor: pointer;
    text-decoration: none !important;
}
.gallery .item > a,
.gallery .item > a > img { display: block; width: 100%; }

.rings-gallery.gallery .item .image {
	max-width: 352px;
	margin-left: auto;
	margin-right: auto;
}

/* designers */

#designers {}
#designers h2 {
	margin-top: 0;
	font-size: 29px;
	text-align: center;
	text-transform: uppercase;
}
#designers p {
	margin: 0 0 1.5em;
	text-align: center;
}
.feature-designer-product {
	margin: 0 0 .75em;
	/*border: 1px solid #a3ced6;*/
}
.feature-designer-list {
	padding: 0;
/*	margin: 0 0 1.5em;*/
	margin: 0 0;
	text-align: center;
}
.feature-designer-list > li {
	list-style: none;
}
.feature-designer-list > li > a {
	color: #414141;
}
.feature-designer-list > li > a:hover,
.feature-designer-list > li > a.active {
	color: #a89b56;
	font-weight: bold;
	text-decoration: none;
}
#designers .row:last-of-type {
	padding-top: 2em;
}

/* artisan gifts */

#artisan-gifts {}
#artisan-gifts h2 {
	margin-top: 0;
	font-size: 29px;
	text-align: center;
	text-transform: uppercase;
}
#artisan-gifts p {
	margin: 0 0 1.5em;
	text-align: center;
}
.artisan-gifts-product {
	margin: 0 0 .75em;
	border: none;
}
.artisan-gifts-list {
	padding: 0;
	margin: 0 0 1.5em;
	text-align: center;
}
.artisan-gifts-list > li {
	list-style: none;
}
.artisan-gifts-list > li > a {
	color: #414141;
}
.artisan-gifts-list > li > a:hover,
.artisan-gifts-list > li > a.active {
	color: #a89b56;
	font-weight: bold;
	text-decoration: none;
}
#artisan-gifts .row:last-of-type  {
	padding-top: 2em;
	padding-bottom: 2em;
}

/* contact */

#contact {}
#contact .row {
	padding-top: .5em;
	padding-bottom: 2em;
}
#contact .row:first-of-type {
	padding-top: 2em;
	padding-bottom: .5em;
}
#contact p {
	margin: 0 0 .5em;
}
#news-details .img-feat-lg {
	float: right;
	margin: 0 0 15px 15px;
}
 /* fbfeed */

.fb-post {
	padding: .5em 0;
}
.fb-post p {
	margin: 0;
}
.fb-post > span {
	margin: 0 .5em;
}
.cff-text a {
	color: #fff !important;
}
.fb-post p.cff-share-tooltip {
	position: relative;
	background: none;
}
.cff-share-tooltip i.fa-play {
	display: none;
	visibility: hidden;
}

/* subscribe form */

#subscribe-form,
#subscribe-form label,
#subscribe-form input {
	color: #666;
}


/* news and events */

#news-events {}
#news-events h2,
#news-events h2 > a {
	font-size: 62px;
	color: #666 !important;
}
#news-events h3,
#news-events h3 a {
	font-style: normal !important;
}
#news-events .details-link,
.news-events-back {
	color: #333;
	font-style: italic;
}

a:hover { color: #dacc99; }
a:focus, a:selected { color: #dacc99 !important; }

a:hover, a:focus {
	color: #dacc99;
	text-decoration: underline;
}

.instagram-feed .item a {
	transition: all 0.5s ease;
}

.instagram-feed .item a:hover {
	opacity: 0.8;
}


.top-alert {
  background-color: #dbbc6e;
  color: #404141;
  font-style: italic;
  font-weight: 400;
  padding: 5px 0 7px 0;
  line-height: 1.3;
  font-size: 19px;
}
.top-alert a {
  color: inherit;
}
.top-alert a:hover {
  text-decoration: none;
  color: #FFF;
}
@media (max-width: 767px) {
  .top-alert a { display: block; }
}
