@charset "utf-8";

/*************** DEFAULT CSS ***************/
@font-face {
	font-family: 'Futura Std';
	src: url('../fonts/FuturaStd-Book.eot');
	src: url('../fonts/FuturaStd-Book.eot?#iefix') format('embedded-opentype'),
		url('../fonts/FuturaStd-Book.woff2') format('woff2'),
		url('../fonts/FuturaStd-Book.woff') format('woff'),
		url('../fonts/FuturaStd-Book.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Std';
	src: url('../fonts/FuturaStd-Heavy.eot');
	src: url('../fonts/FuturaStd-Heavy.eot?#iefix') format('embedded-opentype'),
		url('../fonts/FuturaStd-Heavy.woff2') format('woff2'),
		url('../fonts/FuturaStd-Heavy.woff') format('woff'),
		url('../fonts/FuturaStd-Heavy.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Std';
	src: url('../fonts/FuturaStd-ExtraBold.eot');
	src: url('../fonts/FuturaStd-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/FuturaStd-ExtraBold.woff2') format('woff2'),
		url('../fonts/FuturaStd-ExtraBold.woff') format('woff'),
		url('../fonts/FuturaStd-ExtraBold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Std';
	src: url('../fonts/FuturaStd-Medium.eot');
	src: url('../fonts/FuturaStd-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/FuturaStd-Medium.woff2') format('woff2'),
		url('../fonts/FuturaStd-Medium.woff') format('woff'),
		url('../fonts/FuturaStd-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Std';
	src: url('../fonts/FuturaStd-Light.eot');
	src: url('../fonts/FuturaStd-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/FuturaStd-Light.woff2') format('woff2'),
		url('../fonts/FuturaStd-Light.woff') format('woff'),
		url('../fonts/FuturaStd-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

:root {
	--body-font: 'Futura Std', sans-serif;
	--body-font-size: 16px;
	--body-color: #000;
	--primary-color: #663c65;
	--secondary-color: #c49a6d;
	--blue-color: #0c62a9;
	--black: #000;
	--white: #fff;


}

body {
	font-family: var(--body-font);
	font-size: var(--body-font-size);
	font-style: normal;
	line-height: normal;
	font-weight: 500;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	font-optical-sizing: auto;
	background-image: url(../images/bg1.png);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

html {
	scroll-behavior: smooth;
}

/* Lenis Smooth Scroll */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0 0 30px 0;
	clear: left;
	padding: 0;
	line-height: 24px;
}

ul {
	padding: 0px;
	margin: 0 0 25px;
}

ul li {
	list-style: none;
}

/******* Headings Style *******/
h1 {
	font-size: 42px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: normal;
}

hr {
	margin: 40px 0 60px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	width: 100%;
	position: relative;
}

img {
	border: 0;
	max-width: 100%;
}

a img {
	border: 0;
}

/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
	width: 100%;
	height: 100%;
	background-image: url(../images/starzia-final-logo.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 280px;
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

/*************** COLUMS AND ROWS ***************/
main {
	position: relative;
}

.row {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.justify-content-center {
	justify-content: center;
}

.space-between {
	justify-content: space-between;
}

.justify-content-flex-end {
	justify-content: flex-end
}

.section-spacing {
	padding: 100px 0;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;
}

.clearfix {
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	display: block;
}

.container {
	width: 1400px;
	margin: 0 auto;
}

.fullwidth {
	width: 100%;
	display: block;
}

.two-col {
	flex: 0 0 48%;
}

.three-col {
	flex: 0 0 31%;
}

.four-col {
	flex: 0 0 22%;
}

section {
	width: 100%;
	display: block;
	position: relative;
}

aside {
	flex: 0 0 25%;
	margin: 0;
	padding: 0;
}

summary {
	flex: 0 0 70%;
	margin: 0;
	padding: 0;
}

.list {
	padding: 0px;
	margin: 0 0 25px;
	display: flex;
	width: 100%;
	flex-direction: column;
}

.list li {
	list-style: none;
	color: #3a4455;
	padding-left: 22px;
	margin-bottom: 6px;
	line-height: 24px;
	position: relative;
}

.list li:after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border: 2px solid var(--primary-color);
	left: 0px;
	top: 8px;
	border-radius: 50px;
}

.list li a {
	color: #3a4455;
}

.text-center {
	text-align: center;
}

.scrollwrap {
	width: calc(50vw + 680px);
	overflow: hidden;
}

.scrollwrap-left {
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}

.gap-1 {
	gap: 1%
}

.gap-2 {
	gap: 2%
}

.gap-3 {
	gap: 3%
}

.gap-4 {
	gap: 4%
}

.gap-5 {
	gap: 5%
}

.gap-10,
.gap-20,
.gap-30,
.gap-40,
.gap-50,
.gap-60,
.gap-70,
.gap-80,
.gap-90,
.gap-100 {
	display: flex;
	width: 100%;
	height: 10px;
}

.gap-20 {
	height: 20px;
}

.gap-30 {
	height: 30px;
}

.gap-40 {
	height: 40px;
}

.gap-50 {
	height: 50px;
}

.gap-60 {
	height: 60px;
}

.gap-70 {
	height: 70px;
}

.gap-80 {
	height: 80px;
}

.gap-90 {
	height: 90px;
}

.gap-100 {
	height: 100px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-25 {
	margin-bottom: 25px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-35 {
	margin-bottom: 35px;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-b-45 {
	margin-bottom: 45px;
}

.m-b-50 {
	margin-bottom: 50px;
}

.button-style a,
.button-style-span {
	position: relative;
	background-color: var(--primary-color);
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	padding: 16px 56px 16px 25px;
	border-radius: 50px;
	display: inline-block;
}

.button-style a:after,
.button-style-span:after {
	color: var(--white);
	content: "\f061";
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	right: 20px;
	position: absolute;
	top: 12px;
	line-height: 28px;
	border-radius: 50px;
	text-align: center;
	transition: .3s ease-in-out;
	transform: rotate(1deg);
	font-size: 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.button-style a:hover,
.button-style-span:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

.button-style a:hover:after,
.button-style-span:after {
	transform: rotate(328deg);
}

/*************** PAGE CSS ***************/
header {
	height: 100px;
	display: flex;
	align-items: center;
	background-color: var(--white);
	top: -100px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}


.header-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.menu-toggle {
	width: 30px;
	height: 20px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	display: none;
}

.menu-toggle span {
	/* display: block;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transition: all 0.3s ease; */
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Side Menu Overlay */
.side-menu {
	position: fixed;
	right: 15px;
	bottom: 90px;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu.is-scrolling {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.side-menu.active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.menu-inner {
	background: rgb(255, 255, 255, .98);
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.side-menu ul {
	margin: 0;
	padding: 0;
}

.side-menu li {
	margin-bottom: 10px;
	list-style: none;
}

.side-menu li:last-child {
	margin-bottom: 0;
}

.side-menu li:nth-child(1) {}

.side-menu li:nth-child(2) {
	padding-left: 20px;
}

.side-menu li:nth-child(3) {
	padding-left: 38px;
}

.side-menu li:nth-child(4) {
	padding-left: 38px;
}

.side-menu li:nth-child(5) {
	padding-left: 20px;
}

.side-menu li:nth-child(6) {}


.side-menu a {
	font-size: 17px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.side-menu a:hover,
.side-menu a.active {
	color: var(--secondary-color);
}

.side-menu a.active .diamond-bullet {
	transform: rotate(45deg) scale(1.2);
}

.diamond-bullet {
	width: 15px;
	background-image: url(../images/shape.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	display: inline-block;
	flex-shrink: 0;
	height: 15px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.logo {
	position: absolute;
	left: 50%;
	top: auto;
	transform: translateX(-50%);
}

.right-logo img {
	width: 57px;
}

.slider-home {
	height: 89vh;
	display: flex;
	align-items: center;
	background-color: var(--white);
}

.slider-wrapper {
	text-align: center;
}

.slider-img {
	margin-bottom: 40px;
	transform: scale(1.05);
	/* Slight scale to allow for parallax movement room */
}

.slider-img img {
	/* transition removed to prevent jerking with JS parallax */
}

.slider-caption h1 {
	font-size: 36px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 5px;
}

.slider-caption h5 {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
}

.intro {
	padding: 100px 0px;
	/* height: 100vh; */
	padding-top: 0px;
}

.intro-wrapper {
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.head-cap {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 900;
	color: var(--secondary-color);
	letter-spacing: 2px;
}

.head-cap-line {
	position: relative;
	background-image: url(../images/shape.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: bottom 32px center;
	padding-top: 120px;
	text-align: center;
}

.head-cap-line:after {
	position: absolute;
	content: '';
	top: 0px;
	height: 80px;
	width: 1px;
	background-color: var(--blue-color);
	left: 50%;
	/* transform: translateX(-50%); */
	margin-left: -.5px;
}

.heading {
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 3px;
}

.intro-wrapper h6 {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 3px;
}

.intro-wrapper h3 {
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	border-top: 1px solid var(--secondary-color);
	border-bottom: 1px solid var(--secondary-color);
	padding: 18px 0px;
	letter-spacing: 4px;
	margin-bottom: 0px;
	margin-top: 60px;
}

.services {
	padding: 100px 0px;
}

.services-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 2%;
}

.service-left {
	flex: 0 0 27.965%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-box:after {
	position: absolute;
	content: '';
	width: 283px;
	height: 98px;
	background-image: url(../images/shape-left.png);
	top: 12px;
	right: 0px;
	background-repeat: no-repeat;
}

.service-box {
	position: relative;
	padding: 0 20px 0 0;
}



.service-box h4 {
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
}



.service-box-center {
	text-align: center;
	flex: 0 0 40%;
}


.service-right .service-box {
	padding: 0 0 0 20px;
	text-align: right;
}

.service-right .service-box:after {
	position: absolute;
	content: '';
	background-image: url(../images/shape-right.png);
	right: auto;
	left: 0;
}

.why-starzia {
	padding: 100px 0px;
}

.why-starzia-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.why-starzia-left {
	flex: 0 0 50%;
	text-align: center;
	background-image: url(../images/shape-02.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 95%;
	padding: 236px 0px;
}

.why-starzia-right {
	flex: 0 0 49%;
}

.line-subheading {
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	border-top: 1px solid var(--secondary-color);
	border-bottom: 1px solid var(--secondary-color);
	padding: 18px 0px;
	letter-spacing: 4px;
	margin-bottom: 0px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.gallery {
	padding: 100px 0px;
	padding-top: 0px;
}

.glry-box {
	border: 1px solid #e9e9e9;
	padding: 20px;
}

/*************** FOOTER CSS ***************/
footer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(245, 250, 252, 0.65) 100%);
	padding: 100px 0px 5px;
}

.footer-top {
	position: relative;
	padding-bottom: 100px;
}

.footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 25px 2%;
	position: relative;
	z-index: 1;
}

.footer-contact-info {
	flex: 0 0 50%;
}

.footer-head {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.vertical-line {
	width: 1px;
	height: 80px;
	background-color: var(--blue-color);
	margin: 0 auto 15px;
}

.diamond-icon {
	color: var(--secondary-color);
	font-size: 14px;
	margin-bottom: 10px;
}

.footer-head .head-cap {
	font-size: 12px;
	color: var(--secondary-color);
	letter-spacing: 2px;
	margin-bottom: 10px;
	font-weight: 900;
}

.footer-head .heading {
	color: var(--black);
}

.address {
	text-align: center;
	margin-bottom: 35px;
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 35px;
}

.contact-methods {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}

.contact-item {
	text-align: center;
}

.contact-item .label {
	display: block;
	font-size: 12px;
	color: #666;
	margin-bottom: 12px;
	font-weight: 700;
}

.contact-item .value {
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-direction: row-reverse;
	text-align: right;
}

.contact-item .value-email {
	flex-direction: row;
	text-align: left;
}

.icon-wrap {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex: 0 0 50px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-links a {
	width: 38px;
	height: 38px;
	border: 1px solid #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 16px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.footer-form {
	flex: 0 0 48%;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 25px;
}

.textarea-span {
	grid-column: span 2;
	height: 120px !important;
}

.form-grid .wpcf7-form-control-wrap:last-child {
	grid-column: span 2;
}

.footer-bottom {
	padding: 25px 0;
	border-top: 1px solid #f0f0f0;
	margin-top: 165px;
	position: relative;
}

.footer-bottom-wrap {
	display: flex;
	justify-content: space-between;
}

.contact-item a h6 {
	margin-bottom: 0px;
	font-size: 20px;
	font-weight: 500;
	color: var(--black);
}

.contact-item a h6 span {
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
	display: block;
}

.footer-bottom-wrap p {
	margin-bottom: 0px;
	font-size: 16px;
	font-weight: 500;
}

.footer-bottom-wrap p a {
	color: var(--black);
}

.footer-img {
	position: absolute;
	bottom: 0px;
	right: 15%;
	z-index: 0;
	line-height: 0;
}


.fixed-chat-links-r-b {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 9
}

.whatsapp-chat-box {
	position: relative;
}

.whatsapp-chat-box h5 {
	right: 45px;
	opacity: 0;
	font-size: 14px;
	margin: 6px 0 0;
	line-height: 18px;
	z-index: 0;
	color: #424242;
	padding: 10px 10px 8px;
	position: absolute;
	/* font-weight: 500; */
}

.whatsapp-chat-box h5 {
	width: 158px;
	top: -8px;
	background-color: #ededed;
	border-radius: 5px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, .2);
	font-weight: 500;
}

.whatsapp-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2db742;
	border-radius: 50%;
	-moz-border-radius: 50%;
	box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
	-webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
	-moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
	z-index: 1;
	position: relative;
	width: 50px;
	height: 50px;
}

.whatsapp-icon i {
	color: var(--white);
	font-size: 29px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.whatsapp-chat-box:hover h5 {
	right: 52px;
	opacity: 1
}

.whatsapp-chat-box:hover .whatsapp-icon i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}








.stone-elmnt {
	position: absolute;
	left: 20%;
	top: 7%;
	z-index: -1;
}

.stone-elmnt img {
	animation: stoneFloat 8s ease-in-out infinite;
	/* transition removed to prevent jerking with JS parallax */
}

.stone-elmnt-1 {
	left: 15%;
	top: 10%;
}

.stone-elmnt-2 {
	left: 10%;
	top: 32%;
}

.stone-elmnt-2 img {
	animation-duration: 10s;
	animation-delay: -2s;
}

.stone-elmnt-3 {
	left: auto;
	right: 10%;
	top: auto;
	bottom: 35%;
}

.stone-elmnt-3 img {
	animation-duration: 7s;
	animation-delay: -4s;
}

.stone-elmnt-4 {
	left: auto;
	right: 18%;
	top: auto;
	bottom: 15%;
}

.stone-elmnt-4 img {
	animation-duration: 9s;
	animation-delay: -1s;
}

.stone-elmnt-5 {
	top: auto;
	bottom: 13%;
	left: 5%;
}

.stone-elmnt-6 {
	right: 4%;
	left: auto;
	top: 48%;
}

.stone-elmnt-7 {
	left: auto;
	right: 38%;
	top: auto;
	bottom: 10%;
}

.stone-elmnt-7 img {
	animation-duration: 7s;
	animation-delay: -4s;
}

.stone-elmnt-8 {
	left: 5%;
	top: 15%;
}

.stone-elmnt-9 {
	right: 5%;
	top: 10%;
	left: auto;
}

.stone-elmnt-10 {
	left: 8%;
	bottom: 10%;
	top: auto;
}

.stone-elmnt-11 {
	right: 12%;
	bottom: 15%;
	top: auto;
	left: auto;
}

.stone-elmnt-12 {
	left: 10%;
	top: 14%;
}

.stone-elmnt-13 {
	left: 12%;
	top: 28%;
}

.form-grid .wpcf7-form-control-wrap:nth-child(05) {
    grid-column: span 2;
    height: 120px !important;
}



@keyframes stoneFloat {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(3deg);
	}
}


/*************** table style ***************/
.responsive-table {
	overflow-x: auto;
}

.table-style {
	border-collapse: collapse;
	width: 100%;
}

td,
th {
	border: 1px solid #ddd;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

tr:hover {
	background-color: #ddd;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: var(--primary-color);
	color: var(--white);
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	height: 55px;
	padding: 8px 15px;
	background-color: var(--white);
	display: block;
	border: 1px solid #e5e5e5;
	margin: 0 0 10px 0;
	color: #262626;
	font-size: 14px;
	font-weight: 500;
}

textarea.fieldset,
textarea {
	height: 140px;
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0 5px 0 0;
	display: inline-block;
	color: var(--white);
	font-size: 22px;
	cursor: pointer;
	vertical-align: top;
	padding: 14px 32px 15px;
	text-align: center;
	background-color: var(--primary-color);
	text-transform: uppercase;
	border-radius: 0;
	font-weight: 500;
	letter-spacing: 3px;
}

.sendbutton:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

::-webkit-input-placeholder {
	color: #262626 !important;
}

:-moz-placeholder {
	color: #262626 !important;
}

::-moz-placeholder {
	color: #262626 !important;
}

:-ms-input-placeholder {
	color: #262626 !important;
}

/*************HOVER EFFECT*******/
.hover-effect {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}

.hover-effect i {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white);
	position: absolute;
	left: 50%;
	top: -100px;
	z-index: 1;
	line-height: 50px;
	text-align: center;
	margin: 0 0 0 -25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
	top: 50%;
	margin: -25px 0 0 -25px;
}

.hover-effect:hover i:hover {
	background-color: var(--secondary-color);
}

.hover-effect img {
	display: block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	width: 100%;
}

.hover-effect:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}






/* Back to top styles */
.progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: "\f30c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	color: #84275f;
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: #84275f;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}



/************************************* 1330px *************************************/
@media only screen and (min-width: 800px) {
	.side-menu {
		opacity: 0;
		visibility: hidden;
	}

	header.smaller .side-menu.is-scrolling {
		opacity: 1;
		visibility: visible;
	}

}

/************************************* 1330px *************************************/
@media only screen and (max-width: 1450px) {
	.container {
		width: 95%;
	}

	.scrollwrap {
		width: 100% !important;
		padding: 0;
	}
}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
	.slider-home {
		height: 650px;
	}

	.service-box:after {
		background-size: 100%;
		width: 60%;
		height: 115px;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
	.container {
		width: 90%;
	}

	.service-left {
		order: 2;
	}

	.service-box-center {
		order: 1;
	}

	.service-right {
		order: 3;
	}

	.services-wrapper {
		flex-direction: column;
	}

	.service-box:after {

		width: 283px;
	}

	.why-starzia-wrapper {
		flex-direction: column;
	}

	.why-starzia-left {
		padding: 0px 0 25px;
	}

	.footer-wrap {
		flex-direction: column;
		align-items: stretch;
	}

	.footer-wrap {
		gap: 40px
	}

	.footer-img {

		right: -208px;
	}

	.glry-box {

		padding: 10px;
	}
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {

	.side-menu {
		visibility: hidden;
		opacity: 0;
	}

	.side-menu.is-scrolling,
	.side-menu.active {
		visibility: visible;
		opacity: 1;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.logo {
		position: static;
		transform: none;
	}

	.header-wrap {

		justify-content: space-between;
		align-items: center;
	}

	/* header.smaller {
		position: fixed;
		width: 100%;
		left: 0px;
		top: 0px;
		z-index: 100;
		box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
	} */

	.logo img {
		width: 135px;
	}

	.right-logo img {
		width: 50px;
	}

	.header-right {

		gap: 22px;
	}

	header {
		height: 90px;
	}

	.menu-inner {
		background: #fff;
		padding: 20px;

		border: 1px solid #f0f0f0;

	}

	.side-menu {
		right: 15px;
		bottom: 90px;
		top: auto;
	}

	.slider-caption h1 {
		font-size: 26px;
	}

	.slider-caption h5 {
		font-size: 18px;
	}

	.heading {
		font-size: 26px;
	}

	.intro-wrapper h6,
	.intro-wrapper h3,
	.line-subheading,
	.contact-item a h6 {
		font-size: 18px;
	}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

	.two-col,
	.three-col,
	.four-col,
	aside,
	summary {
		flex: 0 0 100%;
		margin: 0 0 25px 0;
	}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
	.gap-50 {
		height: 25px;
	}

	.gap-100 {
		height: 50px;
	}

	.spinner {
		background-size: 200px;
	}

	.footer-img {

		opacity: .5;
	}

	.contact-methods {
		flex-direction: column;
	}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	.form-grid .fieldset {
		grid-column: span 2;
	}

	.intro-wrapper h6,
	.intro-wrapper h3,
	.line-subheading,
	.contact-item a h6 {
		font-size: 16px;
	}

	.slider-caption h1 {
		font-size: 22px;
	}

	.slider-caption h5 {
		font-size: 16px;
	}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}