@charset "UTF-8";

.clearer { 
  clear: both;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes takeoff {
    0% {
      opacity:1;
      -webkit-transform: scale(1);
    }

    25% {
      -webkit-transform: scale(1);
    }

    100% {
      opacity:0;
      -webkit-transform: scale(10);
    }
}
@keyframes takeoff {
    0% {
      opacity:1;
      transform: scale(1);
    }

    25% {
      transform: scale(1);
    }

    100% {
      opacity:0;
      transform: scale(10);
    }
}
.rocket {
  position:absolute;
  top:50%;
  left:50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  opacity:0;
  -webkit-animation:takeoff 2s ease-in;
  animation:takeoff 2s ease-in;
}
.loader {
  height: 100px;
  width: 100px;
  margin: -50px 0 0 -50px;
}

@font-face {
  font-family: 'et-line';
  src:url('../fonts/et-line.eot');
  src:url('../fonts/et-line.eot?#iefix') format('embedded-opentype'),
    url('../fonts/et-line.woff') format('woff'),
    url('../fonts/et-line.ttf') format('truetype'),
    url('../fonts/et-line.svg#et-line') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-search, .icon-shield, .icon-telescope, .icon-gears, .icon-lightbulb, .icon-tools, .icon-tools-2, .icon-magnifying-glass, .icon-linegraph, .icon-beaker, .icon-profile-male, .icon-globe, .icon-hazardous, .icon-global, .icon-lifesaver, .icon-aperture, .icon-quote, .icon-scope, .icon-refresh {
  font-family: 'et-line';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display:inline-block;
}

.icon-search:before {
  content: "\e007";
}
.icon-shield:before {
  content: "\e022";
}
.icon-telescope:before {
  content: "\e02a";
}
.icon-gears:before {
  content: "\e02b";
}
.icon-lightbulb:before {
  content: "\e030";
}
.icon-tools:before {
  content: "\e033";
}
.icon-tools-2:before {
  content: "\e034";
}
.icon-magnifying-glass:before {
  content: "\e037";
}
.icon-linegraph:before {
  content: "\e039";
}
.icon-beaker:before {
  content: "\e03c";
}
.icon-profile-male:before {
  content: "\e040";
}
.icon-globe:before {
  content: "\e045";
}
.icon-hazardous:before {
  content: "\e04f";
}
.icon-global:before {
  content: "\e052";
}
.icon-lifesaver:before {
  content: "\e054";
}
.icon-aperture:before {
  content: "\e056";
}
.icon-quote:before {
  content: "\e057";
}
.icon-scope:before {
  content: "\e058";
}
.icon-refresh:before {
  content: "\e05a";
}

#video-bg {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  overflow:hidden;
  background-color:#222;
  background-repeat:no-repeat;
  background-position:50% 50%;
  background-size:cover;
}

#video-bg > video {
  position:relative;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.navbar-custom .nav > li > a:focus, .navbar-custom .nav > li > a:hover {
  color:#FF99FF;
}

/* 1. No object-fit support: */
@media (min-aspect-ratio: 16/9) {
#video-bg > video {
  height:300%;
  top:-100%;
}
}

@media (max-aspect-ratio: 16/9) {
#video-bg > video {
  width:300%;
  left:-100%;
}
}

/* 2. If supporting object-fit, overriding (1): */
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
#video-bg > video {
  top:0;
  left:0;
  width:100%;
  height:100%;
  -o-object-fit:cover;
  object-fit:cover;
}
}

.preloader-title {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: white;
  text-align: center;
  position: absolute;
  top: 55%;
  width: 100%;
}

.con-fix {
  width: 100%;
}

.title-min {
  display: none;
}

i.fa.fa-angle-down {
  font-size: 40px;
  text-shadow: 0 1px 2px #000;
}

.greedy-jumbotron {
  height:100vh;
}

.shadow-title {
  text-shadow:2px 2px 8px #000;
}

.shadow-subtitle {
  text-shadow:1px 1px 2px #000;
}

.pd-welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.welcome-text {
  margin:0;
  font-size:24px;
}

.fa-rocket {
  /*color:#fff;*/
  padding:0;
  border-radius:50% 50%;
  background-color:#FDF;
  box-shadow:0 0 10px #fff;
  /*letter-spacing:0;*/
  /*font-size:48px;*/
  height:100px;
  width:100px;
  /*padding:12px 12px 12px 8px;*/
}

.navbar-custom {
  display: block;
}

.turnDeviceNotification {
  position:fixed;
  z-index: 1001;
  top: -20%;
  left: -20%;
  height: 140%;
  width: 140%;
  display: none;
  background-image:url('../images/turnDevice.png');
  background-size:cover;
  background-position: 50% 50%;
}

.about {
  height: 100vh;
}

.pink-line {
  border-bottom: 1px solid #ff99ff;
}

.about-body {
  text-align:justify;
  padding:0 10px;
  margin-bottom:20px;
}

i .fa .fa-angle-down {
  font-size:40px;
}

.hs-caption {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

h3.font-alt.mb-20 {
  border-bottom: 1px dotted;
}

.pink-text {
  color:#FF99FF;
}

.package-img {
  height: 100%;
  background-position: 0% 50%;
}

.bk-grnd-pos-fix {
  background-position: 0% 50%;
}

.divider-w {
  border-top: 1px solid #bbb;
  position: relative;
  z-index: -1;
}

.caption-content {
  position: absolute;
  text-align: center;
  width: 100%;
}

.cc-top {
  top: 7em;
}

.cc-bottom {
  bottom: 7em;
}

.text-shadow {
  text-shadow: 1px 1px 10px black;
}

.btn.btn-border-w {
  background:rgba(255,255,255,0.3);
  border:1px solid #FF99FF;
  color:#000!important;
}

/*.features-top {
  padding:50px 0;
}*/

.features-top-body {
  padding:50px 0;
  /*box-shadow: inset 0 25px 15px -20px rgba(0,0,0,.75);*/
  background-repeat:no-repeat;
  background-position:50% 50%;
  background-size:cover;
}

.features-item {
  margin:0;
}

.features-body {
  text-align:justify;
  font-size:18px;
}

.featured-photo-full {
  /*margin: 0 0 10px;*/
  padding:0;
}

.featured-photo-part {
  /*margin:10px 0;*/
  padding:0;
}
/*.design_01_sm, .horizon_sm, .quote_sm, .structure_03_sm{
  background: url(http://static.ussgaia.com/images/sprites.jpg) no-repeat;

}*/

/*.design_01_sm{
  background-position: 0 0;
  background-size: cover;
  width: 1600px;
  height: 250px;
}

.structure_03_sm{
  background-position: 0 -250px;
  background-size: cover;
  width: 1600px;
  height: 250px;
}

.horizon_sm{
  background-position: 0 -500px;
  background-size: cover;
  width: 1600px;
  height: 280px;
}

.quote_sm{
  background-position: 0 -780px;
  background-size: cover;
  width: 1600px;
  height: 320px;
}*/

.design-bg {
  background: #424242;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#424242), color-stop(100%,#bdbdbd));
  background: -webkit-linear-gradient(top,  #424242 0%,#bdbdbd 100%);
  background: linear-gradient(to bottom,  #424242 0%,#bdbdbd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#bdbdbd',GradientType=0 );
  box-shadow: inset 0px 14px 8px -10px #222;
}

.struct-bg {
  background: #bdbdbd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bdbdbd), color-stop(100%,#fafafa));
  background: -webkit-linear-gradient(top,  #bdbdbd 0%,#fafafa 100%);
  background: linear-gradient(to bottom,  #bdbdbd 0%,#fafafa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdbdbd', endColorstr='#fafafa',GradientType=0 );
  /*box-shadow: inset 0px 14px 8px -10px;*/
}

.drop-box {
  border:1px #d3d3d3 solid;
  border-radius:3px;
  box-shadow:0 2px 6px 0 rgba(0,0,0,0.75);
  padding:20px;
  background-color:rgba(255,255,255,0.95);
}

.trans-design-top {
  padding:15px 0;
  background-color:rgba(0,0,0,0.75);
}

.trans-design-top-clear {
  padding:15px 0;
}

.module-white-font {
  color:#fff;
}

.module-subtitle-mod {
  padding:0 5%;
  color:#fff;
}

.struct-title-margin {
  margin:0;
}

.hab-li-width li {
  width: 20%;
}

.hab-li-width li:last-child {
  display:none;
}

.plat-li-width li {
  width: 25%;
}

.beyond-li-width li {
  width: 33.33%;
}

.beyond-li-width li:last-child {
  display:none;
}

.tab-pane {
  font-size:18px;
}

.tab-pane > span {
  font-size: 100px;
  color: #FF99FF;
  text-shadow: 1px 1px 3px #999;
  position: absolute;
  opacity: 0.2;
  bottom: 70px;
  right: 45px;
}

.nav-tabs {
  border-bottom:none;
}

.nav-tabs>li>a {
  margin-right:2px;
  margin-left:2px;
  border-radius:4px 4px 0 0;
  border: 1px solid #ddd;
  color: #555;
}

.nav-tabs>li {
  border-bottom:1px solid #d3d3d3;
}

.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover {
  background-color:#eee;
  border-bottom:1px solid #FF99FF;
  color: #111;
  text-shadow: none;
}

.nav-tabs>li.active>a>span {
  color:#FF99FF;
}

.nav-tabs>li>a>span {
  font-size:16px;
  text-shadow: 1px 1px 1px #aaa;
}

.nav-tabs>li>a:focus,.nav-tabs>li>a:hover {
  background-color: #FFBBFF;
  color: #fff;
  text-shadow: 1px 1px 1px #aaa;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.bg-dark-60:before {
  background: rgba(255, 153, 255, 0.42);
}

.back-pos-50-0 {
  background-position: 50% 0%;
}

.team-image {
  border-radius: 50%;
  box-shadow: 0 0 10px 2px;
}

.out-ds {
  box-shadow: 0 1px 14px 2px #333;
}

.press-img{
  width: 100%;
}

.bottom-aligner {
  display: inline-block;
  vertical-align: bottom;
}

a.more-link {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 48px;
  padding-top: 14px;
  text-align: center;
  width: 100%;
  border: 1px solid transparent;
  border-top: 1px solid #eeeeee;
}

.link-hover-dark:hover {
  color: #444;
}

.more-link:hover {
  color: #444;
  background-color: #eee;
  border-radius: 0 0 3px 3px;
  border: 1px solid #aaa;
  box-shadow: inset 0 3px 6px -3px #444;
}

.contact-box-fix {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border:1px solid #aaa;
}

.form-control:focus {
  border-color: #666;
}

.contact-success {
  display:none;
}

.navbar-social-links {
  font-size:14px;
}

.navbar-social-links a {
  float:left;
  padding: 2px 6px 2px 12px !important;
}

.navbar-social-links > .gap-fix {
  padding-left: 9px !important;
}

.navbar-social-links > a:nth-child(1):hover {
  color: #dd4b39 !important;
}

.navbar-social-links > a:nth-child(2):hover {
  color: #007bb6 !important;
}

.navbar-social-links > a:nth-child(3) {
  clear: left;
}

.navbar-social-links > a:nth-child(3):hover {
  color: #3b5998 !important;
}

.navbar-social-links > a:nth-child(4):hover {
  color: #00aced !important;
}

.footer-social-links {
  font-size:24px;
  height: 48px;
  text-align: justify;
  min-width: 192px;
  margin: 0 60px;
}

.footer-social-links a {
  width: 48px;
  height: 48px;
  text-align: center;
}

.footer-social-links:after {
  content: '';
  width: 100%;
  display: inline-block;
}

.footer-social-links a:nth-child(1):hover {
  color: #dd4b39 !important;
}

.footer-social-links a:nth-child(2):hover {
  color: #007bb6 !important;
}

.footer-social-links a:nth-child(3):hover {
  color: #3b5998 !important;
}

.footer-social-links a:nth-child(4):hover {
  color: #00aced !important;
}

p.align-center.font-alt {
  margin: 0;
  font-size: 12px;
}

.card-stack-1 {
  position:relative;
  border:1px #d3d3d3 solid;
  border-radius:3px;
  box-shadow:0 2px 8px 0 rgba(0,0,0,0.25);
  padding:20px;
  background-color:#fff;
}

.card-stack-1:before {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #a3a3a3 solid;
  border-radius:3px;
  box-shadow:0 1px 4px 0 rgba(0,0,0,0.25);
  background-color:#cecece;
  -webkit-transform:rotate(-2deg);
  -ms-transform:rotate(-2deg);
  transform:rotate(-2deg);
  top:0;
  left:-6px;
  height:100%;
  width:100%;
}

.card-stack-1:after {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #b3b3b3 solid;
  border-radius:3px;
  box-shadow:0 1px 6px 0 rgba(0,0,0,0.25);
  background-color:#e0e0e0;
  -webkit-transform:rotate(3deg);
  -ms-transform:rotate(3deg);
  transform:rotate(3deg);
  top:1px;
  left:3px;
  height:100%;
  width:100%;
}

.card-stack-2 {
  position:relative;
  border:1px #d3d3d3 solid;
  border-radius:3px;
  box-shadow:0 2px 8px 0 rgba(0,0,0,0.25);
  padding:20px;
  background-color:#fff;
}

.card-stack-2:before {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #a3a3a3 solid;
  border-radius:3px;
  box-shadow:0 1px 4px 0 rgba(0,0,0,0.25);
  background-color:#cecece;
  -webkit-transform:rotate(1deg);
  -ms-transform:rotate(1deg);
  transform:rotate(1deg);
  top:7px;
  left:10px;
  height:100%;
  width:100%;
}

.card-stack-2:after {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #b3b3b3 solid;
  border-radius:3px;
  box-shadow:0 1px 6px 0 rgba(0,0,0,0.25);
  background-color:#e0e0e0;
  -webkit-transform:rotate(-3deg);
  -ms-transform:rotate(-3deg);
  transform:rotate(-3deg);
  top:1px;
  left:5px;
  height:100%;
  width:100%;
}

.card-stack-3 {
  position:relative;
  border:1px #d3d3d3 solid;
  border-radius:3px;
  box-shadow:0 2px 8px 0 rgba(0,0,0,0.25);
  padding:20px;
  background-color:#fff;
}

.card-stack-3:before {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #a3a3a3 solid;
  border-radius:3px;
  box-shadow:0 1px 4px 0 rgba(0,0,0,0.25);
  background-color:#cecece;
  -webkit-transform:rotate(1deg);
  -ms-transform:rotate(1deg);
  transform:rotate(1deg);
  top:-3px;
  left:-8px;
  height:100%;
  width:100%;
}

.card-stack-3:after {
  content:"";
  position:absolute;
  z-index:-1;
  border:1px #b3b3b3 solid;
  border-radius:3px;
  box-shadow:0 1px 6px 0 rgba(0,0,0,0.25);
  background-color:#e0e0e0;
  -webkit-transform:rotate(-3deg);
  -ms-transform:rotate(-3deg);
  transform:rotate(-3deg);
  top:-2px;
  left:0;
  height:100%;
  width:100%;
}

@media (max-width: 1199px) {
.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand {
  margin-left: -30px;
}

.navbar-custom .navbar-brand {
  font-size: 18px;
}

.hab-li-width li {
  width: 33.33%;
  padding-top: 5px;
}

.hab-li-width li:last-child {
  display: block;
  border-right: 1px solid #d3d3d3;
  height: 48px;
  width: 33%;
}

.plat-li-width li {
  width: 50%;
  padding-top: 5px;
}
}

@media (min-width: 992px) {
.team-pad {
  padding: 0 10% !important;
}
}

@media (max-width: 991px) {
.title-full {
  display:none;
}

.title-min {
  display: block;
}

.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand {
  margin-left: -15px;
}

.navbar-custom .navbar-brand {
  font-size: 22px;
}

.team-pad {
  padding: 0px 25%;
}

.beyond-li-width li {
  width: 50%;
  padding-top: 5px;
}

.beyond-li-width li:last-child {
  display: block;
  border-right: 1px solid #d3d3d3;
  height: 48px;
  width: 49.75%;
}

.fa-rocket {
  /*font-size:38px;*/
  height:80px;
  width:80px;
  /*padding:10px 10px 10px 6px;*/
}
}

@media (min-width: 768px) {
.team-pad {
  padding:0 10%;
}

.navbar-nav>li {
  border-right:1px solid rgba(255,255,255,0.2);
}

.navbar-right {
  border-left:1px solid rgba(255,255,255,0.2);
}

.navbar-transparent {
  background:rgba(0,0,0,0.2);
  border-bottom:1px #000 solid;
}
}

@media (max-width: 767px) {
.title-full {
  display:none;
}

.title-min {
  display:block;
}

.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand {
  margin-left: 0;
}

.video-768 {
  display:none;
}

.navbar-collapse {
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
}

.navbar-nav>li {
  border-right:none;
}

.navbar-right {
  border-left:none;
}

.navbar-custom li a,.navbar-custom .dropdown-search {
  line-height:27px;
  border-bottom:1px solid rgba(255,255,255,0.2)!important;
  padding: 10px 30px;
}

.navbar-social-links {
  font-size:20px;
  height: 48px;
  text-align: justify;
  min-width: 192px;
}

.navbar-social-links a {
  width: 25%;
  height: 48px;
  text-align: center;
  padding: 10px 15px !important;
}

.navbar-social-links:after {
  content: '';
  width: 100%;
}

.navbar-social-links > a:nth-child(1) {
  color: #dd4b39 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important; 
}

.navbar-social-links > a:nth-child(2) {
  color: #007bb6 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important; 
}

.navbar-social-links > a:nth-child(3) {
  clear: none;
}

.navbar-social-links > a:nth-child(3) {
  color: #3b5998 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important; 
}

.navbar-social-links > a:nth-child(4) {
  color: #00aced !important;
  border-right: none !important;
}

.navbar-social-links > .gap-fix {
  padding-left: 15px !important;
}

.btn.btn-border-w {
  background: #FFFFFF;
  border: 1px solid #FF99FF;
  color: #000 !important;
}

/*.fa-rocket {
  font-size:28px!important;
  height:60px!important;
  width:60px!important;
  padding:7px 8px 8px 6px!important;
}*/

.about {
      height: 100vh;
  padding:80px 0;
}

.module-title {
  margin:0 0 20px;
}

.tab-pane > span {
  font-size: 80px;
  bottom: 30px;
}

.testimonial-text {
  font-size: 14px;
}

.footer-social-links {
  margin: 0 30px;
}

.footer-social-links a {
  padding: 0;
}

.footer-social-links a:nth-child(1) {
  color: #dd4b39 !important;
}

.footer-social-links a:nth-child(2) {
  color: #007bb6 !important;
}

.footer-social-links a:nth-child(3) {
  color: #3b5998 !important;
}

.footer-social-links a:nth-child(4) {
  color: #00aced !important;
}

ul.icon-list {
  font-size: 16px;
}

.widget {
  margin-bottom: 30px;
}

.widget p {
  font-size: 16px;
}
.last-photo-media-fix {
  margin: 0 -15px;
}
.package-img {
  height: 50%!important;
}
}

@media (max-width: 685px) {
.hab-li-width li {
  width: 50%;
  padding-top: 5px;
}

.hab-li-width li:last-child {
  display: block;
  border-right: 1px solid #d3d3d3;
  height: 48px;
  width: 49.75%;
}

.beyond-li-width li {
  width: 100%;
  padding-top: 5px;
}

.beyond-li-width li:last-child {
  display:none;
}
}

@media (max-width: 575px) {
.plat-li-width li {
  width: 100%;
  padding-top: 5px;
}
}

@media (max-width: 479px) {
/*.navbar-custom .navbar-brand {
  letter-spacing:2px;
  font-size:16px;
}*/

.nav-tabs>li {
  width: 100% !important;
}

.hab-li-width li:last-child {
  display:none;
}

.large-text {
  font-size:18px !important;
}

.footer-social-links {
  margin: 0 15px;
}
.cc-top {
  top: 5em;
}
}