@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/myriad-apple');

*{
    box-sizing: border-box;
	user-select: none;
	scroll-behavior: smooth;
}

body {
    font-family: 'Myriad Apple', sans-serif !important;
    margin: 0;
    padding: 0;
	background-color: #F6F6F6 !important;
}

h1 b {
    font-size: 2.5rem;
}

p{
    margin: 0 !important;
    font-size: 15px;
}

b{
    margin: 0;
    font-size: 15px;
}

a{
    text-decoration: none !important;
}

h1,h2,h3,h4,h5,h6{
	margin-bottom: 0 !important;
}

ul{
	margin: 0 !important;
}

ul li{
	font-size: 15px;
}

ol{
	margin-bottom: 0 !important;
}

ol li{
	padding: 5px;
}

/* nav */

.navbar-brand{
	padding: 0 !important;
}

.navbar-brand img{
	width: 120px;
}

.navbar-brand p{
	font-size: 11px;
	margin-top: 4px !important;
}

.main_nav {
	border-radius: 300px;
	padding: 10px 30px !important;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}
 .header {
	position: relative;
	padding: 10px 16px;
	transition: all 0.3s ease-in-out;
	z-index: 99999;
}

	.sticky {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 99999;
		background-color: #fff;
		padding: 0;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.sticky .main_nav{
		box-shadow: none;
		padding: 10px 0 !important;
	}

/* .main_nav.sticky {
    background: #018AD9;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    top: 0;
	left: 0;
    width: 100%;
    right: 0;
    z-index: 999;
    transition: all 0.5s ease-in-out;
    position: fixed;
} */

.main_nav .navbar-nav .nav-link.active{
	border-bottom: 2px solid #2B91B9;
}

.navbar-nav .nav-item .nav-link{
    padding: 17px 20px !important;
    font-size: 16px;
}

.end_contct{
    display: flex;
    align-items: center;
}

.end_contct a{
	color: #212121;
}

.dropdown {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.dropdown:hover{
	overflow: visible;
}

.dropdown ul{
	padding-left: 0;
}

.dropdown ul li{
	list-style-type: none;
}

.dropdown-content {
  /* display: none; */
  position: absolute;
  left: 0;
  top: 80px;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.dropdown:hover .dropdown-content{
	top: 100%;
	opacity: 1;
	overflow: visible;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-in-out;
  text-transform: capitalize;
}

.dropdown-content a:hover {
	background-color: #ffb700;
	color: #000;
	border-left: 5px solid #2B91B9;
}

/* .dropdown:hover .dropdown-content {display: block;} */

/* all margin top */

.banner, .about_us_sec, .testimonial-sec, .why-us, .services, .contact-us{
	margin-top: -101px;
}

/* banner */

.banner{
	position: relative;
}

.banner .banner-txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.banner img{
	object-fit: cover;
	width: 100%;
	height: calc(100vh - 77px + 101px);
	position: relative;
	filter: brightness(50%);
}

.hero_btn {
	display: grid;
    width: fit-content;
	margin: 0 auto;
}

.hero_btn a {
	position: relative;
	padding: 15px 30px;
	color: #fff;
	text-decoration: none;
	font: 700 30px;
	overflow: hidden;
    font-size: 18px;
	background-color: #ffffff45;
	border-radius: 5px;
	transition-duration: 0.5s;
}

.hero_btn a:hover{
	background-color: #fff;
	color: #212121;
}

.hero_btn a span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #ffffff00, #fff);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.hero_btn a span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #ffffff00, #fff);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.hero_btn a span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #ffffff00, #fff);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.hero_btn a span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #ffffff00, #fff);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}

/* top spec */

.spec{
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	padding: 1rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-top: -69px;
	z-index: 999;
}

.spec h6{
	font-weight: 600;
}

.rgt-brdr{
	border-right: 1px solid #ddd;
}

.rgt-brdr img{
	width: 50px;
	margin-top: 1rem;
}

/* heading */

.heading{
	text-align: center;
	margin-top: 3rem;
	font-size: 30px;
	font-weight: 600;
	position: relative;
	color: #212121;
}

.heading02{
	margin-top: 3rem;
	font-size: 30px;
	font-weight: 600;
	position: relative;
	color: #212121;
}

.sub_heading{
	text-align: center;
	font-size: 15px;
	margin-top: 1rem;
}

	/* Underscore caret as a horizontal line under the text that blinks */
  .heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* margin-left: 8px; */
    width: 24px;
    height: 3px;
    background: #2B91B9;
    border-radius: 2px;
    animation: blink-underscore 2s step-start infinite;
  }

  .heading02::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* margin-left: 8px; */
    width: 24px;
    height: 3px;
    background: #2B91B9;
    border-radius: 2px;
    animation: blink-underscore 2s step-start infinite;
  }

  @keyframes blink-underscore {
    0%, 50%, 100% {
      opacity: 1;
    }
    25%, 75% {
      opacity: 0;
    }
  }

  /* service */

.service-box{
	/* border: 1px solid #ddd; */
	border-radius: 5px;
	padding: 1rem;
	height: 100%;
	cursor: pointer;
	transition: transform 0.3s ease;
	position: relative;
	color: #212121;
	background-color: #fff;
}

.service-box h6{
	font-weight: 600;
}

.service-box:hover{
	transform: translateY(-5px);
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0077ff23;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .3s ease;
	border-radius: 5px;
}

.service-box:hover .overlay {
	height: 100%;
}

.service-box img{
	width: 50px;
	margin-bottom: 1rem;
}

.service-box ul{
	padding-left: 1rem;
	margin-top: 1rem !important;
}

.services{
	margin-bottom: 2rem;
	padding-top: 120px;
}

.services .service-box{
	height: 100%;
	cursor: auto;
}

.custom-web-application ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.mobile-application ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.software-testing ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.cloud_services ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.power-bi-data-analytics ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.website-design-and-development ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

.cyber-security-assessment ul{
	margin-top: 1rem !important;
	padding-left: 1rem;
}

/* testimonials */

.item {
  background-color: #fff;
  color: #212121;
  height: 325px;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  border-radius: 5px;
  z-index: 999;
}

.item h5{
	color: #2B91B9;
	margin-top: 1rem;
}

.item img{
	width: 80px !important;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.white_sec{
	background-color: #e9e9e9;
	padding-top: 1rem;
}

.owl-nav{
	display: none;
}

.owl-dots{
	display: none;
}

.video-testimonial{
	padding-bottom: 4rem;
}

.phone-photo-no-margin{
	margin-top: 2rem !important;
}

/* footer */

.footr{
	background-color: #22283B;
	padding-top: 8rem;
	padding-bottom: 3rem;
	color: #fff !important;
}

.footr img{
	width: 180px;
}

.qwk-links{
	margin-left: 120px;
}

.qwk-links ul{
	padding-left: 0;
}

.qwk-links ul li{
	list-style-type: none;
	padding: 3px 0;
}

.qwk-links ul li a{
	color: #fff;
}

.qwk-links ul li a:hover{
	text-decoration: underline !important;
}

.footer-add{
	display: flex;
	/* align-items: center; */
}

.footer-add i{
	font-size: 30px;
}

.footr-social{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footr-social a i{
	font-size: 20px;
	color: #fff;
}

.footr-social .pv_policy {
	color: #fff;
	margin-left: 1rem;
	text-decoration: underline !important;
}

/* parallax */

.parallax {
  margin-top: 77px;
  /* The image used */
  background-image: url("/asset/images/parallax1.jpg");

  /* Set a specific height */
  min-height: 200px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: background-position 0.1s ease-out;
}

.parallax h3{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #212121;
}

/* about us */

.about_us_sec{
	background-color: #fff;
	padding: 2rem 0;
	padding-top: 120px;
}

.about_us_sec img{
	width: 400px;
}

/* trusted by */

.trusted-box{
	padding: 1rem;
	display: flex;
	align-items: center;
	border-radius: 5px;
	background-color: #fff;
	height: 100%;
}

.trusted-box img{
	width: 50px;
	margin-right: 2rem;
}

/* client logos */

.clnt-logo-box{
	padding: 1rem;
	background-color: #fff;
	text-align: center;
	border-radius: 5px;
}

.clnt-logo-box img {
    width: 150px;
	height: auto;
    transition: .3s ease-in-out;
}

.clnt-logo-box:hover.clnt-logo-box img {
    transform: scale(1.2);
}

/* back to top btn */

#button {
  display: inline-block;
  background-color: #2B91B9;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button i {  font-style: normal;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* testimonial */

.testimonial-section .testimonial-sec{
	background-color: #fff;
}

.testimonial-sec{
	/* margin-bottom: 2rem; */
	padding-top: 120px;
	/* background-color: #fff; */
}

.testimonial-sec .carousel-caption h5{
	color: #212121 !important;
}

.testimonial-sec .carousel-caption p{
	color: #212121 !important;
}

.testi-box{
	width: 100%;
	padding: 2rem;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #ddd;
}

.testimonial-sec .carousel-caption{
	position: relative;
	left: 0;
	right: 0;
}

.testi-text{
	text-align: left;
}

.testi-text img{
	width: 50px;
}

.testi-client-img{
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border: 2px solid #2B91B9;
	margin: 0 auto;
	background: url("/asset/images/indianow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
}

.testi-client-img02{
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border: 2px solid #2B91B9;
	margin: 0 auto;
	background: url("/asset/images/avanti.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
}

.testimonial-sec .carousel-indicators button{
	width: 10px !important;
	height: 10px !important;
	border-radius: 100px !important;
	border: none !important;
	background-color: #7fc1db !important;
}

.testimonial-sec .carousel-indicators .active{
	background-color: #2B91B9 !important;
}

.testimonial-sec .carousel-control-prev-icon,.carousel-control-next-icon{
	display: none;
}

#owl-carousel02 .video-container{
	width: 100%;
	height: 200px;
	background-color: #212121;
	border-radius: 5px;
}

#owl-carousel02 .video-container img{
	width: auto !important;
	height: 100%;
}

#owl-carousel02 .item p{
	margin-top: 10px !important;
}

#owl-carousel02 .item .video-container{
	position: relative;
}

#owl-carousel02 .item .video-container .youtube-icon{
	position: absolute;
	width: 50px !important;
	height: auto !important;
	margin: 0 !important;
	border-radius: 0;
	right: 10px;
	bottom: 10px;
}

.testi-photo-box{
	padding: 1rem;
	background-color: #fff;
	text-align: center;
	border-radius: 5px;
	height: 100%;
}

.testi-photo-box img {
    width: 150px;
	height: auto;
    transition: .3s ease-in-out;
}

.testi-photo-box:hover.testi-photo-box img {
    transform: scale(1.2);
}

.testi-photo-box02{
	padding: 10px;
	background-color: #fff;
	text-align: center;
	border-radius: 5px;
	height: 100%;
}

.testi-photo-box02 img {
    width: 150px;
	height: auto;
    transition: .3s ease-in-out;
}

.testi-photo-box02:hover.testi-photo-box02 img {
    transform: scale(1.2);
}

/* employee feed */

.clientfeed-sec img{
	border: 2px solid #2B91B9;
}

/* why us */

.why-us{
	margin-bottom: 2rem;
	padding-top: 120px;
}

.why-us p{
	line-height: normal;
	margin-top: 10px !important;
}

.why-us .trusted-box{
	height: 130px;
}

/* technologies */

/* .technologies-sec{
	padding-bottom: 3rem;
} */

.technologies-sec .nav-pills{
	background-color: #ddd;
	padding: 0.5rem;
	border-radius: 50px;
	justify-content: center;
	width: fit-content;
	margin: 0 auto !important;
    margin-top: 2rem !important;
}

.technologies-sec .nav-pills .nav-link:hover{
	background-color: #cecece;
	border-radius: 50px;
}

.technologies-sec .nav-pills .nav-link.active{
	background-color: #2B91B9;
	border-radius: 50px;
}

.technologies-sec .nav-pills .nav-link{
	color: #71717a;
}

/* contact us */

.contact-us{
	background-color: #fff;
	padding-bottom: 2rem;
	padding-top: 120px;
}

.contact-us img{
	width: 400px;
}

.form-label{
	margin: 0 !important;
	font-size: 14px;
}

.form-control{
	font-size: 13px;
	border-radius: 3px !important;
}

.btn{
	border-radius: 3px !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 15px !important;
}

.btn-primary{
	background-color: #2B91B9 !important;
	border-color: #2B91B9 !important;
	transition: all 0.3s ease-in-out;
}

.btn-primary:hover{
	background-color: #1c7fa7 !important;
}

.contact-us-sec .nav-pills{
	background-color: #ddd;
	padding: 0.5rem;
	border-radius: 50px;
	justify-content: center;
	width: fit-content;
	/* margin: 0 auto !important; */
    /* margin-top: 2rem !important; */
}

.contact-us-sec .nav-pills .nav-link:hover{
	background-color: #cecece;
	border-radius: 50px;
}

.contact-us-sec .nav-pills .nav-link.active{
	background-color: #2B91B9;
	border-radius: 50px;
}

.contact-us-sec .nav-pills .nav-link{
	color: #71717a;
}

.contact_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact_row{
	margin-top: 1rem !important;
}

/* mission vision values */

.mission-vision-values{
	background-color: #fff;
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.mission-vision-values .service-box{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* whatsapp btn */

.floating_btn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

/* portfolio */

.digital-csr-platform p{
	margin-top: 1rem !important;
}

.scholarship-portal p{
	margin-top: 1rem !important;
}

.financial-aid-assistance-portal p{
	margin-top: 1rem !important;
}

.interior-design-portal p{
	margin-top: 1rem !important;
}

.call-centre-portal p{
	margin-top: 1rem !important;
}

.supply-chain-warehouse-management p{
	margin-top: 1rem !important;
}

/* lightbox */

.lightboxpreview {
	transition: all .3s linear;
	padding-top:60%;
	cursor:pointer;
	background-size:cover;
}
   
.lightbox-content {
	max-height:75svh;
  	height:75svh;
}

.lightbox-close { 
  	cursor:pointer;
	margin-left: auto;
	position:absolute;
	right:-30px;
	top:-30px;
	color:white;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.modalscale {transform:scale(0);
opacity:0;}

.lightbox-container, .lightbox-btn, .lightbox-image-wrapper
{
	transition:all .4s ease-in-out;
}

.lightbox_img_wrap {
  /* padding-top:65%; */
  position:relative;
  overflow:hidden;
  height: 100%;
}

/* .lightbox-enabled:hover {
  transform:scale(1.1)
} */

.lightbox-enabled {
	width:100%;
	height:100%;
	/* position:absolute; */
	top:0;
	object-fit:cover;
	cursor:pointer;
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	padding: 1rem;
}

.lightbox-enabled img{
	width: 100px;
}

.lightbox-enabled p{
	margin-top: 1rem !important;
}

.lightbox-enabled b{
	margin-top: 10px !important;
}

.lightbox-container {width:100svw;
height:100svh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:99999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
  opacity:1;
  pointer-events:all;
}
.lightbox-image-wrapper {
  display:flex;
  transform:scale(0);
  align-items:center;
  justify-content:center;
  max-width:90vw;
  max-height:90vh;
  position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
 cursor:pointer; 
  position:absolute;
  font-size:50px;
}

.left {left:50px;}
.right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
  width:100%;
  max-height:95vh;
  object-fit:cover;
 }

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}


.slideleft {
   animation-name: slideleft;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}

.slideright{
   animation-name: slideright;
 animation-duration: .5s; 
 animation-timing-function: ease;
}

.trusted-by-sec .dropdown-content {
  display: none;
  position: absolute;
  left: 12px;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 10px;
  border-radius: 5px;
}

.trusted-by-sec .dropdown-content ul li{
	padding: 0.5rem 1rem;
}

.trusted-by-sec .dropdown:hover .dropdown-content {
	display: block;
}

#fluid {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 77px + 101px);
  background: url("/asset/images/hero-banner3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

/* mobile responsive */

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

	.header{
		padding: 0;
	}

	.mt-5 {
		margin-top: 1rem !important;
	}

	.main_nav {
		display: flex;
		border-radius: 10px;
		padding: 10px !important;
		background-color: #fff;
		transition: all 0.3s ease-in-out;
	}

	.navbar-brand img {
    	width: 80px;
	}

	.navbar-brand p {
		font-size: 8px;
		margin-top: 4px !important;
	}

	h1 b {
		font-size: 20px;
	}

	h5 {
    font-size: 15px !important;
	}

	h6
	{
		font-size: 12px !important;
	}

	p
	{
		font-size: 12px;
	}

	b
	{
		font-size: 12px;
	}

	ul li {
		font-size: 12px;
	}

	.navbar-toggler-icon {
		width: 20px !important;
		height: 20px !important;
	}

	.navbar-nav .nav-item .nav-link {
		padding: 10px !important;
		font-size: 12px;
	}

	.hero_btn a{
		padding: 10px 20px;
		font-size: 15px;
	}

	.rgt-brdr {
		border-right: none;
	}

	.rgt-brdr img {
		margin-top: 5px;
	}

	.specification-sec .row .col-md-3{
		margin-bottom: 1.5rem;
	}

	.heading{
		margin-top: 1rem;
		font-size: 20px;
	}

	.heading02{
		margin-top: 1rem !important;
		font-size: 20px;
	}

	.sub_heading{
		font-size: 12px;
	}

	.item{
		padding: 10px;
	}

	#button{
		display: none;
	}

	.floating_btn{
		width: 80px;
		height: 80px;
	}

	.footr{
		padding-top: 6rem;
	}

	.qwk-links {
		margin-left: 0;
		margin-top: 2rem;
	}

	.footer-add{
		margin-top: 2rem;
	}

	.about_us_sec img{
		width: 100%;
	}

	.clnt-logo-box img{
		width: 80px;
	}

	.client_logos .clnt-logo-box{
		margin-top: 20px;
	}

	#owl-carousel02 .video-container img{
		width: 100% !important;
		border-radius: 5px;
	}

	

	.testi-box{
		padding: 10px;
	}

	.lightbox-container #close {
		top: 15px;
		right: 13px;
		font-size: 20px;
	}

	.phone-photo-margin{
		margin-top: 1rem !important;
	}

	.phone-photo-no-margin{
		margin-top: 0 !important;
	}

	.about-sec img{
		display: none;
	}

	.about_us_sec img{
		display: none;
	}

	.contact-us-sec .heading02{
		margin-top: 1rem !important;
	}

	.contact_row{
		margin-top: 0 !important;
	}

	.contact_col{
		margin-top: 10px !important;
	}
}

/* tab responsive */

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

	.header{
		padding: 0;
	}

	.mt-5 {
		margin-top: 1rem !important;
	}

	.main_nav {
		display: flex;
		border-radius: 10px;
		padding: 10px !important;
		background-color: #fff;
		transition: all 0.3s ease-in-out;
	}

	.navbar-brand img {
    	width: 80px;
	}

	.navbar-brand p {
		font-size: 8px;
		margin-top: 4px !important;
	}

	h1 b {
		font-size: 20px;
	}

	h5 {
    font-size: 15px !important;
	}

	h6
	{
		font-size: 12px !important;
	}

	p
	{
		font-size: 12px;
	}

	b
	{
		font-size: 12px;
	}

	ul li {
		font-size: 12px;
	}

	.navbar-toggler-icon {
		width: 20px !important;
		height: 20px !important;
	}

	.navbar-nav .nav-item .nav-link {
		padding: 10px !important;
		font-size: 12px;
	}

	.hero_btn a{
		padding: 10px 20px;
		font-size: 15px;
	}

	.rgt-brdr {
		border-right: none;
	}

	.rgt-brdr img {
		margin-top: 5px;
	}

	.specification-sec .row .col-md-3{
		margin-bottom: 1.5rem;
	}

	.heading{
		margin-top: 1rem;
		font-size: 20px;
	}

	.heading02{
		margin-top: 1rem !important;
		font-size: 20px;
	}

	.sub_heading{
		font-size: 12px;
	}

	.item{
		padding: 10px;
	}

	#button{
		display: none;
	}

	.floating_btn{
		width: 80px;
		height: 80px;
	}

	.footr{
		padding-top: 6rem;
	}

	.qwk-links {
		margin-left: 0;
		margin-top: 2rem;
	}

	.footer-add{
		margin-top: 2rem;
	}

	.about_us_sec img{
		width: 100%;
	}

	.clnt-logo-box img{
		width: 80px;
	}

	.client_logos .clnt-logo-box{
		margin-top: 20px;
	}

	#owl-carousel02 .video-container img{
		width: 100% !important;
		border-radius: 5px;
	}

	

	.testi-box{
		padding: 10px;
	}

	.lightbox-container #close {
		top: 15px;
		right: 13px;
		font-size: 20px;
	}

	.phone-photo-margin{
		margin-top: 1rem !important;
	}

	.phone-photo-no-margin{
		margin-top: 0 !important;
	}

	/* .about-sec img{
		display: none;
	}

	.about_us_sec img{
		display: none;
	} */

	.contact-us-sec .heading02{
		margin-top: 1rem !important;
	}

	.contact_row{
		margin-top: 0 !important;
	}

	.contact_col{
		margin-top: 10px !important;
	}
}