/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
:root{
	--dark: #12293D;
	--yellow: #C5AC95;
	--cyan: #98DCFF;
	scroll-behavior: inherit;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--dark);
	color: #fff;
}
::selection{
	background-color: var(--dark);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: "Mulish", sans-serif;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 2rem;
}
.container{
	--bs-gutter-x: 3rem;
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 8rem;
	font-weight: 700;
	line-height: 1.125;
	font-family: "Cormorant Garamond", serif;
}
h2{
	font-size: 6rem;
	font-weight: 700;
	line-height: 1.2;
	font-family: "Cormorant Garamond", serif;
	color: var(--yellow);
}
h3{
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.18;
	font-family: "Cormorant Garamond", serif;
	color: var(--yellow);
}
h4{
	font-size: 3rem;
	font-weight: 700;
	font-family: "Cormorant Garamond", serif;
	color: var(--yellow);
}
h5{
	font-size: 2.6rem;
	font-weight: 800;
	font-family: "Cormorant Garamond", serif;
	color: var(--yellow);
}
h6{
	font-size: 2.4rem;
	font-weight: 700;
	font-family: "Cormorant Garamond", serif;
	color: var(--yellow);
}


/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100dvh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 8.0rem;
	height: 8.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 8.0rem;
	height: 8.0rem;
	border-radius: 100%;
	background: var(--dark);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 1;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	background-image: url(../img/menu.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 2.8rem;
	height: 3.6rem;
}
.hamburger-menu.current{
	background-image: url(../img/close.svg);
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	background-color: rgba(197, 172, 149, 0.95);
	padding: 2.5rem 0;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
.logo{
	display: block;
	width: 33.4rem;
}
.menu_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 2.4rem;
	   -moz-column-gap: 2.4rem;
	        column-gap: 2.4rem;
}
.menu>ul>li {
   padding: 1.7rem 2.8rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu>ul>li:last-child{
	padding-right: 0 !important;
}
.menu>ul>li>a {
	font-size: 2.2rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--dark) !important;
}
.menu>ul>li.dropdown_wrap{
	position: relative;
}
.menu>ul>li.dropdown_wrap:hover{
	background-color: #F3ECE4;
	color: var(--dark);
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: var(--dark) !important;
}
.menu>ul>li.dropdown_wrap>a::after{
	content: '\EA4E';
	font-family: 'remixicon' !important;
	margin-left: 0.5rem;
	font-size: 90%;
	position: relative;
	top: 0.2rem;
	font-weight: 400;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #F3ECE4;
	padding: 1rem 0 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	min-width: 22rem;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: var(--dark);
	white-space: nowrap;
	padding: 0.6rem 2.8rem;
	display: block;
	text-decoration: none;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: #fff;
	background-color: var(--dark);
}


/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1.3rem 2.3rem;
	color: #fff;
	line-height: 1.25;
	border-radius: 0rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	border: none;
	background-color: var(--yellow);
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.button::after{
	content: '\F5DC';
	font-family: 'remixicon' !important;
	font-weight: 400;
	margin-right: -0.4rem;
	margin-left: -0.4rem;
}
.button:hover{
	background-color: var(--dark);
	color: #fff;
	-webkit-box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
}
.button.white_btn{
	background-color: #fff;
	color: var(--dark);
}
.button.white_btn:hover{
	color: #fff;
	background-color: var(--dark);
}
.button.black_btn{
	background-color: var(--dark);
	color: #fff;
}
.button.black_btn:hover{
	color: #fff;
	background-color: var(--yellow);
}
.button_wrapper{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	        -ms-flex-wrap: wrap;
	            flex-wrap: wrap;
	        row-gap: 1.5rem;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--dark);
	z-index: 1000;
	text-decoration: none;
}
.back-to-top i {
	color: #fff;
	font-weight: 500;
}
/*Home area*/
.home_area {
	padding: 29rem 0 14rem;
	position: relative;
	color: #fff;
	background-color: var(--yellow);
}
.home_area .container{
	position: relative;
	z-index: 3;
}
.home_slider{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home_slider .owl-stage,
.home_slider .owl-stage-outer,
.home_slider .owl-item{
	height: 100%;
}
.hero_img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.hero_img::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: -o-linear-gradient(316deg,var(--yellow) 0%, rgba(79, 83, 86, 0) 100%);
	background: linear-gradient(134deg,var(--yellow) 0%, rgba(79, 83, 86, 0) 100%);
	mix-blend-mode: multiply;
}
.home_content{
	max-width: 76rem;
}
.home_content_inner>p{
	max-width: 54rem;
	margin-top: 2.5rem;
}
.home_content_inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.rating_content{
	margin-top: 12rem;
	font-size: 1.8rem;
}
.rating_content .rating{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.4rem;
	   -moz-column-gap: 0.4rem;
	        column-gap: 0.4rem;
	color: #FCC62B;
	margin-bottom: 1rem;
}
.top_title{
	font-size: 1.6rem;
	text-transform: uppercase;
	color: var(--yellow);
	opacity: 0.8;
}
.home_slider .owl-dots{
	position: absolute;
	bottom: 4rem;
	left: 0;
	width: 100%;
}
.home_slider .owl-dots button{
	outline: 0.2rem solid #fff !important;
}
.home_slider .owl-dots button.active{
	background-color: #fff;
}





.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 7rem;
}
.owl-dots {
	margin-top: 4.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.owl-dots button{
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	background-color: transparent;
	padding: 0.1rem;
	border: none;
	outline: 0.1rem solid var(--yellow) !important;
	outline-offset: 0.4rem;
}
.owl-dots button.active{
	background-color: var(--yellow);
}
.owl-nav button {
	position: absolute;
	top: 32%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
	background-color: transparent;
	color: var(--dark);
	font-size: 5rem;
	border: none;
	line-height: 1;
}
.owl-nav button:hover{
	color: var(--yellow);
}
.owl-nav button.owl-prev{
	left: -6rem;
}
.owl-nav button.owl-next{
	right: -6rem;
}
.row:not(.gx-0){
	--bs-gutter-x: 4rem;
}
.lg_gutters:not(.gx-0){
	--bs-gutter-x: 6rem;
}

/*about area*/
.about_area{
	padding: 5rem 0 0rem;
}
.about_content>p{
	margin-top: 2.5rem;
	max-width: 64rem;
}
.about_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 74rem;
}
.lindy_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 5rem;
}
.lindy{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
}
.lindy>img{
	height: 10rem;
	width: 10rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.lindy_content p:last-child{
	font-size: 1.8rem;
	font-weight: 500;
}
.certified_wrap{
	font-size: 1.8rem;
}
.certified_img{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4rem;
	   -moz-column-gap: 4rem;
	        column-gap: 4rem;
	margin-top: 2rem;
}
.certified_img img{
	height: 5.5rem;
}
.about_img{
	position: relative;
	overflow: hidden;
}
.about_shape{
	height: 100%;
	top: 3.5rem;
	left: -2.5rem;
	position: absolute;
	z-index: 2;
}

/*news area*/
.treatments_area{
	padding-top: 12rem;
	padding-bottom: 8.4rem;
	position: relative;
	z-index: 1;
}
.treatments_area::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 36.5rem);
    z-index: -1;
    background-color: rgba(243, 236, 228, 0.5);
}
.treatment_box{
	display: block;
	height: 100%;
	position: relative;
	text-decoration: none;
	padding-bottom: 7.5rem;
}
.treatment_box .treatment_img img {
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 6.5/2.5;
	width: 100%;
}
.treatment_box:hover .treatment_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.treatment_content{
	padding-top: 5rem;
}
.treatment_content p{
	text-transform: none;
	margin-top: 1.8rem;
	max-width: 47rem;
}
.treatment_content .more_link{
	position: absolute;
	left: 0;
	bottom: 0;
}
.more_link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	line-height: 1.1;
	font-weight: 700;
	color: var(--yellow);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-decoration: none;
}
.more_link:hover{
	color: var(--dark);
}
.more_link i{
	font-weight: 400;
}

/*dealer area*/
.dealer_area{
	padding-bottom: 4rem;
	padding-top: 8rem;
}
.dealer_box{
	background-color: rgba(248, 248, 248, 0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}
.dealer_box img{
	width: 32rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-o-object-fit: cover;
	   object-fit: cover;
}
.dealer_content{
	width: 100%;
	padding: 5rem;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}
.dealer_content p{
	margin-top: 3rem;
	max-width: 33rem;
}

/*cta area*/
.cta_area{
	color: #fff;
	padding: 6.5rem 0 10rem;
	position: relative;
	z-index: 1;
	background-color: #DECFC1;
	overflow: hidden;
}
.cta_area>img{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 50%;
	opacity: 0.25;
	height: calc(100% + 13.5rem);
	z-index: -1;
}
.cta_area h2{
	color: #fff;
}
.cta_area p{
	max-width: 80rem;
	margin-top: 1.8rem;
}
.cta_area .button_wrapper{
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.cta_area .button_wrapper .white_btn{
	color: var(--yellow);
}
.cta_area .button_wrapper .white_btn:hover{
	color: #fff;
}
/*footer*/
footer{
	padding: 2.5rem 0 15rem;
	position: relative;
	background-color: var(--yellow);
	color: #fff;
	line-height: 2;
	z-index: 3;
}
.footer_logo{
	width: 23.2rem;
	display: inline-block;
}
footer h3{
	color: #fff;
}
footer p, footer ul{
	margin-top: 2rem;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer a:hover{
	color: var(--dark);
}
.two_list ul{
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.contact p:nth-child(2){
	line-height: 1.5;
}
.footer_bottom{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	line-height: 1.5;
	font-size: 1.8rem;
	padding-top: 12rem;
	-webkit-column-gap: 3.7rem;
	   -moz-column-gap: 3.7rem;
	        column-gap: 3.7rem;
}
.footer_bottom ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style: disc;
	-webkit-column-gap: 3.7rem;
	   -moz-column-gap: 3.7rem;
	        column-gap: 3.7rem;
}
.footer_bottom ul li::marker{
	color: #fff;
}

/*inner css*/
.inner_home{
   height: 58rem;
   color: #fff;
   padding-top: 14.8rem;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.inner_home .hero_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.breadcrumb_area{
	background-color: rgba(248, 248, 248, 0.5);
	padding: 2.8rem 0;
}
.breadcrumb_area .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.breadcrumb_area .more_link{
	color: var(--dark);
}
.breadcrumb_area .more_link:hover{
	color: var(--yellow);
}
.breadcrumb {
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 0;
	overflow: hidden;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: var(--dark);
	padding-right: 1rem;
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	color: var(--dark);
	font-size: 2rem;
	text-decoration: none;
	text-decoration: none;
}
.breadcrumb li a:hover{
	color: var(--yellow);
}
.breadcrumb-item+.breadcrumb-item{
	padding-left: 1rem;
}
.intro_area{
	background-size: cover;
	background-position: center center;
	padding: 2rem 0 0rem;
}
.intro_area p{
	margin-top: 2rem;
	font-size: 2.2rem;
	max-width: 147rem;
}
.intro_area hr{
	border-top: 0.1rem solid var(--yellow);
	margin-top: 4rem;
	margin-bottom: 0;
	max-width: 40rem;
}

/*contact area*/
.contact_area{
	padding-bottom: 10rem;
}
.contact_area img,
.contact_area iframe{
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	height: 44rem;
	border: none;
}
.contact_area h2{
	font-size: 4rem;
}
.contact_area h2,
.contact_area h3{
	margin-top: 4rem;
}
.contact_area a{
	text-decoration: none;
}
.contact_area a:hover{
	color: var(--yellow);
}
.contact_area p,
.contact_area ul{
	line-height: 2;
	margin-top: 2rem;
}
.contact_area ul li strong{
	display: inline-block;
	min-width: 29rem;
}

.side_card {
    background-size: cover;
    background-position: center center;
    padding: 4.2rem;
    height: 44rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none;
}
.side_card:hover{
    transform: scale(1.02);
}
.side_card h2{
	color: #fff;
	line-height: 1;
	max-width: 32rem;
	font-size: 5rem;
}

.treatment_inner_area{
	padding-bottom: 10rem;
}
.treatment_inner_content>*{
	max-width: 105rem;
}
.treatment_inner_content h2:first-child{
	margin-top: 4rem;
}
.treatment_inner_content h2{
	font-size: 4rem;
	margin-top: 5rem;
}
.treatment_inner_content p{
	margin-top: 2rem;
}

.price_area{
	padding-bottom: 10rem;
}
.price_area h2{
	font-size: 4rem;
	margin-top: 5rem;
}
.price_item{
	position: relative;
	z-index: 1;
	padding: 2.4rem 0;
}
.price_item:nth-child(odd)::before{
	position: absolute;
	content: '';
	left: 50%;
	top: 0;
	height: 100%;
	width: 100vw;
	z-index: -1;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	background-color: rgba(248, 248, 248, 0.5);
}
.price_inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 1.2rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.price_inner .price h3{
	font-size: 3rem;
}
.service_name p:last-child{
	font-size: 1.8rem;
}
.amount{
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
}