* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

a{
  text-decoration: none;
}

/* splash screen */
.splashDiv {
  position: fixed;
  z-index: 199999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #161616;
  transition: 1s;
}

.splashtext {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.splashLogo {
  position: relative;
  display: inline-block;
  bottom: -20px;
  opacity: 0;
}

.splashLogo.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
}

.splashLogo.fade {
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}


/* slide show div */

.banner-scrolled {
  background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding: 0.6rem;
  margin-top: 10px !important;
}

/* nav bar */
.navbar {
  transition: all 0.5s;
}



nav .nav-link {
  position: relative;
  transition: color 0.2 ease-in-out;
}

nav .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.2s ease-in-out 0s;

}

nav .nav-link:hover,
nav .nav-link.active {
  color: #ffffff;
  outline: none;
}

nav .nav-link:hover::before,
nav .nav-link:focus::before,
nav .nav-link.active::before {
  visibility: visible;
  transform: scaleX(1);
}



.whole-shadow {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box;


}


.back-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.parent-for-align-middle {
  display: table;
  height: 100%;
  width: 100%;
  position: relative;
}

.child-for-align-middle {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.underline-head::before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #dc3545;
  bottom: -12px;
  width: 100px;

}

.underline-head {
  position: relative;
  font-size: 2rem;
}

.aboutUsBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/team1.jpg);
}

.contactBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/workBanner.png);
}

.underline-head-white::before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: white;
  bottom: -12px;
  width: 100px;

}

.underline-head-white {
  position: relative;
  font-size: 2rem;
}


.underline-head-red-center {
  display: inline-block;
  position: relative;
  font-size: 2rem;
}

.underline-head-red-center::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 50%;
  background-color: #dc3545;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
}

.underline-head-white-center {
  display: inline-block;
  position: relative;
  font-size: 2rem;
}

.underline-head-white-center::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 50%;
  background-color: white;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
}

.info-card {
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.info-card:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 10px #888888;
}


.workBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-image: url(../img/workBanner.png);
}


.roundDiv {
  height: 100px;
  width: 100px;
  border: 10px solid white;
  color: white;
  border-radius: 50%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.09);
  }

  100% {
    transform: scale(1);
  }
}

.form-wrapper {
  background: white;
  padding: 15px;
  transition: opacity 300ms ease-in-out;
}

.form-wrapper:after {
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ".";
  font-size: 0;
}

.form-wrapper.is-sent {
  animation: launch 1.5s ease-in-out;
}

.send-btn {
  border: none;
  padding: 10px 20px;
  font-size: 1.3em;
  color: white;
  font-family: "Raleway";
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease-in-out;
}

.send-btn:hover {
  transform: translate(15px, 0px) scale(1.1);
}

@keyframes launch {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  10%,
  15% {
    transform: translateX(0) scale(0.5);
  }

  30%,
  35% {
    transform: translateX(-20) scale(0.5);
  }

  40%,
  70% {
    transform: translateX(100vw) scale(0.5);
  }

  70% {
    opacity: 1;
  }

  71% {
    opacity: 0;
    transform: translateX(100vw) scale(0.5);
  }

  72% {
    opacity: 0;
    transform: translateX(0px) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}


.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, transparent 20%, transparent 80%, #ffffff 100%);
}

.marque {
  display: flex;
  gap: 20px;
  width: 200%;
}

.marque-group {
  display: flex;
  gap: 20px;
  width: 100%;
  animation: scroll-x 200s linear infinite;
}

.marque-group img{
  width: 50%;
  height: 100px !important;
}

@keyframes scroll-x
{
  0%
  {
    transform: translateX(0%);
  }
  100%
  {
    transform: translateX(calc(-100% - 20px));

  }
}

.marque-reverse .marque-group {
  animation-direction: reverse;
  animation-delay: 3s;
}



ol.style_1 > li {
  position: relative;
  counter-increment: li;
  min-height: 2rem;
  padding-top: 0.1rem;
  list-style: none;
}
ol.style_1 > li::before, ol.style_1 > li::after {
  position: absolute;
  display: flex;
}
ol.style_1 > li::before {
  content: counter(li);
  left: -2.75rem;
  top: 0;
  height: calc(2rem - 1px);
  width: calc(2rem - 1px);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid currentcolor;
}
ol.style_1 > li::after {
  content: "";
  left: -1.75rem;
  top: calc(2rem + 1px);
  height: calc(100% - 2.5rem);
  border-left: 1px solid currentcolor;
}

#box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gradient-border {
  --borderWidth: 3px;
  background: white;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}




.footer-section {
  background: #151414;
  position: relative;
}
.footer-hr {
  border-bottom: 1px solid #373636;
}
.footer-icon i {
  color: #dc3545;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.footer-icon-text {
  padding-left: 15px;
  display: inline-block;
}
.footer-icon-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-icon-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}


.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #dc3545;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #dc3545;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.shubhluck-area{
  background: #202020;
  padding: 25px 0;
}

@media only screen and (max-width: 768px) {
  #myNavbar {
    margin : 0 !important;
    position: sticky !important;
    position: -webkit-sticky !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
  }

  .contactMainDiv{
    padding: 15px !important;
  }
}

.introBanner{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-image: url(../img/banner.jpg);
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  #myNavbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    margin-top: 15px !important;
  }
}


.acInstallBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/slide1.jpg);
}

.card-top-image-fit{
  width:100%;
  height:auto;
  max-width:100%;
  max-height:250px;
}

.backImgFull {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.modal-top-image-fit{
  width:100%;
  height:auto;
  max-width:100%;
  max-height:340px;
}

.carousel-item img
{
  width: auto;
  height: 445px;
  max-height: 445px;
}

@media only screen and (max-width: 426px)  {
  .carousel-item img
  {
    width: auto;
    height: 300px;
    max-height: 300px;
  }
}
  .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
  }
  
   .my-float{
    margin-top:16px;
  }


.marque-group img {
  height: 100px;
  
}

.image-container {
  width: 100%;
  overflow: hidden;
}

.image-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: scrollImages 30s linear infinite;
}

.image-scroll img, .image-scroll-reverse img {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-right: 30px;
}

@keyframes scrollImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.image-scroll-reverse {
  display: inline-block;
  white-space: nowrap;
  animation: scrollImages 10s reverse infinite;
}



.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #dc3545;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 50px;
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #dc3545;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #dc3545;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}





/* owl nav */
.owl-prev span, .owl-next span {
	color: #000000;
}

.owl-prev span:hover, 
.owl-next span:hover {
	color: #8199A3;
}

.owl-prev, .owl-next {
	position: absolute;
	top: 0;
	height: 100%;
}

.owl-prev {
	left: 7px;
}

.owl-next {
	right: 7px;
}

/* removing blue outline from buttons */
button:focus, button:active {
   outline: none;
}

.carousel-main img{
  width: 200px;
  height: auto;
  
}