.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Nunito", sans-serif;
  margin: 0;
}
.section-image img{
  width: 100%;
   position: relative;
}
  .section-image {
    
      animation: rotateScale 5s linear infinite;
    }

    .section-image img {
    
      height: auto;
      display: block;
    }

    @keyframes rotateScale {
      0% {
        transform: rotate(0deg) scale(1);
      }
      50% {
        transform: rotate(10deg) scale(1.05);
      }
      100% {
        transform: rotate(0deg) scale(1);
      }
    }

.section1{
  /* padding: 60px 0px; */
  background-color: #000;
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  background-image: url(../images/abstract-bg-4.webp);
  background-size: cover;
}
  .section1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    content: ''
  }
.section-hed h1 {
  font-size: 82px;
  font-weight: 800;
  color: #fff;
  position: relative;
   font-family: 'Margarine', sans-serif;
}
.section-hed{
  padding: 0px 0px 0px 90px;
}
.section-hed p {
  font-size: 22px;
 
  color: #fff;
   position: relative;
}
.middle {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

/* nav start */

.custom-video {
  /* position: absolute; */
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 75%;
}

.logo img {
  width: 140px;

}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark {
 background-color: #060606 !important;
}

.nav-item a {
  padding: 0px 10px;
  color: #ffff !important;
}

.nav-item {
  padding: 0px 10px;
}
/* button start */

.index-button .btn{

cursor:pointer;
	position:relative;
	padding:10px 20px;
background-color: #fff;
	font-size:19px;
	border-top-right-radius:10px;
	border-bottom-left-radius:10px;
	transition:all 1s;
	&:after,&:before{
		content:" ";
		width:20px;
		height:20px;
		position:absolute;
		border :0px solid #fff;
		transition:all 1s;
		}
	&:after{
		top:-3px;
		left:-1px;
		border-top:3px solid #00b3de;
		border-left:3px solid #00b3de;
	}
	&:before{
		bottom:-1px;
		right:-1px;
		border-bottom:3px solid #00b3de;
		border-right:3px solid #00b3de;
	}
	&:hover{
		border-top-right-radius:0px;
	border-bottom-left-radius:0px;
	 background: linear-gradient(90deg, #00b3de, #ffcb00);
		color:white;
		&:before,&:after{
			
			width:100%;
			height:100%;
			 border-color:white;
		}
	}
}
/* button end */
/* .navbar-collapse ul li:hover {
     color: aliceblue;
 } */

.index-video {
  position: relative;
  width: 100%;
  height: 80vh;
  /* adjust as needed */
  overflow: hidden;
  background-image: url(../images/pipleline-bg.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.herohed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* makes sure it’s on top of video */
  color: #fff;
  /* text color */
  text-align: center;
 
}

.herohed h1 {
  font-size: 92px;
  font-weight: 800;
  background: linear-gradient(to right, #000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgb(236, 229, 229);
  text-align: center;
      /* text-shadow: 2px 2px 10px rgba(224, 2, 2, 0.3); */
}

.herohed p {
  font-size: 26px;
}

.typing-text {
  font-family: 'Margarine', sans-serif;
  font-size: 48px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;

  width: 0;
  /* start hidden */
  animation: typing 5s steps(15) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }

  40% {
    width: 100%;
  }

  60% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #fff;
  }
}

/* about section */

#about-img {
  min-height: 180px;
}

.about {
  padding: 60px 30px;
  /* background: linear-gradient(to right, #000000, #87cefa) !important; */
  background-color: #1c1c1c !important;

}

.about-img img {
  width: 80px;

}

.about-img {
  display: flex;
}

.about-para h2 {
  font-size: 52px !important;
 background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  font-weight: 700;
 
}

.about-para p {
  font-size: 18px !important;
  padding: 20px 0px;
  color: #fff;
}

.image-1 {
  border-radius: 10px !important;
}

.abour-para p {

  font-size: 18px;
  font-weight: 400;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* about section end */


.sticky-content {
  text-align: end;
}


.services-section {
  display: flex;
  min-height: 100vh;

}

.services-list {
  padding: 50px;
  background-color: #313437;
}

.service {
  margin-bottom: 70px;
}

.service img {
  width: 150px;
  margin-bottom: 10px;
}

.service h3 {
  font-size: 28px;



}

.services-text p {
  font-size: 18px;
}

.right-sticky {
  position: relative;
  background-color: #313437;
}

.sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 30px 50px 50px;
  background: #f8f8f8;
  /* background: linear-gradient(180deg, #0c0b0b 0%, #666662 100%) !important; */
  background-image: url(../images/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.sticky-content a {
  text-align: end !important;
  margin: auto;
}

.sticky-content h1 {
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
}

.sticky-content p {
  text-align: end;
  font-size: 18px;
  padding: 20px 0px;
  color: #ffff;
}

/* .sticky-content .btn {
   text-align: end;
} */

.next-section {
  padding: 100px 0;
  background: #1c1c1c;
  text-align: center;
}

.next-section h2 {
  font-size: 40px;
  margin-bottom: 20px;

}

.title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.our {
  font-size: 120px;
  font-weight: 900;
   background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  margin: 0;
  text-align: end;
 
}

.services {
  font-size: 100px; /* adjust as needed */
  font-weight: 900; /* adjust as needed */
  color: transparent; /* important for background-clip */
  background: linear-gradient(90deg, #f07c16, #ffcb00); /* your gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px #fff; /* white stroke */
}


@media(max-width: 768px) {

  .our,
  .services {
    font-size: 60px;
  }
}

/* vision section */
.vision-text h5 {
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  /* color: #e66f07; */
  -webkit-text-stroke: 2px #ffff;
  margin: 0;
  position: relative;
}

.vision-text h4 {
  font-size: 120px;
  font-weight: 900;
   background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  line-height: 0.8;
 
  position: relative;
}

.our-vision {
  padding: 60px 30px;
  /* background-image: url(../images/pipleline-bg.jpeg); */
  position: relative;
  background-color: #1c1c1c;
}

.our-vision::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.8); */
}

.vision-text p {
  font-size: 18px;
  padding: 10px 0px;
  position: relative;
  color: #fff;
}

.circle-container {
  position: relative;
  width: 90%;

}

.rotating-circle {
  width: 100%;
  height: 100%;
 
  overflow: hidden;
  animation: rotate 5s linear infinite;
}

.rotating-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cartoon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  /* adjust as needed */

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

.cartoon-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* pipleline section */


.icon p {
  color: #ffff !important;
  font-size: 20px;
  font-family: "Roboto", sans-serif !important;
  margin-top: 20px;
}

.icon img {
  width: 50px;
  margin-bottom: 30px;
  text-align: center !important;
  margin: auto;
}

.icon {
  /* border: 1px solid #fff; */

  text-align: center !important;
  border-radius: 5px;
  padding: 20px 10px;
}

.icon:hover {
  background-color: #fff;
  color: black !important;
}

.icon:hover p {
  color: black !important;
}

.pipleline-section {
  padding: 60px;
  /* border-top-left-radius: 150px;
  border-bottom-right-radius: 150px; */
 
  background-image: url(../images/pipleline-bg.jpeg);
 background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.pipleline-hed h4 {
  font-size: 62px;
  margin-bottom: 40px;
   
  font-weight: 700;
   background:linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  text-align: center;
 
}

/* solid experiance section */
.box {
  position: relative;
  height: 100%;
  padding: 40px 20px;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
  z-index: 0;
  /* border: 1px solid; */
  background-color: #313437;
}

.box::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(90deg, #f07c16, #ffcb00);
  
  z-index: -1;
  transition: bottom 0.5s ease;
}

.box:hover::after {
  bottom: 0;
}

.solid-image img {
  width: 30%;
  border-radius: 10px;
  border: 1px solid #313437;
  padding: 15px;
  background-color: #313437;
  margin-bottom: 20px;
}
.box:hover .solid-image img{
   background-color: #ffff;
   border: 1px solid #fff;
} 
/* .solid-image{
  text-align: left;
} */
.box h6,
.box p {
  margin: 15px 0;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  text-align: center;
 
}

.box:hover h6,
.box:hover p {
  transform: translateY(-10px);
  color: #fff;
}

.box p {
  color: #Ffff;
  font-size: 18px;
}

.box h6 {
  color: #ffff;
  font-size: 22px;
}

.solid-experitise {
  padding: 60px 30px;
  background-color: #191919;
  background-attachment: fixed;
  position: relative;

}

.solid-hed h5 {
  font-size: 52px;
 background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  padding: 30px 0px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
  
}

.solid-experitise::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.solid-hed img {
  width: 20%;
}

.solid-hed {
  display: flex;

}

.image-wrapper {
  width: 500px;

  overflow: hidden;
  position: relative;
}

.image-wrapper img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  animation: slide 4s infinite alternate ease-in-out;
  left: 60%;
  top: -10%;
}

@keyframes slide {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}



.service {
  display: flex;
  align-items: flex-start;
  gap: 20px;


  border-radius: 10px;

}

.service img {

  height: auto;
  animation: upDown 2s ease-in-out infinite alternate;
}

.service-content {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.service-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.8em;
 color: white;
  /* text-shadow: 0 0 3px #00b3de; */
  text-shadow: 2px 2px 2px #f07c16;
}

.service-content p {
  margin: 0;
  color: #ffff;
  font-size: 18PX;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
  }
}



/* whales section start */
.whales-text h6 {
  font-size: 52px;
  background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.whales-text p {
  font-size: 18px;
  color: #ffff;
}

.circle-wrapper {
  position: relative;

}

.circle-wrapper .circle-image {
  width: 80%;

  object-fit: cover;
  display: block;
  animation: rotateCircle 5s linear infinite;
}

.circle-wrapper .top-image {
  position: absolute;
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 50%;
  object-fit: cover;


}

.whales {
  padding: 60px 0px;
  background-color: #313437;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* in-this-known */
.known-image img {
  width: 50%;
}

.known-image {
  display: flex;
  border: 1px solid #3d4043;
  padding: 20px;
  border-radius: 50px;
  background-color: #3e4043;
   box-shadow: 0 0 60px rgba(93, 70, 232, 0.15);
}

.in-this-known {
  padding: 60px 30px 150px;
 background-color: #313437;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.subscribe-text {
  padding: 80px 0px;
}
.in-the-button{
  display: flex;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.subscribe-text h6 {
  font-size: 52px;
  font-weight: 800;
 background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.subscribe-text p {
  font-size: 18px;
  color: #ffff;
}

.known-image img {
  animation: floatDown 1s ease-in-out infinite alternate;
}

@keyframes floatDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
    /* adjust distance */
  }
}

.subscribe-text form {
  border: 1px solid #Ffff;
  padding: 10px;
  background-color: #fff;
  width: 90%;
  border-radius: 10px;
}

.in-the-button button {
  border: none;
  padding: 10px;
  font-size: 16px !important;
  background-color: #fb6700;
  color: #fff;
  border-radius: 5px;
}

.subscribe-text input {
  border: none !important;
}

.magic {
  border: 1px solid black;
  padding: 40px;
  height: 100%;
  background-image: url(../images/magic.avif);
  background-repeat: no-repeat;
  /* background-size: cover;
 background-position: center; */
  background-color: #000;
  border-radius: 50px;
}

.magic h6 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}









#testimonial-area {

  .section-heading h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

#testimonial-area {
  padding: 60px;
  background-image: url(../images/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.section-heading h2 {
  color: #fff;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.client-commen h3 {
  font-size: 18px;
  color: #fff !important;
  position: relative;
}

.testi-wrap {
  position: relative;
  height: 600px;
  margin-top: -80px;
}

.client-single {
  margin-top: 20px;
  text-align: center;
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.client-info,
.client-comment {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.client-single {
  &.inactive {

    .client-comment,
    .client-info {
      display: none;
    }

    .client-comment,
    .client-info {
      opacity: 0;
      visibility: hidden;
    }
  }

  &.position-1 {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
  }

  &.position-2 {
    left: -40px;
    top: 105px;
  }

  &.position-3 {
    left: -60px;
    top: 240px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }

  &.position-4 {
    left: 55px;
    top: 380px;
    display: none;
  }

  &.position-5 {
    top: 30px;
    right: 55px;
  }

  &.position-6 {
    top: 225px;
    right: -40px;
  }

  &.position-7 {
    top: 400px;
    right: 45px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }

  &.active {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 70%;

    .client-comment,
    .client-info {
      -webkit-transition-delay: 0.6s;
      transition-delay: 0.6s;
    }
  }

  &:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.55);
    z-index: 99;
  }

  &.active .client-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    position: relative;

    &:before {
      border-radius: 100%;
      content: '';
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(157, 91, 254)), to(rgb(#e66f07)));
      background-image: linear-gradient(180deg, rgb(157, 91, 254) 0%, #e66f07 100%);
      padding: 5px;
      width: 160px;
      height: 160px;
      top: -4px;
      left: 0px;
      position: absolute;
      z-index: -1;
    }
  }

  .client-img img {
    width: 150px;
    border-radius: 50%;
    border: 8px solid #d1e9ff;
    cursor: pointer;
  }

  &.active .client-img img {
    max-width: 160px;
    margin: 0 auto 24px;
    border: 0;
  }
}

.client-comment {
  padding: 0 30px;

  h3 {
    font-size: 19px;
    line-height: 32px;
    color: #fff;
    font-weight: 400;
  }

  span i {
    font-size: 60px;
    color: #e66f07;
    margin: 40px 0 24px;
    display: inline-block;
  }
}

.client-info {
  h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 4px;
  }

  p {
    color: #0084ff;
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .client-comment h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .client-single.active {
    width: 60%;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.35);
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(.30) !important;
    transform: scale(.30) !important;
  }

  .client-single.active .client-img img {
    max-width: 100px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 108px;
    height: 108px;
    top: -4px;
    left: 6px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 580px;
  }

  #testimonial-area {
    padding: 100px 0 0;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;
  }

  .client-single.active {
    width: 60%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.35);
  }

  .client-single.position-5,
  .client-single.position-7 {
    right: 0;
  }

  .client-single.position-4 {
    left: 0;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(.30) !important;
    transform: scale(.30) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 630px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 479px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
    line-height: 40px
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;
  }

  .client-single.active {
    width: 80%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }

  .client-single.position-5,
  .client-single.position-7,
  .client-single.position-6 {
    right: -70px;
  }

  .client-single.position-4 {
    left: -60px;
  }

  .client-single.position-3 {
    left: -75px;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(.25) !important;
    transform: scale(.25) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 600px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;

  }

  .client-single.active {
    width: 80%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }

  .client-single.position-5,
  .client-single.position-7,
  .client-single.position-6 {
    right: -70px;
  }

  .client-single.position-4 {
    left: -60px;
  }

  .client-single.position-3 {
    left: -75px;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(.25) !important;
    transform: scale(.25) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 550px;
  }
}




.item.footer {
  flex-wrap: wrap;
  padding: 5rem;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  grid-column: span 1;

  @media screen and (min-width:823px) and (max-width:1223px) {
    grid-column: span 2;
  }

  /* a {
    text-decoration: none;
    color: #fff;
    padding: 3px 0;
    border-bottom: 1px dashed;

    &:hover {
      border-bottom: 1px solid;
    }
  } */
}


.main-content {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  /* .item {
		display: grid;
		grid-template-rows: 1fr min-content;
		align-items: center;
		justify-content: center;
		height: 50vh;
		flex-wrap: wrap;
		background: var(--bg-color);
		&:not(.footer) {
			padding-top: 1rem;
		} */
}


.item.button-hand button {
  background: transparent;
  color: #fff;
  border: 3px solid #e66f07;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font: 18px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-in-out;
  letter-spacing: 2px;
  background-color: #e66f07;
}

.name {
  width: 100%;
  text-align: center;
  padding: 0 0 3rem;
  font: 500 14px 'Rubik', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

#SERVICE-BUTTON {
  text-align: end;
}

/* .button-hand button {
  margin-top: 20PX;

  &:before {
    content: "👇";
    font-size: 40px;
    transform: scaleX(-1);
    right: 0px;
    top: -48px;
    animation: up-down 1s infinite;
  }

  .hands {

    &:before,
    &:after {
      content: "👇";
      font-size: 40px;
      opacity: 0;
      transition: 0.4s ease-in-out;
    }

    &:before {
      transform: rotate(-60deg);
      left: -45px;
      top: -10px;
    }

    &:after {
      transform: rotate(170deg);
      right: 30px;
      top: 50px;
    }
  }

  &:hover .hands {
    &:before {
      opacity: 1;
      left: -35px;
    }

    &:after {
      opacity: 1;
      top: 40px;
    }
  }
} */

@keyframes up-down {
  50% {
    margin-top: -20px;
  }
}

/* footer */
/* social-icons start */




.badge-info {
  background-color: rgba(23, 160, 184, 0.17);
  color: #17a2b8;
}

.section-title .badge {
  margin: 0 0 8px;
}

.badge {
  border-radius: 100px;
  font-size: 12px;
  font-stretch: normal;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: normal;
  padding: 4px 14px;
  text-transform: uppercase;
}



.social-overlap {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.social-bar {
  display: flex;
  border-radius: 10px;
  background-image: url(../images/3d-black-paper-craft-cubic-patterned-background.jpg);
  background-size: cover;

}

.iconpad {
  padding: 12px 0;
  width: 100%;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.process-scetion .slider-nav-item {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: all .4s ease;
}

.social-icons a {
  border-radius: 50px;
  color: #3f345f;
  display: inline-block;
  /* line-height: 52px; */
  height: 100px;
  width: 100px;
  box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
  margin: 15px 15px;
  font-size: 30px;
}

.social-icons i {
 margin: 30px;
}

.slider-nav-item:before {
  position: absolute;
  content: "";
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1px solid rgba(132, 132, 164, 0.35);
  animation: 1.5s linear 0s normal none infinite focuse;
}



/*socil*/
.slider-nav {
  display: flex;
}

.process-scetion .slider-nav-item {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: all .4s ease;

}

.slider-nav-item:before {
  position: absolute;
  content: "";
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1px solid #fff;
  animation: 1.5s linear 0s normal none infinite focuse;
}

.process-scetion .slider-nav-item:nth-child(2) {
  color: #40beff;
}

.process-scetion .slider-nav-item:nth-child(3) {
  color: #311f9b;
}

.process-scetion .slider-nav-item:nth-child(4) {
  color: #ff9259;
}

.process-scetion .slider-nav-item:nth-child(5) {
  color: #38385f;
}

.process-scetion .slider-nav-item:after {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  content: '';
  width: 100%;
  background: url(http://demo.themenio.com/ico/assets/images/line.png) repeat 0 0;
  z-index: 0;
  animation: slide 1s linear infinite;
}

.process-scetion .slider-nav-item:last-child:after {
  display: none;
}

.process-scetion .slider-nav-item .ikon {
  font-size: 50px;
  line-height: 80px;
}

.process-scetion .slider-nav-item.active:before {
  position: absolute;
  content: "";
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1px solid rgba(132, 132, 164, 0.35);
  animation: 1.5s linear 0s normal none infinite focuse;
}

@keyframes focuse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  75% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 40px 0;
  }
}

.shadow-img1 {
  background-image: url("../img/shadow.png");
  background-repeat: no-repeat;
  background-position: bottom;
}

.shadow-img2 {
  background-position: bottom;
  background-image: url("../img/shadow2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.trial-block {
  padding: 30px 0px 150px;
  position: relative;
  margin-top: -50px;
  border: none !important;
 
}

.slider-nav-item:after {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  content: '';
  width: 100%;
  background: url(https://1.bp.blogspot.com/--Btu5p654jU/XYmrVd5IcYI/AAAAAAAATQ0/4bX8aZyFBgApbJUf90KrpCfO6RvAaZ6LgCLcBGAsYHQ/s1600/line.png) repeat 0 0;
  z-index: 0;
  animation: slide 1s linear infinite;
}



@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


.jello-horizontal {
  -webkit-animation: jello-horizontal 0.9s both;
  animation: jello-horizontal 0.9s both;
}

.social-bar a:hover i {
  -webkit-animation: jello-horizontal 0.9s both;
  animation: jello-horizontal 0.9s both;
}


@media only screen and (max-width: 300px) {
  .process-scetion .slider-nav-item {
    height: 30px;
    width: 30px;
    margin: 15px 10px;
    line-height: 28px;
  }
}

/* social-icons end */

/* footer section start */
.footer-logo img {
  width: 180px;
}

.footer {
  padding: 30px 30px 60px;
 background-color: #121111;
}

.footer-text h6 {
  font-size: 22px;
  color: #ffff;
}

.footer-text p {
  font-size: 18px;
  color: #ffff;
}
.footer-text a {
  text-decoration: none;
}
.footer-logo p {
  color: #ffff;
  font-size: 18px;
}

.footer-text li {
  color: #ffff;
  font-size: 18px;
  list-style: none;
  margin-left: -30px;
}

.footer-text i {
  padding: 0px 20px 0px 0px;
}
.map-wrapper iframe{
  height: 80vh !important;
  border-radius: 10px;
}








/* Gallery page section */
.Gallery-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 30px;
      position: relative;
      overflow: hidden;
      background-image: url(../images/3d-black-bg.jpg);
      background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
    }
    .Gallery-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    content: ''
  }
    .Gallery-text {
      max-width: 50%;
    }

    .Gallery-text h1 {
      font-size: 68px;
      color: #ffff;
      position: relative;
      font-weight: 800;
    }

    .Gallery-text p {
      font-size: 20px;
     
    }

    .Gallery-image {
      position: relative;
      width: 30%;
      animation: rotateScale 5s linear infinite;
    }

    .Gallery-image img {
    
      height: auto;
      display: block;
    }

    @keyframes rotateScale {
      0% {
        transform: rotate(0deg) scale(1);
      }
      50% {
        transform: rotate(10deg) scale(1.05);
      }
      100% {
        transform: rotate(0deg) scale(1);
      }
    }

    @media (max-width: 900px) {
      .Gallery-section {
        flex-direction: column;
        text-align: center;
      }
      .Gallery-text {
        max-width: 100%;
        margin-bottom: 40px;
      }
    }
    /* gallery page section end */


   


.heading {
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* .container {
 height: 60vh;
  display: flex;
  align-items: center;
} */

.prev,
.next {
  height: 100%;
  width: 30vw;
  display: flex;
  align-items: center;
}

.prev {
  justify-content: end;
}

.next {
  justify-content: start;
}

.gallery-section i {
  font-size: 2em;
  color: white;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.gallery-section{
  background-color: #1c1c1c;
  padding-bottom: 70px;
}
.gallery-section i:hover {
  transform: scale(1.1);
  opacity: 1;
}

.gallery {
  position: relative;
 
  width: 100%;
  display: flex;
  align-items: center;
}

.card {
  position: absolute;
  width: 30%;
  transition: all 0.3s ease-in-out;
  border-radius: 25% 0 25% 0;
  overflow: hidden;
}

.gallery img {
  width: 100%;
}

.position1 {
  left: 35%;
  z-index: 3;
  transform: scale(1);
  opacity: 1;
}

.position1:hover {
  transform: scale(1.1);
}

.position2 {
  left: 65%;
  z-index: 2;
  transform: scale(0.8);
  opacity: 0.6;
}

.position3 {
  left: 55%;
  z-index: 1;
  transform: scale(0.6);
  opacity: 0.2;
}

.position4 {
  left: 15%;
  z-index: 1;
  transform: scale(0.6);
  opacity: 0.2;
}

.position5 {
  left: 5%;
  z-index: 2;
  transform: scale(0.8);
  opacity: 0.6;
}

@media only screen and (max-width: 720px) {
  .prev,
  .next {
    display: none;
  }

  .container {
    align-items: flex-start;
  }

  .heading {
    height: 20vh;
  }
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 3rem;
  }
}
/*  */

/*  */
/* contact page start */
.contact{
  padding: 60px 30px 100px;
  background-color: #1c1c1c;
  position: relative;
}
.contact .contact-card {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #313437;
      margin-bottom: 20px;
      height: 80%;
}
.contact-hed h5 {
  font-size: 52px;
  font-weight: 800;
 background: linear-gradient(90deg, #f07c16, #ffcb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 40px;
      text-align: center;
}
.icon-box i {
    width: 50px;
    height: 50px;
  
    color: #ffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 22px;
   background: linear-gradient(90deg, #f07c16, #ffcb00);
}
.contact-text h6{
  font-size: 22px;
  color: #ffff;
}
.contact-text p{
  font-size: 16px;
  color: #ffff;
}

 .contact-form {
      background-color: #313437;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      width: 100%;
    
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #ffff;
      font-weight: 500;
    }

    .contact-form label {
      display: block;
      margin-bottom: 5px;
    
      color: #ffff;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #3d4043;
      border-radius: 4px;
      font-size: 14px;
      background-color: #3d4043;
     
    }

    .contact-form textarea {
      min-height: 100px;
    }

    .contact-form button {
      width: 60%;
      padding: 12px;
      background: #f07c16;
      border: none;
      border-radius: 4px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background: linear-gradient(90deg, #f07c16, #ffcb00);
    }

    .contact-form p {
      margin-top: 15px;
      font-size: 12px;
      color: #666;
      text-align: center;
    }
    /* .map-wrapper{
      height: 100% !important;
    } */
    
    .social-links i{
      color: #ffff !important;
      font-size: 20px;
      width: 50px;
      height: 50px;
    
      padding: 5px 10px;
      border-radius: 30px;
      margin: 3px;
    }
     .social-links{
      position: relative;
      text-align: end;
      margin-top: 10px;
     }
    .social-links i:hover{
      background-color: #f07c16;
      color: #fff;
    }
/* contact page end */


@media only screen and (min-width:280px) and (max-width:479.98px){
.logo img {
  width: 70px;
}
.navbar-nav.ms-auto.mb-2.mb-md-0 li {
  padding: 5px;
  text-align: center;
  position: initial;
}
.nav-item a {
  background-color: #f07c16;
  padding: 10px;
}
.herohed h1 {
  font-size: 24px;
}
.herohed p {
  font-size: 16px;
}
 .index-video {
    height: 70vh;
  }

  .herohed {
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
  }

  .typing-text {
    font-size: 28px;
  }

  .main-content .item.button-hand button {
    font-size: 12px;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .custom-video {
    object-fit: cover;
  }
  .about {
  padding: 30px 0px;
  }
  .about-para h2 {
  font-size: 26px !important;
  }
  .about-para p{
    text-align: justify;
  }
  .services-list {
  padding: 30px 0px;
  }
  .service img {
  width: 100px;
  margin-bottom: 10px;
}
.service-content p {
  font-size: 16PX;

}
.service-content h3 {
   font-size: 19px !important;
  margin-top: 0px;
}
.service {
  margin-bottom: 20px;
}
.sticky-content{
  padding: 30px 10px;
  height: 50vh;
}
 .our, .services {
    font-size: 46px;
  }
  .services {
    font-size: 38px;
    text-align: end;
  }
  .sticky-content p {
  font-size: 16px;
  }
  .vision-text h4 {
  font-size: 56px;
  font-weight: 900;
  }
  .vision-text h5 {
  font-size: 52px;
  }
  .our-vision {
  padding: 30px 0px;
  }
  .pipleline-section {
  padding: 30px 0px;
  }
  .pipleline-hed h4 {
  font-size: 36px;
  }
 .solid-hed {
  display: block;
}
.solid-hed h5 {
  font-size: 22px;
}
 .solid-experitise {
  padding: 30px 0px;
 }
 .box h6 {
  color: #ffff;
  font-size: 15px;
}
.solid-image img {
  width: 50%;
  border-bottom: 0px;
}
.box p {
  color: #Ffff;
  font-size: 16px;
  text-align: justify;
}
.box{
  height: initial;
  margin-bottom: 20px;
}
.whales-text h6 {
  font-size: 22px;
  margin-top: 30px;
}
.circle-wrapper .circle-image {
  width: 70%;
}
 .circle-wrapper .top-image {
    top: 45%;
    left: 35%;
    width: 41%;
  }
.whales {
  padding: 30px 0px;
}
/* #testimonial-area {
  padding: 60px 0px;
}
#testimonial-area {
  & .section-heading h2 {
    font-size: 26px;
    line-height: initial;
  }
  .client-comment {
  padding: 0px;
}
.client-comment {
  & h3 {
    font-size: 15px;
    line-height: initial;
    text-align: justify;
  }
}
.client-single {
  &.active .client-img img {
    max-width: 100px;
   
  }
}
  .client-single {
  &.active .client-img {
    &::before {
      border-radius: 100%;
      content: '';
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(157, 91, 254)), to(rgb(#e66f07)));
      background-image: linear-gradient(180deg, rgb(157, 91, 254) 0%, #e66f07 100%);
      padding: 5px;
      width: 110px;
      height: 110px;
      top: -4px;
      left: 25px;
      position: absolute;
      z-index: -1;
    }
  }
}
.client-single {
  & .client-img img {
    width: 100px;
  }
}
.client-single {
  &.position-2 {
    left: 0px;
    top: 0px;
  }
}
.client-single {
  &.position-5 {
    top: 0px;
    right: 0px;
  }
}
.client-single {
  &.position-3 {
    left: -20px;
    top: 142px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }
}
.client-single {
  &.position-6 {
    top: 160px;
    right: 0px;
  }
}
.client-single {
  &.position-7 {
    top: 165px;
    right: 100px;
    -webkit-transform: scale(0.4) !important;
    transform: scale(0.4) !important;
  }
}
.client-single {
  &.position-4 {
    left: 55px;
    top: 380px;
    display: none;
  }
}
.client-comment {
  & span i {
    font-size: 32px;
    color: #e66f07;
    margin: 20px 0;
    display: inline-block;
  }
}
.testi-wrap {
  position: relative;
  height: 500px;
  margin-top: -80px;
}

}
.in-this-known {
  padding: 30px 0px 0px;
} */
.subscribe-text h6 {
  font-size: 26px;
}
.in-the-button button {
  border: none;
  padding: 10px;
  font-size: 12px !important;
}
.subscribe-text form {
  width: 46%;
  border-radius: 10px;
}
.contact {
  padding: 30px 0px 100px;
}
 .whales-text h6{
  margin-bottom: 20px;
  font-size: 20px;
 }
 .whales {
    padding: 30px 10px;
  }
  .whales-text p {
  font-size: 18px;
 text-align: left;
 margin: 0px;
}
.contact-hed h5 {
  font-size: 32px;
}
.contact-text h6 {
  font-size: 19px;
}
.map-wrapper{
  margin-bottom: 20PX;
}
.contact-form{
  padding: 10PX;
}
.social-links{
  text-align: left;
 padding: 10px 0px 0px 0px;
}
.social-icons i {
  font-size: 17px;
  margin: 0px;
}
.footer {
  padding: 30px 0px;
}
.footer-logo img {
  width: 120px;
}
.trial-block {
  padding: 30px 0px 100px;
}
.footer-text i {
  padding: 0px;
}
}
@media only screen and (min-width:480px) and (max-width:575.98px) {

.logo img {
  width: 100px;
}
.navbar-nav.ms-auto.mb-2.mb-md-0 li {
  padding: 5px;
  text-align: center;
  position: initial;
}
.nav-item a {
  background-color: #f07c16;
  padding: 10px;
}

  .about {
  padding: 30px 0px;
}
.about-para h2 {
  font-size: 42px !important;
   padding: 0px 10px;
  /* margin-bottom: 20px; */
}
.about-para p {
  font-size: 18px !important;
  padding: 0px 10px;
}
.services-list {
  padding: 30px 10px;
  background-color: #313437;
}
.service{
 margin-bottom: 20px;
}
.sticky-content {
  text-align: end;
  height: 80vh;
}
.our-vision {
  padding: 60px 0px;
}
 .our, .services {
    font-size: 80px;
  }
  .vision-text h4 {
  font-size: 80px;
  }
  .vision-text h5 {
  font-size: 80px;
  }
  .pipleline-section {
  padding: 60px 0px;
  }
.solid-image img {
  width: 35% !important;
  border-bottom: 0px;
}
.image-wrapper img{
  width: 50%;
  left: 20px;
}
.solid-hed h5 {
  font-size: 22px;
}
.image-wrapper {
  width: 220px;
}
.solid-experitise {
  padding: 60px 0px;
}
.box {
  margin: 20px;
  height: initial;
}
.box p {
  text-align: justify;
}
.circle-wrapper .circle-image {
  width: 60%;
  border-radius: 20%;
  margin: auto;
}
.circle-wrapper .top-image {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 40%;
}
.whales-text h6 {
  font-size: 32px;
  margin-top: 30px;
}
.whales {
  padding: 30px 0px;
}
.contact {
  padding: 30px 0px 100px;
}
.social-icons a {
  border-radius: 50px;
  color: #3f345f;
  display: inline-block;
  line-height: 52px;
  height: 50px;
  width: 50px;
  font-size: 20px;
}
.social-icons i {
  margin: 15px;
}
.social-links{
  text-align: left;
 padding: 10px 0px 0px 0px;
}
}
@media only screen and (min-width:576px) and (max-width:767.98px) {
.logo img {
  width: 100px;
}
.navbar-nav.ms-auto.mb-2.mb-md-0 li {
  padding: 5px;
  text-align: center;
  position: initial;
}
.nav-item a {
  background-color: #f07c16;
  padding: 10px;
}

  .about {
  padding: 60px 0px;
}
.about-para h2 {
  font-size: 42px !important;
   padding: 0px 10px;
  /* margin-bottom: 20px; */
}
.about-para p {
  font-size: 18px !important;
  padding: 0px 10px;
}
.services-list {
  padding: 60px 10px;
  background-color: #313437;
}
.service{
 margin-bottom: 20px;
}
.sticky-content {
  text-align: end;
  height: 80vh;
}
.our-vision {
  padding: 60px 0px;
}
 .our, .services {
    font-size: 80px;
  }
  .vision-text h4 {
  font-size: 80px;
  }
  .vision-text h5 {
  font-size: 80px;
  }
  .pipleline-section {
  padding: 60px 0px;
  }
.solid-image img {
  width: 35% !important;
  border-bottom: 0px;
}
.image-wrapper img{
  width: 50%;
  left: 20px;
}
.solid-hed h5 {
  font-size: 22px;
}
.image-wrapper {
  width: 220px;
}
.solid-experitise {
  padding: 60px 0px;
}
.box {
  margin: 20px;
  height: initial;
}
.box p {
  text-align: justify;
}
.circle-wrapper .circle-image {
  width: 60%;
  border-radius: 20%;
  margin: auto;
}
.circle-wrapper .top-image {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 40%;
}
.whales-text h6 {
  font-size: 32px;
  margin-top: 30px;
}
.whales {
  padding: 60px 0px;
}
.contact {
  padding: 30px 0px 100px;
}
.social-icons a {
  border-radius: 50px;
  color: #3f345f;
  display: inline-block;
  line-height: 52px;
  height: 40px;
  width: 40px;
  font-size: 20px;
}
.social-icons i {
  margin: 5px;
}
.social-links{
  text-align: left;
 padding: 10px 0px 0px 0px;
}
.contact-form button {
  width: 32%;
}
}
@media only screen and (min-width:768px) and (max-width:991.98px){
.about-para h2 {
  font-size: 28px !important;
}
}
@media only screen and (min-width:992px) and (max-width:1199.98px){

}