html{
	font-family: sans-serif;
}

body{
	display: flex;
	flex-direction: column;
	background-color: lightgreen;
}

header{
	background-color: green;
	color: white;
}

.header-logo-menu{
	display: flex;
	flex-direction: row;
}

.main{
	background-color: inherit;
	display: flex;
	flex-direction: row;


}

footer{
	background-color: darkgreen;
	width: 100%;
	color: lightgreen;
	text-align: center;

}

.nav{
	display: flex;
	flex-direction: column;
}

.nav-items{
	display: flex;
	flex-direction: row;
}

.nav p{
	padding: 5px;
	font-size: 12px;
}

a {
	color: inherit;
	font-weight: bold;
}

.navref a{
	color: inherit;
	font-weight: normal;
}

.dropdown{
	display: none;
	background-color: #b1f5b3;
}

.dropdown a{
	display: flex;
	flex-direction: column;
	font-size: 12px;
	color: #0c8a10; 
	margin: 5px;
	font-weight: bold;

}

.nav:hover .dropdown {
	display: block; 
}

h4{
	color: teal;
	font-size: 1.7em;
}

.left{
	width: 25%;
}

.navref{
	position: fixed;
	top: 50%;
	color: gray;
}

@media only screen and (max-width: 1024) {
	.navref{
		display: none;
		visibility: hidden;
		color: white;
	}
}

img{
	max-width: 100%;
	margin-top: 10px;
}

.button-indexpage{
	background-color: #45bb3f;
	color: #106a0c;
	font-weight: bold;
	font-size: 15px;
	height: 40px;
}

.img-jewelery{
	height:500px; 
	width: 100%;
}

.jewelery-left{
	width: 100%;
	background-color: #dce97d;
}

.jewelery-compare{
	display: flex;
	flex-direction: row;
}

.jewelery-compare-left{
	background-color: #eaf71a;
	width: 50%;
	margin: 5px;
	padding: 5px;
}

.jewelery-compare-right{
	background-color: #1af793;
	width: 50%;
	margin: 5px;
	padding: 5px;
}

.main-1{
	background-color: teal;
	margin: 5px;
	color: white;
	font-size: 1.5em;
}

.howitworks{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.howitworks-1{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 250px;
}

.howitworks-2{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: wrap;
	width: 250px;
}

#boldred{
	color:red;
	font-weight: bold;

}

.middle{
	display: flex;
	flex-direction: column;
}

.middle-flip-images{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flip-card{
	background-color: transparent;
	width: 250px;
	height: 200px;
	margin: 10px;
}

.flip-card-inner{
	position: relative;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	height: 100%;
	width: 100%;
}

.flip-card:hover .flip-card-inner{
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back{
	position: absolute;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	width: 100%;
	height: 100%;
}

.flip-card-front{
	background-color: #0c8a10;
	color: black;
}

.flip-card-back{
	background-color: darkgreen;
	color: white;
	transform: rotateY(180deg);
}

.flip-card-back p{
	margin: 5px;
	text-align: left;
}

.accordion {
	transition: 0.4s;
	width: 100%;
	background-color: green;
	color: white;
	text-align: left;
	padding: 10px; 
}

.active, .accordion:hover {
	background-color: blue;
}

.panel {
	overflow: hidden;
	width: 100%;
	display: none;
}

.video-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	margin-bottom: 5px;

}

.video-responsive iframe{
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

.thumbnail {
	height: 250px;
	width: 250px;
}

.thumbnail:hover {
	position: relative;
	top: -25px;
	left: -35px;
	width: 500px;
	height: auto;
	display: block;
	z-index: 999;
}

a[href^="tel:"]:before{
	content: "\260e";
	margin-right: 0.5em;
}
