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

* {

	margin: 0px;

	padding: 0px;

	box-sizing: border-box;

}

body {

	font-family: 'Open Sans', sans-serif;

	overflow-x: hidden;

}

:root {

 --blue-color: #2d65b0;

 --red-color: #b81f36;

}

.nav-wrapper {

	width: 100%;

	max-width: 1540px;

	margin: 0px auto;

}

.wrapper {

	width: 100%;

	max-width: 1540px;

	margin: 0px auto;

	padding: 0 3.5%;

}

/* header */

.site-header {

	position: relative;

	width: 100%;

	background: #fff;

	z-index: 1000;

}

.site-header::after {

	position: absolute;

	content: "";

 --size: 60px;

	width: var(--size);

	height: var(--size);

	border-radius: 50%;

	background-color: var(--blue-color);

	right: -35px;

	top: -25px;

	box-shadow: 0px 0px 1px 10px #b3c7e2;

}

.header-main {

	padding: 20px 3.5%;

	display: flex;

	align-items: center;

	justify-content: space-between;

}

.site-logo img {

	width: 100%;

	max-width: 160px;

}

.site-nav {

	display: flex;

	align-items: center;

	gap: 40px;

	list-style: none;

}

.site-nav li a {

	text-decoration: none;

	color: #000;

	font-weight: 700;

	font-size: 16px;

}

.nav-btn {

	padding: 13px 25px;

	color: #fff !important;

	font-weight: 700 !important;

	background-color: var(--red-color);

	transition: all 0.4s;

	border-radius: 5px;

	font-size: 14px !important;

}

.nav-btn:hover {

	background-color: var(--blue-color);

}

.rd-text {

	color: var(--red-color);

}

.blue-text {

	color: var(--blue-color);

}

/* header */





/* Banner */

.banner {

	min-height: 100vh;

	display: flex;

	align-items: center;

	margin-top: -50px;

	padding: 150px 0px;

}

.banner-main {

	display: flex;

	align-items: center;

	gap: 20px;

}

.banner-left {

	width: calc(40% - 20px);

}

.banner-left h1 {

	font-size: 20px;

  color: #000;

  font-weight: 800;

  line-height: 1.1;

  text-transform: uppercase;

  margin: 0 0 0 6px;

}

.banner-right {

	width: calc(60% - 20px);

}

.banner-left h2 , .banner-left h1  {

	font-size: 20px;

	color: #000;

	font-weight: 800;

	line-height: 1;

	text-transform: uppercase;

}

.gradient-text {

	font-size: 66px;

	font-weight: 800 !important;

	background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%);

	-webkit-background-clip: text;

	-webkit-text-fill-color: transparent;

}

.banner-left .gradient-text {

	font-size: 100px;

	margin: 10px 0 0 0;

	text-transform: capitalize;

}

.banner-left p {

	margin: 25px 0px 25px 0px;

	font-size: 24px;

	line-height: 1.7;

	width: 100%;

}

.red-p {

	color: var(--red-color);

	font-weight: 700 !important;

}

.blue-p {

	color: var(--blue-color);

	font-weight: 700 !important;

}

.banner_imgbox {

	position: relative;

	z-index: 10;

	text-align: right;

}

.banner_imgbox video {

	width: 100%;

	mask-image: url(../images/mask-white.png);

	mask-size: 600px;

	mask-repeat: no-repeat;

	-webkit-mask-image: url(../images/mask-white.png);

	-webkit-mask-size: 600px;

	-webkit-mask-repeat: no-repeat;

	mask-position: right;

}

.shape {

	background: linear-gradient(45deg, var(--red-color) 0%, var(--blue-color) 100%);

	animation: morph 8s ease-in-out infinite;

	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

	height: 480px;

	transition: all 1s ease-in-out;

	width: 480px;

	z-index: -1;

	position: absolute;

	top: 50%;

	right: 0;

	transform: translateY(-50%);

}

 @keyframes morph {

 0% {

 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

 background: linear-gradient(45deg, var(--blue-color) 0%, var(--red-color) 100%);

}

 50% {

 border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;

 background: linear-gradient(45deg, var(--red-color) 0%, var(--blue-color) 100%);

}

 100% {

 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

 background: linear-gradient(45deg, var(--blue-color) 0%, var(--red-color) 100%);

}

}

.banner-right {

	position: relative;

}

.round-img {

	position: absolute;

	top: 120px;

	z-index: 0;

	right: 0;

	animation: round-moving 15s linear infinite alternate-reverse;

}

 @keyframes round-moving {

 from {

 transform: rotateY(0deg);

}

to {

	transform: rotateY(360deg);

}

}

.round-img img {

	width: 100%;

	max-width: 650px;

}

.rocket img {

	width: 100%;

	max-width: 80px;

}

.rocket {

	animation: updown 2s linear infinite alternate-reverse;

	position: relative;

}

 @keyframes updown {

 0% {

 left: 0px;

 top: 0px;

}

 100% {

 left: 60px;

 top: -50px;

}

}

/* Banner */





/* Digitally Enhanched */

.digitally_enhanched {

	padding: 180px 0px;

	background-color: #f1f1f1;

	display: flex;

	align-items: center;

}

.dig_main {

	display: flex;

	align-items: center;

	gap: 50px;

}

.dig_left {

	width: calc(60% - 25px);

}

.dig_right {

	width: calc(40% - 25px);

}

.dig_right p {

	font-size: 18px;

	line-height: 2;

	font-weight: 500;

}

.dig_left {

	position: relative;

}

.dots-img {

	position: absolute;

	right: 30px;

	top: -100px;

}

.dots-img img {

	width: 100%;

	max-width: 400px;

}

.dig_right {

	position: relative;

}

.bulb {

	position: absolute;

	top: -100px;

	right: 0;

}

.bulb::after {

	position: absolute;

	content: "";

	background-color: #2d65b0;

	width: 0px;

	height: 0px;

	border-radius: 50%;

	left: 24px;

	top: 22px;

	box-shadow: 0px 0px 20px 7px #2d65b0;

	animation: shadoweffect 1.5s linear infinite alternate;

}

 @keyframes shadoweffect {

 0% {

 transform: scale(0);

 opacity: 1;

 box-shadow: none;

}

 25% {

 transform: scale(2);

 opacity: 0.6;

}

 75% {

 transform: scale(3);

 opacity: 0.8;

}

 100% {

 transform: scale(4);

 opacity: 1;

}

}

.bulb img {

	width: 100%;

	max-width: 50px;

}

/* Digitally Enhanched */





/* web Categories */



/* web-ategories */



.web-categories {

	padding: 50px 0px;

	padding-top: 100px;

}

.categories-main {

	display: flex;

	gap: 5px;

	margin-top: -123px;

}

.categories-box {

	width: calc(33.3% - 5px);

	display: flex;

	flex-direction: column;

}

.cat-head {

	background-color: #e6c7cc;

	text-align: center;

	padding: 20px 0px;

	border-bottom: 3px solid #b81f36;

}

.cat-content {

	background-color: #f1d2d7;

	padding: 20px;

	height: calc(100% - 62px);

	padding-top: 30px;

	padding-bottom: 50px;

}

.categories-blue-box .cat-head {

	background-color: #cad5e4;

	border-bottom: 3px solid #2d65b0;

}

.categories-blue-box .cat-content {

	background-color: #d5e0ef;

}

.cat-content p {

	text-align: center;

	margin-bottom: 20px;

	line-height: 1.7;

}

.cat-head h4 {

	font-size: 22px;

	font-weight: 700;

}

.categories {

	line-height: 2;

	font-weight: 600;

}

/* web Categories */





/* quality */

.qua_trust {

	padding: 130px 0px;

}

.quality_main {

	text-align: center;

}

.quality_main h2 {

	font-size: 36px;

	color: #000;

	font-weight: 800;

	line-height: 1.2;

	margin-bottom: 30px;

	text-transform: uppercase;

}

.quality_main h2 .gradient-text {

	font-size: 100px;

	margin: 10px 0 0 0;

	text-transform: capitalize;

}

.quality_main p {

	font-size: 18px;

	line-height: 1.7;

	font-weight: 500;

	max-width: 800px;

	margin: 0px auto;

}

.quality_main {

	position: relative;

}

.dots-2 {

	position: absolute;

	right: -20px;

	top: -50px;

}

.dots-2 img {

	width: 100%;

	max-width: 100px;

}

/* quality */





/* brand builder */



.brand-builders {

	background-color: #2d65b0;

	padding: 80px 0px;

}

.brands-main {

	display: flex;

	align-items: center;

	gap: 20px

}

.brand-left {

	width: calc(60% - 10px);

}

.brand-right {

	width: calc(40% - 10px);

}

.brand-right h2 {

	font-size: 36px;

	color: #000;

	font-weight: 800;

	line-height: 1.2;

	margin-bottom: 30px;

	text-transform: uppercase;

	text-align: end;

}

.brand-span {

	color: #fff;

	font-size: 100px;

	margin: 10px 0 0 0;

	font-weight: 800 !important;

	text-transform: capitalize;

}

.brand-left {

	position: relative;

}

.builders_imgbox {

	position: relative;

	z-index: 10;

}

.builders_imgbox img {

	width: 100%;

	max-width: 700px;

	mask-image: url(../images/mask-new.png);

	mask-size: 600px;

	mask-repeat: no-repeat;

	-webkit-mask-image: url(../images/mask-new.png);

	-webkit-mask-size: 600px;

	-webkit-mask-repeat: no-repeat;

}

.round-img-white {

	position: absolute;

	bottom: 0;

	z-index: 1;

}

.round-img-white img {

	width: 100%;

	max-width: 520px;

	transform: scale(1.1);

}

.builder-shape {

	background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);

	animation: morph 8s ease-in-out infinite;

	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

	height: 400px;

	transition: all 1s ease-in-out;

	width: 500px;

	z-index: 1;

	position: absolute;

	top: 0;

	left: 0;

}

 @keyframes morph {

 0% {

 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

 background: linear-gradient(45deg, var(--red-color) 0%, var(--red-color) 100%);

}

 50% {

 border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;

 background: linear-gradient(45deg, var(--red-color) 0%, var(--red-color) 100%);

}

 100% {

 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

 background: linear-gradient(45deg, var(--red-color) 0%, var(--red-color) 100%);

}

}

.we-have {

	position: absolute;

	top: 0;

	right: -50px;

	z-index: 5;

}

.text {

	position: absolute;

	z-index: 10;

	top: 60px;

	left: 100px;

	color: #fff;

}

.text p {

	font-size: 32px;

	font-weight: 700;

	line-height: 1.1;

	color: #fff;

}

.footer-top {

	background-color: #222;

	padding: 40px 0px;

	padding-top: 60px;

}

.ftop-main {

	display: flex;

	gap: 20px;

}

.ftop-box {

	width: calc(33.3% - 20px);

}

.ftop-box h2 {

	font-size: 54px;

	color: #fff;

	font-weight: 800;

}

.ftop-box h5 {

	color: #fff;

	font-size: 35px;

	font-weight: 800;

}

.ftop-box p {

	font-size: 16px;

	color: #fff;

}

.ftop-box p a {

	color: #fff;

	text-decoration: none;

}

.ftop-down {

	margin: 25px 0;

}

.ftop-down p {

	font-size: 18px;

	color: #fff;

	font-size: 16px;

}

.ftop-down p a {

	color: var(--red-color);

	font-weight: 800;

	text-decoration: none;

}

.ftop-down p a span {

	color: var(--blue-color);

}

.goodfirmlogos {

	margin: 20px 0 0 0;

	display: flex;

	gap: 10px;

}

.goodfirmlogos img {

	width: 200px;

	height: 70px;

}

.ftrbtm {

	background: #000;

	padding: 40px 0;

}

.ftrbtmTop {

	display: flex;

	gap: 160px;

}

.ftrbtmcol {

	width: calc(33.3% - 20px);

}

.ftrbtmcol h5 {

	color: #b81f36;

	font-size: 20px;

	margin-bottom: 15px;

}

.ftrbtmcol p {

	font-size: 16px;

	line-height: 28px;

	color: #fff;

}

.ftrbtmcol ul {

	padding: 0;

	margin: 0;

}

.ftrbtmcol ul li {

	list-style: none;

	font-size: 16px;

	line-height: 28px;

}

.ftrbtmcol ul li a {

	color: #fff;

	text-decoration: none;

	transition: ease-in-out .2s;

}

.ftrbtmcol ul li a:hover {

	color: #2d65b0;

}

.companycol ul {

	display: flex;

	gap: 0px 10px;

	flex-wrap: wrap;

}

.companycol ul li {

	width: calc(50% - 5px);

}

.custcopyright {

	width: 100%;

	display: flex;

	justify-content: space-between;

	margin: 30px 0 0 0;

	padding-top: 40px;

	border-top: 5px solid rgba(255, 255, 255, .2);

}

.custcopyright p {

	color: rgba(255, 255, 255, .5);

	font-size: 16px;

	line-height: 26px;

}

.custcopyright ul {

	display: flex;

	gap: 20px;

	padding: 0;

	margin: 0;

}

.custcopyright ul li {

	list-style: none;

}

.custcopyright ul li a {

	color: #fff;

	width: 40px;

	height: 40px;

	border: 1px solid #ddd;

	display: inline-block;

	line-height: 38px;

	text-align: center;

	font-size: 18px;

	transition: ease-in-out .2s;

}

.custcopyright ul li a:hover {

	background: #2d65b0;

	color: #fff;

}

.site-header::before {

	position: absolute;

	top: -15px;

	right: -30px;

	z-index: -1;

	content: '';

	width: var(--size);

	height: var(--size);

	box-shadow: 0 0 0 0 rgba(45, 101, 176, .1);

	border-radius: 100%;

	opacity: 0;

	-webkit-animation: sdb03 3s infinite;

	animation: sdb03 3s infinite;

	box-sizing: border-box;

 --size: 60px;

}

 @-webkit-keyframes sdb03 {

 0% {

 opacity: 0;

}

 30% {

 opacity: 1;

}

 60% {

 box-shadow: 0 0 0 60px rgba(45, 101, 176, .1);

 opacity: 0;

}

 100% {

 opacity: 0;

}

}

 @keyframes sdb03 {

 0% {

 opacity: 0;

}

 30% {

 opacity: 1;

}

 60% {

 box-shadow: 0 0 0 60px rgba(45, 101, 176, .1);

 opacity: 0;

}

 100% {

 opacity: 0;

}

}

/* brand builder */



.custbtnmain button {

	width: 190px;

	border: 0;

	padding: 0;

	background: transparent;

	cursor: pointer;

}

.ear-left-outer, .ear-right-outer {

	fill: #919191;

}

.ear-left-inner, .ear-right-inner {

	fill: #6D6D6D;

}

.eye-right-outer, .eye-left-outer, .nostril-right-outer, .nostril-left-outer, .body {

	fill: #AAAAAA;

}

.eye-right-inner, .eye-left-inner {

	fill: #FFFFFF;

}

.nostril-right-inner, .nostril-left-inner {

	fill: #8C8C8C;

}

.freckle {

	fill: #7C7C7C;

}

.tongue {

	fill: var(--red-color);

}

.tooth-left, .tooth-right {

	fill: #b81f36;

}

.eye-left-pupil, .eye-right-pupil {

	background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%) !important;

	fill: #2d65b0;

}

.link {

	font-family: 'Roboto', sans-serif;

	font-weight: 400;

	font-size: 13px;

	color: #ffffe3;

	text-decoration: none;

	position: absolute;

	bottom: 20px;

	right: 20px;

	border: 2px solid #335067;

	padding: 10px 14px;

	border-radius: 4px;

	transition: background 0.2s;

}

.link:hover {

	background: #243a4a;

}

/*******************/



.innerbanner, .innermain {

	width: 100%;

	position: relative;

}

.innermain {

	z-index: 3;

	text-align: center;

	padding: 150px 0;

}

.innerbanner::after {

	content: "";

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	z-index: 2;

	background-image: linear-gradient(270deg, #1565c0, #e93e3a) !important;

	background-size: 400% 400%;

	animation: gradAnimation 10s ease infinite;

	opacity: .8;

	transition: background .3s, border-radius .3s, opacity .3s;

}

.innerbanner {

	background: url(../images/homebanner.jpg);

	background-repeat: repeat;

	background-size: auto;

}

.innermain h1 {

	color: #fff;

	font-weight: 300;

	font-size: 42px;

}

.innermain h1 span {

	font-weight: 700;

}

.innermain p {

	font-size: 15px;

	color: #fff;

	font-weight: 300;

	text-transform: uppercase;

}

.custcontact {

	width: 100%;

	display: inline-block;

	padding: 40px 0 0;

}

.contactusbox {

	width: 100%;

	float: left;

	text-align: center;

	border: 2px solid #ddd;

	min-height: 200px;

	padding: 20px;

	margin: 0 0 30px;

}

.icons {

	width: 100%;

	float: left;

	margin: 0 0 10px;

}

.contactusbox i {

	font-size: 50px;

	margin: 0 0 10px;

	color: #000;

}

.contactusbox h5 {

	width: 100%;

	float: left;

	font-weight: 600;

	color: #000;

}

.contactusbox p {

	font-size: 15px;

	line-height: 26px;

	font-weight: 300;

	color: #000;

}

.contactusbox p a {

	color: #000;

	text-decoration: none;

}

.contactusboxrow {

	display: -ms-flexbox;

	display: flex;

	-ms-flex-wrap: wrap;

	flex-wrap: wrap;

	margin-right: -15px;

	margin-left: -15px;

}

.contactusboxCol {

	-ms-flex: 0 0 33.333333%;

	flex: 0 0 33.333333%;

	max-width: 33.333333%;

	position: relative;

	width: 100%;

	min-height: 1px;

	padding-right: 15px;

	padding-left: 15px;

}

.innerpageCntmn {

	width: 100%;

}

.innerpageCntmn {

	padding: 50px 0;

}

.aboutpg h2 {

	font-size: 40px;

	color: #c32145;

	font-weight: 300;

	margin-bottom: 20px;

}

.aboutpg h2 span {

	font-weight: 700;

	color: #2c64b0;

}

.cntForm {

	margin: 40px 0 0;

}

.form-group {

	margin-bottom: 1rem;

}

.form-control {

	display: block;

	width: 100%;

	height: calc(2.25rem + 2px);

 padding: .375rem .75rem;

	font-size: 1rem;

	line-height: 1.5;

	color: #495057;

	background-color: #fff;

	background-clip: padding-box;

	border: 1px solid #ced4da;

 border-radius: .25rem;

	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

	border-radius: 0;

}

.cntForm textarea {

	height: 150px;

	resize: none;

}

.custombtn {

	display: inline-block;

	vertical-align: middle;

	transform: translateZ(0);

	box-shadow: 0 0 1px transparent;

	-webkit-backface-visibility: hidden;

	backface-visibility: hidden;

	-moz-osx-font-smoothing: grayscale;

	position: relative;

	line-height: normal;

	background: #ba1439;

	padding: 16px 40px;

	color: #fff;

	font-size: 18px;

	text-transform: uppercase;

	border: none;

	cursor: pointer;

}

.contactup {

	text-align: center;

}

.contactup p {

	margin-bottom: 15px;

}

.contactup h6 {

	font-size: 14px;

	line-height: 24px;

	font-weight: normal;

}

.contactrow {

	display: -ms-flexbox;

	display: flex;

	-ms-flex-wrap: wrap;

	flex-wrap: wrap;

	margin-right: -15px;

	margin-left: -15px;

}

.contactrowmain {

	-ms-flex: 0 0 50%;

	flex: 0 0 50%;

	max-width: 50%;

	position: relative;

	width: 100%;

	min-height: 1px;

	padding-right: 15px;

	padding-left: 15px;

}

.contactrowmainfull {

	-ms-flex: 0 0 100%;

	flex: 0 0 100%;

	max-width: 100%;

	padding-right: 15px;

	padding-left: 15px;

}

.text-center {

	text-align: center;

}

.custmap {

	width: 100%;

}

.custmap iframe {

	width: 100%;

	height: 300px;

	border: 1px solid #ddd !important;

}

/************************/

:root {

 --inter: 'Inter', sans-serif;

 --playfair: 'Playfair Display', serif;

 --sora: 'Sora', sans-serif;

 --font-awesome: "Font Awesome 6 Pro";

 --text-color: #A0A0A6;

 --bc: #A0A0A645;

 --line-height: 25px;

 --body-font-size: 16px;

 --body-bg: #0D0C1C;

 --page-bg: #131225;

 --btn-bg: #68F2A0;

 --Linear-01: linear-gradient(42deg, #E9F950 -1.07%, #55F4C4 -1.06%, #BAE906 104.1%);

}

.custwhatwedohead {

	display: flex;

	gap: 20px;

	align-items: flex-end;

	justify-content: space-between;

	margin-bottom: 30px;

}

.custwhatwedolft {

}

.custwhatwedoRt a {

	width: 120px;

	display: inline-block;

	text-decoration: none;

}

.custwhatwedoRt a {

	font-size: 15px;

}

.custwhatwedolft h5 {

	font-size: 54px;

	color: #000;

	font-weight: 600;

	line-height: 1.2;

}

.custwhatwedolft h2 {

	font-size: 54px;

	color: #000;

	font-weight: 600;

	line-height: 1.2;

}

.custwhatwedoheadbox {

	flex-wrap: wrap;

	gap: 20px;

	display: flex;

	margin-bottom: 100px;

	;

}

.service__single {

	background-clip: padding-box;

	box-sizing: border-box;

	position: relative;

	border: solid 2px transparent;

	border-radius: 1.25em;

	width: calc(25% - 15px);

}

.service__single:before {

	content: "";

	position: absolute;

	top: 0;

	right: 0;

	bottom: 0;

	left: 0;

	z-index: -1;

	margin: -2px;

	border-radius: inherit;

	background: var(--Linear-01);

	opacity: 0;

	-webkit-transition: opacity 0.3s ease-in;

	-moz-transition: opacity 0.3s ease-in;

	-ms-transition: opacity 0.3s ease-in;

	-o-transition: opacity 0.3s ease-in;

	transition: opacity 0.3s ease-in;

}

.link-btn {

	height: 3.125rem;

	width: 3.125rem;

	text-decoration: none;

	background: var(--body-bg);

	display: flex;

	justify-content: center;

	align-items: center;

	border-radius: 3.125rem;

	color: #fff;

	-webkit-transition: all 0.3s ease-in;

	-moz-transition: all 0.3s ease-in;

	-ms-transition: all 0.3s ease-in;

	-o-transition: all 0.3s ease-in;

	transition: all 0.3s ease-in;

}

.service__single:hover .meta-linkbtn .link-btn {

	background: var(--btn-bg);

	color: var(--body-bg);

}

.service__single:hover .meta-linkbtn .link-btn i {

	-webkit-transform: rotate(0);

	-ms-transform: rotate(0);

	transform: rotate(0);

}

.service__single:hover::before {

	opacity: 1;

}

.service__single--box {

	padding: 1.25rem;

	background: #1A1929;

	border-radius: 1.25rem;

}

.service__single--box .icon {

	margin-bottom: 1.25rem;

	height: 2rem;

	width: 2rem;

	position: relative;

}

.service__single--box .icon img {

	position: absolute;

	height: 100%;

	width: 100%;

	object-fit: cover;

}

.service__single--box-meta {

	display: flex;

	align-items: center;

	justify-content: space-between;

}

.service__single--box-meta .meta-text {

	display: flex;

	flex-direction: column;

	color: var(--text-color);

}

.service__single--box-meta .meta-text a {

	font-weight: 600;

	color: #fff;

 margin-bottom: .425rem;

	font-family: var(--sora);

	text-decoration: none;

}

.service__single--box-meta .meta-text span {

	font-family: var(--inter);

}

.custourprojects {

	flex-wrap: wrap;

	gap: 20px;

	display: flex;

	margin-bottom: 100px;

}

.custourprojectsbox {

	width: calc(33% - 10px);

	position: relative;

	padding: 35px;

	/* background: #ddd; */

	box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;

	border-radius: 30px;

}

.custourprojectsbox img {

	width: 100%;

}

.custourprojectsbox .meta-linkbtn {

	position: absolute;

	bottom: 45px;

	right: 45px;

	text-align: right;

}

.mouth-back {

	position: relative;

}

.mouth-back:before {

	position: absolute;

	content: "Read More";

	color: #fff;

	top: 0px;

	left: 0px;

	font-size: 30px;

}

/* RSB */



footer {

	position: fixed;

	bottom: 0;

	width: 100%;

	left: 0;

}

main.main {

	margin-bottom: var(--height);

	position: relative;

	z-index: 100;

	background: #fff;

}

.ftop-box a {

	transition: all 0.3s;

}

.ftop-box a:hover {

	color: var(--red-color);

}

.designage_top {

	display: flex;

	justify-content: center;

	align-items: baseline;

}

.designage_top_box {

	width: 33.3%;

	text-align: center;

	position: relative;

	padding: 120px 40px;

	transition: all 0.3s;

}

.desi_img {

	margin-bottom: 20px;

	position: relative;

	z-index: 1;

}

.desi_img img {

	display: block;

	width: 100%;

	max-width: 60px;

	height: 60px;

	margin: 0px auto;

}

.hvimgsm {

	display: none !important;

}

.designtext {

	position: relative;

	z-index: 1;

}

.designtext h5 a {

	color: #000;

	font-size: 32px;

	font-weight: 600;

	line-height: 1.6;

	text-decoration: none;

	text-transform: capitalize;

}

.designtext p {

	margin: 5px 0px;

	font-size: 16px;

	color: #1b252e;

	font-weight: 400;

	line-height: 1.7;

}

.ono_bubbles {

	position: absolute;

	width: 142px;

	height: 152px;

	pointer-events: none;

	bottom: -100px;

	right: 0;

}

.designage_top_box::after {

	position: absolute;

	content: "";

	width: 100%;

	height: 100%;

	background-color: var(--red-color);

	left: 0;

	top: 0;

	border-radius: 50%;

	transform: scale(0);

	transition: all 0.3s;

	pointer-events: none;

}

.bubble1 {

 --size: 50px;

	width: var(--size);

	height: var(--size);

	background-color: var(--red-color);

	border-radius: 50px;

	position: absolute;

	opacity: 0;

	transform: scale(0.6) translate(-100px, 30px);

	transition: all 0.5s;

}

.bubble2 {

	position: absolute;

 --size: 30px;

	width: var(--size);

	height: var(--size);

	background-color: var(--red-color);

	right: 0;

	border-radius: 50%;

	transition: all 0.5s;

	opacity: 0;

	transform: scale(0.6) translate(-50px, 30px);

}

.bubble3 {

	position: absolute;

 --size: 70px;

	width: var(--size);

	height: var(--size);

	background-color: var(--red-color);

	right: 0;

	bottom: 20px;

	border-radius: 50%;

	opacity: 0;

	transform: scale(0);

	transition: all 0.6s;

}

.designage_top_box:hover:after {

	transform: scale(1);

}

.designage_top_box.active .bubble1 {

	opacity: 1;

	transform: scale(1) translate(0px, 0px);

}

.designage_top_box.active .bubble2 {

	opacity: 1;

	transform: scale(1) translate(0px, 0px);

}

.designage_top_box.active .bubble3 {

	opacity: 0.9;

	transform: scale(1);

}

.designage_top_box.active:after {

	transform: scale(1);

}

.designage_top_box:hover .bubble1 {

	opacity: 1;

	transform: scale(1) translate(0px, 0px);

}

.designage_top_box:hover .bubble2 {

	opacity: 1;

	transform: scale(1) translate(0px, 0px);

}

.designage_top_box:hover .bubble3 {

	opacity: 0.9;

	transform: scale(1);

}

.designage_top_box.active .designtext h5 a, .designage_top_box:hover .designtext h5 a {

	color: #fff;

}

.designage_top_box.active .designtext p, .designage_top_box:hover .designtext p {

	color: #fff;

}

.designage_top_box:hover .hvimgsm, .designage_top_box.active .hvimgsm {

	display: block !important;

}

.designage_top_box:hover .blueimgsm, .designage_top_box.active .blueimgsm {

	display: none !important;

}

.dots-2 {

	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

	transform: translateX(100px);

}

.designage_top_boxrespo {

	width: 33.3%;

	text-align: center;

	position: relative;

	padding: 120px 40px;

	transition: all 0.3s;

	display: none !important;

}

.desi_imgrespo {

	margin-bottom: 20px;

	position: relative;

	z-index: 1;

}

.desi_imgrespo img {

	display: block;

	width: 100%;

	max-width: 60px;

	height: 60px;

	margin: 0px auto;

}

.desi_imgrespo img.blueimgsm {

	display: none !important;

}

.designage_top_boxrespo .hvimgsm {

	display: block !important;

}

.designtextrespo {

	position: relative;

	z-index: 1;

}

.designtextrespo h5 a {

	color: #fff;

	font-size: 32px;

	font-weight: 600;

	line-height: 1.6;

	text-decoration: none;

	text-transform: capitalize;

}

.designtextrespo p {

	margin: 5px 0px;

	font-size: 16px;

	color: #fff;

	font-weight: 400;

	line-height: 1.7;

}

.ono_bubblesrespo {

	position: absolute;

	width: 142px;

	height: 152px;

	pointer-events: none;

	bottom: -100px;

	right: 0;

}

.designage_top_boxrespo::after {

	position: absolute;

	content: "";

	width: 100%;

	height: 100%;

	background-color: var(--red-color);

	left: 0;

	top: 0;

	border-radius: 50%;

	transition: all 0.3s;

	pointer-events: none;

	transform: scale(1);

}

.qua_trust {

	position: relative;

}

.dots-img {

	opacity: 0;

}

.marque_onovo {

	background-color: #f1f1f1;

	margin-top: 150px;

	padding: 40px 0 40px;

	overflow: hidden;

}

.onmar_parent {

	display: inline-flex;

	flex-wrap: nowrap;

	gap: 20px;

}

.onmar_child {

	display: flex;

	align-items: center;

	white-space: nowrap;

	transition: all 0.3s;

	animation: onmarque 100s infinite linear;

	gap: 20px;

}

 @-webkit-keyframes onmarque {

 0% {

 -webkit-transform: translate3d(0%, 0, 0);

 transform: translate3d(0%, 0, 0);

}

 100% {

 -webkit-transform: translate3d(-100%, 0, 0);

 transform: translate3d(-100%, 0, 0);

}

}

 @keyframes onmarque {

 0% {

 -webkit-transform: translate3d(0%, 0, 0);

 transform: translate3d(0%, 0, 0)

}

 100% {

 -webkit-transform: translate3d(-100%, 0, 0);

 transform: translate3d(-100%, 0, 0)

}

}

.onmar_child h5 a {

	font-weight: 800;

	font-size: 160px;

	line-height: 1.3;

	display: inline;

	position: relative;

	text-decoration: none;

	pointer-events: none;

	opacity: .5;

	background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%);

	background-clip: border-box;

	background-clip: border-box;

	-webkit-background-clip: text;

	-webkit-text-fill-color: transparent;

}

.on_testimonial {

	padding-top: 150px;

	padding-bottom: 150px;

}

.ontest_main {

	display: flex;

	gap: 20px;

}

.ontestiLeft, .ontestiRight {

	width: 50%;

}

.ontestiLeft {

	position: relative;

}

.ontestiLeft h2 {

	font-size: 100px;

	font-weight: 800 !important;

	color: #000;

	margin-bottom: 20px;

}

.ontestiLeft ul {

	display: flex;

	align-items: center;

	gap: 15px;

	font-size: 22px;

	line-height: 26px;

	font-weight: 700;

}

.rankno span {

	display: block;

}

.rankinstars {

	background-color: var(--red-color) !important;

	align-items: center;

	gap: 2px;

	border-radius: 50px;

	display: inline-flex;

	padding: 5px 10px 6px 10px;

}

.rankinstars i {

	font-size: 14px;

}

.clie_reco .rankinstars i, .rankinstars i {

	color: #fff !important;

}

.ontestiLeft ul {

	font-size: 22px;

	line-height: 26px;

	font-weight: 700;

}

.ontesti_btns {

	display: flex;

	align-items: center;

	position: absolute;

	bottom: 0;

	left: 0;

	gap: 80px;

}

.ontesti_btns .swiper-button-prev, .ontesti_btns .swiper-button-next {

 --size: 67px;

	width: var(--size);

	height: var(--size);

	border-radius: 50%;

	border: 1px solid #555;

	position: relative;

}

.ontesti_btns .swiper-button-prev {

	transform: rotate(180deg);

}

.ontestiRight {

	border-left: 1px solid #000;

	padding-left: 55px;

}

.testslide_content p {

	font-size: 18px;

	line-height: 1.5;

}

.testslide_content p span {

	display: inline-flex;

	overflow: hidden;

}

.ontesti_slider .swiper-slide .trans_text {

	transform: translateY(40px);

	transition: all 0.5s;

 transition-delay: calc(var(--e) * 0.025s);

	opacity: 1 !important;

}

.ontesti_slider .swiper-slide.swiper-slide-active .trans_text {

	transform: translateY(0px);

	opacity: 1;

}

.clie_name {

	display: flex !important;

	margin-top: 50px;

}

.clie_name .trans_text {

	font-size: 26px;

	font-weight: 700;

}

.clie_reco {

	display: flex !important;

	gap: 10px;

	align-items: center;

}

.clie_reco .rankinstars i {

	font-size: 12px !important;

	color: #000 !important;

}

.clie_reco .trans_text {

	line-height: 21px;

	font-size: 16px;

	color: #555;

}

.ontesti_btns .swiper-button-prev::before, .ontesti_btns .swiper-button-next::before {

	position: absolute;

	content: "";

	width: 90%;

	height: 90%;

	background-color: var(--red-color);

	border-radius: 50%;

	transform: scale(0);

	transition: all 0.3s;

}

.ontesti_btns .swiper-button-prev::after, .ontesti_btns .swiper-button-next::after {

	display: none;

}

.ontesti_btns .swiper-button-prev:hover:before, .ontesti_btns .swiper-button-next:hover:before {

	transform: scale(1);

}

.ontesti_btns .swiper-button-prev img, .ontesti_btns .swiper-button-next img {

	width: 100%;

	position: relative;

	right: 20px;

	transition: all 0.5s;

}

.ontesti_btns .swiper-button-prev:hover img, .ontesti_btns .swiper-button-next:hover img {

	right: 15px;

}

.clie_reco .rankinstars i, .rankinstars i {

	color: #fff !important;

}

.dots-img2 {

	right: 0;

}

.innerpagebanner {

	min-height: 450px;

	display: flex;

	align-items: center;

	justify-content: center;

	position: relative;

}

.innerpagebanner::after {

	position: absolute;

	content: "";

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	background-color: rgba(0, 0, 0, 0.3);

}

.innerbancontent {

	text-align: center;

	position: relative;

	z-index: 1;

}

.innerbancontent h2 {

	color: #fff;

	font-size: 80px;

	font-weight: 300;

}

.innerbancontent h2 b {

	font-weight: bold;

}

.innerbancontent p {

	font-size: 16px;

	color: #fff;

	text-transform: uppercase;

}

.services_main {

	padding: 120px 0px;

	background-color: #fff;

}

.services_row {

	display: flex;

	flex-direction: column;

	gap: 100px;

}

.services_col {

	display: flex;

	align-items: center;

	gap: 50px;

}

.serv_img {

	width: calc(50% - 25px);

	position: relative;

	height: 500px;

}

.serv_txt {

	width: calc(50% - 25px);

}

.serv_img img {

	display: block;

	object-fit: cover;

	object-position: right;

	width: 100%;

	height: 100%;

}

.serv_txt h2 {

	font-size: 60px;

	color: #000;

	margin-bottom: 15px;

	font-weight: 400;

}

.serv_txt h2 span {

	font-size: 60px;

}

.serv_txt p {

	font-size: 18px;

	line-height: 1.7;

	margin-bottom: 20px;

}

.submenu_parent {

	position: relative;

	padding-bottom: 25px;

	top: 13px;

}

.submenu {

	position: absolute;

	min-width: 230px;

	padding: 0px;

	z-index: 9999;

	top: 30px;

	/* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */

	display: none;

	flex-direction: column;

	gap: 0px;

	list-style: none;

	pointer-events: none;

	transition: all 0.3s;

}

.submenu li {

	transform-origin: bottom;

	opacity: 0;

	background-color: #f7f7f7;

	animation: enter 0.2s ease forwards;

}

.submenu_parent .submenu li:first-child {

	animation-duration: 0.2s;

	animation-delay: 0s;

}

.submenu_parent .submenu li:nth-child(2) {

	animation-duration: 0.25s;

	animation-delay: 0.1s;

}

.submenu_parent .submenu li:last-child {

	animation-duration: 0.3s;

	animation-delay: 0.2s;

}

 @keyframes enter {

 from {

 opacity: 0;

 transform: scaleY(0.98) translateY(10px);

}

to {

	opacity: 1;

	transform: none;

}

}

.submenu_parent:hover .submenu {

	display: flex;

	pointer-events: initial;

}

.submenu li {

	padding: 12px;

	border-bottom: 1px solid #0002;

}

.submenu li a {

	font-size: 14px;

	transition: all 0.3s;

}

.submenu li a:hover {

	color: var(--red-color);

}

.submenu_parent a {

	display: flex;

	align-items: center;

	gap: 5px;

}

.wordpressbanner {

	background-image: url(../images/hero-bg5.jpg);

	background-position: center;

	background-size: cover;

	background-color: transparent;

	background-repeat: no-repeat;

}

.onabout_wedo {

	padding-bottom: 120px;

	padding-top: 100px;

}

.stshowcase_head {

	margin-bottom: 40px;

}

.stshowcase_head h5 {

	font-size: 16px;

	font-weight: 700;

	line-height: 1;

	margin-bottom: 10px;

}

.stshowcase_head h2 {

	font-size: 30px;

	line-height: 1.3;

	margin: 10px 0 0 0;

	font-weight: 800 !important;

	background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%);

	background-clip: border-box;

	-webkit-background-clip: text;

	-webkit-text-fill-color: transparent;

	margin-bottom: 10px;

	text-transform: capitalize;

}

.onovo-service-item-list:nth-child(1) {

	border-top: 1px solid #333;

}

.onovo-service-item-list {

	padding: 20px 0;

	position: relative;

	border-bottom: 1px solid #333;

}

.onovo-service-item-list-inner {

	display: flex;

	align-items: center;

	gap: 30px;

}

.onovo-service-item-list-inner .image {

	

	position: relative;

 --size: 100px;

	width: var(--size);

	height: var(--size);

	min-width: var(--size);

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	border: 1px solid #000;

	outline: 1px solid #000;

	outline-offset: -6px;

	display: none;

}

.onovo-service-item-list-inner .num span {

	font-weight: 800;

	font-size: 70px;

	color: var(--red-color);

	display: block;

	opacity: .2;

}

.title {

	font-size: 66px;

	font-weight: 400;

	overflow: hidden;

	max-width: 50%;

	display: flex;

	gap: 0px 25px;

	flex-wrap: wrap;

}

.onovo_serv_text {

	margin: 0 0 0 -90px;

}

.onovo-service-item-list-inner h5.title {

	font-size: 22px;

	font-weight: 800;

	color: var(--blue-color);

}

.onovo-service-item-list-inner p.content {

	font-size: 16px;

	color: #000;

	font-weight: 400;

	line-height: 1.7;

	margin-top: 5px;

}

.onovo-service-item-list-inner .image img {

	width: 100%;

	max-width: 45px;

}

.onovo-service-item-list-inner .image::after {

	position: absolute;

	content: "";

	width: 100%;

	height: 100%;

	border-radius: 50%;

	background-color: var(--red-color);

	left: 0;

	top: 0;

	z-index: -1;

	transition: all 0.5s;

	transform: scale(0);

}

.onovo-service-item-list-inner .image:hover {

	outline-color: #fff !important;

	border-color: #fff !important;

}

.onovo-service-item-list-inner .image:hover::after {

	transform: scale(1);

}

.title a {

	text-decoration: none;

}

.onabout_welcome {

	padding: 80px 0px 100px;

	background: #f1f1f1;

}

.welabout_top {

	display: flex;

	align-items: center;

	gap: 100px;

}

.welabout_topL {

	width: calc(67% - 50px);

}

.welabout_topR {

	width: calc(33% - 50px);

}

.stshowcase_head {

	margin-bottom: 40px;

}

.stshowcase_head h5 {

	font-size: 22px;

	color: #000;

	font-weight: 800;

	line-height: 1.1;

	text-transform: uppercase;

	margin: 0 0 0 6px;

}

.welabout_topL p {

	font-size: 18px;

	color: #000;

	margin-bottom: 15px;

	font-weight: 400;

	line-height: 1.7;

}

.about_logo img {

	width: 100%;

	opacity: .1;

}

.welabout_btm .team_counter {

	padding-top: 10px;

	display: flex;

	flex-wrap: wrap;

	align-items: center;

}

.counter-container {

	width: 25%;

	text-align: center;

}

.welabout_btm .onovo-counter {

	text-align: left;

}

.onovo-counter .counter {

	position: relative;

	display: inline-block;

	vertical-align: top;

	font-size: 100px;

	font-weight: 700;

	line-height: 1;

	color: #000;

}

.onovo-counter span {

	position: relative;

	display: inline-block;

	font-size: 70px;

	font-weight: 700;

	line-height: 1;

	color: #b62038;

}

.onovo-counter h5 {

	font-size: 20px;

	color: #000;

}

.onovo-service-item-list-inner ul {

	display: flex;

	flex-wrap: wrap;

	gap: 5px 15px;

	list-style: none;

	margin-top: 20px;

}

.onovo-service-item-list-inner ul li {

	font-size: 16px;

	line-height: 26px;

	font-weight: 700;

	color: var(--red-color);

}

.stshowcase_head p {

	color: #000;

	font-weight: 400;

	line-height: 1.7;

	margin: 20px 0px;

	margin-top: 0px;

	font-size: 18px;

}

.onteamfamily {

	padding: 120px 0px;

}

.ontfamilymain {

	display: flex;

	gap: 80px;

	align-items: center;

}

.onTfamhead {

	width: 40%;

}

.ontfamall {

	width: calc(100% - 40% - 80px);

	display: flex;

	gap: 15px;

}

.onteamfamily .stshowcase_head h2 {

	font-size: 60px;

	line-height: 1.1;

}

.ontfambox {

	width: calc(50% - 10px);

	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);

}

.ontfamboximg {

	position: relative;

	overflow: hidden;

}

.ontfamboximg img {

	width: 100%;

	display: flex;

	height: 400px;

	object-fit: cover;

	transition: all 0.5s;

}

.ontfamboximg::after {

	position: absolute;

	content: "";

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	background: rgba(0, 0, 0, 0.3);

	transform: scaleX(0.5);

	opacity: 0;

	transition: all 0.5s;

}

.ontfamboxtxt {

	padding: 25px;

	text-align: center;

}

.ontfamboxtxt h5 {

	font-size: 26px;

	font-weight: 700 !important;

	line-height: 1;

	margin-bottom: 10px;

	position: relative;

	cursor: pointer;

}

.ontfamboxtxt p {

	font-size: 16px;

	font-weight: 500 !important;

	text-transform: uppercase;

}

.ontfamallfull .ontfambox {

	width: calc(25% - 10px);

}

.loadmorefamily a {

	display: flex;

	align-items: center;

	justify-content: center;

	width: 100px;

	height: 100px;

	line-height: 100px;

	border: 1px solid #3e3e3e;

	border-radius: 50%;

	position: relative;

}

.ontfamallfull .ontfambox {

	width: calc(25% - 10px);

}

.ontfamall.ontfamallfull {

	margin-top: 20px;

	width: 100%;

}

.loadmorefamily a {

	text-decoration: none;

}

.loadmorefamily a::after {

	position: absolute;

	content: "";

	width: 92px;

	height: 92px;

	background-color: var(--red-color);

	border-radius: 50%;

	transform: translate(-50%, -50%) scale(0);

	transition: all 0.4s;

	top: 50%;

	left: 50%;

}

.loadmorefamily a i {

	position: relative;

	z-index: 1;

}

.loadmorefambox {

	display: flex;

	align-items: center;

	justify-content: center;

	box-shadow: none !important;

}

.loadmorefamily a:hover::after {

	transform: translate(-50%, -50%) scale(1);

}

.ontfamboximg:hover::after {

	transform: scaleX(1);

	opacity: 1;

}

.stshowcase_head4 {

	margin-top: 100px;

}

.custbtnmain {

	position: relative;

	width: max-content;

}

.custbtnmain p {

	position: absolute;

	font-size: 16px;

	color: #fff;

	pointer-events: none;

	top: 10px;

	left: 40px;

	opacity: 0;

	transition: all 0.3s;

}

.custbtnmain:hover p {

	opacity: 1;

}

.inner_banner .banner-main {

	justify-content: space-between;

	align-items: start;

}

.inner_banner .banner_imgbox img {

	max-width: 400px;

	mask-image: url(../images/mask-white.png);

	mask-size: 400px;

	-webkit-mask-image: url(../images/mask-white.png);

	-webkit-mask-size: 400px;

	-webkit-mask-repeat: no-repeat;

	mask-position: right;

	height: 400px;

	object-fit:cover;

}

.inner_banner .shape {

	height: 350px;

	width: 350px;

	right: 0;

}

.inner_banner .banner_imgbox {

	text-align: right;

}

.inner_banner .round-img img {

	width: 100%;

	max-width: 450px;

}

.inner_banner .round-img {

	top: 100px;

	right: 0;

}

.inner_banner {

	min-height: auto;

	height: auto;

	padding: 140px 0 80px 0;

}

.banner-left h5 {

	font-size: 30px;

	margin-bottom: 10px;

	font-weight: 600;

}

.team_main {

	background-color: #f1f1f1;

	padding: 100px 0px;

}

.ourteam_heading {

	margin-bottom: 60px;

	text-align: center;

}

.ourteam_heading p {

	font-size: 18px;

	text-transform: uppercase;

	line-height: 40px;

	font-weight: 600;

}

.ourteam_row {

	display: flex;

	gap: 80px 30px;

	flex-wrap: wrap;

	justify-content: center;

}

.team_col {

	width: calc(20% - 24.5px);

}

.team_img {

	height: 300px;

	width: 100%;

	border-radius: 8px;

	margin-bottom: 20px;

	background: #c1c5c8;

	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);

}

.team_img img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	position: relative;

	z-index: 10;

	border-radius: 8px;

}

.team_disc h5 {

	color: var(--red-color);

	text-transform: uppercase;

	font-size: 18px;

	font-weight: 800;

	text-align: center;

	margin-bottom: 5px;

}

.team_disc p {

	color: #000;

	font-size: 15px;

	font-weight: 500;

	text-align: center;

}

.worksection {

	background: #f1f1f1;

	padding: 120px 0px;

}

.work_row {

	display: flex;

	flex-wrap: wrap;

	gap: 100px 150px;

}

.work_col {

	width: calc(50% - 75px);

}

.work_col_img img {

	width: 100%;

	height: 350px;

}

.work_col_disc h3 {

	font-size: 26px;

	color: #000;

}

.work_col_disc a {

	font-size: 15px;

	color: #000;

	text-decoration: none;

	margin-top: 5px;

	display: flex;

	align-items: center;

	gap: 5px;

	width: max-content;

	transition: all 0.3s;

	font-weight: 600;

}

.work_col_disc a svg {

	width: 25px;

}

.work_col_disc a:hover {

	gap: 12px;

}

.work_col_disc {

	margin-top: -40px;

}

.work_col_R .work_col_disc {

	text-align: right;

}

.work_col_R .work_col_disc a {

	margin-left: auto;

}

/* RSB */





.inner_banner .banner-left {

	width: calc(55% - 20px) !important;

	margin: 45px 0 0 0;

}

.inner_banner .banner-right {

	width: calc(40% - 20px) !important;

	margin-top:-40px;

}

.inner_banner .banner-left .gradient-text {

	font-size: 56px;

	margin: 10px 0 0 0;

	line-height: 1.2;

}

.inner_banner .banner-left h5 {

	font-size: 20px;

	color: #000;

	font-weight: 800;

	line-height: 1.1;

	text-transform: uppercase;

	margin: 0 0 0 6px;

}

.services_box {

	display: flex;

	margin-top: 50px;

	gap: 20px;

}

.serv_box {

	padding: 30px 20px;

	padding-top: 100px;

	width: 33.3%;

	background-color: var(--red-color);

	border-radius: 8px;

	position: relative;

	display: flex;

	flex-direction: row-reverse;

	align-items: end;

	overflow: hidden;

	justify-content: space-between;

}

.serv_box::after {

	position: absolute;

	content: "";

	width: 145px;

	height: 100%;

	background: #fff1;

	border-radius: 0;

	top: 0;

	right: 0;

	z-index: 0;

}

.serv_box_blue {

	background-color: var(--blue-color);

}

.serv_box_img {

	position: relative;

	z-index: 100;

}

.serv_box img {

	width: 100px;

}

.serv_box h4 {

	margin-top: 10px;

	font-size: 32px;

	font-weight: 800;

	margin-bottom: 10px;

	color: #fff;

}

.serv_box a {

	text-decoration: none;

	font-size: 15px;

	font-weight: 600;

	color: #fff;

	transition: all 0.3s;

	display: flex;

	align-items: center;

	gap: 10px;

	width: max-content;

	transition: all 0.3s;

}

.serv_box a:hover {

	gap: 14px;

}

.serv_box a svg {

	width: 22px;

}

.zizzag {

	position: absolute;

	top: 0;

	left: 0;

}

.zizzag img {

	width: 60px;

}

.ourwork_twins {

	padding: 100px 0px;

	padding-bottom: 220px;

}

.worktwins_row {

	display: flex;

	gap: 30px;

}

.worktwins_col {

	width: calc(50% - 15px);

}

.ourwork_row {

	display: flex;

}

.ourwork_col.ourwork_col2 {

	position: relative;

	z-index: 100;

}

.ourwork_col img {

	width: 100% !important;

	height: 320px !important;

	transform: rotate(330deg);

	box-shadow: 4px 25px 30px rgba(0, 0, 0, 0.3);

}

.ourwork_col.ourwork_col1 {

	position: relative;

	top: 130px;

	left: 115px;

}

.ourwork_col.ourwork_col3 {

	position: relative;

	right: 60px;

	top: 40px;

}

/*  */

.btn {

	display: inline-flex;

	align-items: center;

	justify-content: space-between;

	background: var(--red-color);

	min-width: 200px;

	border: 0;

	border-radius: 4px;

	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);

	box-sizing: border-box;

	padding: 16px 20px;

	font-weight: 800;

	color: #fff !important;

	font-size: 14px;

	letter-spacing: 1.2px;

	text-transform: uppercase;

	text-decoration: none;

	overflow: hidden;

	cursor: pointer;

	font-family: 'Open Sans', sans-serif;

	transition: all 0.3s;

}

.site-nav li a.btn {

	font-size: 14px !important;

}

.btn:hover {

	opacity: .95;

	background-color: var(--blue-color);

}

.btn .animation {

	border-radius: 100%;

	animation: ripple 0.6s linear infinite;

}

 @keyframes ripple {

 0% {

 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);

}

 100% {

 box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);

}

}

/*  */



.worktwins_col_text {

	padding-top: 40px;

}

.contact_sec {

	background-color: #f1f1f1;

	padding: 100px 0px;

}

.contactMain {

	display: flex;

	gap: 50px;

}

.cntLft, .cntRt {

	width: calc(50% - 25px);

}

/* Form */



.Contactform {

	display: flex;

	flex-direction: column;

	gap: 25px;

}

.Form_col {

	display: flex;

	gap: 15px;

}

.Form_col label {

	font-size: 20px;

	font-weight: 800;

	color: #000;

}

.Form_col input {

	border: 0px !important;

	border-bottom: 1px solid #0003 !important;

	width: 500px;

	font-size: 17px;

	color: var(--red-color);

	font-weight: 500;

	background-color: transparent;

}

.Form_col input, .Form_col textarea {

	padding: 10px 10px 10px 0 !important;

	margin-top: -15px !important;	

	font-size: 17px;

	color: var(--red-color);

	font-weight: 500;

  }



 .Form_col input::placeholder {

 font-weight: 500;

 color: var(--red-color);

 font-size: 17px;

 opacity: .5;

}

.Form_col textarea {

	resize: none;

	font-size: 17px;

	font-family: 'Open Sans', sans-serif;

	font-weight: 500;

	color: var(--red-color);

	border: 0px !important;

	border-bottom: 1px solid #0003 !important;

	width: 500px;

	background-color: transparent;

	height: 80px;

}

.Form_col input:focus, .Form_col input:active, .Form_col textarea:focus, .Form_col textarea:active {

	outline: 0px !important;

}

.contactbox_top {

	display: flex;

	justify-content: space-between;

	align-items: center;

	gap: 50px;

	margin-bottom: 20px;

}

.contacttop_txt h2 {

	font-size: 60px;

	line-height: 60px;

	font-weight: 700;

	color: #000;

}

.contacttop_txt h5 {

	font-size: 24px;

	color: #000;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 12px;

}

.texas .contacttop_txt h5 {

	letter-spacing: 12px;

}

.cntRt {

	margin-top: 36px;

	display: flex;

	flex-direction: column;

	align-items: end;

	gap: 20px;

}

.contact_content p {

	font-size: 16px;

	line-height: 26px;

	margin-bottom: 15px;

}

.contact_content p a {

	font-weight: 700;

	color: var(--red-color);

	text-decoration: none;

	transition: all 0.3s;

}

.contact_content p a:hover {

	color: var(--blue-color);

}

.contacttop_img img {

	width: 90px;

}

.contact_box {

	max-width: 80%;

	min-width: 80%;

	background: #fff;

	padding: 20px 30px;

	border-radius: 8px;

}

.Form_col .btn {

	margin-top: 30px;

	padding: 13px 20px;

}

.contact_content ul {

	list-style: none;

	display: flex;

	flex-direction: column;

	gap: 10px;

}

.contact_content ul li {

	display: flex;

	gap: 5px;

}

.contact_content ul li a {

	color: var(--red-color);

	font-size: 16px;

	font-weight: 700;

	text-decoration: none;

	transition: all 0.3s;

}

.contact_email {

	color: var(--blue-color) !important;

}

.contact_content ul li a:hover {

	opacity: .8;

}

/* Form */





/* Back to top */

.back-to-top {

	background-color: var(--red-color);

	text-decoration: none;

	cursor: pointer;

	width: 56px;

	height: 56px;

	z-index: 999;

	position: fixed;

	right: 32px;

	bottom: 100px;

	display: flex;

	align-items: center;

	justify-content: center;

	border: 0;

	border-radius: 100%;

	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);

}

.back-to-top:hover {

	background-color: var(--blue-color);

}

.back-to-top:active {

	box-shadow: none;

	background-color: var(--blue-color);

}

.back-to-top svg.icon__arrow-up {

	fill: white;

	width: 32px;

	height: 32px;

}

/* Back to top */









/*.cursor {

	width: 33px;

	height: 33px;

	border-radius: 100%;

	background: #fff;

	transition: all 500ms ease-out;

	position: fixed;

	pointer-events: none;

	left: 0;

	top: 0;

	transform: translate(calc(-50% + 15px), -50%);

	z-index: 1000;

	mix-blend-mode: difference;

}

.cursor.hover {

	width: 70px;

	height: 70px;

	transition: all 150ms ease-in-out;

}

.cursor2 {

	width: 8px;

	height: 8px;

	border-radius: 100%;

	background-color: #fff;

	opacity: 1;

	position: fixed;

	transform: translate(-50%, -50%);

	pointer-events: none;

	transition: width .3s, height .3s, opacity .3s;

	z-index: 1001;

	mix-blend-mode: difference;

}

*/.custOurWrkBg {

	background: #f1f1f1;

}

.servHead {

/*	font-size: 60px !important;

	line-height: 1.3 !important; */

}

.team_colTwins {

	width: calc(40% - 24.5px);

	gap: 0;

	display: flex;

	position: relative;

}

.team_colTwins:before {

	content: "";

	position: absolute;

	width: 100%;

	height: 300px;

	background: url(../images/twins.jpg);

	background-size: 120%;

	background-position: -40px -370px;

	border-radius: 8px;

	box-shadow: 0 0 5px rgba(0, 0, 0, .2);

}

.team_colTwins .team_col {

	width: 50%;

}

.team_colTwins .team_col .team_img {

	visibility: hidden;

}



/******** Nav ********/

@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {

	margin: 0;

	padding: 0;

	border: 0;

	list-style: none;

	line-height: 1;

	display: block;

	position: relative;

	-webkit-box-sizing: border-box;

	-moz-box-sizing: border-box;

	box-sizing: border-box;

}

#cssmenu:after, #cssmenu > ul:after {

	content: ".";

	display: block;

	clear: both;

	visibility: hidden;

	line-height: 0;

	height: 0;

}

#cssmenu #menu-button {

	display: none;

}

#cssmenu {

	font-family: Montserrat, sans-serif;

	background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%);

}

#cssmenu > ul > li {

	float: left;

}

#cssmenu.align-center > ul {

	font-size: 0;

	text-align: center;

}

#cssmenu.align-center > ul > li {

	display: inline-block;

	float: none;

}

#cssmenu.align-center ul ul {

	text-align: left;

}

#cssmenu.align-right > ul > li {

	float: right;

}

#cssmenu > ul > li > a {

	padding: 17px;

	font-size: 12px;

	letter-spacing: 1px;

	text-decoration: none;

	color: #fff;

	text-align: center;

	font-weight: 700;

	text-transform: uppercase;

}

#cssmenu > ul > li:hover > a {

	color: #ffffff;

}

#cssmenu > ul > li.has-sub > a {

	padding-right: 30px;

}

#cssmenu > ul > li.has-sub > a:after {

	position: absolute;

	top: 22px;

	right: 11px;

	width: 8px;

	height: 2px;

	display: block;

	background: #dddddd;

	content: '';

}

#cssmenu > ul > li.has-sub > a:before {

	position: absolute;

	top: 19px;

	right: 14px;

	display: block;

	width: 2px;

	height: 8px;

	background: #dddddd;

	content: '';

	-webkit-transition: all .25s ease;

	-moz-transition: all .25s ease;

	-ms-transition: all .25s ease;

	-o-transition: all .25s ease;

	transition: all .25s ease;

}

#cssmenu > ul > li.has-sub:hover > a:before {

	top: 23px;

	height: 0;

}

#cssmenu ul ul {

	position: absolute;

	left: -9999px;

}

#cssmenu.align-right ul ul {

	text-align: right;

}

#cssmenu ul ul li {

	height: 0;

	-webkit-transition: all .25s ease;

	-moz-transition: all .25s ease;

	-ms-transition: all .25s ease;

	-o-transition: all .25s ease;

	transition: all .25s ease;

}

#cssmenu li:hover > ul {

	left: auto;

}

#cssmenu.align-right li:hover > ul {

	left: auto;

	right: 0;

}

#cssmenu li:hover > ul > li {

	height: 35px;

}

#cssmenu ul ul ul {

	margin-left: 100%;

	top: 0;

}

#cssmenu.align-right ul ul ul {

	margin-left: 0;

	margin-right: 100%;

}

#cssmenu ul ul li a {

	border-bottom: 1px solid rgba(150, 150, 150, 0.15);

	padding: 11px 15px;

	width: 170px;

	font-size: 12px;

	text-decoration: none;

	color: #fff;

	font-weight: 400;

	background: #333333;

	text-align: center;

}

#cssmenu ul ul li:last-child > a, #cssmenu ul ul li.last-item > a {

	border-bottom: 0;

}

#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {

	color: #ffffff;

}

#cssmenu ul ul li.has-sub > a:after {

	position: absolute;

	top: 16px;

	right: 11px;

	width: 8px;

	height: 2px;

	display: block;

	background: #dddddd;

	content: '';

}

#cssmenu.align-right ul ul li.has-sub > a:after {

	right: auto;

	left: 11px;

}

#cssmenu ul ul li.has-sub > a:before {

	position: absolute;

	top: 13px;

	right: 14px;

	display: block;

	width: 2px;

	height: 8px;

	background: #dddddd;

	content: '';

	-webkit-transition: all .25s ease;

	-moz-transition: all .25s ease;

	-ms-transition: all .25s ease;

	-o-transition: all .25s ease;

	transition: all .25s ease;

}

#cssmenu.align-right ul ul li.has-sub > a:before {

	right: auto;

	left: 14px;

}

#cssmenu ul ul > li.has-sub:hover > a:before {

	top: 17px;

	height: 0;

}

@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

 #cssmenu {

 width: 100%;

}

 #cssmenu ul {

 width: 100%;

 display: none;

}

 #cssmenu.align-center > ul {

 text-align: left;

}

 #cssmenu ul li {

 width: 100%;

 border-top: 1px solid rgba(120, 120, 120, 0.2);

}

 #cssmenu ul ul li, #cssmenu li:hover > ul > li {

 height: auto;

}

 #cssmenu ul li a, #cssmenu ul ul li a {

 width: 100%;

 border-bottom: 0;

}

 #cssmenu > ul > li {

 float: none;

}

 #cssmenu ul ul li a {

 padding-left: 25px;

}

 #cssmenu ul ul ul li a {

 padding-left: 35px;

}

 #cssmenu ul ul li a {

 color: #fff;

 background: none;

}

 #cssmenu ul ul li:hover > a, #cssmenu ul ul li.active > a {

 color: #ffffff;

}

 #cssmenu ul ul, #cssmenu ul ul ul, #cssmenu.align-right ul ul {

 position: relative;

 left: 0;

 width: 100%;

 margin: 0;

 text-align: left;

}

 #cssmenu > ul > li.has-sub > a:after, #cssmenu > ul > li.has-sub > a:before, #cssmenu ul ul > li.has-sub > a:after, #cssmenu ul ul > li.has-sub > a:before {

 display: none;

}

 #cssmenu #menu-button {

 display: block;

 padding: 17px;

 color: #dddddd;

 cursor: pointer;

 font-size: 12px;

 text-transform: uppercase;

 font-weight: 700;

}

 #cssmenu #menu-button:after {

 position: absolute;

 top: 24px;

 right: 17px;

 display: block;

 height: 6px;

 width: 25px;

 border-top: 2px solid #dddddd;

 border-bottom: 2px solid #dddddd;

 content: '';

}

 #cssmenu #menu-button:before {

 position: absolute;

 top: 16px;

 right: 17px;

 display: block;

 height: 2px;

 width: 25px;

 background: #dddddd;

 content: '';

}

 #cssmenu #menu-button.menu-opened:after {

 top: 23px;

 border: 0;

 height: 2px;

 width: 25px;

 background: #ffffff;

 -webkit-transform: rotate(45deg);

 -moz-transform: rotate(45deg);

 -ms-transform: rotate(45deg);

 -o-transform: rotate(45deg);

 transform: rotate(45deg);

}

 #cssmenu #menu-button.menu-opened:before {

 top: 23px;

 background: #ffffff;

 width: 25px;

 -webkit-transform: rotate(-45deg);

 -moz-transform: rotate(-45deg);

 -ms-transform: rotate(-45deg);

 -o-transform: rotate(-45deg);

 transform: rotate(-45deg);

}

 #cssmenu .submenu-button {

 position: absolute;

 z-index: 99;

 right: 0;

 top: 0;

 display: block;

 border-left: 1px solid rgba(120, 120, 120, 0.2);

 height: 46px;

 width: 46px;

 cursor: pointer;

}

 #cssmenu .submenu-button.submenu-opened {

 background: #1a1818;

/*background: linear-gradient(to right, #b81f36 0%, #2d65b0 100%);*/

}

 #cssmenu ul ul .submenu-button {

 height: 34px;

 width: 34px;

}

 #cssmenu .submenu-button:after {

 position: absolute;

 top: 22px;

 right: 19px;

 width: 8px;

 height: 2px;

 display: block;

 background: #dddddd;

 content: '';

}

 #cssmenu ul ul .submenu-button:after {

 top: 15px;

 right: 13px;

}

 #cssmenu .submenu-button.submenu-opened:after {

 background: #ffffff;

}

 #cssmenu .submenu-button:before {

 position: absolute;

 top: 19px;

 right: 22px;

 display: block;

 width: 2px;

 height: 8px;

 background: #dddddd;

 content: '';

}

 #cssmenu ul ul .submenu-button:before {

 top: 12px;

 right: 16px;

}

 #cssmenu .submenu-button.submenu-opened:before {

 display: none;

}

}

#cssmenu {

	display: none;

}

/******** / Nav ********/





.banner-left p br {

	display: none;

}

.respovideoImg {

	display: none;

}

.homebnr > img {

	display: none;

	max-width: 500px;

	mask-image: url(../images/mask-white.png);

	mask-size: 480px;

	-webkit-mask-image: url(../images/mask-white.png);

	-webkit-mask-size: 480px;

	-webkit-mask-repeat: no-repeat;

	mask-position: right;

}

.inner_banner .banner-left .gradient-text br {

	display: none;

}

.custcopyright p br {

	display:none;

}



@media only screen and (min-width: 100px) and (max-width: 767px) {

body {

}

.inner_banner .banner-left {

	margin:0;

}

/*.site-header::after {

		right: 5px;

		top: 25px;

	}

	.site-header::before {

		top: 25px;

		right: 0px;

	}*/

#cssmenu {

	display: block;

	width: 100%;

}

.navigation {

	display: none;

}

.site-logo {

	width: 100%;

}

#cssmenu {

}

#cssmenu #menu-button {

	font-size: 0;

	background: none !important;

	padding: 0;

	position: absolute;

	right: 0px;

	top: -60px;

	z-index: 9999;

	width: 50px;

	height: 50px;

}

#cssmenu #menu-button::before {

	background: #2d65b0;

}

#cssmenu #menu-button::after {

	border-color: #2d65b0;

}

#cssmenu #menu-button.menu-opened::before, #cssmenu #menu-button.menu-opened::after {

	background: #2d65b0;

}

#cssmenu > ul > li > a.btn {

	text-align: center;

}

.wrapper {

	padding: 0 15px;

}

.banner-main {

	flex-direction: column;

}

.banner-left {

	width: 100%;

}

.banner-right {

	width: 100%;

}

.banner {

	min-height: auto;

	margin-top: 0;

	padding: 50px 0px;

}

.banner-left h2 , .banner-left h1 {

	font-size: 22px;

	line-height: 1.1;

	text-align: center;

}

.inner_banner .banner-right {

	margin-top:0;

}

.banner-left .gradient-text {

	font-size: 42px;

}

.banner-left p {

	margin: 15px 0px 15px 0px;

	font-size: 18px;

	text-align: center;

}

.shape {

	height: 220px;

	width: 230px;

	right: auto;

}

.round-img {

	right: auto;

}

.banner_imgbox video {

	-webkit-mask-size: 230px;

	width: 310px;

	margin: auto;

}

.banner-right {

	width: 100%;

	display: flex;

	justify-content: center;

}

.round-img img {

	max-width: 230px;

}

.dig_main {

	flex-wrap: wrap;

	gap: 20px;

}

.dig_right {

	width: 100%;

}

.bulb {

	position: relative;

	top: 0;

	right: 0;

}

.digitally_enhanched {

	padding: 50px 0;

}

.dig_right p {

	font-size: 15px;

	line-height: 1.8;

	text-align: center;

}

.designage_top_box {

	width: 100%;

	padding: 40px 30px;

	max-width: 290px;

}

.custbtnmain p {

	top: 36px;

	left: auto;

	margin: 0 !important;

	text-align: center;

	font-size: 15px;

}

.designage_top {

	flex-wrap: wrap;

}

.designtext p {

	font-size: 14px;

	line-height: 1.5;

}

.designtext h5 a {

	font-size: 22px

}

.desi_img img {

	max-width: 45px;

	height: 45px;

}

.web-categories {

	padding: 40px 0px 0px 0px;

	padding-top: 50px;

}

.marque_onovo {

	margin-top: 40px;

	padding: 40px 0 40px;

}

.onmar_child h5 a {

	font-size: 30px;

}

.qua_trust {

	padding: 50px 0px;

}

.quality_main h2, .brand-right h2 {

	font-size: 18px;

}

.quality_main h2 .gradient-text, .brand-span {

	font-size: 30px;

}

.quality_main p {

	font-size: 15px;

}

.brand-left, .brand-right {

	width: 100%;

}

.brand-left {

	max-width: 290px;

	margin: 0 auto;

}

.brand-builders {

	padding: 40px 0px;

}

.we-have {

	position: relative;

}

.text {

	left: 50px;

}

.text p {

	font-size: 25px;

	line-height: 1;

}

.we-have img {

	width: 250px;

}

.builders_imgbox img {

	-webkit-mask-size: 290px;

	max-width: 290px;

}

.builder-shape {

	height: 220px;

	width: 250px;

	top: 250px;

}

.brands-main {

	flex-wrap: wrap;

	gap: 50px;

}

.brand-right h2 {

	text-align: center;

}

.round-img-white {

	width: 290px;

}

.dots-2 {

	display: none;

}

.ontest_main {

	flex-wrap: wrap;

}

.ontestiLeft, .ontestiRight {

	width: 100%;

	text-align: center;

}

.on_testimonial {

	padding-top: 50px;

	padding-bottom: 50px;

}

.ontestiLeft h2 {

	font-size: 33px;

}

.testslide_content p {

	font-size: 16px;

}

.ontestiRight {

	padding-left: 0px;

	border-left: 0;

}

.site-nav {

	gap: 10px;

	list-style: none;

	flex-direction: column;

}

.ontestiLeft ul {

	font-size: 12px;

	line-height: 18px;

	justify-content: center;

}

.ontesti_btns .swiper-button-prev, .ontesti_btns .swiper-button-next {

 --size: 37px;

}

.ontestiLeft {

	margin-bottom: 60px;

}

.ontestiLeft h2 {

	margin-bottom: 10px;

}

.ontesti_btns {

	bottom: -50px;

	left: 50%;

	margin-left: -80px;

}

ontestiLeft {

	text-align: center;

}

.clie_name, .clie_reco {

	justify-content: center;

}

.ftrbtmTop {

	flex-wrap: wrap;

	gap: 10px;

}

.ftrbtmcol {

	width: 100%;

}

.ftrbtmcol ul li {

	font-size: 13px;

	line-height: 22px;

	text-align: center;

	width: 100%;

}

.ftrbtmcol h5 {

	margin: 10px 0 5px 0;

	text-align: center;

}

.custcopyright {

	flex-wrap: wrap;

	flex-direction: column-reverse;

}

.custcopyright ul {

	justify-content: center;

	margin: 0 0 10px 0;

}

.custcopyright p {

	font-size: 13px;

	line-height: 22px;

	text-align: center;

}

.ftrbtmcol p, .ftop-down p {

	font-size: 13px;

	line-height: 22px;

	text-align: center;

}

.ftrbtm {

	padding: 30px 0;

}

main.main {

	margin: 0 !important;

}

footer {

	position: relative;

}

.ftop-main {

	flex-direction: column;

}

.ftop-box {

	width: 100%;

	text-align: center;

}

.ftop-box h2 {

	font-size: 34px;

}

.ftop-box h5 {

	font-size: 20px;

}

.footer-top {

	padding: 30px 0px;

	padding-top: 30px;

}

.ftop-down {

	margin: 15px 0 5px 0;

}

.custcopyright ul li a {

	width: 32px;

	height: 32px;

	line-height: 30px;

	font-size: 15px;

}

.custbtnmain {

	margin: 0 auto;

}

.header-main {

	padding: 20px 10px;

	flex-direction: column;

}

.inner_banner .banner-left, .inner_banner .banner-right {

	width: 100% !important;

}

.inner_banner .banner-left .gradient-text {

	font-size: 40px;

}

.inner_banner .banner-left h5 , .inner_banner .banner-left h1 {

	text-align: center;

	font-size: 20px;

	font-weight: 700;

}

.inner_banner .shape {

	height: 230px;

	width: 230px;

	right: auto;

}

.inner_banner .banner_imgbox img {

	-webkit-mask-size: 260px;

	max-width: 270px;

	height: 250px;

}

.inner_banner .round-img {

	right: auto;

}

.inner_banner .round-img img {

	max-width: 270px;

}

.welabout_topL {

	width: 100%;

	text-align: center;

}

.welabout_topR {

	width: 100%;

}

.stshowcase_head h2 {

	font-size: 42px;

}

.onabout_welcome {

	padding: 50px 0px 50px;

}

.welabout_top {

	gap: 0;

	flex-wrap: wrap;

}

.welabout_topL p {

	font-size: 16px;

	line-height: 1.6;

}

.inner_banner .banner-left .gradient-text, .stshowcase_head h2 {

	font-size: 36px;

	font-size: 27px;

	line-height: 1.4;

}

.stshowcase_head {

	text-align: center;

}

.about_logo {

	text-align: center;

}

.about_logo img {

	width: 100px

}

.counter-container {

	width: 50%;

	margin: 0 0 20px 0;

}

.onovo-counter .counter {

	font-size: 50px;

}

.onovo-counter h5 {

	font-size: 15px;

}

.onovo-counter span {

	font-size: 45px;

}

.welabout_btm .onovo-counter {

	text-align: center;

}

.onabout_wedo {

	padding-bottom: 80px;

	padding-top: 60px;

}

.stshowcase_head p {

	font-size: 16px;

	line-height: 1.6;

}

.onovo-service-item-list-inner {

	gap: 20px;

	flex-direction: column;

}

.onovo_serv_text {

	margin: 0;

	text-align: center;

}

.onovo-service-item-list-inner h5.title {

	max-width: 100%;

	justify-content: center;

}

.services_box {

	gap: 10px;

	flex-direction: column;

}

.serv_box {

	width: 100%;

	padding-top: 60px;

}

.serv_box h4 {

	font-size: 22px;

}

.serv_box img {

	width: 70px;

}

.zizzag img {

	width: 40px;

}

.ourwork_twins {

	padding: 50px 0px;

	padding-bottom: 100px;

}

.worktwins_row {

	flex-direction: column;

}

.worktwins_col {

	width: 100%;

	text-align: center;

}

.ourwork_col.ourwork_col1 {

	top: 80px;

	left: 65px;

}

.ourwork_col.ourwork_col3 {

	right: 20px;

	top: -20px;

}

.ourwork_col img {

	height: auto !important;

}

.ourteam_row {

	gap: 35px 10px;

}

.team_colTwins {

	width: 100%;

}

.team_col {

	width: 250px;

	margin: 0 auto;

}

.team_colTwins::before {

	height: 400px;

	background-position: 56% 36%;

}

.team_img {

	height: 300px;

}

.team_colTwins .team_col .team_img {

	height: 400px;

}

.team_colTwins .team_disc h5 {

	font-size: 14px;

}

.team_colTwins .team_disc p {

	font-size: 11px;

}

.team_main {

	padding: 50px 0;

}

.worksection {

	padding: 60px 0px;

}

.work_row {

	gap: 20px 0px;

}

.work_col_disc a {

	font-size: 14px;

}

.work_col_disc a svg {

	width: 20px;

}

.work_col {

	width: 100%;

}

.work_col_img img {

	height: 200px;

	object-fit: contain;

	display: flex;

}

.work_col_disc h3 {

	font-size: 18px;

}

.work_col_disc {

	margin-top: 0;

	text-align: center;

	display: flex;

	flex-direction: column;

	align-items: center;

}

.work_col_R .work_col_disc a {

	margin-left: 0;

}

.custOurWrkBg .worktwins_col_text {

	margin-bottom: 20px;

	padding-top:0;

	margin-top:0;

}

.inner_banner .banner-left h5 {

	font-size:16px;

}

.servHead {

	font-size: 28px !important;

}

.contact_sec {

	padding: 50px 0px;

}

.contactMain {

	flex-wrap: wrap;

	flex-direction: column;

	gap: 20px;

}

.cntLft, .cntRt {

	width: 100%;

}

.Form_col {

	flex-direction: column;

}

.Form_col label {

	font-size: 18px;

}

.Form_col input {

	font-size: 16px;

	width: 100%;

}

.Form_col input::placeholder {

 font-size:16px;

}

.Form_col textarea {

	font-size: 16px;

}

.contact_box {

	max-width: 100%;

	min-width: 100%;

	padding: 15px 15px;

}

.contacttop_txt h2 {

	font-size: 40px;

}

.contacttop_txt h5 {

	font-size: 16px;

}

.contact_content p {

	font-size: 14px;

	line-height: 24px;

}

.contacttop_img img {

	width: 60px;

}

.contact_content ul li a {

	font-size: 14px;

}

.cursor, .cursor2 {

	display: none;

}

body {

	cursor: default;

}

.custbtnmain {

	display: none;

}

.banner-left p br {

	display: block;

}

.designage_top_box::after {

	display: none !important;

}

.designage_top_box.active::after {

	display: block !important;

}

.designage_top_box:hover .ono_bubbles {

	display: none !important;

}

.designage_top_box.active:hover .ono_bubbles {

	display: none !important;

}

.designage_top_box:hover .blueimgsm {

	display: none !important;

}

.designage_top_box.active .hvimgsm {

	display: block !important;

}

.designage_top_box:hover .designtext p, .designage_top_box:hover .designtext h5 {

	color: #000 !important;

}

.designage_top_box.active:hover .hvimgsm, .designage_top_box.active .hvimgsm {

	display: block !important;

}

.designage_top_box.active:hover .blueimgsm, .designage_top_box.active .blueimgsm {

	display: none !important;

}

.designage_top_box:hover .blueimgsm {

	display: block !important;

}

.designage_top_box:hover .hvimgsm, .designage_top_box.active .hvimgsm {

	display: none !important;

}

.designage_top_box:hover .designtext h5 a {

	color: #000 !important;

}

.designage_top_box.active .hvimgsm {

	display: block !important;

}

.onmar_parent {

	animation: onmarque 50s infinite linear !important;

}

.we-have {

	display: none;

}

.builder-shape {

	top: 0;

}

.brand-span br {

	display: none

}

.site-header {

	overflow: hidden;

}

.round-img {

	top: 80px;

}

.designage_top_boxrespo {

	display: block !important;

	max-width: 290px;

	width: 100%;

	padding: 40px 30px;

}

.designage_top_boxDesk {

	display: none !important;

}

.designtextrespo h5, .designtextrespo h5 a {

	font-size: 22px;

}

.designage_top_boxrespo .designtextrespo p {

	font-size: 14px;

	line-height: 1.5;

}

.desi_imgrespo img {

	max-width: 45px;

	height: 45px;

}

.worktwins_col {

	margin: 30px 0 0 0;

}

.back-to-top {

	width: 36px;

	height: 36px;

	right: 22px;

	bottom: 100px;

}

.back-to-top svg.icon__arrow-up {

	width: 22px;

	height: 22px;

}

.respovideoImg {

	display: block;

}

.respovideoImg img {

	width: 100%;

}

.banner_imgbox video {

	display: none !important;

}

.homebnr > img {

	-webkit-mask-size: 260px;

	max-width: 270px;

	display: block;

}

.onovo-service-item-list-inner {

	gap: 10px;

}

.onovo-service-item-list-inner .num span {

	font-size: 50px;

}

.rankinstars {

	padding: 5px 10px 6px 10px;

	margin-bottom: 1px;

}

.inner_banner .banner-left .gradient-text br {

	display: block;

}

.custcopyright p br {

	display:block;

}



.ourwork_row {

  transform: scale(0.9);

}

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

.wrapper {

	padding: 0 15px;

}

.banner {

	padding: 50px 0;

	height: 70vh;

}



.inner_banner {

	height:inherit;

	padding:80px 0 30px 0;

}

.inner_banner .banner-left {

	margin:25px 0 0 0;

}

.inner_banner .banner-right {

	margin-top:0;

}

.banner-left h2 , .banner-left h1 {

	font-size: 22px;

}

.banner-left .gradient-text {

	font-size: 50px;

}

.banner-left p {

	font-size: 18px;

}

.banner_imgbox video {

	-webkit-mask-size: 310px;

}

.shape {

	border-radius: 130% 40% 50% 120% / 80% 30% 260% 60%;

	height: 270px;

	width: 270px;

}

.round-img img {

	max-width: 380px;

}

.round-img {

	top: 50px;

}

.custbtnmain p {

	font-size: 14px;

}

.digitally_enhanched {

	padding: 120px 0px 100px 0px;

}

.dig_main {

	gap: 20px;

}

.dig_right p {

	font-size: 16px;

	line-height: 28px;

}

.designtext p {

	font-size: 14px;

	line-height: 1.5;

}

.designtext h5 a {

	font-size: 18px;

}

.desi_img img {

	max-width: 35px;

	height: 35px;

}

.designage_top_box {

	padding: 20px 10px;

	width: 240px !important;

	height: 240px !important;

}

.desi_img {

	margin-bottom: 5px;

}

.site-nav li a.btn {

	min-width: 150px;

}

.site-nav {

	gap: 10px;

}

.site-nav li a {

	font-size: 14px;

}

.site-logo img {

	max-width: 150px;

}

.web-categories {

	padding: 20px 0px;

	padding-top: 80px;

}

.onmar_child h5 a {

	font-size: 50px;

}

.qua_trust {

	padding: 80px 0px;

}

.quality_main h2 {

	font-size: 26px;

}

.quality_main h2 .gradient-text {

	font-size: 70px;

}

.quality_main p {

	font-size: 16px;

}

.builders_imgbox img {

	max-width: 320px;

}

.builder-shape {

	height: 220px;

	width: 220px;

	left: auto;

}

.round-img-white img {

	max-width: 320px;

}

.brand-right h2 {

	font-size: 26px;

}

.brand-span {

	font-size: 50px;

}

.dots-2 {

	display: none;

}

.we-have {

	top: -60px;

	right: 0px;

}

.we-have img {

	width: 160px;

}

.text {

	top: 40px;

	left: 30px;

}

.text p {

	font-size: 16px;

}

.builders_imgbox img {

	max-width: 280px;

	-webkit-mask-size: 280px;

}

.round-img-white img {

	max-width: 230px;

}

.brand-left {

	width: calc(60% - 10px);

	display: flex;

	text-align: center;

	justify-content: center;

	align-items: center;

}

.on_testimonial {

	padding-top: 80px;

	padding-bottom: 80px;

}

.ontestiLeft h2 {

	font-size: 50px;

}

.ontestiLeft ul {

	font-size: 14px;

}

.ontestiRight {

	padding-left: 35px;

}

.testslide_content p {

	font-size: 16px;

}

.clie_name .trans_text {

	font-size: 22px;

	margin-bottom: 5px;

}

.ontesti_btns .swiper-button-prev, .ontesti_btns .swiper-button-next {

 --size: 47px;

}

.ftop-box h2 {

	font-size: 44px;

}

.ftop-box h5 {

	font-size: 24px;

}

.ftop-box p {

	font-size: 13px;

}

.ftrbtmcol p, .ftrbtmcol ul li {

	font-size: 14px;

	line-height: 24px;

}

.ftrbtmTop {

	gap: 50px;

}

footer {

	position: relative;

}

main.main {

	margin-bottom: 0 !important;

}

.ftop-main {

	gap: 10px;

}

.ftop-down {

	margin: 15px 0;

}

.ftop-down p {

	font-size: 14px;

}

.custcopyright p {

	font-size: 14px;

	line-height: 22px;

}

.custcopyright {

	padding: 20px 50px 0 0;

}

.inner_banner .banner-left .gradient-text {

	font-size: 46px;

}

.inner_banner .banner_imgbox img {

	max-width: 280px;

	-webkit-mask-size: 280px;

	height: 280px;

}

.inner_banner .shape {

	height: 300px;

	width: 300px;

}

.inner_banner .round-img img {

	max-width: 290px;

}

.stshowcase_head h2 {

	font-size: 50px;

	line-height: 1.1;

}

.welabout_topL p {

	font-size: 16px;

	line-height: 1.4;

}

.onovo-counter .counter {

	font-size: 50px;

}

.onovo-counter span {

	font-size: 30px;

}

.onovo-counter h5 {

	font-size: 15px;

}

.stshowcase_head p {

	font-size: 16px;

	line-height: 1.4;

}

.onovo-service-item-list-inner h5.title {

	max-width: 60%;

	font-size: 17px;

}

.onovo-service-item-list-inner p.content {

	font-size: 15px;

}

.onovo-service-item-list-inner .num span {

	font-size: 50px;

}

.onovo-service-item-list-inner .image {

 --size: 80px;

}

.services_box {

	gap: 10px;

}

.serv_box img {

	width: 60px;

}

.serv_box h4 {

	font-size: 22px;

}

.serv_box a {

	font-size: 14px;

}

.zizzag img {

	width: 40px;

}

.serv_box {

	padding-top: 70px;

}

.services_box {

	margin-top: 40px;

}

.onabout_wedo {

	padding-bottom: 80px;

	padding-top: 70px;

}

.onabout_welcome {

	padding: 60px 0px 70px;

}

.ourwork_twins {

	padding: 60px 0px;

	padding-top: 60px;

}

.ourwork_twins {

	padding: 60px 0px;

	padding-bottom: 120px;

}

.ourwork_col.ourwork_col1 {

	top: 130px;

	left: 75px;

}

.ourwork_col.ourwork_col3 {

	right: 10px;

	top: -30px;

}

.ourwork_col img {

	height: 230px !important;

}

.team_img {

	height: 300px;

}

.team_colTwins {

	width: calc(50% - 8px);

}

.team_colTwins::before {

	height: 300px;

	background-position: 56% 37%;

}

.team_disc h5 {

	font-size: 14px;

}

.ourteam_row {

	gap: 50px 10px;

}

.team_disc p {

	font-size: 12px;

}

.team_col {

	width: calc(25% - 8px);

}

.team_main {

	padding: 50px 0px;

}

.work_row {

	gap: 60px 100px;

	justify-content: space-between;

}

.work_col_img img {

	height: 260px;

	object-fit: contain;

	display: flex;

}

.work_col_disc h3 {

	font-size: 22px;

}

.worksection {

	padding: 60px 0px;

}

.servHead {

	font-size: 50px !important;

}

.contact_sec {

	padding: 50px 0px;

}

.Form_col {

	flex-direction: column;

}

.Form_col label {

	font-size: 18px;

}

.Form_col input {

	font-size: 16px;

	width: 100%;

}

.Form_col input::placeholder {

 font-size:16px;

}

.Form_col textarea {

	font-size: 16px;

}

.contact_box {

	max-width: 100%;

	min-width: 100%;

	padding: 15px 15px;

}

.contacttop_txt h2 {

	font-size: 40px;

}

.contacttop_txt h5 {

	font-size: 16px;

}

.contact_content p {

	font-size: 14px;

	line-height: 24px;

}

.contacttop_img img {

	width: 60px;

}

.contact_content ul li a {

	font-size: 14px;

}

.work_col_disc a {

	font-size: 14px;

}

.work_col_disc a svg {

	width: 20px;

}



}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

.banner {

	min-height: 70vh;

}

.inner_banner {

	min-height:inherit;

	padding:100px 0 40px 0;

}

.inner_banner .banner-left {

	margin:25px 0 0 0;

}

.site-nav {

	gap: 20px;

}

.banner-left .gradient-text {

	font-size: 70px;

}

.banner-left h2 , .banner-left h1 {

	font-size: 30px;

}

.shape {

	height: 360px;

	width: 360px;

}

.banner_imgbox video {

	-webkit-mask-size: 400px;

}

.round-img img {

	max-width: 400px;

}

.designage_top_box {

	max-width: 300px;

	max-height: 300px;

	padding: 50px 30px;

}

.designtext h5 a {

	font-size: 22px;

}

.desi_img {

	margin-bottom: 10px;

}

.desi_img img {

	max-width: 40px;

	height: 50px;

}

.designtext p {

	font-size: 15px;

	line-height: 1.6;

}

.onmar_child h5 a {

	font-size: 80px;

}

.quality_main h2 {

	font-size: 30px;

}

.quality_main h2 .gradient-text {

	font-size: 80px;

}

.quality_main p {

	font-size: 16px;

}

.brand-right h2 {

	font-size: 30px;

}

.brand-span {

	font-size: 80px;

}

.builders_imgbox img {

	max-width: 480px;

	mask-size: 480px;

	-webkit-mask-size: 480px;

}

.we-have {

	right: -80px;

}

.we-have img {

	width: 200px;

}

.text {

	top: 40px;

	left: 70px;

}

.text p {

	font-size: 22px;

}

.round-img-white img {

	max-width: 420px;

}

.builder-shape {

	height: 380px;

	width: 380px;

}

.ontestiLeft h2 {

	font-size: 60px;

}

.ontestiLeft ul {

	font-size: 18px;

}

.testslide_content p {

	font-size: 18px;

}

.custcopyright {

	padding: 40px 60px 0 0;

}

.inner_banner .banner_imgbox img {

	max-width: 350px;

	-webkit-mask-size: 350px;

}

.inner_banner .shape {

	height: 350px;

	width: 350px;

}

.inner_banner .banner-left .gradient-text {

	font-size: 56px;

}

.stshowcase_head h2 {

	font-size: 50px;

}

.welabout_topL p, .stshowcase_head p {

	font-size: 16px;

}

.onovo-counter .counter {

	font-size: 80px;

}

.onovo-counter span {

	font-size: 50px;

}

.onovo-counter h5 {

	font-size: 17px;

}

.onovo-service-item-list-inner h5.title {

	max-width: 60%;

}

.onovo-service-item-list-inner .image {

 --size: 90px;

}

.serv_box h4 {

	font-size: 25px;

}

.serv_box img {

	width: 70px;

}

.zizzag img {

	width: 50px;

}

.services_box {

	margin-top: 40px;

}

.ourwork_twins {

	padding: 80px 0px;

	padding-bottom: 180px;

}

.team_img {

	height: 350px;

}

.team_colTwins {

	width: calc(50% - 8px);

}

.team_colTwins::before {

	height: 350px;

	background-position: 56% 37%;

}

.team_disc h5 {

	font-size: 18px;

}

.ourteam_row {

	gap: 50px 10px;

}

.team_disc p {

	font-size: 15px;

}

.team_col {

	width: calc(25% - 8px);

}

.team_main {

	padding: 50px 0px;

}

.work_row {

	gap: 60px 100px;

	justify-content: space-between;

}

.work_col_img img {

	height: 300px;

	object-fit: contain;

	display: flex;

	width: 370px;

}

.work_col_disc h3 {

	font-size: 24px;

}

.worksection {

	padding: 60px 0px;

}

.work_col_R .work_col_img img {

	margin-left: auto;

}

.Form_col label {

	font-size: 17px;

}

.contacttop_img img {

	width: 70px;

}

}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {

.banner-left .gradient-text {

	font-size: 80px;

}

.banner_imgbox video {

	-webkit-mask-size: 480px;

}

.inner_banner {

	padding:100px 0 80px 0;

}



.inner_banner .banner-left {

	margin:35px 0 0 0;

}

.inner_banner .banner-right {

	margin-top:-20px;

}

.shape {

	height: 420px;

	width: 420px;

}

.round-img img {

	max-width: 510px;

}

.designage_top_box {

	width: 380px;

	height: 380px;

	padding: 90px 40px;

}

.onmar_child h5 a {

	font-size: 120px;

}

.quality_main h2 {

	font-size: 32px;

}

.quality_main h2 .gradient-text {

	font-size: 80px;

}

.brand-span {

	font-size: 90px;

}

.ontestiLeft h2 {

	font-size: 80px;

}

.testslide_content p {

	font-size: 18px;

}

.custcopyright {

	padding: 40px 60px 0 0;

}

.inner_banner .banner_imgbox img {

	max-width: 450px;

	-webkit-mask-size: 430px;

}

.inner_banner .banner-left .gradient-text {

	font-size: 56px;

}

.stshowcase_head h2 {

	font-size: 46px;

}

.welabout_topL p, .stshowcase_head p {

	font-size: 16px;

}

.onovo-counter .counter {

	font-size: 90px;

}

.onovo-counter span {

	font-size: 60px;

}

.onovo-counter h5 {

	font-size: 18px;

}

.serv_box h4 {

	font-size: 28px;

}

.serv_box img {

	width: 90px;

}

.team_img {

	height: 350px;

}

.team_colTwins {

	width: calc(50% - 8px);

}

.team_colTwins::before {

	height: 350px;

	background-position: 56% 37%;

}

.team_disc h5 {

	font-size: 18px;

}

.ourteam_row {

	gap: 50px 10px;

}

.team_disc p {

	font-size: 15px;

}

.team_col {

	width: calc(25% - 8px);

}

.team_main {

	padding: 50px 0px;

}

work_row {

	gap: 60px 100px;

	justify-content: space-between;

}

.work_col_img img {

	height: 310px;

	object-fit: contain;

	display: flex;

	width: 420px;

}

.work_col_disc h3 {

	font-size: 24px;

}

.worksection {

	padding: 60px 0px;

}

.work_col_R .work_col_img img {

	margin-left: auto;

}

}

@media only screen and (min-width: 1401px) and (max-width: 1600px) {

.designage_top_box {

	width: 420px;

	height: 420px;

	padding: 100px 40px;

}

.ontestiLeft h2 {

	font-size: 90px;

}

.work_col_img img {

	height: 390px;

	object-fit: contain;

}

}

