.pt-4,
.py-4 {
  padding-top: 0px !important;
}

.pt-4,
.py-4 {
  padding-bottom: 0px !important;
}

@font-face {
  font-family: circular;
  src: url('../fonts/museo/Museo300-Regular.otf');
}

@font-face {
  font-family: big john;
  src: url(../fonts/BIG\ JOHN.otf);
}

:root {
  --primary-color: #2196f3;
  --secondary-color: #fdfdfd;
  --menu-font: font-family: circular;
  --font-color: #fff;
  --background-color: background: linear-gradient(red, yellow, blue);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-family: circular !important;
}

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

html {
  scroll-behavior: smooth;
}

h3 {
  font-weight: 500;
  /* color: #505050; */
  color: #0091FF;
  font-size: 23px;
  font-family: big john !important;
}

/* h3:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: rgb(58, 192, 255);
  bottom: 0px;
  width: 10%;
  margin-left: 2%;
  transition: all 0.2s ease-out;
} */
h3:hover:before {
  transition: all 0.2s ease-out;
  width: 20%;

}

.slick-next {
  display: none !important;
}

.slick-prev {
  display: none !important;
}

#about-img {
  margin-top: 18% !important;
  width: 100%;
}

#chat-icon {
  width: 5%;
  position: fixed;
  right: 2%;
  bottom: 3%;
  animation: chatanim ease-in 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  z-index: 500;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

@keyframes chatanim {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

#nav-desktop {
  position: fixed;
  background-color: rgba(255, 255, 255);
  z-index: 500;
  width: 100% !important;
  top: 0;
}

.nav-desktop-index {
  position: absolute !important;
  background-color: rgba(255, 255, 255, 0) !important;
  z-index: 500;
  width: 100% !important;
  top: 0;
}

.nav-desktop-banner ul li a {
  color: #000 !important;
}

.nav-desktop-banner button {
  background-color: #2196f3;
  color: #fff;
}

input:focus,
input.form-control:focus {

  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

select:focus,
select.form-control:focus {

  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

textarea:focus,
textarea.form-control:focus {

  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

select option {
  color: #000;

}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link.form-control:focus {

  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none !important;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white !important;
  opacity: 1;
  /* Firefox */
}

.anim {
  transition: transform 1s ease-in 0s;
  animation-duration: 2s;
  animation-name: paragato;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  -webkit-animation-duration: 2s;
  -webkit-animation-name: paragato;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  /* Chrome, Safari, Opera */
  animation-timing-function: ease-in-out;
}

@keyframes paragato {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(30px);
  }
}

body {
  background-color: #fff;
}

header {
  /* background-image: url('../img/bg.png');
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat; */
}

.card-1 {
  border-radius: 4px;
  margin-top: 6%;
  margin-right: 2%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  /* background-image: radial-gradient(#39BDFF, #0091FF); */
}

.head {
  color: #0091ff;
  --menu-font: font-family: circular;
}

.team-img {
  transition: 0.5s;
}

.team-img:hover {
  transition: 0.5s;
  transform: scale(1.2);
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin: 119px 0 0;
  padding: 7px 14px;
}

.hovereffect .overlay {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  overflow: hidden;
  top: 0 !important;
  left: 0 !important;
  opacity: 0;
  background-color: rgba(48, 48, 48, 0.8);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.nav-link {
  color: #fff;
  font-family: var(--menu-font);
  font-weight: 500;
  margin-left: 15px;
  transition: ease-in 0.3s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #f1f1f1;
  transition: ease-in 0.3s;
  border-bottom: 2px solid #fff;
}

#about .jumbotron {
  /* background-image: radial-gradient(rgb(57, 189, 255), #0091FF); */
  background-color: white;
  background-size: 100% 100%;
}

#nav-mobile {
  display: none;
}

#contact-btn {
  border: 2px solid var(--secondary-color);
  color: #fff;
  font-family: var(--menu-font);
  font-weight: 600;
  padding: 5px 7px;
  border-radius: 0;
}

#about-heading {
  font-family: var(--menu-font);
  font-size: 26px;
  font-weight: 400;
  color: var(--font-color);
}

#about-para {
  font-family: var(--menu-font);
  font-size: 18px;
  color: #e4e4e4;
}

#about-more-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0;
  padding: 10px 40px;
  font-weight: 500;
}

#work {
  background-color: #fff;
}

#page-heading {
  display: block;
}

#page-heading-mobile {
  display: none;
}

#see-work-btn {
  background-color: var(--secondary-color);
  padding: 10px 40px;
  border: 2px solid #0091FF;
  border-radius: 0;
  position: absolute;
  right: 0;
  color: #0091FF;
}

#see-work-btn-mob {
  background-color: var(--secondary-color);
  padding: 10px 40px;
  border: 2px solid #101010;
  border-radius: 0;
  display: none;
}

#test-bg {
  background-color: var(--primary-color);
  padding: 15px;
}

#star {
  color: gold;
}

#shape {
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 100% 0%);

}

#team-bg {
  background-image: url('../img/teambg.png');
  width: 100%;
  height: 700px;
}

.team-card {
  transition: 0.5s;
}

#content {
  transition: 1s;
}

.team-card:hover #content {
  transition: 1s;
  transform: scale(1.3);
  overflow: hidden;
  position: fixed;
}

.section-team {
  font-family: "Poppins", sans-serif;
  padding: 80px 0;
}

.section-team .header-section {
  margin-bottom: 50px;
}

.section-team .header-section .small-title {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #3e64ff;
}

.section-team .header-section .title {
  font-weight: 700;
  font-size: 45px;
}

.section-team .single-person {
  margin-top: 30px;
  padding: 30px;
  background-color: #f6f9ff;
  border-radius: 5px;
}

.section-team .single-person:hover {
  background: linear-gradient(to right, #016cec, #00b5f7);
}

.section-team .single-person .person-image {
  position: relative;
  margin-bottom: 50px;
  border-radius: 50%;
  border: 4px dashed transparent;
  transition: padding .3s;
}

.section-team .single-person:hover .person-image {
  padding: 12px;
  border: 4px dashed #fff;
}

.section-team .single-person .person-image img {
  width: 100%;
  border-radius: 50%;
}

.section-team .single-person .person-image .icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(to right, #016cec, #00b5f7);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
}

.section-team .single-person:hover .person-image .icon {
  background: none;
  background-color: #fff;
  color: #016cec;
}

.section-team .single-person .person-info .full-name {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.section-team .single-person .person-info .speciality {
  text-transform: uppercase;
  font-size: 14px;
  color: #016cec;
}

.section-team .single-person:hover .full-name,
.section-team .single-person:hover .speciality {
  color: #fff;
}

/* Image Overly Effect */
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  border-bottom: 1px solid #FFF;
  border-top: 1px solid #FFF;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.6);
  -webkit-filter: brightness(0.6);
}

.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.hovereffect a,
.hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 1;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.hovereffect:hover a,
.hovereffect:hover p,
.hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#contact {
  background-image: radial-gradient(#39BDFF, #0091FF);
}

footer {
  background-color: #222222;
}

#client-img {
  filter: grayscale(100%);
}

#client-img:hover {
  filter: grayscale(0%);

}


.project-tab {
  padding: 10%;
  margin-top: -8%;
}

.project-tab #tabs {
  background: #007b5e;
  color: #eee;
}

.project-tab #tabs h6.section-title {
  color: #eee;
}

.project-tab #tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #0091FF;
  background-color: transparent;
  border-color: transparent transparent #f3f3f3;
  border-bottom: 3px solid !important;
  font-size: 16px;
  font-weight: bold;
}

.project-tab .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: rgb(0, 145, 255);
  font-size: 16px;
  font-weight: 600;
}

.project-tab .nav-link:hover {
  border: none;
}

.project-tab thead {
  background: #f3f3f3;
  color: #333;
}

.project-tab a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}




.heading-title {
  margin-bottom: 100px;
}

.text-center {
  text-align: center;
}

.heading-title h3 {
  margin-bottom: 0;
  letter-spacing: 2px;
  font-weight: normal;
}

.p-top-30 {
  padding-top: 30px;
}

.half-txt {
  width: 60%;
  margin: 0 auto;
  display: inline-block;
  line-height: 25px;
  color: #7e7e7e;
}

.text-uppercase {
  text-transform: uppercase;
}

.team-member,
.team-member .team-img {
  position: relative;
}

.team-member {
  overflow: hidden;
}

.team-member,
.team-member .team-img {
  position: relative;
}

.team-hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  border: 20px solid rgba(0, 0, 0, 0.1);
  /* background-color: rgba(0, 145, 255, 0.90); */
  background-image: radial-gradient(rgba(57, 189, 255, 0.90), rgba(0, 145, 255, 0.90));
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team-member:hover .team-hover .desk {
  top: 35%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
  opacity: 1;
}

.team-hover .desk {
  position: absolute;
  top: 0%;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
  padding: 0 20px;
}

.desk,
.desk h4,
.team-hover .s-link a {
  text-align: center;
  color: #222;
}

.team-member:hover .team-hover .s-link {
  bottom: 10%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
  opacity: 1;
}

.team-hover .s-link {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  text-align: center;
  -webkit-transform: translateY(45%);
  -ms-transform: translateY(45%);
  transform: translateY(45%);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
  font-size: 35px;
}

.desk,
.desk h4,
.team-hover .s-link a {
  text-align: center;
  color: #fff;
}

.team-member .s-link a {
  margin: 0 10px;
  color: #fff;
  font-size: 16px;
}

.team-title {
  position: static;
  padding: 20px 0;
  display: inline-block;
  letter-spacing: 2px;
  width: 100%;
}

.team-title h5 {
  margin-bottom: 0px;
  display: block;
  text-transform: uppercase;
}

.team-title span {
  font-size: 12px;
  text-transform: uppercase;
  color: #a5a5a5;
  letter-spacing: 1px;
}

#carouselExampleInterval {
  display: block;
}

#float-vr {
  display: block;
}

#mobile-banner {
  display: none;
}

footer {
  display: block;
}

#mobile-footer {
  display: none;
}

#abouttext {
  width: 50% !important;
  margin-left: 25%;
}

#aboutpara {
  width: 60%;
  margin-left: 20%;
  font-size: 20px;
  color: grey;
}

#about-heading-mobile {
  display: none;
}

.homeAboutsliderdiv {
  /* border: 2px solid red !important; */
  /* width: 350px !important;
  height: 250px !important; */
  margin: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: green; */
}

#carouselExampleInterval2564 {
  display: none;
}

/* .saurabhexp{
  border: 2px solid red;
} */

/* .aboutinnerLine{
  font-family: big john !important;
  font-size: 20px;
} */

/* Mobile Merdia Query*/
@media only screen and (max-width: 500px) {
  #carouselExampleInterval2564 {
    display: block !important;
    background-color: #d6edff;
    padding-bottom: 20px;
  }

  .hiderespslide {
    display: none;
  }

  #abouttext {
    width: 80% !important;
    margin-left: 10%;
  }

  #aboutpara {
    width: 98%;
    margin-left: 1%;
    font-size: 20px;
    color: grey;
  }

  #about-heading-mobile {
    display: block;
    padding-top: 7%;
  }

  #nav-mobile {
    display: block;
  }

  #nav-desktop {
    display: none;
  }

  @media (max-width: 796px) {
    .carrousel {
      height: 8.5em;
    }
  }

  @media (max-width: 480px) {
    .carrousel li p {
      padding-left: 0.5em;
      padding-right: 0.5em;
    }

    .carrousel li q {
      font-size: 1em;
    }

    .carrousel li img {
      width: 2em;
      margin-left: -1em;
      margin-right: 0.25em;
    }
  }

  #page-heading {
    display: none;
  }

  #page-heading-mobile {
    display: block;
  }

  #carouselExampleInterval {
    display: none;
  }

  #float-vr {
    display: none;
  }

  #mobile-banner {
    display: block;
  }

  #see-work-btn-mob {
    display: block;
  }

  #see-work-btn {
    display: none;
  }

  footer {
    display: none;
  }

  #mobile-footer {
    display: block;
  }

  #chat-icon {
    width: 10%;
    position: fixed;
    right: 4%;
    bottom: 7%;
    animation: chatanim ease-in 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    z-index: 500;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }

  #aboutmaincon {
    margin-top: 20%;
  }

  #workmaincon {
    margin-top: 20% !important;
  }

  #careers {
    margin-top: 20% !important;
  }

  #servicemaincon {
    margin-top: 20% !important;
  }

  #featuredworkheading {
    text-align: center !important;
  }
  
  #clientsheading{
    text-align: center;
    /* font-size: 20px; */
  }

  #featuredline {
    margin: auto;
  }

 
}