.product {background: #ffffff}

/* how to - silverclay CSS */

.cgsc {
	font-size: 16px;
	line-height: 1.4;
	font-weight: normal;
	color: #707070;
	padding: 30px 0;
}

.cgsc * {
	box-sizing: border-box;
}

.cgsc img {
	max-width: 100%;
}

.cgsc-container-md {
	width: 100%;
	max-width: 1164px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cgsc-container-md > * {
	position: relative;
	z-index: 1;
}

.cgsc-container-lg {
	width: 100%;
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cgsc-container-lg > * {
	position: relative;
	z-index: 1;
}

/* typography */

.cgsc h1,
.cgsc h2,
.cgsc h3,
.cgsc h4,
.cgsc h5,
.cgsc h6,
.cgsc .h1,
.cgsc .h2,
.cgsc .h3,
.cgsc .h4,
.cgsc .h5,
.cgsc .h6 {
	color: #0C0908;
	font-weight: normal;
	line-height: 1.2;
	margin: 20px 0;
}

.cgsc h1,
.cgsc .h1 {
	font-size: 35px;
}

.cgsc h2,
.cgsc .h2 {
	font-size: 30px;
}

.cgsc h3,
.cgsc .h3 {
	font-size: 25px;
}

.cgsc h4,
.cgsc h5,
.cgsc h6,
.cgsc .h4,
.cgsc .h5,
.cgsc .h6 {
	font-size: 20px;
}

.cgsc p {
	margin: 0 0 20px;
}

.cgsc p + .cg-btn {
	margin-top: 10px;
}

.cgsc ul,
.cgsc ol {
	padding: 0 0 0 20px;
	margin: 0 0 15px;
	list-style: disc;
}

.cgsc li {
	margin: 0 0 10px;
}

.cgsc li a {
	color: inherit;
}

.cgsc .cg-btn {
	display: inline-block;
	height: 38px;
	line-height: 36px;
	min-width: 145px;
	font-size: 16px;
	text-align: center;
	color: #fff;
	border: 1px solid #0C0908;
	background-color: #0C0908;
	padding: 0 20px;
	text-decoration: none;
	border-radius: 0;
	transition: .2s all;
	cursor: pointer;
}

.cgsc .cg-btn i {
	margin-left: 20px;
	position: relative;
	top: 1px;
}

.cgsc .cg-btn i:not(.pre) {
	top: 50%;
    transform: translateY(-50%);
    float: right;
}

.cgsc .cg-btn i.pre {
	margin-right: 10px;
	margin-left: 0;
}

.cgsc .cg-btn:hover,
.cgsc .cg-btn:focus {
	background-color: transparent;
	color: #0C0908;
}

.cgsc .cg-btn.btn--blue {
	background-color: #314C89;
	color: #fff;
	border-color: #314C89;
}

.cgsc .cg-btn.btn--blue:hover,
.cgsc .cg-btn.btn--blue:focus {
	background-color: #fff;
	color: #314C89;
}

.cgsc .cg-btn.btn--green {
	background-color: #13C057;
	color: #fff;
	border-color: #13C057;
}

.cgsc .cg-btn.btn--green:hover,
.cgsc .cg-btn.btn--green:focus {
	background-color: #fff;
	color: #13C057;
}

.cgsc .cg-btn.btn--red {
	background-color: #fff;
	color: #FF0000;
	border-color: #FF0000;
}

.cgsc .cg-btn.btn--red:hover,
.cgsc .cg-btn.btn--red:focus {
	background-color: #FF0000;
	color: #fff;
}

.cgsc .cg-btn.btn--black {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

.cgsc .cg-btn.btn--black:hover,
.cgsc .cg-btn.btn--black:focus {
	background-color: #fff;
	color: #000;
}

.cgsc .cg-btn.sm {
	height: 32px;
    line-height: 30px;
    min-width: 118px;
    padding: 0 8px;
    font-size: 14px;
}

.cgsc .cg-btn.sm i.pre {
	margin-right: 2px;
}

.cgsc .btn-as-link {
	border: none;
	background: none;
	padding: 0;
	font-size: inherit;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.cgsc .btn-as-link:hover,
.cgsc .btn-as-link:focus {
	text-decoration: none;
}

.cgsc ul.ticks {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.cgsc ul.ticks li:before {
	content: '✓';
	margin-right: 10px;
}

/* decorative bg's */

.cgsc #cgsc-wave-1 {
	position: absolute;
	top: 36%;
	left: 50%;
	width: 100vw;
    max-width: 100vw;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.cgsc #cgsc-wave-2 {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1920px;
	max-width: 1920px;
	height: 100%;
	transform: translateX(-50%);
	z-index: 0;
	pointer-events: none;
}

.cgsc #cgsc-wave-3 {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    max-width: 200vw;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.cgsc #cgsc-wave-4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1920px;
    max-width: 200vw;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* components */

.cgsc__hero {
	width: 100%;
	min-height: 226px;
	background-color: #F2EEE8;
	position: relative;
	display: flex;
	margin: 0 0 30px;
}

.cgsc__hero__copy {
	width: 100%;
	max-width: 426px;
	padding: 35px 30px;
	flex-shrink: 0;
}

.cgsc__hero__heading {
	margin: 0 0 20px!important;
}

.cgsc__hero__heading > span {
	position: relative;
	display: inline-block;
	margin: 2px 0;
}

.cgsc__hero__heading > span:before {
	content: '';
	position: absolute;
	width: calc(100% + 10px);
	height: 100%;
	top: 0;
	left: -5px;
	background-image: url('/images/new-to-jewellery-making/highlight-bg.png');
	background-repeat: repeat;
	background-size: auto 100%;
	background-position: left center;
	opacity: 1;
	z-index: -1;
}

.cgsc__hero__img {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 426px);
	height: 100%;
	object-fit: cover;
}

.cgsc__cwv {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*padding: 0 0 150px 0;*/
	padding: 0 0 75px 0;
}

.cgsc__cwv__copy {
	padding: 30px;
	width: 50%;
}

.cgsc__cwv__video-wrapper {
	width: calc(50% - 30px);
	padding: 30px 0;
}

.cgsc__cwv__video-wrapper iframe {
	width: 100%;
	aspect-ratio: 16/9;
	height: auto;
}

.cgsc__cwv__copy > *:nth-child(1) {
	margin-top: 0;
}

.cgsc__cwv__copy > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgsc__subnav {
	width: 100%;
	padding: 60px 0 0;
}

.cgsc__subnav__intro {
	width: 100%;
	max-width: 700px;
	display: block;
	/* margin: 0 auto 45px; */
	margin: 0 auto 25px;
	text-align: center;
}

.cgsc__subnav__intro > *:nth-child(1) {
	margin-top: 0;
}

.cgsc__subnav__intro > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgsc__subnav__items {
	width: calc(100% + 16px);
	margin: 0 -8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.cgsc__subnav__item {
	width: calc(25% - 16px);
	/* margin: 0 8px 30px; */
	display: inline-block;
	text-decoration: none;
	color: #151211;
	font-size: 20px;
	position: relative;
	margin: 5px 5px 30px;
	padding: 6px;
	border: 2px solid transparent;
	border-radius: 10px;
}

.cgsc__subnav__item:hover {
	border-color:#707070;
}

.cgsc__subnav__item.video-popup:before {
	content: '\f144';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	color: #fff;
	z-index: 2;
}

/* .cgsc__subnav__item:not(.video-popup):hover,
.cgsc__subnav__item:not(.video-popup):focus {
	text-decoration: underline;
} */

.cgsc__subnav__item__img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	position: relative;
	z-index: 1;
	display: block;
}

/* .cgsc__subnav__item__heading {
	margin: 10px 0 0!important;
	font-size: 20px!important;
	line-height: 1.4!important;
} */

h3.cgsc__subnav__item__heading {
	margin: 10px 0;
	font-size: 20px;
	line-height: 1.4;
}

.cgsc__cwi {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0;
}

.cgsc__cwi__img-wrapper {
	position: relative;
	width: calc(55% - 30px);
}

.cgsc__cwi__img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	display: block;
}

.cgsc__cwi__img__caption {
	position: absolute;
	top: 30%;
	left: -30px;
	z-index: 3;
	width: 200px;
	font-size: 25px;
	color: #0C0908;
}

.cgsc__cwi__img__bg {
	position: absolute;
	top: 45%;
	left: 25%;
	transform: translate(-50%, -50%) rotate(-22deg);
	z-index: 1;
	width: 880px;
	height: auto;
	aspect-ratio: 4/1;
	max-width: 125vw;
	display: inline-block;
	background-color: #f8f8f9b3;
}

.cgsc__cwi__copy {
	width: calc(45% - 30px);
	position: relative;
	z-index: 2;
}

.cgsc__cwi__copy > *:nth-child(1) {
	margin-top: 0;
}

.cgsc__cwi__copy > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgsc__cwi__copy h2 {
	width: 75%;
}

.cgsc__cwi__copy a {
	color:inherit;
}

.cgsc__product-slider {
	padding: 60px;
	position: relative;
	justify-content: center;
	display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    width: 100%;
}

.cgsc__product-slider:before {
	content: '';
	position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    background-color: #FADCE8;
}

.cgsc__product-slider__heading {
	width: 100%;
	text-align: center;
	margin: 0 0 45px!important;
	position: relative;
	z-index: 2;
}

.cgsc__product-slider .product-slider {
	width: calc(100% - 16px);
	margin: 0 -8px;
	position: relative;
	z-index: 2;
}

.cgsc__product-slider .product-slider:not(.slick-initialized) {
	max-height: 300px;
	overflow: hidden;
}

.cgsc__product-slider .slider-prev {
	left: 15px;
}

.cgsc__product-slider .slider-next {
	right: 15px;
}

.cgsc__product-slider .product-slider .prodslide {
	padding: 0 8px;
	margin: 0 0 30px;
}

.cgsc__product-slider .product-slider .prodslide img {
	width: 100%;
	max-width: 398px;
	margin: 0 auto;
	height: auto;
	border: 1px solid #E0E0E0;
}

.cgsc__product-slider .product-slider .prodslide h3 {
	margin: 15px 0 5px;
	padding: 0;
	color: #000;
	width: 100%;
	text-decoration: none;
	font-size: 18px;
}

.cgsc__product-slider .product-slider .prodslide p {
	font-size: 13px;
	color: #707070;
	margin: 0 0 10px;
}

.cgsc__product-slider .product-slider .prodslide .price {
	font-size: 22px;
	color: #000;
	margin: 0;
}

.cgsc__product-slider .product-slider .prodslide a {
	text-decoration: none;
}

.cgsc__product-slider .product-slider__arrow {
	position: absolute;
	top: 44%;
	font-size: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 38px;
	border: 1px solid #FADCE8;
	transition: .3s all;
	z-index: 10;
	color: #000;
}

.cgsc__product-slider .product-slider__arrow:hover,
.cgsc__product-slider .product-slider__arrow:focus {
	border-color: #000;
}

.cgsc__faqs {
	position: relative;
	width: 100%;
	/*	padding: 315px 0 30px;*/
	padding: 60px 0;
}

/*.cgsc__faqs__bg-text {
	position: absolute;
	z-index: 1;
	top: 120px;
	left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    color: #fff;
    font-size: 140px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
}*/

.cgsc__faqs__heading {
	width: 100%;
	text-align: center;
	margin: 0 0 60px!important;
	position: relative;
	z-index: 2;
}

.cgsc__faqs__main {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.cgsc__faqs__accordion {
	width: calc(50% - 8px);
	margin: 0;
}

.cgsc__faqs__accordion__header {
	position: relative;
	width: 100%;
	margin: 20px 0 0!important;
	background: #EDEDE9;
}

.cgsc__faqs__accordion__header__btn {
	width: 100%;
	border: none;
	box-shadow: none;
	font-size: 25px;
	background: none;
	text-align: left;
	padding: 25px 60px 25px 40px;
	cursor: pointer;
	z-index: 2;
}

.cgsc__faqs__accordion__header__btn + span {
	font-size: 25px;
	position: absolute;
	top: 18px;
	right: 20px;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 40px;
	font-weight: normal;
	z-index: 1;
	transition: .2s all;
	transform-origin: center;
	pointer-events: none;
}

.cgsc__faqs__accordion__header__btn + span:before {
	content: '\f078';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
}

.cgsc__faqs__accordion__header__btn[aria-expanded="true"] + span {
	transform: rotate(180deg);
}

.cgsc__faqs__accordion__panel {
	padding: 0 40px 25px 40px;
	font-size: 16px;
	color: #0C0908;
	background: #EDEDE9;
}

.cgsc__faqs__accordion__panel > *:nth-child(1) {
	margin-top: 0;
}

.cgsc__faqs__accordion__panel > *:nth-last-child(1) {
	margin-bottom: 0;
}

.cgsc__glossary {
	width: 100%;
	max-width: 830px;
	background-color: #fafafb;
	border-radius: 57px;
	display: block;
	margin: 60px auto;
	padding: 0 0 50px;
	position: relative;
}

.cgsc__glossary.collapsed:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(250,250,251,0) 0%, rgba(255,255,255,1) 100%);
	z-index: 1;
}

.cgsc__glossary__heading {
	text-align: center;
	margin: 0 0 30px!important;
	padding: 50px 50px 0;
}

.cgsc__glossary__inner {
	height: auto;
	overflow: hidden;
	position: relative;
	padding: 0 50px;
}

.cgsc__glossary.collapsed .cgsc__glossary__inner {
	height: 600px;
}

.cgsc__glossary__expand {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.cgsc__glossary__expand.hide {
	display: none;
	visibility: hidden;
}

.cgsc__seo-footer {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin: 60px 0;
}

section.cgsc__seo-footer p {
    margin-bottom: 10px;
}

section.cgsc__seo-footer a {
	color: inherit;
}

@media only screen and (max-width: 1300px) {

	.cgsc {
		font-size: 18px;
	}

	.cgsc__cwi__img__caption {
		left: 15px;
	}

	.cgsc__cwi__img-wrapper,
	.cgsc__cwi__copy {
		width: calc(50% - 15px);
	}

}

@media only screen and (max-width: 1100px) {


	.cgsc__faqs__img {
		width: calc(45% - 30px);
		margin-left: 30px;
	}

	.cgsc__cwv {
		/*padding: 0 0 120px 0;*/
		padding: 0 0 60px 0;
	}

	.cgsc__cwv__copy {
		width: 100%;
	}

	.cgsc__cwv__video-wrapper {
		width: 100%;
		max-width: 632px;
		padding: 30px;
	}

	/* .cgsc__subnav__item__heading {
		font-size: 18px!important;
		line-height: 1.3!important;
	} */

	h3.cgsc__subnav__item__heading {
		font-size: 18px;
		line-height: 1.3;
	}

	.cgsc__cwi {
		padding: 30px 0;
	}

	.cgsc__cwi__copy {
		width: 100%;
		padding: 30px;
	}

	.cgsc__cwi__img-wrapper {
		width: 100%;
		max-width: 632px;
		padding: 30px;
		margin: 0 auto;
	}

	.cgsc__cwi__img__bg {
		top: 50%;
		left: 50%;
	}

	.cgsc__cwi__copy h2 {
		width: 100%;
	}

	.cgsc__faqs__heading {
		margin: 0 0 30px!important;
	}
	
}

@media only screen and (max-width: 850px) {

	.cgsc #cgsc-wave-1 {
		top: 18%;
	}

	.cgsc__faqs {
		padding: 60px 0 30px;
	}

	.cgsc__faqs__main {
		flex-wrap: wrap;
	}

	.cgsc__faqs__accordion {
		width: 100%;
	}

	.cgsc__seo-footer {
		margin: 15px 0 45px;
	}

	.cgsc__hero {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	.cgsc__hero__copy {
		width: 100%;
		padding: 30px 15px;
	}

	.cgsc__hero__img {
		position: relative;
		width: 100%;
		height: auto;
		object-fit: initial;
	}

	.cgsc__cwv__copy,
	.cgsc__cwv__video-wrapper,
	.cgsc__cwi__copy {
		padding: 30px 0;
	}

	.cgsc__subnav__item {
		width: calc(50% - 16px);
	}

	.cgsc__product-slider {
		padding: 60px 30px;
	}

	.cgsc__product-slider .slider-prev {
		left: 0;
	}

	.cgsc__product-slider .slider-next {
		right: 0;
	}
}


@media only screen and (max-width: 600px) {

	.cgsc {
		font-size: 16px;
	}

	.cgsc h1,
	.cgsc .h1,
	.cgsc h2,
	.cgsc .h2 {
		font-size: 30px;
	}

	.cgsc .cg-btn {
		height: 46px;
		line-height: 44px;
		padding: 0 15px;
	}

	.cgsc .cg-btn i {
		margin-left: 10px;
	}

	.cgsc #cgsc-wave-1 {
		display: none;
	}

	.cgsc__glossary {
		margin: 30px 0;
	}

	.cgsc__glossary__heading {
		padding: 30px 20px 0;
	}

	.cgsc__glossary__inner {
		padding: 0 20px;
	}

	.cgsc__glossary.collapsed:after {
		bottom: 50px;
	}

	.cgsc__cwv {
		padding: 0 0 60px;
	}

	.cgsc__subnav {
		padding: 45px 0 0;
	}

	/* .cgsc__subnav__item__heading {
		font-size: 16px!important;
	} */

	h3.cgsc__subnav__item__heading {
		font-size: 16px;
	}

	.cgsc__cwi__img__caption {
		font-size: 20px;
		width: 160px;
	}

	.cgsc__cwi {
		padding: 30px 0 0;
	}

	.cgsc__product-slider {
		padding: 60px 30px 30px;
	}

	.cgsc__faqs {
		padding: 30px 0;
	}

	.cgsc__faqs__accordion__header {
		margin: 8px 0 0!important;
	}

	.cgsc__faqs__accordion__header__btn {
		padding: 20px 40px 20px 20px;
		font-size: 20px;
		line-height: 1.2;
	}

	.cgsc__faqs__accordion__header__btn + span {
		top: 50%;
		right: 2px;
		transform: translateY(-50%);
		font-size: 20px;
	}

	.cgsc__faqs__accordion__panel {
		padding: 0 20px 20px 20px;
	}

}

.cgj__glossary__expand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}