
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Syne:wght@400;500;600;700&display=swap');

/*
font-family: 'Rajdhani', sans-serif;
font-family: 'Syne', sans-serif;
 */

:root {
   --theme-color: #ED3237;
   --primary-color: #F7D541;
   --text-color: #666666;
   --heading-color: #222222;
   --black: #000000;
   --white: #ffffff;
   --hr-color: #cccccc;
}
.primary-color{
   color: var(--primary-color) !important;
}
.text-success{
   color: #3ACF2B !important;
}
.theme-color{
   color: var(--theme-color) !important;
}
.white-color{
   color: var(--white) !important;
}
* {
   padding: 0;
   margin: 0;
}
html,
body {
   overflow-x: hidden;
   position: relative;
}
body {
   font-family: 'Syne', sans-serif;
   font-weight: normal;
   font-style: normal;
   color: var(--text-color);
   font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Rajdhani', sans-serif;
   color: var(--heading-color);
   margin-bottom: 0;
   font-weight: 700;
}

h1 {font-size: 84px;}
h2 {font-size: 70px;}
h3 {font-size: 40px;}
h4 {font-size: 30px;}
h5 {font-size: 22px;}
h6 {font-size: 18px;}

p {
   font-size: 18px;
   line-height: 1.667;
   margin-bottom: 15px;
}
img {
   max-width: 100%;
   transition: 0.3s;
}
a {
   text-decoration: none;
}
a,
button {
   transition: 0.3s ease;
   color: inherit;
   outline: medium none;
}
a:hover{
   color: var(--theme-color);
}
button:focus,
input:focus,
textarea:focus {
   outline: 0;
}
ul {
   margin: 0px;
   padding: 0px;
}
li {
   list-style: none;
}
hr {
   border-bottom: 1px solid var(--hr-color);
   border-top: 0 none;
   margin: 30px 0;
   padding: 0;
}
*::-moz-selection {
   background: #007acc;
   color: var(--white);
   text-shadow: none;
}
*::selection {
   background: #007acc;
   color: var(--white);
   text-shadow: none;
}

/* Input Placeholder */
.nice-select,
input,
textarea {
   width: 100%;
   padding: 20px;
   padding-left: 25px;
   transition: 0.3s ease;
   border: 1px solid transparent;
   font-weight: 500;
   background: #fff;
   color: #222;
   border-radius: 50px 0 50px 50px;
}
input:focus, textarea:focus {
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
*::-moz-placeholder,
::placeholder {
   color: #666666;
   opacity: 1;
}

.nice-select {
	height: auto;
	float: none;
	line-height: inherit;
	z-index: 9;
}
.nice-select .list {
	width: 100%;
	height: calc(40px * 5);
	overflow-y: auto;
}
.nice-select::after {
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	content: "\f0d7";
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
	border: 0;
	font-weight: 700;
	color: #4D4D4D;
	background: #FBFBFB;
	display: grid;
	place-content: center;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	transform-origin: initial;
}
.nice-select.open::after {
	transform: translateY(-50%) rotate(180deg);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
	border-color: transparent;
}
/*==ScrollUp CSS==*/
#scrollUp {
   background: var(--theme-color) none repeat scroll 0 0;
   border-radius: 3px;
   bottom: 50px;
   cursor: pointer;
   height: 40px;
   position: fixed;
   right: 30px;
   text-align: center;
   width: 40px;
   z-index: 998 !important;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 5px 15px rgba(0,0,0,.08);
}
#scrollUp i {
   color: #fff;
   font-size: 24px;
}

/* ======CONTAINER WIDTH===== */
.container {
   max-width: 1200px;
}
/* ====================================================== */

/* =======GLOBAL CSS========= */
.bg-attachment {
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   background-color: #F0F0F0;
}
.section-overlay,
header,
section,
footer,
.position-relative,
.float-input{
   position: relative;
   z-index: 1;
}
.absolute-bg{
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   z-index: -1;
}
.absolute-img {
   position: absolute;
   left: 0;
   top: 0;
   z-index: -1;
   max-height: 100%;
}
.absolute-img.center-center,
.absolute-img.right-center,
.absolute-img.left-center {
   top: 50%;
   transform: translate(0, -50%);
}
.absolute-img.right-top,
.absolute-img.right-bottom,
.absolute-img.right-center {
   left: auto;
   right: 0;
}
.absolute-img.right-bottom,
.absolute-img.left-bottom {
   top: auto;
   bottom: 0;
}
.absolute-img.center-center{
   left: 50%;
   transform: translate(-50%, -50%);
}
.section-overlay::before{
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   opacity: .8;
   background: #000;
   z-index: -1;
}
.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6{
   margin-bottom: 15px;
}
.section-content h1,
.section-content h2,
.section-content h3{
   line-height: 1;
}
.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p{
   color: #fff;
}

/* =======PRELOADER===== */
.preloader {
   position: fixed;
   width: 100%;
   height: 100%;
   background: #000000;
   z-index: 999999;
   display: flex;
   align-items: center;
   justify-content: center;
}
.lds-hourglass {
   display: inline-block;
   position: relative;
   width: 80px;
   height: 80px;
 }
 .lds-hourglass:after {
   content: " ";
   display: block;
   border-radius: 50%;
   width: 0;
   height: 0;
   margin: 8px;
   box-sizing: border-box;
   border: 32px solid;
   border-color: var(--theme-color) transparent var(--theme-color) transparent;
   animation: lds-hourglass 1.2s infinite;
 }
 @keyframes lds-hourglass {
   0% {
     transform: rotate(0);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
   }
   50% {
     transform: rotate(900deg);
     animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
   }
   100% {
     transform: rotate(1800deg);
   }
 }
 
/* PRELOADER-CSS END */

/* HEADER AREA */
.header-area {
	background: var(--theme-color);
}
.slick-arrow,
.icon {
   background: #fff;
   height: 2.5em;
   width: 2.5em;
   display: inline-grid;
   place-content: center;
   border-radius: 50% 0 50% 50%;
   color: var(--theme-color);
   position: relative;
   z-index: 1;
   border: 0;
 }
 .icon sup {
   position: absolute;
   top: 0;
   right: 0;
   height: 1.5em;
   width: 1.5em;
   display: inline-grid;
   place-content: center;
   background: var(--theme-color);
   border-radius: 50%;
   color: #fff;
   transition: .3s ease;
   transform: translate(40%, -40%);
 }
 .icon:hover sup {
   transform: translate(50%, -50%);
 }
 .gray-icon {
	color: #000;
	background: #F3F3F3;
}
 .header-top-right > div{
    margin-right: 30px;
 }
 .header-top-right > div:last-child{
    margin-right: 0px;
 }
 .mainmenu li a {
    font-size: inherit;
	font-weight: 700;
	color: #040404;
	font-family: 'Rajdhani', sans-serif;
}
.mainmenu li {
   display: inline-block;
   margin-right: 1em;
   padding-right: 1em;
   position: relative;
   font-size: 20px;
 }
 .mainmenu li:after {
   position: absolute;
   right: 0;
   top: 10%;
   bottom: 10%;
   content: '';
   width: 1px;
   background: #D6D6D6;
 }
 .mainmenu li:last-child {
   margin-right: 0;
   padding-right: 0;
 }
 .mainmenu li:last-child:after {
   display: none;
 }
 .mainmenu li:hover > a,
 .mainmenu li.current > a {
   color: var(--theme-color);
 }
 .submenu {
	position: absolute;
	top: 120%;
	padding: 20px 0px;
	transition: 0.3s ease;
	width: 200px;
	opacity: 0;
	pointer-events: none;
	padding-top: 33px;
}
.header-content.sticky .submenu {
	padding-top: 27px;
}
.mainmenu ul li:hover .submenu {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.submenu li {
	display: block;
	margin: 0;
	padding: 0;
  text-align: left;
}
.submenu li a {
  padding: .5em 1em;
	display: block;
  color: #fff;
	background: var(--theme-color);
}
.submenu li:after {
	display: none;
}
.submenu li a:hover {
	background: #000;
}
 
 .logo {
	padding: 40px 60px;
	background: #fff;
	border-radius: 100px;
	margin-left: -60px;
	margin-bottom: -20px;
	transition: .3s ease;
	text-align: center;
}
.logo::before {
	position: absolute;
	content: '';
	z-index: -1;
	top: -15px;
	bottom: -15px;
	right: -15px;
	left: -15px;
	border-radius: inherit;
	border: 15px solid var(--theme-color);
	clip-path: polygon(0 calc(100% - 35px), 100% calc(100% - 35px), 100% 100%, 0 100%);
}
.header-btn a {
	margin: 2px;
	font-size: 18px;
}
.header-inner:after {
   content: '';
   background: #fff;
   position: absolute;
   left: 0;
   bottom: 0;
   right: -10000px;
   top: 0;
   z-index: -1;
   border-radius: 100px;
 }
 .header-area {
	background: var(--theme-color);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: .3s ease;
}
.header-top-right h6 {
	font-weight: 600;
}
.header-top-right {
  padding: 20px 60px;
  display: inline-block;
  margin-bottom: -20px;
  z-index: 2;
}
.header-top-right:after {
  content: '';
  background: var(--theme-color);
  position: absolute;
  left: 0;
  top: -100px;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 80px;
}
.header-top-right::before {
  position: absolute;
  content: '';
  background: #fff;
  right: -10000px;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  border-radius: 100px;
}
.mainmenu,
.header-btn {
	margin-top: 38px;
   transition: .3s ease;
}

.header-content {
   transition: .3s ease;
	background: var(--theme-color);
}
.header-content.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	animation: slideInDown .5s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.header-content.sticky .logo {
	padding-top: 20px;
	padding-bottom: 20px;
}
.header-content.sticky .logo img{
   max-width: 270px;
}
.header-content.sticky .mainmenu,
.header-content.sticky .header-btn {
	margin-top: 0;
}

/* page title */
.page-title-area{
	height: 600px;
	display: flex;
	align-items: center;
}



 /* hero */
 .hero-slide {
	height: 790px;
	display: flex !important;
	align-items: center;
}
.site-btn {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: .9em 2.5em;
	border-radius: 50px 0 50px 50px;
	font-family: 'Rajdhani', sans-serif;
	border: 0;
	text-align: center;
  transition: .3s ease;
  cursor: pointer;
}
.site-btn i {
	margin-right: 8px;
}
.site-btn.site-btn-alt,
.site-btn.active,
.site-btn:hover {
	background: var(--primary-color);
	color: #000;
}
.site-btn.site-btn-alt:hover,
.site-btn.site-btn-alt.active,
.site-btn.active,
.site-btn:hover {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.site-btn,
.site-btn.site-btn-alt.active,
.site-btn.site-btn-alt:hover{
	color: #fff;
	background: var(--theme-color);
}
.black-btn{
   background: #000;
}
.black-hover:hover{
   background: #000 !important;
   color: #fff !important;
}
.theme-hover:hover{
  background: var(--theme-color);
  color: #fff;
}
.play-btn {
	height: 4em;
	width: 4em;
	background: var(--theme-color);
	color: #fff;
	border-radius: 50%;
	display: inline-grid;
	place-content: center;
}
.play-btn {
   position: relative;
   z-index: 1;
}
.play-btn:hover {
	background: var(--primary-color);
	color: #000;
}
.video-btn:before {
   content: "";
   display: inline-block;
   position: absolute;
   top: -2px;
   left: -2px;
   bottom: -2px;
   right: -2px;
   border-radius: inherit;
   background-color: var(--theme-color);
   opacity: 0.6;
   z-index: -1;
   -webkit-animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both
      infinite;
   animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
   pointer-events: none;
}
@keyframes btnIconRipple {
   0% {
      border-width: 4px;
      -webkit-transform: scale(1);
      transform: scale(1);
   }

   80% {
      border-width: 1px;
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
   }

   100% {
      opacity: 0;
   }
}
.hero-slide .play-btn{
   margin-right: 15px;
}
.breadcrumb-item,
.breadcrumb-item.active,
.social-list li a {
   font-size: 20px;
   text-transform: uppercase;
   letter-spacing: .08em;
   font-weight: 700;
   font-family: 'Rajdhani', sans-serif;
   color: #000;
   margin-right: 20px;
   padding-right: 20px;
   position: relative;
 }
 .breadcrumb-wrap,
 .social-list {
	position: relative;
	padding: 20px 80px;
	padding-right: 0;
}
.breadcrumb-wrap:after,
 .social-list:after {
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   right: -10000px;
   content: '';
   z-index: -1;
   background: var(--primary-color);
   border-radius: 100px;
 }
 .breadcrumb{
    margin-bottom: 0;
 }
 .breadcrumb-item,
 .breadcrumb-item.active{
	margin-right: 0;
	padding-right: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
	padding-right: 20px;
	color: inherit;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 20px;
}
 .social-list li {
   display: inline-block;
 }
 .social-list li a:after {
   position: absolute;
   top: 50%;
   right: 0;
   content: ".";
   transform: translateY(-50%);
 }
 .breadcrumb-item a:hover,
 .social-list li a:hover {
   color: var(--theme-color);
 }
 .social-list li:last-child a {
   margin-right: 0;
   padding-right: 0;
 }
 .social-list li:last-child a:after {
   display: none;
 }
 .hero-footer {
	position: absolute;
	bottom: 5%;
	z-index: 999;
	width: 100%;
}
.hero-slide .section-content h5 {
	color: #E3E2E2;
	font-size: 26px;
	font-weight: 600;
}
.page-title-area::after,
.page-title-area::before,
.footer-shape::after,
.footer-shape::before,
.hero-slide::after,
.hero-slide::before {
   content: '';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translate(-45%, -50%) rotate(-25deg);
   transform-origin: 90% 50%;
   opacity: .6;
   background: #000;
   height: 45vw;
   width: 100vw;
   border-radius: 600px;
   z-index: -1;
 }
 
.page-title-area::after,
.page-title-area::before{
   transform: translate(-30%, -45%) rotate(-30deg);
}
.page-title-area::before{
   background: var(--theme-color);
   opacity: .9;
}
 .footer-shape::before{
    background-color: var(--theme-color);
    background-image: url(./../img/pattern.jpg);
    background-position: center center;
    opacity: 1;
 }
.page-title-area::after,
.footer-shape::after,
 .hero-slide::after {
	background: none;
	border: 3px solid var(--primary-color);
	top: 51%;
	left: 2%;
}
.footer-shape::after,
.footer-shape::before {
	transform: rotate(25deg);
	transform-origin: 17.5% 0%;
	top: 0;
	left: 50%;
}
.footer-shape::after {
	top: 1%;
	left: 49%;
}

.slick-arrow {
	height: 2.5em;
	width: 2.5em;
	display: inline-grid;
	place-content: center;
	border-radius: 50% 0 50% 50%;
	color: #fff;
	font-size: 20px;
	border: 1px solid #fff;
	background: none;
	margin: 5px;
}
.slick-arrow.slick-next{
   border-radius: 0 50% 50% 50%;
 }
 .black-slider-nav .slick-arrow {
    color: #000;
    border-color: #000;
 }
 
.slick-arrow:hover{
   background: var(--theme-color);
   border-color: Var(--theme-color);
   color: #fff;
 }
 
.slider-nav-counter {
   font-size: 20px;
   font-weight: 700;
   color: #fff;
   font-family: 'Rajdhani', sans-serif;
   padding: 0 40px;
 }
 .slider-nav-counter span {
   font-size: 3em;
 }
.black-slider-nav .slider-nav-counter {
   color: #000;
 }
 
 /* SECTOR */
.sector-item {
   height: 240px;
   display: grid;
   align-items: flex-end;
 }
 .sector-item-bg {
   border-radius: 200px 0 200px 200px;
 }
 .sector-item h5 {
   background: #F3F3F3;
   padding: .8em 2em;
   border-radius: 100px;
   margin-bottom: 20px;
 }
 .sector-shape {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 476px;
	height: 658px;
	mask-image: url(./../img/sector/shape.png);
	-webkit-mask-image: url(./../img/sector/shape.png);
	mask-size: cover;
   -webkit-mask-size: cover;
}
 .sector-content .row > div:nth-child(2n){
    margin-left: 33.33%;
 }
 .sector-content .row > div:nth-child(2n) .sector-item-bg {
   border-radius: 0 200px 200px 200px;
 }
 .section-content .title {
	letter-spacing: .12em;
	margin-bottom: 5px;
   font-weight: 600;
}

.service-time .subtitle {
   margin-bottom: 20px;
   color: var(--heading-color);
 }
 .service-time h5 {
   color: #666666;
 }
 .offer-bx {
   background: var(--primary-color);
   border-radius: 200px 0 200px 200px;
   padding-top: 100%;
 }
 .offer-bx h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: .9;
}
 .offer-bx span {
	font-size: .25em;
	display: block;
}
.section-round-shape {
	padding-top: 100%;
	border-radius: 400px 400px 400px 0;
}
.section-round-shape::after {
	position: absolute;
	left: 5%;
	top: 5%;
	height: 100%;
	width: 100%;
	z-index: 2;
	border: 3px solid var(--primary-color);
	content: '';
	border-radius: inherit;
	opacity: .6;
	z-index: -1;
}


/* COMPANY */
.company-area::before{
   background: #f3f3f3;
}
.company-slide {
   background: #fff;
   padding: 40px;
   padding-bottom: 80px;
   border-radius: 0 130px 130px 130px;
	position: relative;
 }
.company-slider {
   margin-left: -15px;
   margin-right: -15px;
 }
 .company-slide {
	margin-left: 15px;
	margin-right: 15px;
}
 .company-icon {
   height: 130px;
   width: 130px;
   background: #F3F3F3;
   display: inline-grid;
   place-content: center;
   border-radius: inherit;
   padding: 20px;
 }
 .company-slide .circle-icon {
	font-size: 20px;
	position: absolute;
	bottom: 0;
}

.company-content .slick-dots {
   position: relative;
   display: flex;
   flex: 1;
   margin-left: 30px;
 }
.company-content .slick-dots:after{
   height: 3px;
   content: '';
   position: absolute;
   background: #BCBCBC;
   top: 50%;
   transform: translate(0, -50%);
   left: 0;
   right: 0;
   z-index: -1;
 }
 .company-content .slick-dots li {
   background: var(--theme-color);
   height: 15px;
   flex: 1;
   transform-origin: 0 50%;
   transition: .3s ease;
 }
 .company-content .slick-dots li button {
   font-size: 0;
   line-height: 0;
   background: none;
   border: 0;
 }
 .company-content .slick-dots li.slick-active ~ li {
    transform: scaleX(0);
    opacity: 0;
 }
 .company-content {
	margin-right: -28%;
}

/* FIND */
.find-bx {
	padding: 10% 20%;
	background: var(--theme-color);
	border-radius: 0 200px 200px 200px;
   transform-origin: 0 0;
}
.float-input button {
   background: none;
   border: 0;
   font-size: 25px;
   position: absolute;
   right: 3%;
   top: 50%;
   transform: translateY(-50%);
   height: 50px;
   width: 50px;
   display: inline-block;
 }
 .float-input button:hover {
   color: var(--theme-color);
 }
 .find-bx::before {
	position: absolute;
	left: -3%;
	top: -5%;
	height: 100%;
	width: 100%;
	border: 3px solid var(--primary-color);
	content: '';
	border-radius: inherit;
	z-index: -1;
   opacity: .6;
}

/* PRODUCT */
.account-link,
.product-link {
   padding: 15px;
   border: 5px solid #E4E4E4;
 }
 .account-link li,
 .product-link li {
	color: #000000;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Rajdhani', sans-serif;
	padding: .8em 1.2em;
	border-bottom: 1px dashed #BCBCBC;
	position: relative;
	font-size: 22px;
	z-index: 1;
	cursor: pointer;
}
.account-link li:last-child,
.product-link li:last-child {
	border-bottom-width: 0;
}
.account-link li:after,
 .product-link li:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   right: -15%;
   background: var(--primary-color);
   z-index: -1;
   border-radius: 50px 0 50px 50px;
   transition: .3s ease;
   transform: scaleX(0);
   transform-origin: 0 50%;
 }
 .account-link li.active:after,
 .product-link li.active:after {
   transform: scaleX(1);
 }
 .product-item {
	padding: 10px;
	border: 2px solid var(--primary-color);
	border-radius: 0 140px 140px 140px;
	transition: .3s ease;
}
.product-item:hover{
   box-shadow: 0 5px 15px rgba(0,0,0,.08);
   transform: translateY(-10px);
 }
 .product-info h5 {
	font-size: 24px;
	margin-bottom: 10px;
}
.product-img {
	background: #F3F4F4;
	border-radius: 0 50% 50% 50%;
	padding: 20px;
	overflow: hidden;
}
.ratting-star span,
.ratting-star li {
	font-size: 14px;
	display: inline-block;
	color: #ddd;
	margin: .1em;
}
.ratting-star span {
	margin: 0;
}

.ratting-star span.ratted,
 .ratting-star li.ratted {
   color: var(--primary-color);
 }
 .account-address-bx form,
 .account-address-bx.active ul,
 .address-hidden-inner,
 .service-choose-tab,
 .account-tab,
 .product-tab{
   display: none;
   animation: fadeEffect 1s ease;
}
.account-address-bx.active form,
.address-hidden-bx.active .address-hidden-inner,
.service-choose-tab.active,
.account-tab.active,
.product-tab.active{
   display: block;
}
@keyframes fadeEffect{
   0%{opacity: 0;}
   100%{opacity: 1;}
}
.single-shop-tab{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  z-index: 1;
  pointer-events: none;
}
.single-shop-tab.active{
  position: relative;
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}
.product-info .section-content {
	padding: 0 15px;
}
.product-info h4 {
	font-size: 24px;
}


 
/* experience */
.experience-bx {
   padding: 30px;
   position: relative;
   z-index: 1;
 }
 .experience-bx h6 {
   font-size: 18px;
   color: #666666;
   font-weight: 600;
 }
 .experience-bx:after,
 .experience-bx:before {
   content: '';
   height: 40%;
   width: 1px;
   background: #C2C2C2;
   position: absolute;
   right: 0;
   bottom: 7%;
   opacity: 0;
 }
 .experience-bx::before {
   width: 70px;
   height: 1px;
   right: 7%;
   bottom: 0;
 }

 .experience-boxes div:last-child > .experience-bx::after,
 .experience-boxes div:last-child > .experience-bx::before {
	top: 7%;
	bottom: auto;
	right: auto;
   left: 0;
}
 .experience-boxes div:last-child > .experience-bx::before {
	top: 0;
	bottom: auto;
	left: 7%;
}

 .experience-boxes div:last-child > .experience-bx:after,
 .experience-boxes div:last-child > .experience-bx:before,
 .experience-boxes div:first-child > .experience-bx:after,
 .experience-boxes div:first-child > .experience-bx:before {
   opacity: 1;
 }
 .section-round-shape-alt.section-round-shape {
	border-radius: 400px 400px 0 400px;
	margin-bottom: 20px;
}
 .section-round-shape-alt.section-round-shape::after{
    left: -5%;
}


/* brand */
.brand-slide img {
   margin-left: auto;
   margin-right: auto;
 }
 
 /* repair */
.repair-bx:after {
   position: absolute;
   left: 0;
   top: 15%;
   bottom: 0;
   right: 0;
   content: '';
   background: #fff;
   z-index: -1;
 }
 .repair-icon {
	display: inline-grid;
	place-content: center;
	height: 100px;
	width: 100px;
	background: var(--theme-color);
	padding: 18px;
	border-radius: 0 50px 50px 50px;
	z-index: 3;
   color: #fff;
}
 a.repair-icon:hover {
	background: var(--primary-color);
   color: #000;
}
.repair-bx {
	padding: 20px;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
 .repair-bx h4 {
	font-size: 28px;
	margin-bottom: 5px;
}
.text-btn {
   font-size: 20px;
   text-transform: uppercase;
   font-weight: 700;
   font-family: 'Rajdhani', sans-serif;
   color: var(--theme-color);
 }
 .text-btn i {
   margin-left: 3px;
   transition: .3s ease;
 }
 .text-btn:hover i {
   transform: translate(3px);
 }
 .repair-img {
	margin-left: -12%;
	margin-bottom: 5%;
}
.section-title h2 {
	font-size: 60px;
}
.repair-shape {
	width: 40%;
	border-radius: 500px 0 0 500px;
	right: 0;
	left: auto;
}
.repair-shape::after {
	position: absolute;
	left: -3%;
	top: -3%;
	right: -3%;
	bottom: -3%;
	content: '';
	border-radius: inherit;
	border: 3px solid var(--primary-color);
	opacity: .6;
}
.repair-content{
   position: relative;
   z-index: 2;
}

/* testimony */
.testimony-tab.text-center img {
	margin-left: auto;
	margin-right: auto;
}
.testimony-tab {
	padding-top: 100%;
	border-radius: 0 300px 300px 300px;
   position: relative;
   background-image: url(./../img/pattern.jpg);
   background-size: cover;
   background-color: var(--theme-color);
}
.testimony-tab .section-content{
   position: absolute;
	left: 50%;
	top: 50%;
	width: 85%;
	transform: translate(-50%, -50%);
	transition: .3s ease;
}
.testimony-tab p {
   font-size: 26px;
 }
 .testimony-tab h4 {
   font-size: 28px;
   margin-bottom: 0;
 }
 .white-star li.ratted {
   color: #fff;
 }
 .testimony-links {
	padding-right: 40px;
}
.testimony-link {
   border-radius: 50%;
   position: relative;
   display: inline-block;
   margin: 10px 0;
   cursor: pointer;
   border: 0 !important;
 }
 .testimony-link:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   right: 0;
   background: var(--primary-color);
   border-radius: inherit;
   opacity: 0;
   transition: .3s ease;
 }
 .testimony-link.slick-current:after {
   opacity: .85;
 }


/* GALLERY */
.gallery-content{
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
}
.gallery-item{
   width: 25%;
   padding-top: 25%;
   position: relative;
   z-index: 1;
}
.gallery-item > a {
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
   opacity: 0;
	font-size: 28px;
}
.gallery-item:after{
   position: absolute;
   left: 0;
   bottom: 0;
   right: 0;
   top: 0;
   z-index: -1;
   background: var(--theme-color);
   content: '';
   opacity: 0;
   transition: .3s ease;
}
.gallery-item:hover:after{
   opacity: .8;
}
.gallery-item:hover > a{
	transform: translate(-50%, -50%) scale(1);
   opacity: 1;
}
.galery-width2 {
	width: 50%;
	padding-top: 50%;
}
.gallery-item .section-content {
	background: #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 10px;
}
.circle-icon {
	height: 3em;
	width: 3em;
	background: var(--theme-color);
	display: inline-grid;
   place-content: center;
   border-radius: 50%;
	opacity: 1;
   font-size: 30px;
   color: #fff;
   border: 0;
}
.circle-icon:hover{
   color: #fff;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.gallery-item .section-content .circle-icon {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}
.gallery-bg::before{
   background: #f3f3f3;
}
.gallery-bg{
   height: 47%;
   bottom: 0;
   top: auto;
}


/* contact */
.flex-1{
   flex: 1;
}
.contact-form {
	padding: 130px;
	border-radius: 0 350px 350px 350px;
	margin-bottom: -80px;
}
.contact-form .absolute-img {
	transform: translate(50%);
   bottom: 80px;
}
.contact-area .section-content h2 {
   font-size: 60px;
 }
 .contact-area .section-content h5 {
   font-size: 20px;
 }
 .contact-line span {
	font-size: .45em;
	margin-top: 5px;
	display: block;
}
.contact-time i {
	height: 1.6em;
	width: 1.6em;
	background: #fff;
	border-radius: 50%;
	font-size: 50px;
	color: var(--theme-color);
	display: inline-grid;
	place-content: center;
}
 .contact-time li h5 {
	display: flex;
	justify-content: space-between;
   text-transform: uppercase;
}
.contact-form::before {
	position: absolute;
	content: '';
	border: 2px solid var(--primary-color);
	top: -2%;
	left: -2%;
	height: 100%;
	width: 100%;
	border-radius: inherit;
	z-index: -1;
}
.contact-time li h5 span {
	margin-left: 10px;
}

/* ADVICE */
.advice-slider{
   margin-left: -25px;
   margin-right: -25px;
}
.advice-slide{
   margin-left: 25px;
   margin-right: 25px;
}
.advice-slide {
	background: #fff;
	border-radius: 120px 0 120px 120px;
	border: 2px solid var(--primary-color);
}
.advice-slide .title{
   font-weight: 700;
 }
 .advice-bx {
   padding: 70px 40px;
   padding-bottom: 55px;
 }
.advice-slide h5.title {
   font-size: 20px;
   border-bottom: 4px solid var(--primary-color);
   display: inline-block;
 }
 .advice-slide h6.title {
   padding: 20px 10px;
   margin-bottom: 0;
   border-top: 1px solid var(--primary-color);
 }
 .advice-bg-img {
	width: 65%;
	left: 50%;
	transform: translate(-50%);
}
.advice-slide .section-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

 /* footer */
.footer-link li a {
   font-weight: 600;
   color: #D1D1D1;
   font-family: 'Rajdhani', sans-serif;
   position: relative;
   padding-right: 15px;
   margin-right: 15px;
   border-right: 1px solid #383838;
 }
 .footer-link li {
   display: inline-block;
 }
 .footer-link li:last-child a {
   margin-right: 0;
   padding-right: 0;
   border-right: 0;
 }
 .copyright h6 {
   color: #fff;
   font-size: 18px;
   text-transform: uppercase;
 }
 .footer-link li a:hover {
   color: var(--theme-color);
 }
 .footer-item h5 {
	font-size: 26px;
}
.checked-menu li {
   font-family: 'Rajdhani', sans-serif;
   color: #fff;
   font-weight: 600;
   font-size: 18px;
   margin-bottom: 15px;
   display: block;
   padding-left: 18px;
   position: relative;
 }
.checked-menu li a:hover {
   color: var(--primary-color);
 }
 .checked-menu li:before {
   position: absolute;
   left: 0;
   top: 7px;
   content: '';
   border-left: 8px solid var(--primary-color);
   border-top: 6px solid transparent;
   border-bottom: 6px solid transparent;
 }
 .checked-black-menu li{
    color: var(--text-color);
 }
 
.styled-social-link li a {
   font-size: 22px;
   font-weight: 700;
   color: #222;
   font-family: 'Rajdhani', sans-serif;
 }
 .styled-social-link li a i {
   height: 3em;
   width: 3em;
   margin-right: 10px;
   border-radius: 50%;
   background: var(--primary-color);
   display: inline-grid;
   place-content: center;
   font-weight: normal;
 }
 .styled-social-link li {
	display: inline-block;
	margin-right: 30px;
}
 .styled-social-link li:last-child {
   margin-right: 0;
 }
 .styled-social-link:after {
   position: absolute;
   left: 0;
   top: 15%;
   bottom: 15%;
   right: -10000px;
   background: var(--primary-color);
   content: '';
   z-index: -1;
   border-radius: 50px;
 }
 .styled-social-link li a:hover {
   color: var(--theme-color);
 }
 .social-circle li {
	display: inline-block;
}

 
/* humberger menu */
.humberger-bar.active {
	position: fixed;
	top: 15px;
	transform: translateY(0);
 }
 .humberger-bar {
	 height: 30px;
	 width: 30px;
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 cursor: pointer;
	 position: absolute;
	 z-index: 10000;
	 right: 20px;
	 top: 50%;
	 transform: translateY(-50%);
 }
 .humberger-bar span {
	height: 2px;
	width: 25px;
	background: #000;
	display: block;
	margin-bottom: 7px;
	border-radius: 5px;
	transition: 0.3s ease;
}
 .humberger-bar span:last-child {
	margin-bottom: 0px;
 }
 .humberger-bar:hover span {
	background: var(--theme-color);
}
 .humberger-bar.active span {
	background: #000327;
 }
 .humberger-bar.active:hover span {
	background: var(--theme-color);
 }
 .humberger-bar.active span:first-child {
	transform: translate(0, 8px) rotate(45deg);
 }
 .humberger-bar.active span:nth-child(2) {
	transform: translate(50%);
	opacity: 0;
}
 .humberger-bar.active span:last-child {
	transform: translate(0, -10px) rotate(-45deg);
 }
 
 .resonsive-slide {
	width: 350px;
	height: 100vh;
	background: #fff;
	padding: 30px 20px;
	text-align: center;
	padding-top: 20px;
	position: fixed;
	top: 0;
	right: 0;
	margin-right: -350px;
	transition: 0.3s ease-in-out;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
   opacity: 0;
 }
 .resonsive-slide.active {
	margin-right: 0px;
   opacity: 1;
 }
 .responsive-menu ul li a {
	color: #000327;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	display: block;
	padding: 5px;
}
 .responsive-menu ul li a:hover,
 .responsive-menu ul li.active > a,
 .responsive-menu ul li.current > a {
	color: var(--theme-color);
 }
 .responsive-menu {
	margin-bottom: 20px;
 }
 .responsive-menu > img {
	max-width: 200px;
	margin-bottom: 20px;
}
 .responsive-others {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
 }
 .responsive-btn a {
	display: block;
	margin-bottom: 15px;
	font-size: 16px;
	padding: 10px;
 }
 .responsive-links .copyright-text {
	font-size: 16px;
	color: #000;
 }
 .responsive-menu .submenu li a {
	color: #fff;
 }
 .responsive-menu .submenu li a:hover {
	color: var(--theme-color);
 }
 .responsive-menu ul li.has-child > a::after {
	content: "\f107";
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	margin-left: 5px;
	transition: 0.3s ease;
 }
 .responsive-menu ul li.has-child.active > a::after {
	transform: rotate(-180deg);
 }
 .resonsive-slide-overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	background: #000;
	top: 0;
	left: 0;
	z-index: 9998;
	opacity: 0.5;
 }
 .resonsive-slide-overlay {
	height: 100vh;
	width: 100%;
	position: fixed;
	background: #000;
	top: 0;
	left: 0;
	z-index: 9998;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
}
 .resonsive-slide-overlay.active {
	opacity: 0.5;
	pointer-events: all;
 }
 .responsive-others .copyright-text {
	color: #000;
	font-size: 12px;
 }
 .responsive-others .copyright-text a:hover {
	color: #ffffff;
 }
 /* humberger menu end */

 /* about page welcome */
.about-welcome-left .about-welcome-img,
.about-welcome-img {
   border-radius: 6.25em;
 }
.about-welcome-img {
   height: 26em;
   border-top-left-radius: 0;
   padding: 1.8em;
 }
 .about-welcome-left .about-welcome-img {
   border-top-right-radius: 0;
 }
.about-welcome-img {
   height: 26em;
   border-radius: 6.25em;
   border-top-left-radius: 0;
   padding: 1.8em;
 }
 .about-welcome-img .service-time {
   background: #fff;
   display: inline-block;
   padding: 1.8em;
   border-radius: 4.3em;
   border-top-left-radius: 0;
 }
 .about-welcome-right > .section-content {
    padding-left: 10%;
 }

 /* about-experience */
 .about-experience .experience-bx {
	padding: 50px;
}
.about-experience .experience-bx::after,
.about-experience .experience-bx::before {
	content: '';
	position: absolute;
	right: 0;
	top: 30%;
	height: 15%;
	width: 1px;
	background: #CACACA;
	opacity: 1;
}
.about-experience .experience-bx::after {
   top: auto;
   bottom: 30%;   
}
.about-experience div:last-child > .experience-bx::after,
.about-experience div:last-child > .experience-bx::before {
   display: none;
}

/*about repair */
.checked-list li {
   font-size: 18px;
   margin-bottom: .8em;
   padding-left: 1.5em;
   position: relative;
 }
 .checked-list li::before {
   height: 1em;
   width: 1em;
   position: absolute;
   left: 0;
   top: 5px;
   background: var(--theme-color);
   content: '';
   clip-path: polygon(24% 29%, 37% 70%, 100% 0, 100% 38%, 38% 100%, 0% 50%);
 }
 .about-repair .repair-bx {
	padding: 50px;
	padding-top: 0;
}

/* about-offer */
.about-offer-card {
	padding: 2.5em;
   padding-bottom: calc(2.5em - 15px);
   border-radius: 5.6em;
   border-top-right-radius: 0;
}
.about-offer-card::before {
	content: '';
	width: 80%;
	background: var(--theme-color);
	opacity: .9;
	position: absolute;
	padding-top: 80%;
	border-radius: 50%;
	top: 50%;
	transform: translate(-20%, -50%);
	left: 0;
   z-index: -1;
}
.about-offer-card .offer-bx{
   border-radius: 50%;
 }
.about-offer-card .offer-bx h2 {
   font-size: 44px;
 }
 .about-offer-card .offer-bx span {
   font-size: .42em;
 }

 /* service page */
 .service-page-area .company-slide {
	border: 1px solid #D0D0D0;
	margin: 0;
   padding-top: 33px;
   padding-right: 33px;
   padding-left: 33px;
}
 .service-page-area .company-slide p{
    font-size: 16px;
}
.service-page-area .company-icon {
	background: var(--primary-color);
}

.serive-choose-inner,
.service-choose-tab {
   padding: 3.75em;
   border-radius: 7.5em;
   border-top-left-radius: 0;
}
.service-choose-tab {
   height: 28em;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
}

.serive-choose-inner{
   padding: 2.75em;
   padding-bottom: calc(2.75em - 15px);
   background: #fff;
}
.service-choose-link li h6 {
   font-size: inherit;
 }
 .service-choose-link li {
   font-size: 20px;
   margin-bottom: .5em;
   border-radius: 50px;
   background: #fff;
   border-top-right-radius: 0;
   padding: 1em 1.5em;
   transition: .3s ease;
   cursor: pointer;
 }
 .service-choose-link li.active {
   background: var(--primary-color);
 }
 .service-choose-tab{
   display: none;
   animation: fadeEffect 1s ease;
}
.service-choose-tab.active{
   display: flex;
}
.service-testimony-slider .testimony-tabs{
   margin-right: -30px;
   margin-left: -30px;
}
.service-testimony-slider .testimony-tab{
   margin-right: 30px;
   margin-left: 30px;
}
.service-testimony-area .testimony-ratting .ratting-star li {
	font-size: 40px;
}

.serive-offer-bx {
   border: .5em solid var(--primary-color);
 }
 .serive-offer-bx .section-content {
   padding: 5em;
   padding-right: 0;
 }
 .serive-offer-bx .section-content h2 span{ 
    display: block;
    font-size: 1.4em;
 }
 .site-btn-group .site-btn {
   margin: 5px;
 }

 
.service-offer-right {
   display: flex;
   align-items: flex-end;
   padding-bottom: 2em;
 }
.service-offer-right-bg {
   border-radius: 50% 0 0 50%;
 }
 .service-offer-img {
   margin-right: -25%;
 }

 /* single-service-area */
 .single-service-item {
	padding: 2.5em;
	background: #F7D541;
	border-radius: 5em;
	border-top-left-radius: 0;
}
.play-icon {
	border-left: 1.5em solid;
	border-top: .9em solid transparent;
	border-bottom: .9em solid transparent;
	transition: .3s ease;
}

.single-service-offer {
   border: .3em solid var(--primary-color);
   padding: 0 3em;
 }
 .single-service-offer p {
   font-size: 40px;
   line-height: 1;
   color: #222222;
 }
 .man-img {
	margin-top: -10%;
}

 .text-pagination-wrap ul {
	background: var(--primary-color);
	padding: 1.5em 3em;
	display: flex;
	justify-content: space-between;
   position: relative;
}
.text-pagination-wrap ul li a,
.text-pagination-wrap ul::after {
	font-weight: 700;
	color: var(--heading-color);
	font-size: 24px;
   font-family: 'Rajdhani', sans-serif;
}
.text-pagination-wrap ul::after {
	content: "||";
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}
.text-pagination-wrap ul li a:hover{
   color: var(--theme-color);
}
.text-pagination-wrap ul li a:before{
	content: "\f104";
   font-family: "Font Awesome 5 Pro";
   margin-right: .5em;
}
.text-pagination-wrap ul li:last-child a:before{
   display: none;
}
.text-pagination-wrap ul li:last-child a:after{
	content: "\f105";
   font-family: "Font Awesome 5 Pro";
   margin-left: .5em;
}
.service-page-round-play .top-left {
	top: 15%;
}


/* contact page area */

.contact-page-area .service-time {
   padding: 40px;
   border: 2px solid var(--primary-color);
 }
 .theme-icon {
	color: #fff;
	background: var(--theme-color);
}
.contact-info {
   background: var(--primary-color);
   padding: 40px;
   border-radius: 6.5em;
   border-top-left-radius: 0;
 }
.contact-info:after {
   content: '';
   position: absolute;
   right: -50%;
   top: 0;
   bottom: 0;
   left: 0;
   background: inherit;
   border-radius: inherit;
   z-index: -1;
 }
 .contact-info h6 {
   font-size: 22px;
   color: var(--heading-color) !important;
 }
 .contact-page-area .contact-form {
	margin: 0;
	margin-right: -19.2%;
}


/* faq */
.faq-box-title {
	cursor: pointer;
}
.faq-box {
	border-bottom: .13em solid var(--primary-color);
}
.faq-box-title h5 {
	text-transform: uppercase;
	margin: 0;
	transition: 0.3s ease;
	padding: 1.3em 1.3em 1.3em 0;
	position: relative;
}
.faq-box.active .faq-box-title h5 {
	color: var(--theme-color);
}
.faq-box-title h5::after,
.faq-box-title h5::before {
	position: absolute;
	right: 0;
	top: 50%;
	height: .13em;
	width: 0;
	background: #5E5E5E;
	content: '';
	transition: .3s ease;
	width: .9em;
   margin-top: -.05em ;
}
.faq-box-title h5::after{
   transform: rotate(90deg);
}
.faq-box.active .faq-box-title h5::before {
   transform: rotate(90deg);
   opacity: 0;
   background: var(--theme-color);
}
.faq-box.active .faq-box-title h5::after {
   transform: rotate(360deg);
   background: var(--theme-color);
}
.faq-box-body {
   transition: 0.3s ease;
   max-height: 0;
   overflow: hidden;
}
.faq-box-body p {
	color: #6F6F6F;
}
.faq-box-body .section-content {
	text-align: left;
}

.contact-page-map .container{
   max-width: 1590px;
}
.map{
   height: 35em;
}
.contact-page-area .contact-form input,
.contact-page-area .contact-form textarea,
.contact-page-area .contact-form .nice-select {
	filter: drop-shadow(0 5px 15px rgba(0,0,0,.08));
}

/* SHOP */
.shop-filter-item {
   padding: 2.5em 1.25em;
   border-bottom: .18em solid var(--theme-color);
 }
 .shop-filter-item:last-child {
   border-bottom: 0;
 }
 .shop-filter-panel {
	border: .18em solid var(--theme-color);
	border-radius: 4.3em;
	border-top-left-radius: 0;
	background: #fff;
}
 
.shop-filter-category h6 {
   font-size: inherit;
   display: flex;
   justify-content: space-between;
   transition: .3s ease;
 }
 .shop-filter-category li {
	padding: .7em 0;
	font-size: 18px;
	position: relative;
	border-radius: 50px 0 50px 50px;
	cursor: pointer;
	z-index: 1;
}
 .shop-filter-category li:after {
   position: absolute;
   left: -.9em;
   bottom: 0;
   top: 0;
   right: -.9em;
   content: '';
   background: var(--primary-color);
   z-index: -1;
   border-radius: inherit;
   transition: .3s ease;
   opacity: 0;
 }
 .shop-filter-category li.active::after {
   opacity: 1;
 }
 .shop-filter-category li:hover h6 {
   color: var(--theme-color);
 }
 .shop-filter-category li.active:hover h6 {
   color: var(--heading-color);
 }

 
 .shop-filter-list li {
	font-size: 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .3s ease;
	margin-bottom: 15px;
   text-transform: uppercase;
}
.shop-filter-list li:last-child {
	margin-bottom: 0px;
}
.shop-filter-list li:hover h6 {
   color: var(--theme-color);
 }
 .shop-filter-list h6 {
	font-size: inherit;
	flex: 1;
	transition: .3s ease;
}
 .checkbx {
   height: .8em;
   width: .8em;
   border: .16em solid var(--primary-color);
   display: inline-block;
   transition: .3s ease;
   margin-right: 10px;
   position: relative;
 }
 .checkbx:after {
   position: absolute;
   height: 50%;
   width: 50%;
   bottom: 0;
   left: 0%;
   content: '';
   background: #000;
   clip-path: polygon(24% 29%, 37% 70%, 100% 0, 100% 38%, 38% 100%, 0% 50%);
   transition: .3s ease;
   opacity: 0;
 }
 .shop-filter-list li.active .checkbx::after {
	opacity: 1;
	height: 160%;
	width: 170%;
}
 .shop-filter-list li.active .checkbx {
   background: var(--primary-color);
 }

 
 .color-holder {
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	border-radius: 50%;
	border-top-left-radius: 0;
	position: relative;
	overflow: hidden;
}
.color-holder::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	background: #000;
	content: '';
	transform: rotate(25deg);
	transform-origin: 0 50%;
	opacity: .08;
}
.bordered-round-bx::before,
.color-holder::before {
	position: absolute;
	content: "\f058";
	font-family: "Font Awesome 5 Pro";
	color: #fff;
	font-weight: 900;
	font-size: .9em;
	top: 0%;
	left: 50%;
	transform: translate(-50%);
  opacity: 0;
  transition: .3s ease;
}
.bordered-round-bx::before {
	color: var(--primary-color);
	left: auto;
	transform: translate(30%, -30%);
	right: 0;
}
.active > .bordered-round-bx::before,
.active > .color-holder::before {
  opacity: 1;
}
.color-list li,
.size-list li{
  cursor: pointer;
}
.shop-filter-color .color-holder {
	margin-right: 10px;
}
 .shop-filter-color .checkbx {
   margin-left: 10px;
   margin-right: 0;
   border-radius: 50%;
 }
 .shop-filter-color li {
	background: #F6F6F6;
	padding: .85em;
	margin-bottom: .25em;
	font-size: 18px;
	text-transform: capitalize;
}

.shop-page-content h6{
   font-size: 18px;
}

.shop-sort li {
   display: inline-block;
   font-size: 18px;
   padding: .6em;
   background: #F3F3F3;
   transition: .3s ease;
   cursor: pointer;
   margin: 2px;
 }
 .shop-sort li h6 {
   font-size: inherit;
   transition: .3s ease;
 }
 .shop-sort li.active {
   background: var(--primary-color);
 }
 .shop-sort li:hover h6{
    color: var(--theme-color);
 }
 .shop-sort li.active:hover h6{
   color: var(--heading-color);
 }
 
 .shop-view-mode li {
	height: 1.8em;
	width: 1.8em;
	display: inline-grid;
	background: #fff;
	border: .18em solid var(--primary-color);
	place-content: center;
	transition: .3s ease;
	cursor: pointer;
	margin: 2px;
}
 .shop-view-mode li.active {
   background: var(--primary-color);
 }
 .shop-view-mode li,
 .shop-view-mode li.active:hover {
   color: var(--heading-color);
 }
 .shop-view-mode li:hover {
   color: var(--theme-color);
 }


 /* shop-product-list mode active */
.product-item-wrap.list-mode .product-item {
   text-align: left !important;
   display: flex;
   padding: 40px;
 }
 .product-item-wrap.list-mode > .row > div {
   width: 100%;
 }
 .product-item-wrap.list-mode .product-info {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   flex: 1;
 }
 .product-item-wrap.list-mode .product-img {
   margin-bottom: 0;
 }
 .product-item-wrap.list-mode .product-info .section-content {
	padding: 0;
	text-align: left;
}
 .product-action {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding-left: 30px;
   margin-left: 30px;
   border-left: 1px solid #D5D5D5;
 }
 .product-item-wrap.list-mode .product-img {
   margin: -30px 30px -30px -30px;
   width: 30%;
 }
 .product-info-wrap {
	display: flex;
	flex: 1;
	justify-content: center;
}

.shop-prize-range-title {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 .shop-prize-range-value {
   display: flex;
   margin-left: 10px;
 }
 .shop-prize-separator {
	padding: 0 5px;
}
.shop-prize-range h5 {
	font-size: 18px;
}

 .product-item-wrap.list-mode .product-info .ratting-star,
 .product-action,
 .product-item .gray-list{
   display: none;
 }
 .ratting-star,
 .product-item-wrap.list-mode .product-item .gray-list{
   display: block;
   animation: fadeEffect .5s ease;
 }
 .product-item-wrap.list-mode .product-action{
   display: flex;
 }

 .gray-list li h6 {
   color: #999999;
   margin-bottom: 10px;
 }
 .gray-list li:last-child h6 {
   margin-bottom: 0;
 }
 .gray-list li h6 span {
   min-width: 32%;
   display: inline-block;
 }
 .batch {
   text-transform: uppercase;
   color: #2DDE5B;
 }
 .batch h6 {
   color: inherit;
   display: inline-block;
 }
 .batch:before {
   content: '';
   height: 1em;
   width: 1em;
   display: inline-block;
   background: #2DDE5B;
   margin-right: 10px;
   clip-path: polygon(24% 29%, 37% 70%, 100% 0, 100% 38%, 38% 100%, 0% 50%);
 }
 .ratting-wrap h6 {
   color: #999999;
   margin-left: 10px;
 }


 
 /* blog-page area */
.blog-page-title .title {
   border-bottom: .2em solid var(--primary-color);
   display: inline-block;
   font-size: 20px;
 }
 .blog-user img {
   height: 50px;
   width: 50px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 15px;
 }
 .blog-user-activity h5 {
	font-size: 18px;
}
 
.blog-user-activity-count h5 {
	margin-left: 1.2em;
	letter-spacing: .12em;
}
 .blog-user-activity-count h5::before {
   content: '-';
   display: inline-block;
	margin-right: 1.2em;
 }
 .blog-comment-reply,
 .blog-comment-content {
	padding: 30px;
	background: #F3F3F3;
	border-radius: 100px;
	overflow: hidden;
	border-top-left-radius: 0;
}
.blog-comment-reply{
  background: #fff;
  border: 3px solid var(--primary-color);
}
.blog-comment-item .reply-batch {
	padding-right: 2.2em;
}
.fw-600{
  font-weight: 600;
}

 
.speech-bx {
   padding: 60px;
   background: var(--primary-color);
   padding-bottom: calc(60px - 15px);
 }
 .speech-bx p {
	font-size: 30px;
	color: #000000;
	font-weight: 600;
	line-height: 1.46;
	padding-left: .6em;
	border-left: .13em solid;
}
 .speech-bx:after {
   position: absolute;
   bottom: 100%;
   content: '';
   height: 10px;
   width: 70%;
   right: 0;
   z-index: -1;
   background: var(--theme-color);
 }
 .arrow-list li {
	font-size: 18px;
	margin-bottom: 1.1em;
	padding-left: 1.1em;
	position: relative;
}
 .arrow-list li::before {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	left: 0;
	color: var(--theme-color);
}


.blog-ques-list li {
   display: flex;
   margin-bottom: 40px;
 }
.blog-ques-list li:last-child {
   margin-bottom: 0px;
 }
 .serial-no {
   width: 5%;
 }
 .serial-no h4 {
   display: inline-block;
   line-height: 1;
   border-bottom: 5px solid var(--theme-color);
 }
 
.blog-page-user-img {
   padding-top: 100%;
   border-radius: 50%;
   border-top-right-radius: 0;
 }
 .blog-page-user-detail .section-content {
	background: var(--primary-color);
	padding: 50px;
	padding-bottom: calc(50px - 15px);
	border-radius: 120px;
	border-top-left-radius: 0;
}
 .blog-page-user-detail .section-content p {
   color: #000000;
 }
 .blog-page-user-detail .section-content::before {
	content: '';
	right: 100%;
	top: 30px;
	border-top: 1.5em solid var(--primary-color);
	border-left: 1em solid transparent;
	position: absolute;
}


/* cart page */

/* qty */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.qty {
	display: inline-flex;
}
.qty-controler {
	flex-direction: column;
	background: var(--primary-color);
	justify-content: center;
	width: 60px;
	align-content: center;
	line-height: 1;
	border-radius: 0;
	border-bottom-right-radius: 30px;
	transition: .3s ease;
	display: flex;
	align-items: center;
}
.qty input {
	border-color: var(--primary-color);
	border-bottom-right-radius: 0;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
}
.qty input:focus{
   box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
 }
 .qty span {
	cursor: pointer;
	font-size: 18px;
	transition: .3s ease;
	color: var(--heading-color);
	margin: -2px 0;
}
 .qty span:hover {
   color: var(--theme-color);
 }
 .cart-qty .qty input {
	max-width: 120px;
}

 .account-table th,
 .cart-table th {
	text-transform: uppercase;
	border: 0;
	background: var(--primary-color);
   padding: 0;
}
.account-table th,
.cart-table th,
.cart-table td {
	padding: 20px;
}
 .account-table th:first-child,
 .cart-table th:first-child {
    border-radius: 40px 0 0 40px;
}
 .account-table th:last-child,
 .cart-table th:last-child {
    border-radius: 0 0 40px 0;
}
.cart-table .price {
	font-size: 24px;
}
.cart-product-img {
   height: 85px;
   width: 85px;
   border-radius: 50%;
   border-top-right-radius: 0;
   border: 2px solid var(--primary-color);
   display: inline-grid;
   place-content: center;
   padding: 15px;
 }
 .cart-info {
   display: inline-block;
 }
 .account-table table,
 .cart-table table{
    border-color: var(--primary-color);
 }
 .account-table thead tr,
 .cart-table thead tr {
	border-width: 0px;
}
 .account-table tbody tr,
 .cart-table tbody tr {
	border-width: 3px;
}
.cart-info h5 {
   font-size: 28px;
 }
 .cart-info h5 span {
   display: block;
   color: #999999;
   font-size: .65em;
 }
 .price {
	font-size: 32px;
	color: var(--theme-color);
}
.price del {
  font-size: .6em;
  color: #090909;
}

.gray-float-form input {
   background: #FAFAFA;
   font-family: 'Rajdhani', sans-serif;
 }
 .gray-float-form button {
   font-size: 18px;
   position: absolute;
   right: 0;
   height: 100%;
   padding-left: 1.5em;
   padding-right: 1.5em;
 }
 .gray-float-form {
   position: relative;
   z-index: 1;
 }
 .cart-calc-bx {
	border-radius: 133px;
	border: 3px solid var(--primary-color);
	overflow: hidden;
	background: #fff;
	border-top-right-radius: 0;
}
.gray-form input, .gray-form .nice-select, .gray-form textarea {
	background: #FAFAFA;
}
.gray-form .nice-select::after {
	border: 1px solid var(--primary-color);
	background: #fff;
	font-size: 16px;
}
.cart-calc-content h5{
  line-height: 1.667;
  color: #3B3B3B;
}
.cart-calc-list, .cart-calc-content {
	padding: 50px 80px;
}
.cart-calc-content {
   padding-right: 0;
}
.cart-calc-list {
	background: var(--primary-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 130px;
	border-top-right-radius: 0;
}
.cart-calc-list li {
  margin-bottom: 10px;
}
.cart-calc-list li:last-child{
  margin-bottom: 0px;
}
.cart-calc-list li h5 {
  display: flex;
  justify-content: space-between;
}
.cart-calc-list li h5 span {
  width: 50%;
}
.cart-calc-list ul {
	border-bottom: 1px solid #757575;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.cart-calc-list ul:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* single shop */
.section-round-shape-top-right {
	border-radius: 400px 0 400px 400px;
}
.single-shop-slider .section-round-shape-top-right {
	margin-top: 5%;
	margin-left: 5%;
}
.section-round-shape-top-right::after {
	left: -5%;
	top: -5%;
}
.single-shop-link li.site-btn {
	margin: 2px;
	border-radius: 50px;
	border-bottom-right-radius: 0;
	padding: .5em 1.8em;
	background: #fff;
	border: 2px solid var(--primary-color);
}
.single-shop-link li.site-btn.active,
.single-shop-link li.site-btn:hover {
  border-color: var(--theme-color);
  color: #fff;
  background: var(--theme-color);
}

.single-shop-nav {
   display: inline-flex;
   width: auto;
   height: auto;
   align-items: center;
   cursor: pointer;
 }
 .single-shop-nav h6 {
	text-transform: uppercase;
	font-size: inherit;
	transition: .3s ease;
}
 .single-shop-nav-img {
   height: 5em;
   width: 5em;
   padding: .5em;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   background: #F3F4F4;
   border-radius: 50%;
   border-top-right-radius: 0;
   margin-left: 15px;
 }
 .single-shop-nav-img img {
   max-height: 100%;
 }
 .single-shop-nav-next {
   flex-direction: row-reverse;
 }
 .single-shop-nav-next .single-shop-nav-img {
   margin-right: 15px;
   margin-left: 0;
   border-radius: 50%;
   border-top-left-radius: 0;
 }
 .single-shop-nav:hover {
   background: none;
   border-color: transparent;
 }
 .single-shop-nav:hover h6 {
   color: var(--theme-color);
 }

 button.icon:hover,
 a.icon:hover{
    background: var(--theme-color);
    color: #fff;
}
button.icon-alt,
 a.icon-alt {
	background: var(--primary-color);
   color: #000;
}
 .single-shop-slide .icon {
	position: absolute;
	top: 3%;
	right: 8%;
	z-index: 3;
}
 .single-shop-slide .icon:hover {
	background: var(--theme-color);
	color: #fff;
}
.mfp-figure::after {
	background: #fff;
}
.inline-list li {
   display: inline-block;
   margin: 3px;
 }
 .single-shop-info-list .color-holder {
	font-size: 22px;
	border-radius: 50%;
	border-top-right-radius: 0;
}
.bordered-round-bx {
	width: 2.9em;
	border: 2px solid var(--primary-color);
	padding: .4em 0;
	display: inline-grid;
	place-content: center;
	border-radius: .8em;
	border-top-right-radius: 0;
	position: relative;
}
 .single-shop-tag-list {
	border-top: 3px solid var(--primary-color);
}

.single-shop-content {
	padding: 70px;
	border: 5px solid var(--primary-color);
}

.jik-jak-list li {
   font-size: 20px;
   padding: 1.25em 1.75em;
   background: var(--primary-color);
   border-radius: 50px;
   border-top-right-radius: 0;
 }
 .jik-jak-list li h5 {
   font-size: inherit;
 }
 .jik-jak-list li:nth-child(2n) {
   background: #FFF7D4;
 }
 
.shop-kit-img {
   background: #F3F4F4;
   display: grid;
   place-content: center;
 }
 .shop-kit-info {
   background: var(--primary-color);
   text-align: center;
   margin: 0 .6em;
   padding: .8em;
   margin-top: -25px;
   position: relative;
 }

 .shop-kit-slider {
	margin-right: calc(var(--bs-gutter-x)/ -2);
	margin-left: calc(var(--bs-gutter-x)/ -2);
}
 .shop-kit-slide {
	padding-right: calc(var(--bs-gutter-x)/ 2);
	padding-left: calc(var(--bs-gutter-x)/ 2);
}

.retting-preview span {
	font-size: .4em;
	color: #999999;
}

.ratting-full-info .ratting-star li {
   font-size: 25px;
 }
 .ratting-wrap h5 {
   color: #666666;
 }
 
.ratting-progress-wrap > li {
   display: flex;
   align-items: center;
   margin-bottom: 15px;
 }
 .ratting-progress-wrap .progress {
   flex: 1;
   margin: 0 1.5em;
   border-radius: 0;
   background: #F3F3F3;
 }
 .ratting-progress-wrap h6 {
   font-size: 18px;
 }
 .ratting-progress-wrap .progress-bar {
   background: #F7D541;
 }
 .ratting-progress-wrap .ratting-star li {
   font-size: 16px;
   margin: 1px;
 }
 .ratting-progress-wrap > li:last-child {
   margin-bottom: 0;
 }
 .round-ratted-bx {
	border: 1px solid var(--primary-color);
	border-radius: 100px;
	border-top-right-radius: 0;
	transition: .3s ease;
  overflow: hidden;
}
.round-ratted-reply,
.round-ratted-text{
	padding: 30px 90px;
	padding-bottom: 15px;
}
.round-ratted-bx:hover {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.ratting-wrap p {
	font-weight: 500;
	color: var(--heading-color);
}
.reply-batch {
	position: absolute;
	right: 0;
	top: 20px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Rajdhani', sans-serif;
	color: var(--heading-color);
	background: var(--theme-color);
	color: #fff;
	padding: .1em 1.2em;
	border-radius: 50px 0 0 50px;
	font-size: 20px;
  opacity: 0;
  pointer-events: none;
}
.replied .reply-batch {
  opacity: 1;
  pointer-events: all;
}
.selectable-start {
   display: flex;
}
.selectable-start li {
   cursor: pointer;
   font-size: 25px;
   transition: .3s ease;
   margin: 0;
   padding: .2em;
}
.selectable-start:hover li {
   color: var(--primary-color);
}
.selectable-start li:hover ~ li {
   color: #ddd;
}

.page-item:not(:first-child) .page-link {
	margin-left: 0;
}
.page-item:first-child .page-link {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.page-link:focus {
	color: inherit;
	background-color: inherit;
	box-shadow: 0 0;
}
.page-link {
	padding: .35em .85em;
	background: #F3F3F3;
	border: 0;
	font-family: 'Rajdhani', sans-serif;
	color: var(--heading-color);
	font-weight: 700;
	margin: 0 2px;
}
.page-link:hover,
.page-item.active .page-link {
	color: #fff;
	background-color: var(--theme-color);
	border-color: transparent;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
	margin: 0 1.2em;
	border: 2px solid var(--primary-color);
	background-color: transparent;
	border-radius: 0;
}
.page-item:first-child .page-link:hover, 
.page-item:last-child .page-link:hover {
	border-color: var(--theme-color);
  background-color: var(--theme-color);
}

.password-bx {
position: relative;
z-index: 1;
}
.password-bx input {
padding-right: 40px;
}
.password-bx i {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
opacity: .5;
cursor: pointer;
transition: .3s ease;
}

.checkout-login-bx {
  background: var(--primary-color);
  padding: 60px;
  border-radius: 100px;
  border-top-right-radius: 0;
}
.checkout-login-bx p {
  color: #000;
}
.checkout-login-bx .checked-list {
  color: #000;
}
.checkout-login-bx .checked-list li:before {
  background: #000;
}
.border-form input, .border-form textarea {
	border: .2em solid var(--primary-color);
}
.checkout-price .shop-filter-list li {
	text-transform: capitalize;
}

.address-hidden-bx h4 {
  cursor: pointer;
  padding-left: 1.5em;
  position: relative;
}
.address-hidden-bx h4:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 1em;
  width: 1em;
  border: .2em solid var(--primary-color);
  content: '';
  transition: .3s ease;
}
.address-hidden-inner {
  border: .15em solid var(--primary-color);
  padding: 20px;
}
.address-hidden-bx.active h4::before {
  border-width: .35em;
}

.checkout-discount {
  padding: 40px;
  border-radius: 60px;
  border-top-right-radius: 0;
  border: 1px solid var(--primary-color);
}

.checkout-price {
  background: var(--theme-color);
  padding: 40px;
  border-radius: 60px;
  border-top-right-radius: 0;
}

.checkout-price-list li {
  color: #fff;
  margin-bottom: .5em;
}
.checkout-price-list li h5 {
	color: inherit;
	display: flex;
	justify-content: space-between;
}
.checkout-price-list li:last-child {
  padding: .8em 1em;
  color: var(--heading-color);
  background: var(--primary-color);
  border-radius: 50px;
  border-top-right-radius: 0;
  margin-right: -1em;
  margin-left: -1em;
  font-size: 25px;
  margin-top: 1em;
  margin-bottom: 0;
}
.white-list li,
.white-list h6 {
  color: #fff;
}
.white-list li:hover,
.white-list li:hover h6 {
  color: var(--primary-color);
}

/* ACCOUNT */
.account-link .site-btn {
	border-radius: 0;
	width: calc(100% + 40px);
	margin: 10px -20px -20px;
}
.account-dashboard p {
	color: var(--heading-color);
}
.account-dashboard {
	padding-top: 3em;
}
.account-user-info h6 {
  color: #A3A3A3;
}
.account-address-bx .site-btn,
.account-table .site-btn,
.account-user-info .site-btn {
  font-size: 16px;
}
.account-user-img img {
	border-radius: 50%;
}
.account-address-bx {
	border: .18em solid var(--primary-color);
	padding: 3em 2.5em;
	border-radius: 2.5em;
  border-top-right-radius: 0;
	transition: .3s ease;
}
.account-address-bx.active {
	background: var(--primary-color);
}
.account-address-bx .icon {
  position: absolute;
  right: .3em;
  top: .3em;
  font-size: 18px;
}
.account-address-bx li{
  color: #666666;
  margin-bottom: 15px;
}
.account-address-bx li:last-child{
  margin-bottom: 0;
}
.account-address-bx li h5{
  color: inherit;
}
.account-address-bx.active .icon {
  background: #000;
  color: #fff;
}
.account-address-bx.active .icon i::before {
  content: "\f00d";
}
.account-address-bx.active .icon:hover {
  background: var(--theme-color);
}

/* erroe page */
.error-page{
  height: auto !important;
}
.error-page .section-overlay::before {
	background: var(--primary-color);
}
.section-overlay.absolute-bg {
	z-index: -3;
}
.error-page h1 {
	font-size: 300px;
	letter-spacing: -.1em;
	line-height: .7;
}
.error-page .float-input .icon,
.search-popup .float-input .icon {
	height: 2.2em;
	width: 2.2em;
	right: .3em;
}
.border-float-input input {
	border-color: var(--primary-color);
}


/* search-result page */
.search-result-bx {
	background: var(--primary-color);
	padding: 5em;
	border-radius: 8em;
	border-top-right-radius: 0;
}
.float-input-button {
  position: relative;
}
.float-input-button .site-btn {
	position: absolute;
	right: 0;
	height: 100%;
	display: inline-flex;
	align-items: center;
}
.float-input-button input {
  padding-right: 13em;
}
.search-result-bx p {
  color: var(--heading-color);
}
.search-result-item .company-slide {
	background: #F3F3F3;
	padding-right: 25%;
	margin: 0;
}
.search-result-item .company-icon {
  background: #fff;
}
.search-result-item .sector-item-bg {
	padding-top: 170%;
	margin-left: -38%;
	position: relative;
	border-radius: 200px 200px 200px 0;
}
.search-result-detail {
	border-bottom: 2px solid #F3F3F3;
}
.search-result-detail .company-slide .circle-icon {
	left: 10%;
	transform: none;
}

/* our blog */
.blog-item .advice-slide {
	margin-top: -10%;
}
.blog-item .advice-bx {
	padding: 30px 50px;
  padding-bottom: 15px;
}
.blog-item .advice-slide h4 {
	font-size: 26px;
}


/* wishlist */
.wishlist-area .text-btn i {
  font-size: 18px;
  height: 2.2em;
  width: 2.2em;
  margin-right: .6em;
}
.wishlist-area .text-btn {
  color: #3B3B3B;
}
.wishlist-area .text-btn:hover {
  color: var(--theme-color);
}
.wishlist-area .checkbx {
  margin: 0;
}
.wishlist-area .shop-filter-list li {
  display: inline-flex;
  font-size: 22px;
}

.batch-false {
  color: var(--theme-color);
}
.batch-false:before {
  background: var(--theme-color);
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

/* coming soon */
.coming-soon-counter li {
	color: #fff;
	font-size: 58px;
	text-align: center;
	height: 2.5em;
	width: 2.5em;
	display: inline-grid;
	place-content: center;
	background: var(--theme-color);
	border-radius: 50%;
	border-top-right-radius: 0;
	margin: .1em;
}
.coming-soon-counter li h3 {
	font-size: inherit;
	margin: 0;
}
.coming-soon-counter li h3 span {
  font-size: .35em;
  display: block;
  text-transform: uppercase;
}
.coming-soon .section-overlay::before{
  background: var(--theme-color);
}
.coming-soon::before{
  background: #000;
  opacity: .8;
}
.coming-soon{
  height: auto !important;
  min-height: 100vh;
}
.coming-soon::after, .coming-soon::before {
	transform: translate(-25%, -60%) rotate(-30deg);
}


/* search */
.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	height: 100%;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: .3s ease;
}
.search-popup-overlay::before {
	background: var(--primary-color);
	opacity: .95;
}
.black-icon {
  background: #000;
  font-size: 25px;
}
a.black-icon:hover, button.black-icon:hover {
  background: var(--theme-color);
}
.sm-btn {
	font-size: 14px ;
}
.search-popup.active {
  opacity: 1;
  pointer-events: all;
}
.search-popup-content {
  transition: .5s ease;
  transform-origin: 50% 0;
  transform: scale(.5);
}
.search-popup.active .search-popup-content {
  transform: scale(1);
}

/* login */
.text-link {
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
  color: var(--heading-color);
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
}
.login-inner {
  padding: 4em 5em;
}
.login-bx {
  border: 3px solid var(--primary-color);
}
.login-inner{
  border-radius: 120px;
  border-top-right-radius: 0;
}
.login-bx {
  border-radius: 125px;
  border-top-right-radius: 0;
}


/* forget-pass */
.forged-pass-inner {
	width: 100%;
	padding: 17%;
}
.forget-pass-bx {
  border-radius: 50%;
  border-top-left-radius: 0;
}
.forget-pass-bx:after {
  left: -3%;
  top: -3%;
}
.forget-pass-bx p {
  font-size: 20px;
}

/* coupon */
.inline-group > *{
  display: inline-block;
}
.inline-group > * + *{
  margin-left: var(--bs-gutter-x);
  margin-top: var(--bs-gutter-y);
}
.coupon-item{
  padding-left: 10%;
}
.coupon-item {
	padding-left: 8%;
}
.coupon-bg:after {
  content: '';
  position: absolute;
  top: 2%;
  bottom: 2%;
  z-index: -1;
  width: 100%;
  border-top: 3px dashed #fff;
  border-bottom: 3px dashed #fff;
}
.coupon-img {
	text-align: center;
	height: 535px;
  padding: 5% 15% 5% 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.coupon-img-bg{
  mask: url(./../img/coupon/shape.png);
  mask-size: cover;
  height: auto;
  padding-top: 83%;
  top: 50%;
  transform: translateY(-50%);
}
.coupon-img .absolute-img {
	max-height: none;
	left: 47%;
	width: 100%;
}
.coupon-bg{
	width: 77%;
}
.coupon-logo {
	display: inline-block;
	background: #fff;
	padding: 2% 4%;
	border-radius: 100px;
	border-top-right-radius: 0;
}
.circle-dots {
	width: 56px;
	background-size: 100% auto;
	transform: translate(-50%);
}
.coupon-item .section-content {
	padding: 8% 0;
}


/* gallery */
.gallery-page-link button {
  font-size: 14px;
  margin: 0 2px;
  margin-bottom: 6px;
}
.gallery-page-link {
  text-align: center;
}
.gallery-page-content {
	display: flex;
	flex-wrap: wrap;
	margin-right: -2%;
}
.gallery-page-content .gallery-item{
  width: 23%;
  padding-top: 23%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.gallery-page-content .galery-width2 {
	width: 48%;
	padding-top: 48%;
}
.gallery-page-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 99;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.gallery-page-overlay.active {
  opacity: 0.5;
  pointer-events: all;
}
.close-slide {
  position: absolute;
  right: 15px;
  top: 15px;
  transition: 0.3s ease;
}
.close-slide:hover {
  color: var(--theme-color);
}