@import './theme/font.css';
@import './theme/variables.css';

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 1rem;
	font-family: Raleway, sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 28px;
	color: var(--dark-grey);
	overflow-x: hidden;
	scroll-behavior: smooth;
	-webkit-scroll-behavior: smooth;
}

p {
	color: var(--content-color);
	line-height: 26px;
	font-size: 16px;
	font-weight: 500;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1,
.service-secondary-title,
.service-secondary-title2 {
	font-family: var(--heading-font);
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--secondary);
}

.service-secondary-title {
	font-size: 32px;
	font-weight: 700;
}

.service-secondary-title2 {
	font-size: 27px;
}
.fw-500{font-weight: 500;}
/* PRE LOADER */
.pre-loader{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255,250,1);
	z-index: 1051;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  .lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }

  .lds-ellipsis div {
	position: absolute;
	top: 0px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--primary);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }

  .lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
  }

  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}

	100% {
	  transform: scale(1);
	}
  }

  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}

	100% {
	  transform: scale(0);
	}
  }

  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}

	100% {
	  transform: translate(24px, 0);
	}
  }
/* END PRELOADER */
/*=============================
	  Header
===============================*/
.header-main:not(.fixed-header) {
	position: relative;
	z-index: 1034;
	top: 20px;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeIn;
	animation: 500ms ease-in-out 0s normal none 1 running fadeIn;
}

body.sub-page {
	padding-top: 80px;
}

.sub-page .header-main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--bs-white);
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

.fixed-header {
	position: fixed;
	left: 0;
	margin: auto;
	top: 0;
	width: 100%;
	z-index: 99;
	background: var(--bs-white);
	animation: 900ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-animation: 900ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	border-radius: 0;
}

.header-main .menu-area {
	box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.05);
	background: var(--bs-white);
	min-height: 80px;
}

.menu-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logo img {
	max-height: 50px;
}

.navbar-wrap {
	display: flex;
	flex-grow: 1;
	justify-content: flex-end;
}

.navbar-wrap ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0 0;
	margin: 0 0 0 auto;
}

.navbar-wrap ul li {
	list-style: none;
	display: block;
	position: relative;
	margin-right: 10px;
}

.navbar-wrap ul li a {
	font-size: 15px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--bs-gray-600);
	font-family: Raleway;
	padding: 40px 15px;
	display: block;
	line-height: 1;
	position: relative;
	z-index: 1;
	text-decoration: none;
}

.navbar-wrap>ul>li.active>a {
	font-weight: 700;
}

.navbar-wrap>ul>li.active>a,
.navbar-wrap>ul>li:hover>a {
	color: var(--primary);
}

.navbar-wrap>ul>li.menu-item-has-children>a::after {
	content: "\f107";
	font-weight: 700;
	font-family: "Font Awesome 5 Free";
	color: var(--tg-paragraph-color);
	margin-left: 8px;
	transition: all 0.3s ease-out 0s;
}

.navbar-wrap>ul>li.menu-item-has-children:hover>a::after,
.navbar-wrap>ul>li.menu-item-has-children.active>a::after {
	color: var(--primary);
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
	display: none;
}

.navbar-wrap ul li .sub-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	min-width: 230px;
	border: 1px solid #f5f5f5;
	background: var(--bs-white);
	font-size: 15px;
	font-family: Raleway;
	margin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	-moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	border-radius: 5px;
	padding: 12px 0;
	display: block;
	visibility: hidden;
	opacity: 0;
	z-index: 1051;
}
.navbar-wrap ul li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
}
.navbar-wrap ul li .sub-menu .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
}

.navbar-wrap ul li .sub-menu li {
	margin-left: 0;
	text-align: left;
	display: block;
}

.navbar-wrap ul li .sub-menu li a {
	padding: 9px 15px 9px 25px;
	line-height: 1.4;
	font-size: 15px;
	font-weight: 500;
	color: var(--bs-grey-700);
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: flex;
	align-items: center;
	gap: 5px;
}

.navbar-wrap ul li .sub-menu li a::before {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--primary);
	transition: .3s ease-in-out;
}

.navbar-wrap ul li .sub-menu>li.active>a,
.navbar-wrap ul li .sub-menu li a:hover {
	color: var(--primary);
}

.navbar-wrap ul li .sub-menu>li.active>a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
	width: 10px;
}



.header-main .navbar-wrap ul {
	margin: 0 0 0 60px;
}

.header-main .navbar-wrap ul li a {
	padding: 32px 15px;
}

.header-main.fixed-header .menu-area {
	box-shadow: none;
}

.header-right {
	display: flex;
	align-items: center;
}

/*=============================
	 Mobile Menu
===============================*/
.mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 24px;
	line-height: 50px;
	cursor: pointer;
	color: var(--bs-grey-700);
	margin-right: 30px;
	top: 0px;
}

.nav-logo img {
	max-width: 135px;
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 320px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	z-index: 99;
	border-radius: 0px;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
	-o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	background-color: var(--white);
}

.mobile-menu .navbar-collapse {
	display: block !important;
}

.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
}

.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .navigation li.current>a:before {
	height: 100%;
}

.menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--bs-white);
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .close-btn {
	position: absolute;
	right: 15px;
	top: 28px;
	line-height: 30px;
	width: 35px;
	text-align: center;
	font-size: 20px;
	color: #292b37;
	cursor: pointer;
	z-index: 10;
	-webkit-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}

.mobile-menu .navigation ul {
	padding: 0;
	margin: 0;
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 60px 10px 25px;
	font-size: 16px;
	font-weight: 700;
	color: var(--bs-grey-700);
	text-transform: capitalize;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	text-decoration: none;
}

.mobile-menu .navigation li ul li>a {
	font-size: 16px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li ul li ul li a {
	margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
	margin-left: 60px;
}

.mobile-menu .navigation li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #292b37;
	background: var(--bs-grey-700);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color: var(--primary);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
	display: none;
}

.mobile-menu .social-links ul {
	display: flex;
	position: relative;
	text-align: center;
	padding: 30px 20px 20px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: var(--tg-heading-font-color);
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 1px solid var(--tg-gray);
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--bs-white);
}

.mobile-menu .dropdown-btn.open span.has-icon {
	position: relative;
	display: inline-block;
}

.mobile-menu .dropdown-btn.open span.has-icon {
	transform: rotate(180deg);
}

/* End Mobile Menu */
.primary-link {
	color: var(--primary) !important;
	text-decoration: none !important;
}

.primary-link:hover {
	color: var(--secondary) !important;
}

.default-btn {
	z-index: 1;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	padding: 11px 16px;
	line-height: 1;
	transition: all .5s ease;
	text-align: center;
	background-color: #151bd6;
	position: relative;
	overflow: hidden;
	display: block;
	min-width: 130px;
	text-decoration: none;
}

.default-btn span:before {
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #fff, transparent);
	-webkit-animation: top 2s linear infinite;
	animation: top 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.default-btn span:after,
.default-btn span:before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%
}

.default-btn span:after {
	bottom: 0;
	right: 0;
	background: linear-gradient(0deg, #fff, transparent);
	-webkit-animation: bottom 2s linear infinite;
	animation: bottom 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.default-btn:before {
	top: 0;
	background: linear-gradient(270deg, #fff, transparent);
	-webkit-animation: right 2s linear infinite;
	animation: right 2s linear infinite
}

.default-btn:after,
.default-btn:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px
}

.default-btn:after {
	bottom: 0;
	background: linear-gradient(90deg, #fff, transparent);
	-webkit-animation: left 2s linear infinite;
	animation: left 2s linear infinite
}

.default-btn:hover {
	background-color: var(--bs-orange);
	color: #fff
}

.welcome-section {
	background: url(../resources/bg/welcome-section.jpg);
	background-size: cover;
}

.image-left-welcome {
	position: relative;


}

.image-left-welcome::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 90%;
	background: url(../resources/bg/blue-pattern1.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	max-width: 94%;
	z-index: 1;
}

.image-left-conent {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 2;
	padding-bottom: 20px;
}

.image-left-conent .two {
	position: relative;
	z-index: 1;
	animation: jump-1 5s linear infinite;
}

.image-left-conent .three {
	z-index: 3;
	margin-top: -20px;
	border-radius: 20px;
}

.ratio-area {
	padding-top: 110px;
	padding-left: 15px;
}

.ratio-area .ratio {
	color: var(--bs-white);
	margin-bottom: 0px;
	font-size: 30px;
	font-weight: 700;
}

.ratio-area span {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}

.highlight-title {
	position: relative;
	color: var(--orange);
	font-size: 24px;
	font-weight: bold;
}

.highlight-title::after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	width: 50px;
	height: 5px;
	border-radius: 12px;
	background-color: var(--orange);
}

.bold-title {
	font-weight: 700;
	color: var(--secondary);
}

.our-service-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

.our-service-item {
	padding: 2%;
	display: flex;
	align-items: center;
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid var(--bs-gray-300);
	border-right: 1px solid var(--bs-gray-300);
}

.our-service-item a {
	color: var(--primary);
	text-decoration: none;
	line-height: normal;
}
.our-service-item:hover a{
	color: var(--orange);
}

.our-service-item .icon {
	transform: scale(1);
	transition: 0.4s;
}

.our-service-item:hover .icon img {
	transition: 0.9s;
	animation: rotateY 0.7s;
}

.our-service-item>.icon img {
	width: 40px;
	margin-right: 10px;
}

.btn-orange-light {
	border-radius: 20px;
	border-width: 3px;
	color: var(--white);
	background-color: var(--orange);
	font-weight: 500;
}

.btn-orange-light:hover {
	color: var(--white);
	background-color: var(--primary);
}

.technolgy-section {
	background: url(../resources/bg/bg-2.png);
	background-size: cover;
	min-height: 400px;
}

.orange-text {
	color: var(--orange);
}

.col-center-img {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	height: 100%;
}

.service-warpper .col-md-6 {
	padding: 0 !important;
}

.service-warpper .flipbox {
	position: relative;
	z-index: 1;
	margin: 0;
	backface-visibility: hidden;
}

.service-warpper .flipbox .flipbox-container {
	position: relative;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	perspective: 1e3px;
}

.service-warpper .col-md-4 {
	border: 1px solid rgba(0, 0, 0, 0.09);
	border-left: 0;
	border-bottom: 0;
}

.service-warpper .col-md-4:nth-child(1),
.service-warpper .col-md-4:nth-child(2),
.service-warpper .col-md-4:nth-child(3) {
	border-top: 0;
}

.service-warpper .flipbox .flipbox-container .front-side {
	position: relative;
	bottom: 0;
	z-index: 10;
	transform: rotateY(0);
	top: 0;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
	min-height: 220px;
	background-color: initial;
	background-position: 50%;
	background-clip: padding-box;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1e3px;
	perspective: 1e3px;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content {
	background-color: rgba(250, 250, 250, 0.64);
	text-align: left;
	padding: 30px 20px 30px 20px;
	border-style: solid;
	border-width: 0px 0px 0px 0px;
	box-shadow: 0px 0px 2px 0px #eee;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	transition: all .9s ease 0s;
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content .frontside-icon {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service-warpper .flipbox .flipbox-container .front-side .frontside-content .front-heading{
	order: 1;
}
.service-warpper .flipbox .flipbox-container .front-side .frontside-content .frontside-icon .icon-img{
	order: 2;
	float: right;
}
.service-warpper .flipbox .flipbox-container .front-side .frontside-content .frontside-icon .icon-img img {
	width: 60px;
	height: 60px;
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content .front-heading .title {
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	color: #000000;
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content .front-heading .title a {
	color: #0a0a0a;
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content .front-heading .title a:hover {
	color: #bb0b0b;
}

.service-warpper .flipbox .flipbox-container .front-side .frontside-content .front-content p {
	color: #444;
	margin: 0;
	/* text-align: justify; */
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;

}

.service-warpper .flipbox .flipbox-container .back-side {
	position: absolute;
	z-index: -1;
	padding: 10px;
	border-radius: 5px;
	background-color: var(--blue);
	transform: rotateY(-180deg);
	top: 0;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
	min-height: 220px;
	background-color: initial;
	background-position: 50%;
	background-clip: padding-box;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1e3px;
	perspective: 1e3px;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
	transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
}

.service-warpper .flipbox .flipbox-container .back-side .backside-content {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	transition: all .9s ease 0s;
}

.service-warpper .flipbox .flipbox-container .back-side .backside-content .back-heading .back-title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 0px;
}

.service-warpper .flipbox .flipbox-container .back-side .backside-content .back-heading .back-title a {
	color: var(--white);
}

.service-warpper .flipbox .flipbox-container .back-side:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -9;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, #0082f1 0%, #0082f1 58%);
	content: "";
}

.service-warpper .flipbox:hover .flipbox-container .front-side {
	transform: rotateY(180deg);
}

.service-warpper .flipbox:hover .flipbox-container .back-side {
	transform: rotateY(0);
	z-index: 1;
}

.service-warpper .flipbox:hover .flipbox-container .back-side .backside-content {
	right: 0;
}

.service-warpper .flipbox:hover .flipbox-container .back-side .backside-content .back-heading .back-title {
	color: var(--white);
}

.service-warpper .flipbox:hover .flipbox-container .back-side .backside-content .back-content .back-p {
	color: var(--white);
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.flipbox .services-btn-link a {
	color: var(--white);
}

.flipbox .services-btn-link a:hover {
	opacity: 0.84;
}

.service-warpper {
	position: relative;
	overflow: hidden;

}

.service-warpper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 200%;
	height: 100%;
	background: url(../resources/bg/pattern3.png) repeat;
	background-size: auto;
	background-attachment: fixed;
	animation: move-bg 500s linear infinite;
	opacity: 1;
}

.service-main-title {
	font-size: 24px;
	color: var(--orange);
}

.service-secondary-title {
	font-size: 28px;
	color: var(--secondary);
	font-weight: bold;
}

.page-heading-parallax {
	background-repeat: no-repeat;
	background-size: cover !important;
	background-position: center center !important;
	background: var(--primary);
}

.page-heading-parallax h1 {
	color: var(--bs-white);
}

.fixed-info {
	position: fixed;
	top: 300px;
	right: 0px;
	z-index: 99999;
}

#MiniLeftNav {
	list-style: none;
}

#MiniLeftNav li {
	background-color: var(--orange);
	padding: 0;
	width: 32px;
	height: 32px;
}

#MiniLeftNav li:first-child {
	border-bottom: 1.2px solid rgba(0, 0, 0, 0.16);
}

#MiniLeftNav li:nth-child(2) {
	border-bottom: 1.2px solid rgba(0, 0, 0, 0.16);
}

#MiniLeftNav li .side-slide-icon {
	display: block;
	text-align: center;
	padding: 0;
	position: relative;
	text-align: center;
	color: var(--white);
}

#MiniLeftNav span {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	/* text-transform: uppercase; */
	bottom: 5;
	right: 34px;
	line-height: 32px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 0;

	/* CSS3 Transition: */
	-webkit-transition: 0.50s;
	/* Future proofing (these do not work yet): */
	-moz-transition: 0.50s;
	transition: 0.50s;
}

#MiniLeftNav .side-slide-icon:hover span {
	width: auto;
	padding: 0 30px;
	overflow: visible;
}

#MiniLeftNav .side-slide-icon:hover {
	text-decoration: none;
}

#MiniLeftNav .side-slide-icon span {
	background-color: var(--indigo);
	color: var(--white);
}

#MiniLeftNav .side-slide-icon span a {
	color: var(--white) !important;
	text-decoration: none !important;
}

/* SUB PAGE */
.about-wrapper-main {
	background: url(../resources/bg/dot-grid.webp);
}

.about-container {
	background-color: var(--bs-white);
}

.Choose-us-wrapper {
	padding: 25px 0px;
	background-color: var(--light-bg2);
}

.Choose-list {
	display: flex;
	align-items: self-start;
}

.choose-title {
	font-size: 23px;
	font-weight: 600;
	color: var(--dark-bg2);
	line-height: normal;
	margin-bottom: 25px;
	width: 100%;
}

.about-content-choose svg {
	display: inline-block;
	background-color: var(--orange);
	width: 10px;
	height: 10px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	color: var(--bs-white);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	padding: 5px;
	margin-top: 4px;
	margin-right: 9px;

}

.technolgy-wrapper {
	background-color: rgb(249 250 254);
	background-repeat: repeat;
	background-position: top;
	background-image: url(../resources/bg/tab-bg.jpg);
	background-size: 100%;
}

.tech-title {
	font-size: 1.75rem;
	margin-top: 20px;
	color: var(--primary);
	font-weight: 500;
}

.technolgy-container {
	display: flex;
	flex-wrap: wrap;
}

.technolgy-item {
	width: 14%;
	min-width: 150px;
	padding: 15px;
	margin: 1%;
	position: relative;
	background-color: var(--white);
	border-radius: 7px;
	-webkit-box-shadow: 5px 7px 15px 2px rgb(82 90 101 / 12%);
	-moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
	box-shadow: 5px 7px 15px 2px rgb(82 90 101 / 12%);
	height: 130px;
	text-align: center;
}
.technolgy-item img{max-width: 55px;}
.technolgy-title {
	font-weight: 600;
	font-size: 18px;
	margin-top: 15px;
}

/* Count Section */
.col-10-center {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

.count-section {
	min-height: 400px;
	background-image: url(../resources/bg/world-map.png);
	background-position: center;
	background-size: 100%;
	background-color: var(--bs-white);
}

.count-round {
	position: relative;
	width: 300px;
	height: 300px;
	box-shadow: 2px 4px 20px 1px rgb(45 45 45 / 20%);
	border-radius: 100%;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	text-align: center;
	background-color: var(--white);
	z-index: 2;
	overflow: hidden;
}

.count-round .content {
	position: relative;
	z-index: 9;
}

.count-round-back {
	width: 300px;
	height: 300px;
	border-radius: 100%;
	background: var(--blue);
	position: absolute;
	left: 0;
	top: -20px;
	z-index: 1;
	overflow: hidden;

}

.count-round-back::before,
.count-round-back::after,
.count-round::before,
.count-round::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 100%;
	box-shadow: 2px 4px 20px 1px rgb(45 45 45 / 13%);
}

.count-round-back::before {
	left: 20px;
	top: 20px;
	background-color: #247dff;
}

.count-round-back::after {
	left: 40px;
	top: 40px;
	background-color: #3587ff;
}

.count-round::before {
	left: -12px;
	background: var(--white);
	z-index: 1;
}

.count-round::after {
	left: 0px;
	background: transparent;
	border: 10px solid #3587ff;
}

.count-detail h1 {
	color: var(--blue);
	font-weight: 800;
}

.count-round h1 {
	color: var(--blue);
	font-weight: 800;
	font-size: 50px;
}

.count-detail h3,
.count-round h3 {
	color: var(--gray-700);
	font-weight: 700;
	margin-bottom: 20px;
}

.col-center-img {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	height: 100%;
}

.service-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.service-list-item {
	flex: 0 24%;
	min-width: 310px;
	height: 150px;
	padding: 16px;
	padding: 16px;
	display: flex;
	align-items: center;
	position: relative;

}

.services-provide-content h2 {
	font-size: 38px;
	color: #0b0b31;
	margin: 8px 0 15px 0;
}

.features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 16px;
	margin-left: -10px;
	margin-right: -10px;
}

.features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
}

.features-list li span {
	display: block;
	background-color: var(--white);
	border-radius: 5px;
	padding: 15px 15px;
	z-index: 1;
	position: relative;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	color: var(--dark);
	border-left: 2px solid var(--orange);
	font-weight: 600;
	font-size: 18px;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82 90 101 / 10%);
	box-shadow: -1px 3px 20px 0px rgb(82 90 101 / 10%);
}

.features-list li span::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 3px;
	background-color: var(--orange);
	z-index: -1;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.features-list li span:hover::before {
	width: 100%;
}

.features-list li span:hover {
	color: var(--white);
}

.service-list-item {
	border: 1px solid var(--bs-gray-300);
	margin-right: -1px;
	margin-top: -1px;
	position: relative;
}

.service-list-item:nth-child(9),
.service-list-item:last-child {
	border-top: 0;
}

.service-list-item .serial-number {
	position: absolute;
	top: 5px;
	right: 5px;
	color: var(--bs-gray-100);
	font-size: 50px;
	font-weight: bold;
	user-select: none;
	-webkit-user-select: none;
}

.service-list-item .service-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary);
}

.service-list-item .service-title a {
	font-weight: 500;
	font-size: 16px;
}

.service-list-item .service-icon img {
	margin-right: 12px;
	width: 50px;
}

.service-list-item:hover .service-icon img {
	animation: rotateY 0.7s;
	-webkit-animation: rotateY 0.7s;
}

.light-bg {
	background-color: var(--light-bg3);
}

.pricing-block {
	background-color: var(--bs-white);
	min-height: 770px;
	border-radius: 12px;
	padding: 60px 15px 0px 15px;
	margin-bottom: 40px;
	box-shadow: 0px 4px 30px var(--bs-gray-300);
	background-image: url(../resources/bg/price.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
}

.pkg_name {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--bs-gray-300);
}

ul.benifits {
	list-style-type: none;
	padding: 0;
	margin: 0;
	padding-left: 15px;
}

ul.benifits svg {
	color: var(--primary);
}

.pricing-block .btn.get-started-btn {
	font-weight: 500;
	background-color: var(--bs-orange);
}

.services-provide-wrapper {
	padding: 50px 0px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-color: #f6f3f3;
}

.service-wized {
	background-color: var(--light-bg3);
	padding: 30px;
	margin-bottom: 40px;
}

.service-right-side-part {
	position: sticky;
	top: 100px;
}

.widget_categories ul {
	gap: 10px;
	list-style-type: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.widget_categories ul li a {
	gap: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	background: var(--bs-white);
	color: var(--dark);
	border-radius: 2px;
	overflow: hidden;
	padding: 10px 22px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.widget_categories ul li a i {
	background-color: var(--primary);
	font-size: 20px;
	font-weight: 400;
}

.widget_categories ul li a:hover,
.widget_categories ul li a:focus {
	color: var(--bs-white);
	background-color: var(--primary);
}

.widget_categories ul li a:hover i,
.widget_categories ul li a:focus i {
	color: var(--bs-white);
}
.iot-list ul{list-style-type: none;padding-left: 0px;}
.iot-list ul li {
	margin-bottom: 16px;
	color: #243342;
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
}
.iot-list ul li ul li {
	margin: 16px;
	margin-left: 46px;
}

.hor-list-item{min-width: 174px;}
.service-details-list ul{list-style-type: none;}
.mb-40 {
    margin-bottom: 40px;
}
/* parallex */
.parallex {
	position: relative;
	background-image: url('../resources/bg/feedback-img.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 9;
}

.text-parallex {
	color: var(--white);
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.contact-wrapper {
	width: 100%;
	background-image: url(../resources/bg/contact-bg.png);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.contact__two-box {
	box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.08);
	padding: 10px;
	margin: 0;
	background: var(--white);
	position: relative;
	z-index: 28;
}

.contact-two-left-item {
	border-bottom: 1px solid var(--bs-gray-200);
	margin-bottom: 28px;
	padding-bottom: 25px;
	display: flex;
	gap: 20px;
}

.contact-two-left-item-icon img {
	max-width: 45px;
}

.contact-two-left-item-info p a {
	text-decoration: none;
	color: inherit;
}

.map-section iframe {
	width: 100%;
	min-height: 580px;
}

.contact-form .form-control {
	width: 100%;
	font-size: var(--body-font-size);
	font-family: var(--body-font);
	border: none;
	transition: 200ms ease-in;
}
.required{color: var(--required);}
.list-type-none{list-style-type: none;}
.form-feild {
	position: relative;
	margin-bottom: 30px;
}

.pos-icon {
	position: absolute;
	left: 15px;
	top: 6px;
}

.get-started-btn {
	background-color: #ff7a59;
	border-color: #ff7a59;
	border-radius: 3px;
	color: #fff;
	padding: 12px 24px;
	margin-left: 14px;
	margin-top: 15px;
	line-height: 12px;
	font-weight: 700;
}

.get-started-btn:hover {
	background-color: #ff8f73;
	border-color: #ff8f73;
	color: #fff;
}

.contact-form .form-control {

	padding-bottom: 16px;
	position: relative;
}

.contact-form .form-control label {
	color: #777;
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.contact-form .form-control input {

	border-radius: 3px;
	display: block;
	width: 100%;
	background-color: #f5f8fa;
	font-size: 14px;
	height: 40px;
	box-sizing: border-box;
	padding: 0 15px;

	line-height: 22px;
	color: #33475b;
	border: 1px solid #cbd6e2;
}

.contact-form .form-control input:focus {
	outline: 0;
	border-color: #777;
}

.contact-form .form-control.success input {
	border-color: var(--success-color);
}

.contact-form .form-control.error input {
	border-color: var(--error-color);
}


.contact-form .form-control:focus+.svg-inline--fa {
	color: var(--orange) !important;
}

.contact-form {
	padding-bottom: 0px;
}

.contact-form textarea {
	min-height: 70px;
}

.contact-form option:first {
	color: #787878 !important;
}

select.form-control:invalid {
	color: #787878 !important;
}

.btn-submit {
	background-color: var(--primary);
	color: var(--white);
	padding: 8px 30px;
	text-align: center;
	display: block;
	/* width: 100%; */
	border-radius: 30px;
}

.contact-form .nav-tabs {
	border-bottom: 2px solid var(--bs-gray-400);
}

.contact-form .nav-tabs .nav-link {
	border: none;
}

.contact-form .nav-tabs .nav-link h3 {
	font-size: 22px;
	color: var(--bs-gray-600);
	margin-bottom: 0;
}

.contact-form .nav-tabs .nav-link.active h3 {
	color: var(--primary);
}

.contact-form .nav-tabs .nav-link.active {
	border-bottom: 2px solid var(--primary);
	margin-bottom: -1px;
}

.contact-form .nav-item {
	margin-bottom: 0px;
}

.contact-hide-info {
	position: relative;
}

.contact-hide {
	position: absolute;
	top: -75px;
	background-color: #fff;
	width: 99%;
	color: #FFF;
	height: 50px;
}

.parallex .btn-orange-light {
	margin-left: 20px;
}

.parallex .btn-orange-light:hover {
	color: var(--orange);
	background-color: var(--white);
}
.list-style-none{list-style-type: none;}
.service-media>img{width: 100%;}
/* SUB PAGE END */
.footer-bg {
	background-color: var(--dark-bg);
}

.footer-title {
	font-size: 20px;
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

.widget-title {
	position: relative;
	display: block;
	margin-bottom: 34px;
	padding-bottom: 15px;
	font-size: 1.5rem;
	color: var(--white);
}

.footer-info-content {
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--white);
}

.widget-title h4 {
	margin: 0;
}

.widget-title::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0px;
	left: 0;
	background: linear-gradient(90.09deg, #ffffff -7.63%, rgba(250, 67, 24, 0) 99.84%);
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
	z-index: 2;
}

.footer-info-content {
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--white);
}

.social-icon {
	list-style-type: none;
	padding-left: 0;
}

.social-icon li a {
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
}

.social-icon li a svg {
	font-size: 22px;
	cursor: pointer;
	margin-right: 6px;
}

.social-icon li a {
	color: var(--white) !important;
	transition: ease-in 0.2s;
}

.social-icon li a:hover {
	color: var(--blue) !important;
	transform: scale(1.1);
}

.footer-menu-list {
	padding-left: 15px;
	list-style-type: none;
}

.footer-menu-list li {
	padding-bottom: 8px;
	position: relative;
	margin-bottom: 8px;
	list-style-type: none;
}

.footer-menu-list li::before {
	content: "\2022";
	color: rgb(220, 220, 220);
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.footer-menu-list li a {
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	text-decoration: none;
	color: var(--white);
	font-weight: 500;
	font-size: 15px;
}

.footer-menu-list li a:hover {
	color: var(--orange);

}

.footer-widget__contact-box li .text p a {
	color: var(--white);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	text-decoration: none;
}

.icon-email-1:before {
	content: "\e90e";
}

.border-line {
	border-right: 2px dashed #dedede;
}

.footer-widget__contact-box li {
	position: relative;
	display: flex;
	margin-bottom: 8px;
}

.footer-widget__contact-box li .text p {
	font-size: 16px;
	color: var(--white);
}

.footer-widget__contact-box li .icon {
	font-size: 20px;
	margin-right: 15px;
	color: var(--primary);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget__contact-box li .icon img {
	width: 24px;
}

.contact__two-box {
	padding: 10px;
}

.footer-logo {
	margin-bottom: 8px
}

.social-icon {
	margin-bottom: 15px;
	color: var(--white);
}

.pl-45 {
	padding-left: 35px !important;
}

.footer-copyright {
	background-color: var(--dark-bg2);
}

.footer-copyright p,
.footer-copyright a {
	color: var(--bs-white);
}

.footer-copyright a:hover {
	color: var(--orange);
}

/*=============================
     Keyframes
===============================*/

@-webkit-keyframes left {
	0% {
		transform: translateX(100%)
	}

	to {
		transform: translateX(-100%)
	}
}

@keyframes left {
	0% {
		transform: translateX(100%)
	}

	to {
		transform: translateX(-100%)
	}
}

@-webkit-keyframes right {
	0% {
		transform: translateX(-100%)
	}

	to {
		transform: translateX(100%)
	}
}

@keyframes right {
	0% {
		transform: translateX(-100%)
	}

	to {
		transform: translateX(100%)
	}
}

@-webkit-keyframes top {
	0% {
		transform: translateY(100%)
	}

	to {
		transform: translateY(-100%)
	}
}

@keyframes top {
	0% {
		transform: translateY(100%)
	}

	to {
		transform: translateY(-100%)
	}
}

@-webkit-keyframes bottom {
	0% {
		transform: translateY(-100%)
	}

	to {
		transform: translateY(100%)
	}
}

@keyframes bottom {
	0% {
		transform: translateY(-100%)
	}

	to {
		transform: translateY(100%)
	}
}

@keyframes jump-1 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	40% {
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes rotateY {
	100% {
		transform: rotateY(360deg);
	}
}

@keyframes move-bg {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 0;
	}
}

@-webkit-keyframes move-bg {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 0;
	}
}

/*=============================
        Media Query
===============================*/
@media screen and (min-width:200px) {
	.navbar-wrap.main-menu {
		display: none;
	}

	.text-parallex {
		font-size: 18px;
	}

	.bar-menu.mobile-nav-toggler {
		display: block;
	}

	.get-quote {
		display: none;
	}

	.our-service-item {
		flex: 0 33%;
	}

	.image-left-conent .three {
		max-width: 100%;
	}

	.our-service-item {
		flex: 0 100%;
	}

	.col-center-img {
		display: none;
	}

	footer .container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.choose-us-center img {
		max-width: 100%;
	}

	.page-heading-parallax .container {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

@media screen and (min-width:480px) {
	.get-quote {
		display: block;
	}
}

@media screen and (min-width:767px) {
	footer .container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (min-width:991px) {
	.navbar-wrap.main-menu {
		display: flex;
	}

	.bar-menu.mobile-nav-toggler {
		display: none;
	}
	.get-quote {margin-left: 40px;}
	.our-service-item {
		flex: 0 50%;
	}

	.col-center-img {
		display: block;
	}

	.text-parallex {
		font-size: 29px;
	}

	.contact__two-box {
		padding: 90px 70px;
	}

	.page-heading-parallax .container {
		padding-top: 50px;
		padding-bottom: 55px;
	}
}

@media screen and (min-width:1024px) {
	.our-service-item {
		flex: 0 33%;
	}

	.image-left-conent .three {
		max-width: 96%;
	}

	.page-heading-parallax .container {
		padding-top: 75px;
		padding-bottom: 75px;
	}
}

@media screen and (min-width:1190px) {
	.choose-us-center img {
		max-width: 460px;
	}
}

@media screen and (min-width:1400px) {
	.technolgy-img img {
		max-width: 480px;
	}
}