/* Required height of parents of the Full Page Intro and Intro itself */
html,
body,
.view {
  height: 100%;
  --base-color: rgb(255, 93, 93);
}


/* Navbar animation */
.navbar li a{
  /* background-color: rgba(0, 0, 0, 0.2); */
}

.navbar li a {  
  text-transform: capitalize;
}
.navbar.navbar-dark .navbar-nav .nav-item .nav-link {
  color: #1c2331;
}
.navbar.navbar-dark .navbar-nav .nav-item .nav-link:hover {
  color: var(--base-color);
}
.navbar.navbar-dark .navbar-toggler {
  color: #fff;
  background-color: #1c2331;
}

.navbar li.active, .navbar li:hover {
  border-bottom: 2px solid var(--base-color);
}

.top-nav-collapse {
  background-color: #1c2331;
  box-shadow: 0px 1px 10px #2d2a2a;
}
.top-nav-collapse .navbar-nav .nav-item .nav-link {
  color: #fff !important;
}
.tagline-container {
  text-align: left !important;
}
.tagline {
  display: flex;
}
.tagline .make-bold {
  font-weight: bold;
  color: var(--base-color);
}

.navbar-expand-lg .navbar-collapse {
  flex-grow: unset;
}

.curtain {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  background-color: white;
}

.skew-img-container {
  position: absolute;
  top: 20%;
  left: -8%;
  height: 72%;
  width: 50%;
  transform: skewX(-20deg);  
  overflow: hidden;
  border: 2px solid orange;
  border-radius: 0 90px 40px 0;
  filter: drop-shadow(30px 21px 0 var(--base-color));
}

.skew-img-container img {
  height: 100%;
  width: 110%;
  transform: skewX(20deg);
}

.app-demo {
  position: absolute;
  right: 0;
  top: 20%;
}

.app-demo .phone-bg {
  z-index: 1;
  filter: drop-shadow(-14px 0px 8px #000);
}
.app-demo .screen-bg {
  position: absolute;
  right: 15%;
  top: 7.5%;
  width: 70.5%;
}
.app-demo h1 {
  position: absolute;
  right: 36%;
  top: 25%;
  color: azure;
}
.download-block {
  position: absolute;
  bottom: 2%;
  right: 34%;
  display: flex;
  flex-direction: column;
}

.download-divider {
  background-color: var(--base-color);
  border-radius: 8px;
  height: 8px;
  width: 140%;
}

.download-app-label {
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #fff;
}


.store-links a {
  margin: 15px 15px 15px 0px;
  text-align: left;
  width: 180px;
}
.store-links a img {
  width: 180px;
}


/* animation of OXCE in tagline */
.word {
  padding: 0 10px;
}
.word span {
	cursor: pointer;
	display: inline-block;
	user-select: none;
	line-height: .8;
}

.word span:nth-child(1).active {
	animation: shrinkjump 2s ease-in-out;
	transform-origin: bottom center;
}

@keyframes shrinkjump {
	10%, 35% {
		transform: scale(2, .2) translate(0, 0);
	}
	
	45%, 50% {
		transform: scale(1) translate(0, -150px);
	}
	
	80% {
		transform: scale(1) translate(0, 0);
	}
}

.word span.active {
	animation: falling 2s ease-out;
	transform-origin: bottom center;
}

@keyframes falling {
	12% {
		transform: rotateX(240deg);
	}
	
	24% {
		transform: rotateX(150deg);
	}
	
	36% {
		transform: rotateX(200deg);
	}
	
	48% {
		transform: rotateX(175deg);
	}
	
	60%, 85% {
		transform: rotateX(180deg);
	}
	
	100% {
		transform: rotateX(0deg);
	}
}

@-webkit-keyframes pulse {
  from {
    box-shadow: 0 0 0 0 var(--base-color);
  }
  to {
    box-shadow: 0 0 0 45px rgba(3, 149, 229, 0);
  }
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0 rgba(3, 149, 229, 0.4);
  }
  to {
    box-shadow: 0 0 0 45px rgba(3, 149, 229, 0);
  }
}
.highlight {
  position: relative;
  width: 200px;
  height: 60px;
  border: 1px solid var(--base-color);
  border-radius: 2px;
  /* line-height: 60px; */
  color: white;
  text-align: center;
  /* font-size: 15px; */
  /* letter-spacing: 3px; */
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.highlight:before, .highlight:after {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  visibility: hidden;
  border-radius: 2px;
}
.highlight:before {
  border-top: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
  top: 0;
  left: 0;
}
.highlight:after {
  border-left: 1px solid var(--base-color);
  border-bottom: 1px solid var(--base-color);
  bottom: 0;
  right: 0;
  transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s;
}
.highlight:hover {
  /* -webkit-animation: pulse 1s ease-out 0.4s;
          animation: pulse 1s ease-out 0.4s; */
  color: var(--base-color);
}
.highlight:hover:before, .highlight:hover:after {
  width: 100%;
  height: 100%;
  visibility: visible;
}
.highlight:hover:before {
  transition: width 0.1s ease, height 0.1s ease 0.1s;
}
.highlight:hover:after {
  transition: width 0.1s ease 0.2s, height 0.1s ease 0.3s, visibility 0s 0.2s;
}

.content-container {
  position: absolute;
  right: 0;
  top: 20%;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  padding: 4% 0 0 0;
}
.content-container .borderless-card {
  width: 50%;
  height: 150px;
  margin: 0 0px 60px 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.content-container .borderless-card:nth-child(3),
.content-container .borderless-card:nth-child(4) {
  margin-bottom: 10px;
}

.content-container .borderless-card img {
  width: 50px;
  margin: 0 0 10px 0;
}

.app-link .app-badge,
.app-link .app-tagline {
  display: inline-flex;
}

.about .base-text {
  color: var(--base-color);
  display: inline;
  font-weight: bold;
}
.about .card-body {
  text-indent: 36px;
  text-align: justify;
}

.our-presence {
  padding-top: 8%;
  display: flex;
  flex-wrap: wrap;
}

.btn-floating {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
  box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
  width: 47px;
  height: 47px;
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-floating i {
  font-size: 1.25rem;
  padding: 8px 6px 0px 0;
}
a.waves-effect, a.waves-light {
  display: inline-block;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  margin-top: 8%;
  padding: 15px;
}

.gallery-container .card {
  width: 320px;
  height: 320px;
  margin: auto;
}
.gallery-container .card .card-title {
  text-align: center;
}

.gallery-container .coming-soon {
  vertical-align: middle;
  margin: auto;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#FFD86F, #FC6262);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;  
}
.our-presence > row {
  width: 100%;
}


@media only screen and (max-width: 768px) {
  .navbar-collapse {
    background-color: #1c2331;
  }
  .navbar.navbar-dark .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  .dark-toggler {
    background-color: #1c2331;
  }
  .mask {
    flex-direction: column;
    justify-content: space-between;
    padding-top: 45%;
  }
  .app-demo {
    display: none;
  }
  .tagline-container {
    width: 100%;
    margin: auto !important;
    padding: 15px;
  }
  .tagline-container .tagline {
    display: inline-block;
  }
  .tagline-container h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0 !important;
  }
  .tagline-container h1 {
    font-size: 18px;
  }
  .tagline-container .word {
    display: inherit;
  }
  .download-block {
    padding: 10%;
    position: unset;
  }
  .download-block .download-app-label {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    margin: 0;
  }
  .download-block .download-divider {
    /* width: unset; */
    display: none;
  }
  .download-block .store-links {
    display: flex;
  }
  .download-block .store-links a {
    padding: 8px 8px 8px 8px;
    width: 160px;    
  }
  .download-block .store-links a:first-child {
    margin: 0;
    padding-top: 0;
    width: unset;
  }
  .download-block .store-links a:nth-child(2) {
    margin: 8px 0px 0px 0px;
  }
  .skew-img-container {
    display: none;
  }
  .card-list .content-container {
    width: 100%;
  }
  .card-list .content-container .borderless-card {
    margin: auto;
  }
  .card-list .content-container h5 {
    font-size: 16px;
  }
  .card-list .app-link {
    text-align: center;
    padding: 15px;
  }
  .career .content-container {
    right: unset;
    position: relative;
    width: 100%;
    margin-top: 30%;
  }
  .career .card-cascade {
    width: 100%;
  }
  .about {
    width: 100%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
  }
  .our-presence {
    margin-top: 30%;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: unset;
  }
  .our-presence > .row {
    width: unset;
  }
  .info-buttons > .col-md-4 {
    display: flex;
  }
  .info-buttons div p {
    vertical-align: middle;
    margin: auto 0;
  }
  .gallery-container {
    margin-top: 25%;
  }

}

.fa {
  padding: 20px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  width: 50px;  
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-skype {
  background: #00aff0;
  color: white;
}

.fa-android {
  background: #a4c639;
  color: white;
}

.fa-dribbble {
  background: #ea4c89;
  color: white;
}

.fa-vimeo {
  background: #45bbff;
  color: white;
}

.fa-tumblr {
  background: #2c4762;
  color: white;
}

.fa-vine {
  background: #00b489;
  color: white;
}

.fa-foursquare {
  background: #45bbff;
  color: white;
}

.fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.fa-soundcloud {
  background: #ff5500;
  color: white;
}

.fa-reddit {
  background: #ff5700;
  color: white;
}

.fa-rss {
  background: #ff6600;
  color: white;
}
