*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    overflow-x:hidden;
    scroll-behavior:smooth;
}
body{
    font-family: "Poppins", sans-serif !important;
    background:#ece7df !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif !important;
    color: #27092f !important;
    margin: 0;
}
p {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    margin: 0;
}
/* START HEADER SECTION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 52px;
    /*background: linear-gradient(135deg, rgb(140 186 191 / 10%), rgb(110 102 129 / 40%));*/
    /*backdrop-filter: blur(40px);*/
    /*-webkit-backdrop-filter: blur(10px);*/
    /* border: 2px solid rgb(255 255 255 / 25%); */
    /*box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 83);*/
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.nav-links {
    display: flex;
    padding: 25px 0;
    gap: 30px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: #27092f;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: .4s;
}
.nav-links a:hover {
    color: #e0bc68;
    transition: .4s
}
.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.nav-logo {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #1a1a1a;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-icons a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.nav-icons svg {
    width: 17px;
    height: 17px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 1.6;
    vertical-align: middle;
    cursor: pointer;
}
/* END HEADER SECTION */
/* START HERO SECTION */
.Hero {
    background-color: #d6ead9;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.heading {
    font-family: 'Playfair Display',serif;
    font-size: clamp(96px,17vw,230px);
    font-weight: 900;
    color: #27092f;
    letter-spacing: -0.01em;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    user-select: none;
}
.Aleovera {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -130px;
}
.plant-left {
    margin-right: -130px;
}   
.plant-right {
    margin-left: -130px;
}
.Aleovera img {
    width: 500px;
    height: 100%;
}
/* END HERO SECTION */
/* START BOTTLE SECTION */
.Bottle {
    background-color: #fff;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.bottle-pic {
    width: 500px;
    z-index: 1;
}
.bottle-pic img {
    width: 100%;
}
/* END BOTTLE SECTION */
/* START INGREDIENT SECTION */
.ingredients-section{
    position:relative;
    min-height:100vh;
    background:#dbe7df;
    display:grid;
    grid-template-columns:1fr 1.4fr 1fr;
    grid-template-rows:auto auto;
    align-items:center;
    justify-items:center;
    padding:80px 40px;
    overflow:hidden;
}
.bg-text{
    position:absolute;
    font-size:12vw;
    font-weight:700;
    color:rgba(0,0,0,.08);
    z-index:0;
    user-select:none;
    pointer-events:none;
}
.product{
    grid-column:2;
    grid-row:1;
    z-index:2;
}
.product img{
    width:500px;
    max-width:100%;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.25));
}
.ingredient{
    width:250px;
    text-align:center;
    z-index:2;
}
.ingredient img{
    width:100px;
    height:100px;
    border-radius:50%;
    border:2px solid #3d8b3d;
    object-fit:cover;
    margin-bottom:15px;
}
.ingredient h3{
    font-size:30px;
    margin-bottom:10px;
    color:#27092f;
}
.ingredient p{
    color:#5f6d60;
    line-height:1.5;
}
.top-left{
    grid-column:1;
    grid-row:1;
    align-self:start;
}
.bottom-left {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    position: absolute;
    top: 35%;
    left: 10%;
}
.top-right{
    grid-column:3;
    grid-row:1;
    align-self:start;
}
.bottom-right {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    position: absolute;
    right: 40%;
    top: 35%;
}
.center-bottom{
    grid-column:2;
    grid-row:2;
    margin-top:30px;
}
.product img{
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
}
@media (max-width:768px){

    .ingredients-section{
        display:flex;
        flex-direction:column;
        gap:40px;
    }

    .product img{
        width:320px;
    }

    .ingredient{
        width:100%;
        max-width:320px;
    }

    .bg-text{
        font-size:22vw;
    }
}
/* END INGREDIENT SECTION */
/* START BENEFITS SECTION */
.benefits-section{
    min-height:100vh;
    background:#f4f4f4;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    padding:80px;
}
.benefits-left{
    display:flex;
    flex-direction:column;
    gap:45px;
}
.benefit{
    display:flex;
    align-items:center;
    gap:25px;
}
.benefit.reverse{
    justify-content:flex-start;
}
.icon{
    width:64px;
    height:64px;
    border-radius:50%;
    border:1.5px solid #4f944f;
    background:#dce9de;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}
.content h3{
    font-size:34px;
    color:#27092f;
    margin-bottom:8px;
}
.content p{
    color:#6e756e;
    line-height:1.6;
    max-width:280px;
}
.benefits-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.circle-bg{
    width:600px;
    height:600px;
    border-radius:50%;
    background:#dce8de;
    position:absolute;
    overflow: hidden;
}
.circle-bg .bottle-pic {
    width: 300px;
    height: 100%;
    transform: rotate(350deg);
    position: absolute;
    top: 14%;
    left: 18%;
}
.hand-pic {
    width: 100%;
    height: 100%;
    transform: rotate(352deg);
    position: absolute;
    top: 22%;
    right: 2%;
}
.hero-image{
    position:relative;
    width:650px;
    max-width:100%;
    z-index:2;
}
/* .hero-image{
    animation:float 5s ease-in-out infinite;
} */

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }
}
@media(max-width:992px){

    .benefits-section{
        grid-template-columns:1fr;
        gap:60px;
        padding:40px 20px;
    }

    .circle-bg{
        width:350px;
        height:350px;
    }

    .hero-image{
        width:400px;
    }

    .content h3{
        font-size:24px;
    }
}

@media(max-width:576px){

    .benefit,
    .benefit.reverse{
        flex-direction:column;
        text-align:center;
    }

    .content p{
        max-width:100%;
    }

    .circle-bg{
        width:280px;
        height:280px;
    }

    .hero-image{
        width:300px;
    }
}
/* END BENEFITS SECTION */
/* START CTA SECTION */
.CTA {
    background-image: url("/images/cta-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    align-items: center;
    position: relative;
}
.cta-text {
    margin-bottom: 20px;
}
.cta-text h3 {
    font-size: 38px;
    color: white;
}
.cta-text p {
    font-size: 18px;
    color: white;
}
.cta-pic {
    width: 320px;
    margin: auto;
}
.cta-pic img {
    width: 100%;
    height: 100%;
}
.cta-content {
    font-family: 'Playfair Display',serif;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.cta-btn a {
    color: black;
    display: table;
    transition: .4s;
    border-radius: 4px;
    padding: 10px 20px;
    margin: 20px auto 0;
    text-decoration: none;
    background-color: white;
    font-family: "Poppins", sans-serif;
}
.cta-btn a:hover {
    color: white;
    transition: .4s;
    text-decoration: none;
    background-color: #27092f;
    animation: wobble 1s ease-in-out 1;
}
/* END CTA SECTION */

.Bottle {
    position:relative;
}

.bottle-pic img{
    transform-origin:center center;
    will-change:transform;
}

/* START PRODUCT LIST */
section.Product-list {
    padding: 160px 0 100px;
}
.wrapper {
	width: 1150px;
	height: 100vh;
	margin: 0 auto;
	text-align: center;
}

.wrapper h2 {
	margin: 20px 0 10px 0;
}

.hand_creme, .bath, .perfume{
	width: 300px;
	height: 500px;
	position: relative;
	top: 50px;
	left: 0px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	margin: 20px 0 0 60px;
	background-color: #fff;
	display: inline-block;
	transform-origin: 100% 0;
}

.hand_creme {
	margin-left: 0;
}

/* ------------title----------- */
.hand_creme .title, .bath .title, .perfume .title  {
	width: 100%;
	height: 90px;
	line-height: 25px;
	padding: 25px 25px;
	box-sizing: border-box;
	color: #346;
	margin: 0;
	z-index: 20;
}

/* -----------content div---------- */
.hand_creme .content, .bath .content, .perfume .content {
	width: 260px;
	height: 330px;
	margin-left: 20px;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden;
}

/* -------------------- BOX-------------------------- */
.BOX, .BOX2 {
	width: 260px;
	height: 260px;
	position: absolute;
	left: 0px;
	top: 30px;
	transition:.5s;
}
.BOX3 {
	width: 260px;
	height: 260px;
	position: absolute;
	left: 0px;
	top: 30px;
	perspective: 600px;
}

.BOX {
	overflow: hidden;
}

.pic {
	width: 1300px;
	position: relative;
	transition: 0.8s cubic-bezier(0.5, -1, 0.75, 2);
}

.pic img {
	float: left;
	width: 20%;
	height: 20%;
}


.BOX2 {
	background-image: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw74046499/Large/81473_alt0.png");
	background-size: 260px 260px;
	animation: counterSpin 1s;	
}

.BOX3 img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotateY(0deg);
	backface-visibility: hidden;
	transition: 1s;
	animation: expand 1s cubic-bezier(0.47, 2.02, 0.31, -0.36);	
}

@keyframes expand {
	0% {transform: scale(0, 0);}
	100% {transform: scale(1, 1);}
}

.BOX3:hover img {
	transform: rotateY(-180deg);
}

.BOX3 p {
	width: 100%;
	height: 90%;
	padding: 17px 14px;
	font-size: 13px;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	color: #000;
	transform: rotateY(180deg);
	backface-visibility: hidden;
	transition: 1s;
}

.BOX3:hover p {
	transform: rotateY(0deg);
}
/* ----------------animation for BOX------------- */
#r1:checked ~ .BOX .pic { left: 0px;}
#r2:checked ~ .BOX .pic { left: -260px;}
#r3:checked ~ .BOX .pic { left: -520px;}
#r4:checked ~ .BOX .pic { left: -780px;}
#r5:checked ~ .BOX .pic { left: -1040px;}
#r6:checked ~ .BOX .pic { left: -1300px;}


/* ----------------animation for BOX2------------- */
#b2:checked ~ .BOX2 { 
	background-image: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw1d0ba0fb/Large/81478_alt0.png");
	background-size: 260px 260px;
	animation: spin 1s;
}


@keyframes spin {
	0% {transform: rotateY(0deg);}
	100% {transform: rotateY(720deg);}
}
@keyframes counterSpin {
	0% {transform: rotateY(0deg);}
	100% {transform: rotateY(-720deg);}
}

/* ----------------hide button to the left------------------ */
.btn-hide, .btn-hide1, .btn-hide2 { 
	position: absolute; left: -10000px; 
}

/* ----------------button for type selection------------------- */		
.hand_creme .btn, .bath .btn1, .perfume .btn2 { 
	display: inline-block;
	position: relative;
	border-radius: 7px;
	left: 0;
	bottom: -300px;
	height: 25px;
	width: 25px;
	margin-left: 5px;
}
.hand_creme .btn, .bath .btn1 {
	cursor: pointer;
}
.hand_creme .btn.pink {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dwd4875560/Large/81089_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.hand_creme .btn.orange {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dwee4b375d/Large/81100_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.hand_creme .btn.green {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dwc93c5d9f/Large/81097_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.hand_creme .btn.blue {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw74aa7713/Large/81087_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.hand_creme .btn.purple {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dwfab58721/Large/81094_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.bath .btn1.honey {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw74046499/Large/81473_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.bath .btn1.lavender {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw1d0ba0fb/Large/81478_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.perfume .btn2.lily {
	background: url("http://demandware.edgesuite.net/aakk_prd/on/demandware.static/-/Sites-Crabtree-US-Products/default/dw05172787/Large/79556_alt0.png") center center no-repeat;
	background-size: 260px 260px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

/* --------------box-shadow settings ------------------- */
/* ---------hand_creme--------- */
#r1:checked ~ .btn.orange {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#r1:checked ~ .btn.green {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r1:checked ~ .btn.blue {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r1:checked ~ .btn.purple {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}

#r2:checked ~ .btn.pink {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#r2:checked ~ .btn.green {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r2:checked ~ .btn.blue {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r2:checked ~ .btn.purple {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}

#r3:checked ~ .btn.pink  {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r3:checked ~ .btn.orange {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#r3:checked ~ .btn.blue {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r3:checked ~ .btn.purple {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}

#r4:checked ~ .btn.pink  {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r4:checked ~ .btn.orange {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#r4:checked ~ .btn.green {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r4:checked ~ .btn.purple {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}

#r5:checked ~ .btn.pink  {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r5:checked ~ .btn.orange {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#r5:checked ~ .btn.green {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 
#r5:checked ~ .btn.blue {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}

/* --------------bath-------------- */
#b1:checked ~ .btn1.lavender {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);}
#b2:checked ~ .btn1.honey {box-shadow: 0 0 0px rgba(0, 0, 0, 0.6);} 


/* ------------------- product names -------------------- */
.names, .names1, .names2 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 30px;
	/* background-color: #ddd; */
}
.names div, .names1 div, .names2 div {
	width: 200px;
	height: 30px;		
	position: absolute;
	left: 30px;
	top: -30px;
}
.names div p, .names1 div p, .names2 div p {
 	text-align: center;
 	line-height: 30px;
 	color: #467;
 	font-size: 16px;
 }
 .names div p {
 	font-size: 14px;
 }

/* ------------animation for product names--------------- */
/* ---------.hand_cremes---------- */
#r2:checked ~ .names div:nth-child(2){ 
	animation: slideDown 0.5s 0s ease-in forwards; 
	transform: scale(1.2);
		transition: 1s 0.6s cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
#r3:checked ~ .names div:nth-child(3){ 
	animation: slideDown 0.5s 0s ease-in forwards;
	transform: scale(1.2);
		transition: 1s 0.6s cubic-bezier(0.47, 2.02, 0.31, -0.36); 
}
#r4:checked ~ .names div:nth-child(4){ 
	animation: slideDown 0.5s 0s ease-in forwards;
	transform: scale(1.2);
		transition: 1s 0.6s cubic-bezier(0.47, 2.02, 0.31, -0.36); 
}
#r5:checked ~ .names div:nth-child(5){ 
	animation: slideDown 0.5s 0s ease-in forwards;
	transform: scale(1.2);
		transition: 1s 0.6s cubic-bezier(0.47, 2.02, 0.31, -0.36); 
}
#r1:checked ~ .names div:nth-child(1){ 
	animation: slideDown 0.5s 0s ease-in forwards;
	transform: scale(1.2);
		transition: 1s 0.6s cubic-bezier(0.47, 2.02, 0.31, -0.36); 
}


/* ---------.bath---------- */
#b2:checked ~ .names1 div:nth-child(2){ 
	animation: bounce 1s 0s ease-in forwards;
}
#b1:checked ~ .names1 div:nth-child(1){ 
	animation: bounce 1s 0s ease-in forwards;
}


/* ---------.perfume---------- */
#p1:checked ~ .names2 div:nth-child(1){ 
	animation: bounce 1s 0s ease-in forwards;
}


@keyframes slideDown {
	0% {top: -30px;}
	100% {top: 5px;}
}

@keyframes bounce {
	16.65% { transform: translateY(43px); }
	33.3% { transform: translateY(29px); }
	49.95% { transform: translateY(39px); }
	66.6% { transform: translateY(33px); }
	83.25% { transform: translateY(36px); }
	100% { transform: translateY(35px); }
}

/* ------------------Add-to-cart button---------------------- */
/*.hand_creme .cart, .bath .cart, .perfume .cart {*/
/*	text-align: center;*/
/*	padding: 5px 10px;*/
/*	width: 230px;*/
/*	border-radius: 5px;*/
/*	margin: 15px 0 0 23px;*/
/*	background-color: #000;*/
/*	cursor: pointer*/
/*}*/
/*.hand_creme .cart p, .bath .cart p, .perfume .cart p {*/
/*	color:#fff;*/
/*}*/

/* ------animation-Add-to-cart button--------- */
/*.hand_creme .cart:hover {*/
/*	background-color: #346;*/
/*	color: #fff;*/
/*	transition: 1s;*/
/*	animation: wobble 1s ease-in-out 1;*/
/*}*/
/*.bath .cart:hover {*/
/*	background-color: #346;*/
/*	transition: 0.8s;*/
	/* transform: translateY(-5px); */
/*	animation: wobble 1s ease-in-out 1;*/
/*}*/

/*.perfume .cart:hover {*/
/*	background-color: #346;*/
/*	color: #fff;*/
/*	transition: 1s;*/
/*	animation: wobble 1s ease-in-out 1;*/
/*}*/
	
.product-button {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.product-button .cta-btn a {
    color: white;
    border: 2px solid #27092f;
    background-color: #27092f;
}
.product-button .cta-btn a:hover {
    color: #27092f;
    background-color: white;
    border: 2px solid #27092f;
}

@keyframes wobble {
  16.65% { transform: translateY(8px); }
  33.3% { transform: translateY(-6px); }
  49.95% { transform: translateY(4px); }
  66.6% { transform: translateY(-2px); }
  83.25% { transform: translateY(1px); }
  100% { transform: translateY(0); }
}
/* END PRODUCT LIST */

/* START PRODUCT DETAIL */
section.Product-deatil {
    padding: 120px 0 0px;
}
.pd-wrap {
	padding: 40px 0 0;
	font-family: 'Poppins', sans-serif;
}
.heading-section {
	text-align: center;
	margin-bottom: 20px;
}
.sub-heading {
	font-family: 'Poppins', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.heading-section h2 {
	font-size: 32px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}
.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
	min-width: 80px;
	background-size: 100%;
}
.carousel-testimonial .item {
	padding: 30px 10px;
}
.quote {
	position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}
.name {
	margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}
.position {
	color: #adadad;
	font-size: 14px;
}
.owl-nav button {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	outline: none;
	height: 25px;
}
.owl-nav button svg {
	width: 25px;
	height: 25px;
}
.owl-nav button.owl-prev {
	left: 25px;
}
.owl-nav button.owl-next {
	right: 25px;
}
.owl-nav button span {
	font-size: 45px;
}
.product-thumb .item img {
	height: 100px;
}
.product-name {
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	margin-bottom: 4px;
}
.product-price-discount {
	font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}
.product-price-discount span.line-through {
	text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}
.display-flex {
	display: flex;
}
.align-center {
	align-items: center;
}
.product-info {
	width: 100%;
}
.reviews-counter {
    font-size: 13px;
}
.reviews-counter span {
	vertical-align: -2px;
}
.rate {
    float: left;
    padding: 0 10px 0 0;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
    color:#ccc;
	margin-bottom: 0;
	line-height: 21px;
}
.rate:not(:checked) > label:before {
    content: '\2605';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
.product-dtl p {
	font-size: 14px;
	line-height: 24px;
	color: #7a7a7a;
}
.product-dtl .form-control {
	font-size: 15px;
}
.product-dtl label {
	line-height: 16px;
	font-size: 15px;
}
.form-control:focus {
	outline: none;
	box-shadow: none;
}
.product-count {
	margin-top: 15px; 
}
.product-count .qtyminus,
.product-count .qtyplus {
	width: 34px;
    height: 34px;
    background: #27092f;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}
.product-count .qtyminus {
	border-radius: 3px 0 0 3px; 
}
.product-count .qtyplus {
	border-radius: 0 3px 3px 0; 
}
.product-count .qty {
	width: 60px;
	text-align: center;
}
.round-black-btn {
    color: #fff;
    margin-top: 20px;
    padding: 7px 45px;
	border-radius: 4px;
    background: #27092f;
    display: inline-block;
    border: solid 2px #27092f;
    /*animation: wobble 1s ease-in-out 1;*/
    transition: all 0.5s ease-in-out 0s;
}
.round-black-btn:hover{
	color: #27092f;
	text-decoration: none;
	background: transparent;
	animation: wobble 1s ease-in-out 1;
}

.product-info-tabs {
	margin-top: 25px; 
}
.product-info-tabs .nav-tabs {
	border-bottom: 2px solid #d8d8d8;
}
.product-info-tabs .nav-tabs .nav-item {
	margin-bottom: 0;
}
.product-info-tabs .nav-tabs .nav-link {
	border: none; 
	border-bottom: 2px solid transparent;
	color: #323232;
}
.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
	border: none; 
}
.product-info-tabs .nav-tabs .nav-item.show .nav-link, 
.product-info-tabs .nav-tabs .nav-link.active, 
.product-info-tabs .nav-tabs .nav-link.active:hover {
	border: none; 
	border-bottom: 2px solid #d8d8d8;
	font-weight: bold;
}
.product-info-tabs .tab-content .tab-pane {
	padding: 30px 20px;
	font-size: 15px;
	line-height: 24px;
	color: #7a7a7a;
}
.review-form .form-group {
	clear: both;
}
.mb-20 {
	margin-bottom: 20px;
}

.review-form .rate {
	float: none;
	display: inline-block;
}
.review-heading {
	font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #000;
}
.review-form .form-control {
	font-size: 14px;
}
.review-form input.form-control {
	height: 40px;
}
.review-form textarea.form-control {
	resize: none;
}
.review-form .round-black-btn {
	text-transform: uppercase;
	cursor: pointer;
}
.Product-list.related-product {
    padding-top: 80px;
}
/* END PRODUCT DETAIL */
/* START FOOTER SECTION */
footer {
    background-color: #27092f;
    padding: 15px 0;
}
.copyright p {
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 0;
}
/* END FOOTER SECTION */