@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,700&display=swap');
@charset "utf-8";

/* CSS Document
font-family: 'PT Serif', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Helvetica';
font-family: 'HelveticaBold';
*/

body,
html {
  height: 100%
}

body {
  background: #fff;
}

@font-face {
  font-family: 'Helvetica';
  src: url(../fonts/Helvetica-Neue-Light.ttf);
}

@font-face {
  font-family: 'HelveticaBold';
  src: url(../fonts/HelveticaLTCondensed.ttf);
}
@font-face {
  font-family: 'HelveticaLight';
  src: url(../fonts/Helvetica-Neue-Light.ttf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'HelveticaBold';
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}


/* Begin: General CSS */

.img-center {
  margin: 0 auto;
}

.full-width {
  width: 100%;
}

.main-slider img,
.checkoutPilot img {
  width: 100%;
}

.btnStyle1 {
  background: #111271;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  font-family: 'PT Serif', serif;
  font-size: 20px;
}

.btnStyle1:hover,
.btnStyle1:focus {
  background: #000;
  color: #fff;
}

.font-italic {
  font-style: italic;
}

.hd1 {
  font-family: 'HelveticaBold';
  font-size: 3vw;
  line-height: 50px;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #000;
}

.hd2 {
  font-family: 'HelveticaBold';
  font-size: 1.8vw;
  line-height: 40px;
  margin: 0 0 15px;
  color: #000;
}

.red {
  color: #c02033;
}

.black {
  color: #000;
}

.marg-top-20 {
  margin-top: 20px;
}

.marg-top-30 {
  margin-top: 30px;
}


/* END: General CSS */


/*header .container {
max-width: 1500px;
min-width: 1170px;
}*/
header .top-row {
  /*background: url('../images/header-bg.jpg') top left/cover no-repeat;*/
  background: #111271;
  padding: 5em 0;
}

header .top-row a {
  display: block;
}

header .top-row a:before {
  content: '';
  width: 3px;
  height: 110%;
  position: absolute;
  top: 0;
  right: -15px;
  background: #fae6c2;
}

header .top-row h2 {
  font-size: 7vw;
  color: #fae6c2;
  margin: 0;
  line-height: 100px;
  padding-left: 20px;
  font-family: 'HelveticaLight';
  font-weight: 100;
}

header .bottom-row {
  background: #898686;
}

header .bottom-row .search {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 30px;
  transform: rotateY(190deg);
  position: relative;
  margin-top: 5px;
}

header .bottom-row {
  background: #898686;
  padding: 10px 0;
  height: 76px;
}

header .bottom-row h4 {
    font-family: 'Helvetica';
    font-size: 2.7vw;
    font-size: 51px;
    font-weight: 400;
    line-height: 60px;
    color: #fff;
    margin: -8px 0 0;
    text-align: center;
}

header .bottom-row .button_container {
  height: 34px;
  width: 40px;
  cursor: pointer;
  z-index: 2;
  transition: opacity .25s ease;
  margin: 13px auto 0;
  position: relative;
}

header .bottom-row .button_container:hover {
  opacity: .7;
}

header .bottom-row .button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}

header .bottom-row .button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

header .bottom-row .button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}

header .bottom-row .button_container span {
  background: #fdfdfd;
  border: none;
  height: 4px;
  width: 100%;
  display: block;
  transition: all .35s ease;
  cursor: pointer;
}

header .bottom-row .button_container span:nth-of-type(2) {
  margin: 8px 0;
}

header .bottom-row .button_container span:nth-of-type(3) {
  top: 22px;
}

header .bottom-row .overlay {
  position: fixed;
  background: #ffc500;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

header .bottom-row .overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
  z-index: 1;
}

header .bottom-row .overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

header .bottom-row .overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

header .bottom-row .overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

header .bottom-row .overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}

header .bottom-row .overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 50px;
  font-family: 'Vollkorn', serif;
  font-weight: 400;
  text-align: center;
}

header .bottom-row .overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

header .bottom-row .overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

header .bottom-row .overlay ul li a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  font-family: 'HelveticaBold';
}

header .bottom-row .overlay ul li a:hover:after,
header .bottom-row .overlay ul li a:focus:after,
header .bottom-row .overlay ul li a:active:after {
  width: 100%;
}

header .bottom-row .overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0);
  font-size: 60px;
  font-weight: 300;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: #ffc500;
  color: #000;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #000;
  background-color: #ffc500;
  border-color: #ffc500;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  z-index: 3;
}


/* END: Header CSS*/

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.main-slider .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: #898686;
  text-shadow: none;
  position: unset;
  height: 76px;
}

.main-slider .carousel-caption h4 {
    font-family: 'Helvetica';
    font-size: 2.7vw;
    font-size: 52px;
    font-weight: 400;
    margin: 0;
    line-height: 38px;
    color: #fff;
}
.carousel-control .fa {
    font-size: 100px;
    position: absolute;
    top: calc(50% - 50px);
}

/* Begin: Main Wrap CSS */

.mainWrap {
  padding: 50px;
}

.mainWrap .flexRow {
  background: #f6f6f6;
  border: 1px solid #b8b8b8;
  padding: 30px 15px;
  margin-bottom: 30px;
  /*display: flex;
  align-items: center;
  flex-flow: row wrap;*/
}

.checkoutPilot h2 {
  font-family: 'HelveticaBold';
  font-size: 3.6vw;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 30px;
  color: #000;
}

.signUpNotify .blueWrap {
  background: url(../images/header-bg.jpg) top left/cover no-repeat;
  padding: 30px;
  min-height: 96px;
}

.signUpNotify .blueWrap .full-width {
  width: 140px;
  margin: 0 auto;
  display: block;
}

.signUpNotify .blueWrap .hd2 {
  color: #ffc500;
  display: block;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 32px;
  text-decoration: underline;
}

.BlogRow.flexRow {
  align-items: flex-start;
}

.BlogRow .blogWrap .title {
  font-family: 'HelveticaBold';
  font-size: 30px;
  text-transform: uppercase;
  color: #c02033;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #d9d8d8;
  margin-bottom: 20px;
}
.BlogRow .blogWrap p {
    font-size: 22px;
    line-height: 30px;
}
.equalCol .flexRow {
  width: calc(100% + 20px);
  /* min-height: 350px; */
}

.equalCol .col-md-6:nth-child(2) {
  position: relative;
  right: -10px;
}

.booksRow .flexRow .tag {
  font-family: 'HelveticaBold';
  font-size: 24px;
  color: #111271;
  text-transform: uppercase;
}

.booksRow .flexRow .hd2 {
  font-size: 30px;
  text-transform: uppercase;
  margin: 14px 0;
}

.booksRow .flexRow p {
  font-style: italic;
  font-size: 22px;
  line-height: 28px;
}

.booksRow .flexRow p a {
  color: #111271;
  font-family: auto;
  font-style: normal;
}

.paypal {
  display: inline-block;
  width: 200px;
  position: relative;
  top: 10px;
  left: 20px;
}

.trainingSec .content .green {
  background: rgb(124, 201, 160);
  background: -moz-linear-gradient(top, rgba(124, 201, 160, 1) 0%, rgba(30, 162, 92, 1) 4%, rgba(30, 162, 92, 1) 50%, rgba(30, 162, 92, 1) 96%, rgba(17, 93, 53, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(124, 201, 160, 1) 0%, rgba(30, 162, 92, 1) 4%, rgba(30, 162, 92, 1) 50%, rgba(30, 162, 92, 1) 96%, rgba(17, 93, 53, 1) 100%);
  background: linear-gradient(to bottom, rgba(124, 201, 160, 1) 0%, rgba(30, 162, 92, 1) 4%, rgba(30, 162, 92, 1) 50%, rgba(30, 162, 92, 1) 96%, rgba(17, 93, 53, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7cc9a0', endColorstr='#115d35', GradientType=0);
  padding: 20px;
}

.trainingSec .content .green h4 {
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.trainingSec .content .green h4 a {
  display: block;
  color: #fff;
  text-decoration: underline;
  margin-top: 20px;
  text-transform: capitalize;
}
.piloTraningSec .text-uppercase, .piloTraningSec .text-uppercase .red {
    margin-top: 20px;
}
.equalCol .trainingSec {
  flex-flow: column;
  align-items: stretch;
  min-height: 690px;
}
.trainingSec .hd2 {
    line-height: 30px;
    font-size: 1.6vw;
}
.funSec .fun {
  width: 98%;
  margin: 0 auto;
  background: #fff;
}
.checkoutPilotCArousel .slick-dots,
.funSec .slick-dots {
  position: unset;
  margin-top: 20px;
}
.checkoutPilotCArousel .slick-dots li,
.funSec .slick-dots li {
  background: #7b7b7b;
  border-radius: 50px;
}

.checkoutPilotCArousel .slick-dots li button:before,
.funSec .slick-dots li button:before{
  content: none;
}
.checkoutPilotCArousel .slick-dots li.slick-active,
.funSec .slick-dots li.slick-active {
  background: #111271;
}

.funSec {
  background: #f6f6f6;
  padding: 30px;
  border: 1px solid #b8b8b8;
}

.funSec .fun .content {
  padding: 10px 30px;
  border: 1px solid #b8b8b8;
    border-top: 0;
}
.funSec .fun .content p {
    /*font-size: 18px;*/
    line-height: 30px;
    color: #000;
}
.funSec .hd1 {
  margin-bottom: 50px;
  font-size: 60px;
}

.eyeOnSpace p {
    font-size: 26px;
    color: #000;
    line-height: 40px;
    margin: 0;
}

.eyeOnSpace .header {
  background: #000066;
  color: #ffc500;
  margin: -30px -30px 30px;
  padding: 10px;
  line-height: 1;
}

.eyeOnSpace .header+p {
  margin: 30px 0 0;
}

.mainWrap .yelloWrap {
  background: #ffc500;
  border: 0;
}

.mainWrap .yelloWrap .hd1 {
  text-align: center;
}
.mainWrap .yelloWrap .hd1 a{
  color: #000;
}
.mainWrap .yelloWrap p {
  font-size: 22px;
  color: #000;
}

.eyeOnSpace .newpage{
  color: #fae6c2;
   /* font-size: 46px !important;
    font-weight: 100 !important;*/
}

.eyeOnSpace ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 6px;
}

.eyeOnSpace.small .header {
  font-size: 26px;
  margin-left: -15px;
  width: calc(100% - -30px);
  text-align: center;
}

.mainWrap .eyeOnSpace.small {
  background: #fff;
  border: 4px solid #006;
  border-top: 0;
}

.mainWrap .eyeOnSpace.small ul li a {
  text-decoration: none;
  color: #006;
}

.pilotDetail .full-width {
  margin: 0 0 40px;
}

.pilotDetail p {
  font-size: 1.4vw;
  margin-bottom: 40px;
}

.checkoutPilotCArousel{
  overflow: hidden;
}
/* END: Main Wrap CSS */


/* Begin: footer */

footer {
  background: #000066;
  padding: 60px 0;
}

footer .img-center {
  width: 400px;
  margin-top: 6em;
}

footer h4 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 30px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

footer h4:after {
  content: '';
  width: 60px;
  height: 4px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

footer ul li a {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 5px 0;
}

footer .desc {
  color: #fff;
  /*font-size: 17px;*/
  margin: 20px 0 0;
}

.copyright {
  background: #01014f;
  text-align: center;
  padding: 30px 0;
}

.copyright p {
  margin: 0;
  color: #fff;
}

footer ul.social li a {
  position: relative;
  display: block;
  padding-left: 55px;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

footer ul.social li a .fa {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  padding-top: 10px;
  font-size: 15px;
}
.custom-link a{
  text-decoration: underline;
  color: blue !important;
}

/* END: footer */

.nobgs{
  background: transparent !important;
  border: 0 !important;
}

.nobgs ul{
  text-align: left;
}

.blogbox{
  padding-bottom: 50px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
  background: #f6f6f6;
  border: 1px solid #b8b8b8;
  margin-top: 60px;
  margin-bottom: 60px;
}
.media{
  padding: 50px;
}
.contentArea p{
  font-size: 17px;
}
.bfont{
  font-weight: 600;
}
audio:hover, audio:focus, audio:active
{
-webkit-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
-moz-box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
box-shadow: 15px 15px 20px rgba(0,0, 0, 0.4);
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
transform: scale(1.05);
}
audio {
  -webkit-transition:all 0.5s linear;
  -moz-transition:all 0.5s linear;
  -o-transition:all 0.5s linear;
  transition:all 0.5s linear;
  -moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5);
  -webkit-box-shadow:  2px 2px 4px 0px rgba(0,0,0,0.5);
  box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5);
  -moz-border-radius:7px 7px 7px 7px ;
  -webkit-border-radius:7px 7px 7px 7px ;
  border-radius:7px 7px 7px 7px ;
  cursor: pointer;
}
@media only screen and (min-device-width:520px) and (max-device-width:767px) and (orientation:portrait) {}

@media only screen and (min-device-width:120px) and (max-device-width:750px) and (orientation:landscape) {}

@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:portrait) {}

@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:landscape) {}

@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:portrait) {}

@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:landscape) {}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
  header .top-row .container {
      min-width: 1170px;
      max-width: 1700px;
      width: auto;
  }
  header .top-row h2 {
    font-size: 116px;
    line-height: 100px;
    margin-top: 30px;
  }
  header .top-row h2 span {
    font-size: 140px;
  }
}

@media only screen and (min-width: 1800px) and (max-width: 1900px) {
  header .bottom-row h4{
    font-size: 48px;
  }
  .equalCol .flexRow {
    min-height: 410px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  p{
    font-size: 20px;
  }
  header .top-row {
    padding: 4em 0;
  }
  header .top-row h2 {
    font-size: 110px;
  }
  header .top-row h2 span {
    font-size: 122px;
    line-height: 106px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 42px;
  }
  .checkoutPilot h2{
    font-size: 3.2vw;
  }
  .equalCol .flexRow {
    min-height: 434px;
  }
  .BlogRow .blogWrap .title{
    font-size: 28px;
  }
  .eyeOnSpace.small .header{
    font-size: 30px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p {
    font-size: 20px;
    margin: 0;
    line-height: 36px;
  }
}


@media only screen and (min-width: 1440px) and (max-width: 1599px) {
  p, .booksRow .flexRow p{
    font-size: 20px;
  }
  header .top-row {
    padding: 4em 0;
  }
  header .top-row h2 {
    font-size: 80px;
  }
  header .top-row h2 span {
    font-size: 88px;
    line-height: 120px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 38px;
  }
  .checkoutPilot h2{
    font-size: 3.2vw;
  }
  .equalCol .flexRow {
    min-height: 434px;
  }
  .BlogRow .blogWrap .title{
    font-size: 24px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 18px;
    margin: 0;
    line-height: 28px;
  }
  .signUpNotify .blueWrap{
    padding: 20px;
  }
  .eyeOnSpace.small .header{
    font-size: 28px;
  }
  .signUpNotify .blueWrap .hd2{
    font-size: 30px;
  }
  .mainWrap .yelloWrap .hd1,
  .eyeOnSpace .hd1 {
      font-size: 36px;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1439px) {
  p, .booksRow .flexRow p{
    font-size: 18px;
  }
  header .top-row {
    padding: 4em 0;
  }
  header .top-row .container{
    width: 100%;
    padding: 0 3em;
  }
  header .top-row h2 {
    font-size: 90px;
    line-height: 86px;
    margin-top: 22px;
  }
  header .top-row h2 span {
    font-size: 94px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 36px;
  }
  header .bottom-row h4{
    line-height: 70px;
  }
  .checkoutPilot h2{
    font-size: 3.2vw;
  }
  .equalCol .flexRow.trainingSec {
    min-height: 660px;
    padding: 30px;
  }
  .equalCol .flexRow.trainingSec .hd2 {
    line-height: 40px;
    font-size: 30px;
  }
  .equalCol .flexRow.trainingSec
  .BlogRow .blogWrap .title {
    font-size: 22px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 18px;
    margin: 0;
    line-height: 28px;
  }
  .signUpNotify .blueWrap{
    padding: 20px;
  }
  .signUpNotify .blueWrap .hd2{
    font-size: 26px;
    line-height: 55px;
  }
  .signUpNotify .blueWrap .full-width {
    width: 200px;
    margin: 2px auto 0;
  }
  .paypal {
    width: 170px;
    top: 5px;
    left: 20px;
  }
  .trainingSec.piloTraningSec .col-md-8 {
      width: 58.33333333%;
  }
  .trainingSec.piloTraningSec .col-md-4 {
    width: 41.66666666%;
  }
  .piloTraningSec.trainingSec .hd2 {
    line-height: 36px;
    font-size: 28px;
    margin: 0;
  }
  .piloTraningSec.trainingSec hr {
    margin: 15px 0;
  }
  .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
  }
  .trainingSec .content .green h4{
    font-size: 24px;
  }
  footer .col-md-5 {
      width: 30%;
  }
  footer .col-md-7 {
    width: 70%;
  }
  footer .flexation .col-md-4 {
      width: 35%;
  }
  footer .flexation  .col-md-2,
  footer .flexation  .col-md-3 {
      width: calc(65% / 3);
      margin: 0;
  }
  .eyeOnSpace .hd1, .mainWrap .yelloWrap .hd1,
  .funCarousel .fun .content h4 {
    font-size: 34px;
  }
  .BlogRow .blogWrap .title {
    font-size: 22px;
    padding: 15px 0 10px;
    margin-bottom: 15px;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  p, .booksRow .flexRow p{
    font-size: 16px;
    line-height: 22px;
  }
  header .top-row {
    padding: 3em 0;
  }
  header .top-row .container{
    width: 100%;
    padding: 0 3em;
  }
  header .top-row h2 {
    font-size: 76px;
    line-height: 86px;
    margin-top: 12px;
  }
  header .top-row h2 span {
    font-size: 82px;
    line-height: 90px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 30px;
  }
  header .bottom-row h4{
    line-height: 70px;
  }
  .checkoutPilot h2{
    font-size: 3.2vw;
  }
  .equalCol .flexRow.trainingSec {
    min-height: 560px;
    padding: 30px;
  }
  .equalCol .flexRow.trainingSec .hd2 {
    line-height: 30px;
    font-size: 24px;
  }
  .equalCol .flexRow.trainingSec
  .BlogRow .blogWrap .title {
    font-size: 22px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 15px;
    margin: 0;
    line-height: 22px;
  }
  .eyeOnSpace.small .header{
    font-size: 22px;
  }
  .signUpNotify .blueWrap{
    padding: 10px;
  }
  .signUpNotify .blueWrap .hd2{
    font-size: 24px;
    line-height: 75px;
  }
  .signUpNotify .blueWrap .full-width {
    width: 200px;
    margin: 2px auto 0;
  }
  .paypal {
    width: 130px;
    top: 5px;
    left: 20px;
  }
  .trainingSec.piloTraningSec .col-md-8 {
      width: 60%;
  }
  .trainingSec.piloTraningSec .col-md-4 {
    width: 40%;
  }
  .piloTraningSec.trainingSec .hd2 {
    line-height: 30px;
    font-size: 22px;
    margin: 0;
  }
  .piloTraningSec.trainingSec hr {
    margin: 15px 0;
  }
  .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
  }
  .trainingSec .content .green h4{
    font-size: 20px;
  }
  footer .col-md-5 {
      width: 30%;
  }
  footer .col-md-7 {
    width: 70%;
  }
  footer .flexation .col-md-4 {
      width: 35%;
  }
  footer .flexation  .col-md-2,
  footer .flexation  .col-md-3 {
      width: calc(65% / 3);
      margin: 0;
  }
  .funCarousel .fun .content h4 {
    font-size: 28px;
    margin: 0 0 10px 0;
  }
  .BlogRow .blogWrap .title {
    font-size: 20px;
    padding: 15px 0 10px;
    margin-bottom: 15px;
  }
  .blogAdmin p {
    font-size: 16px;
    margin: 0;
  }
  .blogAdmin .hd2 {
      margin: 0;
  }
  .booksRow .flexRow .hd2 {
      font-size: 24px;
      line-height: 30px;
      margin: 0 0 10px;
  }
  .booksRow .flexRow .tag {
      font-size: 18px;
  }
  .equalCol.booksRow .flexRow {
      min-height: 350px;
  }
  .trainingSec .content .green {
      width: 80%;
      margin: 0 auto;
  }
  .trainingSec .content .green h4 a {
      margin: 10px 0 0;
  }
  .funSec .fun .content {
      padding: 15px;
  }
  .funSec {
      padding: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  p, .booksRow .flexRow p{
    font-size: 16px;
    line-height: 22px;
  }
  .hd1{
    font-size: 30px;
    line-height: 30px;
  }
  .mainWrap .flexRow {
    padding: 15px 0;
    margin-bottom: 15px;
  }
  header .top-row {
    padding: 3em 0;
  }
  header .top-row .container{
    width: 100%;
    padding: 0 3em;
  }
  header .top-row h2 {
    font-size: 76px;
    line-height: 76px;
    /* margin-top: 12px; */
  }
  header .top-row h2 span {
    font-size: 82px;
    line-height: 80px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 26px;
  }
  header .bottom-row h4{
    line-height: 70px;
  }
  .checkoutPilot h2{
    font-size: 3.2vw;
    margin-bottom: 14px;
  }
  .equalCol .flexRow.trainingSec {
    min-height: 520px;
    padding: 15px;
  }
  .equalCol .flexRow.trainingSec .hd2 {
    line-height: 30px;
    font-size: 24px;
  }
  .equalCol .flexRow.trainingSec
  .BlogRow .blogWrap .title {
    font-size: 22px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 15px;
    margin: 0;
    line-height: 22px;
  }
  .eyeOnSpace.small .header{
    font-size: 22px;
  }
  .eyeOnSpace.small .header {
    font-size: 18px;
  }
  .mainWrap .eyeOnSpace .eyeOnSpace.small{
    margin-left: 15px;
    padding: 16px 15px 0 15px;
  }
  .eyeOnSpace .header{
    margin: -16px -16px 15px;
  }
  .signUpNotify .blueWrap{
    padding: 10px;
  }
  .signUpNotify .blueWrap .hd2{
    font-size: 18px;
    line-height: 75px;
  }
  .signUpNotify .blueWrap .full-width {
    width: 200px;
    margin: 2px auto 0;
  }
  .paypal {
    width: 130px;
    top: 5px;
    left: 20px;
  }
  .trainingSec.piloTraningSec .col-md-8 {
      width: 60%;
  }
  .trainingSec.piloTraningSec .col-md-4 {
    width: 40%;
  }
  .piloTraningSec.trainingSec .hd2 {
    line-height: 30px;
    font-size: 22px;
    margin: 0;
  }
  .piloTraningSec.trainingSec hr {
    margin: 15px 0;
  }
  .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
  }
  .trainingSec .content .green h4{
    font-size: 16px;
  }
  footer .col-md-5 {
      width: 30%;
  }
  footer .col-md-7 {
    width: 70%;
  }
  footer .flexation .col-md-4 {
      width: 100%;
  }
  footer .img-center {
      width: 100%;
      margin-top: 0;
  }
  footer .desc {
      margin: 0 0 40px;
  }
  footer .flexation  .col-md-2,
  footer .flexation  .col-md-3 {
      width: calc(100% / 3);
      margin: 0;
  }
  .funCarousel .fun .content h4 {
    font-size: 28px;
    margin: 0 0 10px 0;
  }
  .BlogRow .blogWrap .title {
    font-size: 15px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .blogAdmin p {
    font-size: 16px;
    margin: 0;
  }
  .blogAdmin .hd2 {
      margin: 0;
  }
  .booksRow .flexRow .hd2 {
      font-size: 24px;
      line-height: 30px;
      margin: 0 0 10px;
  }
  .booksRow .flexRow .tag {
      font-size: 18px;
  }
  .booksRow .flexRow .btnStyle1 {
      display: block;
      text-align: center;
      margin: 20px 0;
  }
  .equalCol.booksRow .flexRow {
      min-height: 350px;
  }
  .trainingSec .content .green {
      width: 80%;
      margin: 0 auto;
  }
  .trainingSec .content .green h4 a {
      margin: 10px 0 0;
  }
  .funSec .hd1 {
    margin-bottom: 12px;
    font-size: 50px;
  }
  .BlogRow.flexRow{
    padding: 15px 5px;
  }
  .BlogRow .blogWrap {
    margin: 0 -5px;
  }
  .funSec,
  .funSec .fun .content {
      padding: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainWrap .flexRow {
    padding: 15px 0;
  }
  .funSec .slick-dotted.slick-slider {
      margin-bottom: 10px;
  }
  footer {
      padding: 30px 5px;
  }
  .mainWrap {
      padding: 20px;
  }
  .hd1{
    font-size: 30px;
  }
  .hd2{
    font-size: 20px;
  }
  p, .booksRow .flexRow p{
    font-size: 16px;
    line-height: 22px;
  }
  header .top-row {
    padding: 3em 0;
  }
  header .top-row .container{
    width: 100%;
    padding: 0 3em;
  }
  header .top-row h2 {
    font-size: 60px;
    line-height: 40px;
    margin-top: 0;
  }
  header .top-row h2 span {
    font-size: 60px;
    line-height: 70px;
  }
  .main-slider .carousel-caption h4,
  header .bottom-row h4{
    font-size: 20px;
  }
  header .bottom-row h4{
    line-height: 70px;
  }
  .main-slider .carousel-caption{
    height: auto;
    padding: 10px;
  }
  .checkoutPilot h2{
    font-size: 28px;
    margin-bottom: 15px;
  }
  .checkoutPilot img {
    margin-bottom: 20px;
  }

  .mainWrap .flexRow.checkoutPilot {
    padding: 15px 5px 0;
  }
  .equalCol .flexRow.trainingSec {
    min-height: 520px;
    padding: 15px;
  }
  .equalCol .flexRow.trainingSec .hd2 {
    line-height: 30px;
    font-size: 24px;
  }
  .equalCol .flexRow.trainingSec
  .BlogRow .blogWrap .title {
    font-size: 22px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 15px;
    margin: 0;
    line-height: 22px;
  }
  .eyeOnSpace.small .header{
    font-size: 22px;
  }
  .eyeOnSpace.small .header {
    font-size: 18px;
  }
  .mainWrap .eyeOnSpace .eyeOnSpace.small{
    margin-left: 15px;
    padding: 16px 15px 0 15px;
  }
  .eyeOnSpace .header{
    margin: -16px -16px 15px;
  }
  .BlogRow .blogWrap p{
    margin-bottom: 20px;
    min-height: 80px;
  }
  .signUpNotify .blueWrap{
    padding: 10px;
  }
  .signUpNotify .blueWrap .hd2{
    font-size: 18px;
    line-height: 75px;
  }
  .signUpNotify .blueWrap .full-width {
    width: 200px;
    margin: 2px auto 0;
  }
  .paypal {
    width: 130px;
    top: 5px;
    left: 20px;
  }
  .trainingSec.piloTraningSec .col-md-8,
  .trainingSec.piloTraningSec .col-md-4 {
    width: 50%;
  }
  .piloTraningSec.trainingSec .hd2 {
    line-height: 30px;
    font-size: 22px;
    margin: 0;
  }
  .piloTraningSec.trainingSec hr {
    margin: 15px 0;
  }
  .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
  }
  .trainingSec .content .green h4{
    font-size: 16px;
  }
  footer .col-md-5 {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .col-md-5 img {
    width: 50%;
  }
  footer .flexation .col-md-4,
  footer .col-md-7 {
    width: 100%;
  }
  footer .img-center {
      width: 100%;
      margin-top: 0;
  }
  footer .desc {
      margin: 0 0 40px;
  }
  footer .flexation  .col-md-2,
  footer .flexation  .col-md-3 {
      width: calc(100% / 3);
      margin: 0;
  }
  .funCarousel .fun .content h4 {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  .BlogRow .blogWrap .title {
    font-size: 20px;
    padding: 15px 0 10px;
    margin-bottom: 15px;
  }
  .blogAdmin p {
    font-size: 16px;
    margin: 0;
  }
  .blogAdmin .hd2 {
      margin: 0;
  }
  .booksRow .flexRow .hd2 {
      font-size: 24px;
      line-height: 30px;
      margin: 0 0 10px;
  }
  .booksRow .flexRow .tag {
      font-size: 18px;
  }
  .booksRow .flexRow .btnStyle1 {
      display: block;
      text-align: center;
      margin: 20px 0;
  }
  .equalCol.booksRow .flexRow {
      min-height: 350px;
      width: calc(100% + 30px);
      padding: 20px 5px;
  }
  .trainingSec .content .green {
    width: 100%;
    margin: 0 auto;
  }
  .trainingSec .content .green h4 a {
      margin: 10px 0 0;
  }
  .funSec .fun .content {
      padding: 15px;
  }
  .funSec {
      padding: 15px;
  }
  .funSec .hd1{
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .signUpNotify .col-sm-6 {
    margin-top: 15px;
  }
  .BlogRow .blogWrap {
    margin-bottom: 30px;
  }
  .equalCol .col-md-6:nth-child(2) {
    right: 0;
  }
  .mainWrap .blogAdmin {
    padding: 15px 0;
  }

  .mainWrap .flexRow.signUpNotify {
      padding: 15px 0;
  }

  .mainWrap .flexRow.BlogRow {
      padding: 15px 5px;
  }

  .mainWrap .flexRow.BlogRow .blogWrap {
      margin: 0 -5px;
  }

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  header .top-row h2 {
    font-size: 38px;
    font-weight: 100;
    text-align: left;
    line-height: 46px;
    padding-left: 0;
    margin-top: 4px;
  }
  header .top-row h2 span {
    font-size: 46px;
    font-weight: 100;
  }
  header .top-row a:before{
    right: -5px;
  }
  .mainWrap .flexRow {
    padding: 15px 5px 0;
    margin-bottom: 10px;
  }
  .mainWrap .flexRow > div {
    padding: 0 8px 10px;
  }
  .top-row a img {
    margin: 0 auto;
  }
  header .top-row {
    padding: 20px 0 15px;
  }
  header .bottom-row .col-xs-2 {
    padding: 0 5px;
  }
  header .bottom-row h4 {
    margin: 0;
    font-size: 18px;
    line-height: 30px;
  }
  header .bottom-row .button_container{
    width: 24px;
  }
  header .bottom-row .button_container span{
    height: 3px;
  }
  header .bottom-row .search{
    font-size: 20px;
  }
  .checkoutPilot h2 {
    font-size: 20px;
    margin: 10px 0 20px;
  }
  .checkoutPilot img {
    margin-bottom: 10px;
  }
  .font-italic {
    font-style: italic;
    font-size: 13px;
    text-align: center;
  }
  .hd1 {
    font-size: 20px;
    line-height: 24px;
    margin: 20px 0;
  }
  .hd2 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
    text-align: left;
  }
  .blogAdmin .hd1 {
    margin: 0;
  }
  .signUpNotify .blueWrap .full-width {
    width: 50%;
    margin: 15px auto;
  }
  .signUpNotify .blueWrap .hd2 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 3px;
  }
  .booksRow .flexRow p, .mainWrap p {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
    line-height: 20px;
  }
  .paypal {
    position: unset;
    width: 100%;
    left: 0px;
    display: block;
  }
  .paypal img {
    margin: 10px auto;
    width: 140px;
  }
  .booksRow .flexRow .tag {
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  .booksRow .flexRow .hd2 {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px;
  }
  .btnStyle1 {
    display: block;
    text-align: center;
    font-size: 14px;
  }
  .trainingSec .content .green h4 {
    font-size: 16px;
    text-align: center;
    line-height: 20px;
  }
  .equalCol .trainingSec {
    min-height: auto;
    padding: 15px 15px 5px;
  }
  .equalCol .trainingSec h4 {
    margin: 15px 0 10px;
  }
  .trainingSec h4 {
    line-height: 30px;
    margin: 0;
  }
  .funSec .hd1 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 26px;
    text-align: center;
  }
  .funSec .hd1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 27px;
    text-align: center;
  }
  .funSec {
    padding: 10px;
  }
  footer {
    padding: 60px 0 10px;
  }
  footer .img-center {
    width: 50%;
    margin: 0 auto;
  }
  footer .desc {
    font-size: 14px;
    margin: 30px 0;
    line-height: 22px;
  }
  footer h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  footer .links {
    margin-bottom: 40px;
  }
  footer h4:after {
    width: 40px;
    height: 3px;
  }
  footer .social {
    overflow: hidden;
  }
  footer .social li {
    width: 50%;
    float: left;
  }
  footer ul.social li a{
    font-size: 18px;
  }
  footer ul.social li a .fa {
    left: 10px;
    top: 4px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .equalCol .flexRow {
    width: auto;
  }
  .equalCol .col-md-6:nth-child(2) {
    right: 0;
  }
  .mainWrap {
    padding: 10px;
  }
  .eyeOnSpace .header {
    font-size: 18px;
    text-align: center;
    margin: -15px -14px 0;
  }
  .eyeOnSpace .full-width {
    margin-bottom: 20px;
  }
  .eyeOnSpace.small .header {
    font-size: 16px;
  }
  .eyeOnSpace ul li a {
    font-size: 13px;
  }
  .mainWrap .yelloWrap p {
    font-size: 14px;
  }
  .checkoutPilot .col-xs-6 {
    padding: 0 5px;
  }
  .main-slider .carousel-caption h4 {
    font-size: 20px;
    line-height: 26px;
  }
  .mainWrap .signUpNotify {
      padding: 10px 5px;
      margin-bottom: 10px;
  }
  .signUpNotify .col-xs-4 {
    padding: 0 2px;
  }
  .signUpNotify .blueWrap {
    padding: 5px;
    min-height: 80px;
  }
  .BlogRow .blogWrap .title{
    font-size: 20px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .BlogRow .blogWrap p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .blogAdmin{
    padding: 10px 5px 0;
  }
  .blogAdmin > div {
    padding: 0 5px;
  }
  .trainingSec .hd2 {
    line-height: 24px;
    font-size: 20px;
  }
  hr {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .piloTraningSec .text-uppercase, .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
    font-size: 18px;
  }
  .trainingSec .content .green h4 a{
    margin-top: 10px;
  }
  .trainingSec.piloTraningSec {
    padding-bottom: 15px;
  }
  .funSec .fun .content {
    padding: 15px;
  }
  .funSec .fun .content p {
    font-size: 14px;
    line-height: 20px;
  }
  .funSec .slick-dots li,
  .checkoutPilotCArousel .slick-dots li {
    width: 15px;
    height: 15px;
  }
  footer ul li a{
    font-size: 14px;
  }
  .copyright {
    padding: 20px 10px;
  }
  .copyright p {
    font-size: 13px;
    line-height: 18px;
  }
  .funCarousel .slick-arrow {
    display: none;
  }
  .main-slider .carousel-caption {
    position: unset;
    height: auto;
  }
  .checkoutPilotCArousel {
    background: #f6f6f6;
    border: 1px solid #b8b8b8;
    padding: 15px;
    margin-bottom: 10px !important;
  }
  header .bottom-row{
    height: auto;
  }
  .BlogRow .blogWrap p, .eyeOnSpace ul li a, .mainWrap .yelloWrap p, .eyeOnSpace p, footer ul li a {
    font-size: 15px;
    margin: 0;
    line-height: 22px;
  }
  .eyeOnSpace.small .header{
    font-size: 22px;
  }
  .eyeOnSpace.small .header {
    font-size: 18px;
  }
  .mainWrap .eyeOnSpace .eyeOnSpace.small{
    margin-left: 15px;
    padding: 16px 15px 0 15px;
  }
  .eyeOnSpace .header{
    margin: -16px -14px 0;
  }
  .eyeOnSpace .hd1{
    margin: 5px 0 10px;
  }
  .eyeOnSpace .header+p {
    margin: 10px 0 0;
  }
  .mainWrap .yelloWrap .hd1 {
    margin: 5px 0 10px 0;
    text-align: center;
  }
  .mainWrap .flexRow .pilotReportCount{
    padding: 0;
  }
  .mainWrap .flexRow.pilotReportCount .text-center {
    padding: 0;
  }
  .mainWrap .flexRow.pilotReportCount .hd1 {
    margin: 0;
  }
  .mainWrap .flexRow.pilotReportCount .eyeOnSpace.small {
    padding: 0 15px;
    margin: 8px 0 15px 3%;
    width: 94%;
  }
  .mainWrap .flexRow.pilotReportCount .eyeOnSpace.small .header {
    margin-left: -15px;
  }
  .pilotReportImg img {
    margin-bottom: 15px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }

}
.nav-flex{
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 300px) and (max-width: 519px) {
  .mainWrap .flexRow {
    padding: 15px 5px 0;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .mainWrap .flexRow > div {
    padding: 0 8px 10px;
  }
  .top-row a img {
    margin: 0 auto;
  }
  header .top-row h2 {
    font-size: 28px;
    font-weight: 100;
    line-height: 30px;
    padding-left: 0;
    margin-top: 10px;
  }
  header .top-row h2 span {
    font-size: 32px;
    font-weight: 100;
  }
  header .top-row a:before{
    right: -5px;
  }
  header .top-row {
    padding: 15px 0;
  }
  header .bottom-row .col-xs-2 {
    padding: 0 5px;
    width: 12%;
  }
  header .bottom-row .col-xs-8 {
    width: 76%;
    padding: 0 5px;
  }
  header .bottom-row h4 {
    margin: 0;
    font-size: 13px;
    line-height: 18px;
  }
  header .bottom-row .button_container {
    width: 24px;
    height: auto;
    margin: 7px auto 0;
  }
  header .bottom-row .button_container span{
    height: 3px;
  }
  header .bottom-row .button_container span:nth-of-type(2) {
    margin: 6px 0;
  }
  header .bottom-row .search{
    font-size: 18px;
    margin: 6px 0 0;
  }
  .checkoutPilot h2 {
    font-size: 20px;
    margin: 10px 0 15px;
  }
  .checkoutPilot img {
    margin-bottom: 10px;
  }
  .font-italic {
    font-style: italic;
    font-size: 13px;
    text-align: center;
  }
  .hd1 {
    font-size: 20px;
    line-height: 24px;
    margin: 20px 0;
  }
  .hd2 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
    text-align: left;
  }
  .blogAdmin .hd1 {
    margin: 0;
  }
  .signUpNotify .blueWrap .full-width {
    width: 60%;
    margin: 15px auto;
  }
  .signUpNotify .blueWrap .hd2 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    margin-top: 8px;
  }
  .booksRow .flexRow p, .mainWrap p {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
    line-height: 20px;
  }
  .paypal {
    position: unset;
    width: 100%;
    left: 0px;
    display: block;
  }
  .paypal img {
    margin: 10px auto;
    width: 140px;
  }
  .booksRow .flexRow .tag {
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  .booksRow .flexRow .hd2 {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px;
  }
  .btnStyle1 {
    display: block;
    text-align: center;
    font-size: 14px;
  }
  .trainingSec .content .green h4 {
    font-size: 16px;
    text-align: center;
    line-height: 20px;
  }
  .equalCol .trainingSec {
    min-height: auto;
    padding: 15px 15px 5px;
  }
  .equalCol .trainingSec h4 {
    margin: 15px 0 10px;
  }
  .trainingSec h4 {
    line-height: 30px;
    margin: 0;
  }
  .funSec .hd1 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 26px;
    text-align: center;
  }
  .funSec .hd1 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 27px;
    text-align: center;
  }
  .funSec {
    padding: 10px;
  }
  footer {
    padding: 30px 0 10px;
  }
  footer .img-center {
    width: 70%;
    margin: 0 auto;
  }
  footer .desc {
    font-size: 14px;
    margin: 20px 0 20px;
    line-height: 22px;
  }
  footer h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  ul.list-unstyled.links li {
  }
  footer h4:after {
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 40px;
    height: 3px;
  }
  footer .social {
    overflow: hidden;
  }
  footer .social li {
    width: 50%;
    float: left;
  }
  footer ul.social li a{
    font-size: 18px;
  }
  footer ul.social li a .fa {
    left: 10px;
    top: 4px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .equalCol .flexRow {
    width: auto;
  }
  .equalCol .col-md-6:nth-child(2) {
    right: 0;
  }
  .mainWrap {
    padding: 10px;
  }
  .eyeOnSpace .header {
    font-size: 18px;
    text-align: center;
    margin: -15px -14px 0;
  }
  .eyeOnSpace .full-width {
    margin-bottom: 20px;
  }
  .eyeOnSpace.small .header {
    font-size: 16px;
  }
  .eyeOnSpace ul li a {
    font-size: 13px;
  }
  .mainWrap .yelloWrap p {
    font-size: 14px;
  }
  .checkoutPilot .col-xs-6 {
    padding: 0 5px;
  }
  .main-slider .carousel-caption h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .mainWrap .signUpNotify {
      padding: 10px 5px;
      margin-bottom: 10px;
  }
  .signUpNotify .col-xs-4 {
    padding: 0 2px;
  }
  .signUpNotify .blueWrap {
    padding: 5px;
    min-height: 80px;
  }
  .BlogRow .blogWrap .title{
    font-size: 20px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .BlogRow .blogWrap p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .blogAdmin{
    padding: 10px 5px 0;
  }
  .blogAdmin > div {
    padding: 0 5px;
  }
  .trainingSec .hd2 {
    line-height: 24px;
    font-size: 20px;
  }
  hr {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .piloTraningSec .text-uppercase, .piloTraningSec .text-uppercase .red {
    margin-top: 10px;
    font-size: 18px;
  }
  .trainingSec .content .green h4 a{
    margin-top: 10px;
  }
  .trainingSec.piloTraningSec {
    padding-bottom: 5px;
  }
  .funSec .fun .content {
    padding: 15px;
  }
  .funSec .fun .content p {
    font-size: 14px;
    line-height: 20px;
  }
  .funSec .slick-dots li,
  .checkoutPilotCArousel .slick-dots li {
    width: 15px;
    height: 15px;
  }
  footer ul li a{
    font-size: 14px;
  }
  .copyright {
    padding: 20px 10px;
  }
  .copyright p {
    font-size: 13px;
    line-height: 18px;
  }
  .funCarousel .slick-arrow {
    display: none;
  }
  .funSec .slick-dotted.slick-slider {
    margin-bottom: 10px;
  }
  .main-slider .carousel-caption {
    position: unset;
    padding: 10px;
    height: auto;
  }
  .checkoutPilotCArousel {
    background: #f6f6f6;
    border: 1px solid #b8b8b8;
    padding: 15px;
    margin-bottom: 10px !important;
  }
  .carousel-control .fa {
    font-size: 40px;
  }
  header .bottom-row{
    height: auto;
  }
  footer .links {
    margin-bottom: 30px;
  }
  .mainWrap .eyeOnSpace .eyeOnSpace.small{
    margin-left: 15px;
    padding: 16px 15px 0 15px;
  }
  .eyeOnSpace .header{
    margin: -16px -14px 0;
  }
  .eyeOnSpace .hd1{
    margin: 5px 0 10px;
  }
  .eyeOnSpace .header+p {
    margin: 10px 0 0;
  }
  .mainWrap .yelloWrap .hd1 {
    margin: 5px 0 10px 0;
    text-align: center;
  }
  .mainWrap .flexRow .pilotReportCount{
    padding: 0;
  }
  .mainWrap .flexRow.pilotReportCount .text-center {
    padding: 0;
  }
  .mainWrap .flexRow.pilotReportCount .hd1 {
    margin: 0;
  }
  .mainWrap .flexRow.pilotReportCount .eyeOnSpace.small {
    padding: 0 15px;
    margin: 8px 0 15px 4%;
    width: 92%;
  }
  .mainWrap .flexRow.pilotReportCount .eyeOnSpace.small .header {
    margin-left: -15px;
  }
  .pilotReportImg img {
    margin-bottom: 15px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .mainWrap .pilotReportCount {
    padding: 0;
  }
}