span.email b {
  display: none;
}

img{
  max-width:100%;
  height:auto
}

/*--WHAT IS AARK - FLIP CARDS--*/
.flip-card {
  display: flex;
  flex-wrap: wrap;
  float: center;
  position: relative;
  background-color: transparent;
  width: 100%;
  height:250px;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height:100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-image: linear-gradient(to bottom right, #0d207f, #fff);
  background-color: #0d207f;
  color: #fff;
  padding: 5px;
  justify-content:wrap;
  align-content: center;
  text-align: center;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height:10;
}
.flip-card-front1 {
  background-image: #0d207f;
  background-color: #0d207f;
  opacity: 90%;
  color: #fff;
  text-align: center;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 11;
}

.flip-card-front1,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  background-color: #fff;
  color: darkslategray;
  justify-content: flex-start;
  text-align: center;
  padding: 1rem;
  transform: rotateY(180deg);
}

/*--CUSTOM TEXT STYLES--*/
.sub_header h1 {
  font-size: 80px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.main_title1 {
  text-align: center;
  margin-bottom: 45px;
   color: white;
  font-weight: 600;
}
.main_title1 h2 {
  font-size: 34px;
  letter-spacing: -1px;
padding-top: 10px;
  color: white;
}
.main_title1 p {
  font-size: 22px;
  font-family: "proxima_novalight", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  color: white;
}

.fs1_linkedin {
  display:inline-flex;
  padding: 10px;
  position: relative;
  scale: 2;
  color: #fff; 
}
  
  
/*-- AARK SUMMARY SECTION - FEATURES --*/

.summary {
  width: 100%;
  height: auto;
  margin: auto;
}


/*--CLIENTS SECTION--*/

.flip-boxes {
  justify-content: center;
}
.flip-box {
  display: flex;
  align-content: center;
  min-height: 200px;
  max-width: auto;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  border-top: 0;
  -webkit-perspective: 1000;
  perspective: 1000;

  &:hover {
    .back {
      transform: rotateY(0deg);
      z-index: 10;
    }

    .front {
      transform: rotateY(180deg);
      z-index: -1;
    }
  }

  .back,
  .front {
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    flex: 0 0 100%;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
  }

  .back {
    background-color: #fff;
    background-size: cover;
    color: darkblue;
    position: absolute;
    left: 0;
    top:0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transform: rotateY(-180deg);

    &:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 30px;
      border-bottom-color: white;
      border-left-color: white;
    }
  }

  .front {
    z-index: 10;
  }

  .content {
    width: 90%;
    font-family: sans-serif;
    font-size: 12px; 
    margin-left: 5px;
  }

  .content2 {
    font-style: normal;
    font-family: sans-serif;
    font-size: 10px;
    color: black;
  }

  &:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-bottom-color: white;
    border-right-color: white;
  }
}

.content {
  font-family: sans-serif;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-transform: translateZ(50px);
  transform: translateZ(50px);
}

/*--APP BUTTON--*/

a.button_outline.large_app,
.button_outline.large_app {
	
	font-size: 25px;
    border:none;
	/*--border: 2px solid #4cbb17;--*/
	background-image: image();
    text-transform: uppercase;
}

a.button_outline.large_app:hover,
.button_outline.large_app:hover {
	border: none;
	color: #ffffff;
	background-color: #4cbb17;
	opacity: 90%;
}

.carousel-inner {
	min-width: 100%;
	min-height: 240px;
}

.video {
    display:block;
	align-content: center;
    padding-left:100px;
	max-width: 100%;
	height: auto;	
}


