:root {
	--color-limed-spruce: #3f4f5b;
	--color-spicy-pink: #7c676d;
	--color-salt-box: #6d6168;
	--color-granny-smith: #7d9e9d;
	--color-santa-fe: #ae6b5a;
	--color-dark-bunker: #101115;
	--color-bright-gray: #383c4a;
	--color-white: #fff;
}

* {
	box-sizing: border-box;
}

body {
	background: linear-gradient(270deg, #151206 0%, var(--color-limed-spruce) 100%);

}

@import url('https://fonts.cdnfonts.com/css/sofia-sans');
@import url('https://fonts.cdnfonts.com/css/noto-serif-kannada');
@import url('https://fonts.cdnfonts.com/css/kalnia');

.body__bg_gradient {
	/*background: var(--color-limed-spruce);*/
	/*background: linear-gradient(0deg, var(--color-salt-box) 0%, var(--color-limed-spruce) 100%);*/
}

section {
	position: relative;
}

.logo-set {
	max-width: 40%;
}

.hero {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 100px;
}

@media (max-width: 768px) {
	.hero {
		flex-wrap: wrap;
		gap: 5px;
	}
}

.hero__title {
	max-width: 100%;
}

.hero__title h1 {
	text-transform: uppercase;
	font-size: 65px;
	font-family: 'Gloock', sans-serif;
	color: var(--color-dark-bunker);
	letter-spacing: 2px;
	font-weight: normal;
	display: flex;
	flex-direction: column;
}

@media (max-width: 768px) {
	.hero__title {
		width: 100%;
	}

	.hero__title h1 {
		font-size: 22px;
	}
}

.title__bg_grandient {
	color: var(--color-granny-smith);
	background: -webkit-linear-gradient(0deg, #ffed00b0 0%, #fbba00a8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.span__before_dot {
	color: var(--color-white);

}

.span__before_dot::before {
	display: inline-block;
	content: ' ';
	width: 7ch;
	height: 70px;
	border-radius: 30px;
	margin-right: 15px;
	background: transparent;
	background-image: radial-gradient(white 25%, transparent 0), radial-gradient(white 25%, transparent 0);
	background-size: 7px 7px;
	background-position: 5px 11px;
	opacity: 0.3;
}

@media (max-width: 768px) {
	.span__before_dot::before {
		display: none;
	}
}

.hero__image {
	max-width: 40%;
}

@media (max-width: 768px) {
	.hero__image {
		max-width: 100%;
		margin-top: 20px;
	}
}

.hero__image_img {
	height: 450px;
	border-top-right-radius: 150px;
	overflow: hidden;
}

.hero__image_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right;
	/*filter: grayscale(30%) sepia(20%);*/
}

.img__after_dot {
	width: 100%;
	height: 50px;
	background: transparent;
	background-image: radial-gradient(white 25%, transparent 0), radial-gradient(white 25%, transparent 0);
	background-size: 7px 7px;
	background-position: 5px 9px;
	opacity: 0.2;
}

a {
	text-decoration: none;
}

.link a {
	text-transform: uppercase;
	/*font-family: 'Sofia Sans Condensed', sans-serif;*/
	font-size: 20px;
	letter-spacing: 8px;
	color: white;
	display: flex;
	align-items: center;
	gap: 20px;
}

.link {
	position: absolute;
	left: 0;
	z-index: 300;
	left: -3%;
	top: 80%;
}

@media (max-width: 768px) {
	.link {
		position: static;
	}
}

.link__arrow {
	background-color: var(--color-bright-gray);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	padding-left: 5px;
	font-weight: bold;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	position: relative;
	transform: translate(0);
	transition: transform 0.3s ease;
}

.link__title {
	transition: all 0.3s ease;
}

.link:hover .link__arrow {
	transform: translate(10px);
}

.link:hover .link__title {
	letter-spacing: 7px;
}

.link__arrow::before,
.link__arrow::after {
	display: block;
	content: ' ';
	width: 45px;
	height: 45px;
	border-radius: 100%;
	border-right: 1px solid white;
	position: absolute;
	left: 4px;
	opacity: 0.2;
	transition: all 0.3s ease;
}

.link__arrow::after {
	left: 10px;
}

.link:hover .link__arrow::after,
.link:hover .link__arrow::before {
	opacity: 0;
	left: 0px !important;
}

/**** template base codepen ****/
body {
	margin: 0;
}

.section__codepen {
	/*height: 100vh;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	/*justify-content: center;*/
	/*overflow: scroll;*/
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

@media (max-width:768px) {
	.logo-set {
		max-width: 75%;
	}

}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.social-item {
	width: 80px;
	height: 80px;
	background-color: #fff;
	text-align: center;
	line-height: 80px;
	font-size: 35px;
	margin: 10px auto;
	display: block;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	border: 1px solid #fff;
	z-index: 1;
}

.social-item a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.social-item a .icon {
	color: #ffffff;
	transition: .5s;
	position: relative;
	z-index: 3;
}

.social-item:hover a .icon {
	color: #fff;
	transform: rotateY(360deg);
}

.social-item:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
	z-index: 1;
}

.social-item:hover:before {
	top: 0;
}

/* Assign colors via custom classes */
.facebook {
	background: #3b5999;
}

/*.twitter {
			background: #55acee;
		}*/

.linkedin {
	background: #0077b5;
}

.google {
	background: #dd4b39;
}

.instagram {
	/*background: #e4405f;*/
	background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

.youtube {
	/*background: #e4405f;*/
	background: #ac131a;
}

@media (max-width:768px) {
	.social-item {
		width: 65px;
		height: 65px;
	}

	.social-item {
		line-height: 65px;
	}
}

/*google review */

hr {
	margin: 20px 0px;
}

p {
	text-align: center;
}

.google-button {
	display: block;
	margin: 15px auto;
	width: 100%;
	max-width: 270px;
	padding: 10px 10px 10px 50px;
	border: 2px solid #ffffff;
	border-radius: 50px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	line-height: 20px;
	color: #ffffff;
	background: url(../img/new-google-favicon-512.webp) no-repeat left 20px center / 40px 40px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-animation: wiggle 2s ease-in infinite;
	-moz-animation: wiggle 2s ease-in infinite;
	-o-animation: wiggle 2s ease-in infinite;
	animation: wiggle 2s ease-in infinite;
}

.google-button:hover {
	color: #ffffff;
	background-color: #4285F4;
	background-image: url(../img/new-google-favicon-512.webp);
}

.google-button strong {
	font-size: 18px;
	display: block;
}

.google-button-map {
	display: block;
	margin: 15px auto;
	width: 100%;
	max-width: 270px;
	padding: 10px 10px 10px 50px;
	border: 2px solid #ffffff;
	border-radius: 50px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	line-height: 20px;
	color: #ffffff;
	background: url(../img/map.webp) no-repeat left 20px center / 40px 40px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-animation: wiggle 2s ease-in infinite;
	-moz-animation: wiggle 2s ease-in infinite;
	-o-animation: wiggle 2s ease-in infinite;
	animation: wiggle 2s ease-in infinite;
}

.google-button-map:hover {
	color: #ffffff;
	background-color: #4285F4;
	background-image: url(../img/map.webp);
}

.google-button-map strong {
	font-size: 18px;
	display: block;
}

@-webkit-keyframes wiggle {

	0%,
	20%,
	100% {
		background-position: left 20px center;
	}

	5% {
		background-position: left 15px center;
	}

	10% {
		background-position: left 20px center;
	}

	15% {
		background-position: left 25px center;
	}
}

@-moz-keyframes wiggle {

	0%,
	20%,
	100% {
		background-position: left 20px center;
	}

	5% {
		background-position: left 15px center;
	}

	10% {
		background-position: left 20px center;
	}

	15% {
		background-position: left 25px center;
	}
}

@-o-keyframes wiggle {

	0%,
	20%,
	100% {
		background-position: left 20px center;
	}

	5% {
		background-position: left 15px center;
	}

	10% {
		background-position: left 20px center;
	}

	15% {
		background-position: left 25px center;
	}
}

@keyframes wiggle {

	0%,
	20%,
	100% {
		background-position: left 20px center;
	}

	5% {
		background-position: left 15px center;
	}

	10% {
		background-position: left 20px center;
	}

	15% {
		background-position: left 25px center;
	}
}

/*call button css */

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 3%;
	bottom: 7rem;
	background: #fbb700;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	font-size: 2rem;
}

.call-buton .cc-calto-action-ripple:hover i {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
/*
@-webkit-keyframes cc-calto-action-ripple {
	0% {
		-webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
		box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
		box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	}
}

@keyframes cc-calto-action-ripple {
	0% {
		-webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
		box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	}

	100% {
		-webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
		box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	}
}*/

/*whatsapp button */
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 2rem;
	right: 3%;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}


/*catalogue button */
.catalogue {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 13rem;
	right: 3%;
	background-color: #d35325;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 1.6rem;
	box-shadow: 2px 2px 3px #fff;
	z-index: 100;
}

/*.my-float {
	margin-top: 16px;
}*/