/* Variables */
/* Mixins */
/*Global */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,700);
.text {
  position: absolute;
  z-index: 1;
  background: #02020b;
  bottom: 0px;
  width: 100%;
  height: 30%;
  background: -webkit-linear-gradient(rgba(2, 2, 11, 0) 10%, #02020b 90%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px;
  color: #f7f7f7; }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

h1, h2, h3, h4 {
  font-family: bebas;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  color: #f7f7f7; }

a {
  text-decoration: none; }

ul {
  list-style: none; }

p {
  font-family: raleway;
  line-height: 22px;
  font-size: 13px;
  margin-bottom: 20px;
  color: #f7f7f7; }

section {
  background: #02020b;
  padding: 80px 0px;
  background-attachment: fixed !important;
}

.right {
  float: right; }

.left {
  float: left; }

.red {
  color: #ea2727; }

.bold {
  font-weight: bold; }

.clear {
  clear: both; }

.row {
  overflow: hidden; }

.sectionTitle {
  font-size: 30px; }

.sectionTitle:after {
  content: "";
  display: block;
  background: #1e1f23;
  height: 2px;
  width: 100%;
  margin-top: 2px; }

.btn {
  display: inline-block;
  color: #f7f7f7;
  width: 164px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-family: bebas;
  font-size: 18px;
  margin-bottom: 20px;
  margin-right: 15px;
  padding: 0px;
  position: relative;
  border: 2px solid #ea2727; }
  .btn:before {
    content: "";
    display: block;
    width: 0px;
    height: 50px;
    background: #f7f7f7;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .btn:hover:before {
    width: 164px; }
  .btn span {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .btn:hover span {
    color: #ea2727; }

.btn-main {
  background: #ea2727; }

/* Fonts */
@font-face {
  font-family: bebas;
  src: url(../fonts/Bebas.TTF); }
@font-face {
  font-family: coolvetica;
  src: url(../fonts/coolvetica.TTF); }
/* --------------------------------------------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 11, 0.94);
  text-align: center;
  z-index: 999999; }
  .loading .loader {
    position: relative;
    width: 60px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%); }
  .loading .loader > div:nth-child(1) {
    border: 5px solid rgba(178, 34, 34, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-radius: 50%;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 15px #b22222;
    animation: outer 1s infinite linear; }
  .loading .loader > div:nth-child(2) {
    border: 5px solid rgba(178, 34, 34, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-radius: 50%;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 15px #b22222;
    animation: inner 1s infinite linear;
    position: relative;
    top: -80px;
    left: 20px; }

/* Header style goes here :D */
header {
  height: auto;
  background: #02020b;
  /* logo */
  /* Navigation */ }
  header .logo {
    float: left; }
    header .logo h1 {
      color: #f7f7f7;
      margin: 0;
      line-height: 80px; }
  header nav {
    float: right;
    line-height: 77px; }
    header nav li {
      display: inline-block;
      margin-left: 30px; }
      header nav li a {
        font-family: bebas;
        font-size: 18px;
        color: #f7f7f7;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        header nav li a:before {
          content: "[";
          margin-right: -5px;
          opacity: 0;
          color: #ea2727;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        header nav li a:after {
          content: "]";
          margin-left: -5px;
          opacity: 0;
          color: #ea2727;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        header nav li a:hover {
          color: #ea2727; }
          header nav li a:hover:after {
            margin-left: 10px;
            opacity: 1; }
          header nav li a:hover:before {
            margin-right: 10px;
            opacity: 1; }
      header nav li .active {
        color: #ea2727; }
        header nav li .active:after {
          opacity: 1;
          margin-left: 10px; }
        header nav li .active:before {
          opacity: 1;
          margin-right: 10px; }
  header .navToggleBtn {
    display: none; }

/* --------------------------------------------------------------------------------------- */
/* Hero Image goes here */
.HeroImg {
  background: url(../images/slide2.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  padding: 0; }
  .HeroImg .heroImgContainer {
    color: #fff;
    margin-top: auto;
    text-align: center; }
    .HeroImg .heroImgContainer p {
      max-width: 700px; }

.JoinUs p {
  margin: 0px;
  max-width: 550px; }

/* --------------------------------------------------------------------------------------- */
/* Our Classes */
.OurClasses {
  background: url(../images/ourClasses.jpg);
  background-size: cover; }
  .OurClasses h3 {
    margin-top: 15px;
    cursor: pointer; }
  .OurClasses .classImageContainer {
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .OurClasses .classImageContainer img {
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .OurClasses .classImageContainer:hover img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
    .OurClasses .classImageContainer .onHover {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      text-align: center;
      line-height: 220px;
      display: none; }
      .OurClasses .classImageContainer .onHover i {
        font-size: 30px;
        color: #f7f7f7; }

/* --------------------------------------------------------------------------------------- */
/*GetToKnowUs */
.getToKnowUs {
  background: url(../images/getToKnowUs.jpg);
  background-size: cover;
  padding-bottom: 0px; }
  .getToKnowUs img {
    width: 50%; }
  .getToKnowUs .getToKnowUsContainer {
    width: 50%;
    text-align: right; }

/* --------------------------------------------------------------------------------------- */
/*Features */
.features {
  background: url(../images/features.jpg);
  background-size: cover; }
  .features .columns {
    padding: 0; }
  .features h3 {
    font-size: 30px;
    color: #ea2727; }
  .features span {
    color: #f7f7f7;
    font-size: 20px;
    font-family: raleway; }
  .features .flaticon + div {
    margin-left: 10px; }
  .features .flaticon::before {
    float: left;
    color: #f7f7f7;
    font-size: 60px; }

/* --------------------------------------------------------------------------------------- */
/* Schedule styles goes here */
.schedule {
  background: url(../images/schedule.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0;
  padding-right: 0; }
  .schedule .event {
    padding: 0;
    margin: 0;
    width: 16.66667%;
    height: 400px;
    float: left;
    position: relative;
    cursor: pointer; }
    .schedule .event:hover .text {
      height: 40%;
      background: rgba(2, 2, 11, 0.8); }
    .schedule .event:hover .text h3 {
      color: #ea2727; }
    .schedule .event:hover .time {
      background: #ea2727;
      color: #f7f7f7; }
    .schedule .event .text h3 {
      margin: 0px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .schedule .event .text span {
      font-family: raleway; }
    .schedule .event .time {
      background: #ccc;
      padding: 10px;
      display: inline-block;
      font-family: bebas;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .schedule .event img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 300px;
      height: 100%;
      z-index: 0; }
  .schedule .event1, .schedule .event2, .schedule .event3, .schedule .event4, .schedule .event5, .schedule .event6 {
    background: url(../images/event1.jpg);
    background-position: center;
    background-size: cover; }
  .schedule .event2 {
    background-image: url(../images/event2.jpg); }
  .schedule .event3 {
    background-image: url(../images/event3.jpg); }
  .schedule .event4 {
    background-image: url(../images/event4.jpg); }
  .schedule .event5 {
    background-image: url(../images/event5.jpg); }
  .schedule .event6 {
    background-image: url(../images/event6.jpg); }

/* --------------------------------------------------------------------------------------- */
/* Blog Styles */
.blog {
  background: url(../images/blog.jpg);
  background-size: cover;
  background-position: center; }
  .blog h1.sectionTitle {
    text-align: right;
    width: 100px; }
  .blog .post {
    position: relative;
    height: 360px;
    padding: 0;
    cursor: pointer;
    overflow: hidden; }
    .blog .post:hover .text {
      height: 50%;
      background: rgba(2, 2, 11, 0.8); }
    .blog .post:hover img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
    .blog .post img {
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .blog .post .text {
      height: 40%; }
      .blog .post .text h3 {
        margin-bottom: 5px; }

/* --------------------------------------------------------------------------------------- */
/*Contact Styles */
.contact {
  text-align: center;
  background: url(../images/contact.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 15px; }
  .contact .phone {
    font-family: coolvetica;
    font-size: 60px;
    margin-top: 30px; }
  .contact span {
    color: #f7f7f7;
    display: inline-block;
    margin-top: 100px;
    font-family: raleway; }
    .contact span a {
      color: #ea2727; }

/* --------------------------------------------------------------------------------------- */
/* -------------------------------- VIEW PORTS ---------------------------------- */
/* 860 PX viewPort */
@media(max-width : 900px) {
  header nav {
    display: none;
    line-height: 50px;
    margin-top: 15px; }
    header nav ul {
      display: block;
      text-align: right; }
      header nav ul li {
        display: block; }
  header .navToggleBtn {
    display: block; }

  .sectionTitle {
    text-align: center; }

  .getToKnowUs img {
    width: 100%; }
  .getToKnowUs .getToKnowUsContainer {
    width: 100%; }

  .schedule .event {
    width: 33.33333%; } }
@media(max-width : 640px) {
  .small-12 {
    text-align: center; }

  .features .left {
    float: none; }
  .features .right {
    float: none; }

  .schedule .event {
    width: 50%; } }
@media(max-width : 1170px) {
  header, section, .HeroImg {
    padding-left: 25px;
    padding-right: 25px; }

  .schedule h3.sectionTitle {
    padding-left: 25px;
    padding-right: 25px; }

  .sectionTitle {
    text-align: center; } }
@media(max-width: 1023px) {
  .blog h1.sectionTitle {
    text-align: center;
    width: auto; }
  .blog .right {
    float: none; } }

/*# sourceMappingURL=style.css.map */
