

.featured .card {
  position: relative;
  /* width: 300px;
  height: 300px; */
  color: #fff;
  background: transparent;
  overflow: hidden;
  /* border-top: 1px solid rgba(255, 49, 49, 0.5);
  border-right: 1px solid rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  border-left: 1px solid rgba(255, 255, 113, 0.5); */
  font-family: sans-serif;
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: space-around;
  /* align-items: center;
  padding: 1em; */
}


.about .card {
  position: relative;
  /* width: 300px;
  height: 300px; */
  color: #fff;
  background: transparent;
  overflow: hidden;
  /* border-top: 1px solid rgba(255, 49, 49, 0.5);
  border-right: 1px solid rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  border-left: 1px solid rgba(255, 255, 113, 0.5); */
  font-family: sans-serif;
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: space-around;
  /* align-items: center;
  padding: 1em; */
}

.teams .card {
  position: relative;
  /* width: 300px;
  height: 300px; */
  color: #010101;
  background: transparent;
  overflow: hidden;
  /* border-top: 1px solid rgba(255, 49, 49, 0.5);
  border-right: 1px solid rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  border-left: 1px solid rgba(255, 255, 113, 0.5); */
  font-family: sans-serif;
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: space-around;
  /* align-items: center;
  padding: 1em; */
  border: none;
}

.services .card {
  position: relative;
  /* width: 300px;
  height: 300px; */
  color: #fff;
  background: transparent;
  overflow: hidden;
  /* border-top: 1px solid rgba(255, 49, 49, 0.5);
  border-right: 1px solid rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  border-left: 1px solid rgba(255, 255, 113, 0.5); */
  font-family: sans-serif;
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: space-around;
  /* align-items: center;
  padding: 1em; */
}

.card span {
  position: absolute;
  /* border-radius: 100vmax; */
}

.top {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 50%,
    #0092a9,
    rgba(51, 172, 186, 0.5)
  );
}



.bottom {
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #0092a9,
    rgba(51, 172, 186, 0.5),
    transparent 50%
  );
}

.right {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    #0092a9,
    rgba(51, 172, 186, 0.5)
  );
}

.left {
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(
    180deg,
    #0092a9,
    rgba(51, 172, 186, 0.5),
    transparent 70%
  );
}



.top {
  animation: animateTop 5s ease-in-out infinite;
}

.bottom {
  animation: animateBottom 5s ease-in-out infinite;
}

.right {
  animation: animateRight 5s ease-in-out infinite;
}

.left {
  animation: animateLeft 5s ease-in-out infinite;
}

@keyframes animateTop {
  25% {
    width: 100%;
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes animateBottom {
  0%,
  50% {
    opacity: 0;
    width: 0;
  }

  75% {
    opacity: 1;
    width: 100%;
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes animateRight {
  0%,
  25% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 100%;
  }

  55%,
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes animateLeft {
  0%,
  75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}
/************************************************/
/**************************for animation on page on scroll**************************/

section:nth-child(1) {
  /* color: #e0ffff; */
}
section:nth-child(2) {
  /* color: #42455a; */
  /* background: #e0ffff; */
}
section:nth-child(3) {
  /* color: #e0ffff; */
}
section:nth-child(4) {
  color: #42455a;
  /* background: #e0ffff; */
}
section .container {
  /* margin: 100px; */
}
section h1 {
  font-size: 3rem;
  margin: 20px;
}
section h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}
section .text-container {
  display: flex;
}
section .text-container .text-box {
  margin: 20px;
  padding: 20px;
  background: #00c2cb;
}
section .text-container .text-box h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 2rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }
}

.reveal {
  
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.drop-in {
  animation: drop-in 1s ease 200ms backwards;
 }
 
 .drop-in-2 {
  animation: drop-in 1200ms ease 500ms backwards;
 }
 
 @keyframes drop-in {
  from {
   opacity: 0;
   transform: translateY(-100px);
  }
  to {
   opacity: 1;
   transform: translate(0px);
  }
 }
 
/* ********************services card********************* */


/* *******************services card******************** */
.whowe
{
  border-radius: 1px 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  width:100%;
}
.whowe-txt
{
  text-align: justify;
}
.whowe-p
{
  padding: 3% 3%;
}
.whowe-sec
{
  padding: 5% 1%;
  background-color: #ffffff8f;
}
.ser-img
{
  background-color: #0092a9;
  padding: 10px;
  border-radius: 10px;
  width: 32%;
  /* text-align: center; */
  align-self: center;
}

.ser-img2
{
  background-color: #0092a9;
  padding: 10px;
  border-radius: 10px;
  width: 14%;
  /* text-align: center; */
  align-self: center;
}

/* our team carousal slider */

.teams{
  font-family: 'Raleway', sans-serif;
}
.teams .shadow-effect {
      background: #fff;
      padding: 20px;
      border-radius: 20px;
      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-teams .item {
     height:470px !important;
      text-align: center;
      padding: 50px;
      margin-bottom:80px;
      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-teams .item p{
font-size:12px;
}
#customers-teams .item h2{
font-size:28px !important;
font-weight:500 !important;
}
#customers-teams .item .title{
font-size:14px;
}
#pastexp{
margin-top:20px;
}
#customers-teams .item h5{
font-size:15px !important;
font-weight:700 !important;
}
  #customers-teams .owl-item.active.center .item {
      opacity: 1;
      -webkit-transform: scale3d(1.0, 1.0, 1);
      transform: scale3d(1.0, 1.0, 1);
  }
  .teams .owl-carousel .owl-item .img-circle {
      transform-style: preserve-3d;
      max-width: 170px;
      margin: 0 auto 17px;
      transition: transform .5s;
  }
.teams .owl-carousel .owl-item .img-circle:hover {
      transform: scale(0.9);
  }
  #customers-teams.owl-carousel .owl-dots .owl-dot.active span,
#customers-teams.owl-carousel .owl-dots .owl-dot:hover span {
      background: rgba(215,67,77,0.8);
      transform: translate3d(0px, -50%, 0px) scale(0.7);
  }
#customers-teams.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-teams.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
  #customers-teams.owl-carousel .owl-dots .owl-dot span {
      background: rgba(215,67,77,0.8);
      display: inline-block;
      height: 20px;
      margin: 0 2px 5px;
      margin-top:50px;
      transform: translate3d(0px, -50%, 0px) scale(0.3);
      transform-origin: 50% 50% 0;
      transition: all 250ms ease-out 0s;
      width: 20px;
      outline: none;
      border-radius:50% !important;
  }
.owl-dot, .owl-dot:active, .owl-dot:focus { 
outline: 0 !important;
}

@media only screen and (max-width: 1000px){
#customers-teams.owl-carousel .owl-dots .owl-dot span {
height:20px;
width:20px;
margin-top:30px;
}
}


#teamsocial {
 align-items: center;
 justify-content: center;
 display: flex;
 margin:10px auto;
 margin-top:20px;

}
#teamsocial #socialicon {
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 width:40px;
 height: 40px;
 margin: 0 0.5rem;
 border-radius: 50%;
 cursor: pointer;
 font-size: 1.5rem;
 text-decoration: none;
 transition: all 0.3s ease;

}
#teamsocial #socialicon:hover {
 font-size: 2rem;
 width:50px;
 height: 50px;
}
/* end of client carousal slider */
.cli-sec
{
  padding: 4% 1%;
}
.cli-para
{
  font-weight: 600;
  color: #2f92aa;
  text-align: center;
}
/* our team css */
.column {
  float: left;
  width: 25%;
  margin-bottom: 16px;
  padding: 0 8px;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.column .card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
    border: none;
    padding: 14px;
}
.column h2
{
  padding: 20px 0px 7px 0px;
    font-size: 31px;
    text-align: center;
    text-transform: uppercase;
}
.t-img
{
  align-self: center;
    box-shadow: rgb(47 146 170) 2px 2px 4px;
}
.centert
{
  text-align: center;
}

/* services css */

.ser-pg
{
  background-color: #2f92aaba;
    padding: 5% 3%;
    /* background-image:url("assets/img/new/sevices2.png"); */
}
.SER-H3
{
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}
.ser-row
{
  background-color: #fff;
    padding: 3% 4%;
    border: #2f92aa 1px solid;
}
.smart-n {
  font-size: 42px;
  text-align: center;
  font-weight: 700;
  color: #459ebf;
  font-family: revert;
}

/* career page */

.frm-sec
{
  border-left:1px dashed #4495ad;
}