/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); }
  80% {
    transform: translateX(10px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px); }
  80% {
    transform: translateX(-10px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInCenter {
  0% {
    opacity: 0;
    transform: translateY(100px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden; }

body {
  box-sizing: border-box;
  background-color: #f5f5f5 !important;
  max-width: 100%;
  overflow-x: hidden; }
  @media (max-width: 600px) {
    body {
      padding: 0 !important; } }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 10px; }

.heading-primary {
  color: #ffffff;
  text-align: center;
  backface-visibility: hidden;
  margin-bottom: 60px; }
  .heading-primary--main {
    display: block;
    font-size: 6vh;
    font-weight: 400;
    letter-spacing: 10px;
    margin-bottom: 10px;
    animation-name: moveInLeft;
    animation-duration: 0.8s;
    animation-timing-function: ease-in; }
  .heading-primary--sub {
    display: block;
    font-size: 2.9vh;
    font-weight: 400;
    letter-spacing: 15px;
    animation-name: moveInRight;
    animation-duration: 0.8s;
    animation-timing-function: ease-in; }

.home-section-heading {
  position: relative;
  letter-spacing: 10px;
  font-size: 35px;
  font-weight: 700;
  background-image: linear-gradient(to right, #434343, #000000);
  display: inline-block;
  -webkit-background-clip: text;
  color: transparent; }
  .home-section-heading::after {
    content: "";
    width: 70%;
    position: absolute;
    margin: 0 auto;
    height: 3px;
    background: #e38c46;
    left: 0;
    right: 0;
    bottom: -10px; }

.about-details p {
  font-size: 2vh; }

.academy-snba__info {
  font-size: 17px; }

@media (max-width: 600px) {
  .academy-snba p {
    font-size: 16px !important; } }

.guru-snba__info {
  font-size: 17px; }

@media (max-width: 600px) {
  .guru-snba p {
    font-size: 16px !important; } }

.kalashri-snba__info {
  font-size: 17px; }
  .kalashri-snba__info--list {
    text-align: justify; }
    .kalashri-snba__info--list ol {
      padding: 0 20px; }

@media (max-width: 600px) {
  .kalashri-snba p {
    font-size: 16px !important; } }

.production-snba__info {
  font-size: 17px; }

@media (max-width: 600px) {
  .production-snba p {
    font-size: 16px !important; } }

.u-center-text {
  text-align: center; }

.btn--animated {
  animation-name: moveInCenter;
  animation-duration: 0.8s;
  animation-timing-function: ease-out; }

.btn.visted, .btn:link {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative; }

.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); }
  .btn:hover::after {
    transform: scale(1.2);
    opacity: 0; }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }

.btn--white {
  background-color: #bfbfbf !important;
  color: #ffffff !important; }
  .btn--white::after {
    background-color: #bfbfbf; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn-text:link, .btn-text:visited {
  color: #434343;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #434343;
  padding: 3px;
  font-size: 20px;
  font-weight: 600;
  transition: all .2s; }

.btn-text:hover {
  background-color: #434343;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px); }

.btn-text:active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(0); }

.btn-text1:link, .btn-text1:visited {
  color: #b2967d;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #b2967d;
  padding: 3px;
  font-size: 20px;
  font-weight: 600;
  transition: all .2s; }

.btn-text1:hover {
  background-color: #495057;
  color: #898980;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px); }

.btn-text1:active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(0); }

.collage {
  position: relative;
  padding: 150px 0; }
  .collage__pic {
    width: 55%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    position: absolute;
    z-index: 10;
    outline-offset: 20px;
    transition: all 0.2s; }
    .collage__pic--p1 {
      left: 0;
      top: -20px; }
    .collage__pic--p2 {
      right: 0;
      top: 20px; }
    .collage__pic--p3 {
      left: 20%;
      top: 100px; }
    .collage__pic:hover {
      outline: 6px solid #434343;
      transform: scale(1.25) translateX(20px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
      z-index: 20; }
    @media (max-width: 600px) {
      .collage__pic--p2:hover {
        transform: scale(1.05) translateX(-20px) !important; }
      .collage__pic:hover {
        outline: 6px solid #434343;
        transform: scale(1.05) translateX(20px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        z-index: 20; } }
  .collage:hover .collage__pic:not(:hover) {
    transform: scale(0.95); }
  @media (max-width: 600px) {
    .collage {
      padding: 0; } }

.feature-card {
  background-color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: all .3s;
  width: 100%;
  display: inline-block; }
  .feature-card__image {
    height: 140px; }
  .feature-card:hover {
    transform: translateY(-15px) scale(1.03); }

.feature-box {
  padding: 0 60px !important; }

@media (min-width: 768px) and (max-width: 1050px) {
  .feature-box {
    padding-bottom: 50px !important; } }

@media (max-width: 600px) {
  .feature-card {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px; }
  .feature-box {
    padding: 0 20px !important; } }

.header {
  height: 96vh;
  background-size: cover;
  background-position: top;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%); }
  .header__logo-box {
    position: absolute;
    top: 20px;
    left: 20px; }
  .header__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
  .header__logo {
    height: 8vh; }

.navigation__background {
  height: 6vh;
  width: 6vh;
  border-radius: 50%;
  position: fixed;
  top: 3.5vh;
  right: 6.5vh;
  background-image: radial-gradient(#000000, #434343);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #ffffff;
  height: 7vh;
  width: 7vh;
  position: fixed;
  top: 3vh;
  right: 5.5vh;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  cursor: pointer; }

@media (max-width: 600px) {
  .navigation__button {
    top: 20px;
    right: 20px; }
  .navigation__background {
    top: 23px;
    right: 23px; } }

@media (min-width: 768px) and (max-width: 1050px) {
  .navigation__button {
    top: 20px;
    right: 30px; }
  .navigation__background {
    top: 23px;
    right: 33px; } }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  list-style: none;
  width: 100; }

.navigation__item {
  margin: 10px; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 0px;
  font-weight: 300;
  padding: 0;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
  background-size: 250%;
  transition: all .4s; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #000000;
  transform: translateX(10px);
  border-radius: 5px; }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__checkbox:checked ~ .navigation__nav > .navigation__list > .navigation__item > .navigation__link {
  font-size: 3vh;
  padding: 10px 20px; }

.navigation__icon {
  position: relative;
  margin-top: 3.5vh; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3vh;
    height: 2px;
    background-color: #000000;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    transition: all .2s; }
  .navigation__icon::before {
    top: -8px;
    left: 0px; }
  .navigation__icon::after {
    top: 8px;
    left: 0px; }

.navigation__button:hover .navigation__icon::before {
  top: -10px; }

.navigation__button:hover .navigation__icon::after {
  top: 10px; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.page-footer {
  background-color: #dce0d9; }
  .page-footer__main {
    padding: 40px 0; }
  .page-footer__signature {
    font-weight: 700;
    transition: all .2s;
    padding: 0 5px;
    color: #03045e; }
    .page-footer__signature:hover {
      background-color: #ff9f1c;
      color: #000000;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
      text-decoration: none; }
  .page-footer__icons {
    color: #ac92a6; }
    .page-footer__icons:hover {
      color: #000000; }
  .page-footer__details {
    border-right: 1px solid #ffffff; }
    @media (max-width: 600px) {
      .page-footer__details {
        border-right: 0px;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 40px; } }

.section-features {
  margin-top: 150px;
  padding: 200px 0;
  background-image: linear-gradient(to right bottom, rgba(67, 67, 67, 0.8), rgba(0, 0, 0, 0.8)), url("images/feature-box.JPG");
  background-size: cover;
  transform: skewY(-6.3deg); }
  .section-features > * {
    transform: skewY(6.3deg); }

@media (max-width: 600px) {
  .section-features {
    margin-top: 100px;
    padding: 100px 15px;
    transform: skewY(-23.3deg);
    margin-bottom: 100px !important; }
    .section-features > * {
      transform: skewY(23.3deg); } }

@media (min-width: 768px) and (max-width: 1050px) {
  .section-features {
    transform: skewY(-16.3deg);
    margin-bottom: 100px !important; }
    .section-features > * {
      transform: skewY(16.3deg); } }

.academy-snba {
  padding: 50px 0 100px;
  background-color: #f5f5f5; }
  .academy-snba__images {
    text-align: center; }
    .academy-snba__images img {
      height: 300px;
      width: 85%;
      margin-bottom: 30px;
      transition: all 0.2s;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
      .academy-snba__images img:hover {
        transform: scale(1.1); }
    @media (max-width: 600px) {
      .academy-snba__images img {
        width: 100% !important;
        height: auto; } }
    @media (min-width: 768px) and (max-width: 1050px) {
      .academy-snba__images img {
        width: 70%; } }

.guru-snba {
  padding: 50px 0 100px;
  background-color: #ffffff; }
  .guru-snba__images {
    text-align: center; }
    .guru-snba__images img {
      margin-top: 10px;
      width: 80%;
      transition: all 0.2s;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
      .guru-snba__images img:hover {
        transform: scale(1.05); }
    @media (max-width: 600px) {
      .guru-snba__images img {
        height: auto;
        width: 100% !important;
        margin-bottom: 40px;
        margin-top: 0 !important; } }
  @media (min-width: 768px) and (max-width: 1050px) {
    .guru-snba__images {
      margin-bottom: 50px; }
      .guru-snba__images img {
        width: 70%; } }

.kalashri-snba {
  padding: 50px 0 150px;
  background-color: #f5f5f5; }
  .kalashri-snba__images {
    text-align: center; }
    .kalashri-snba__images img {
      margin-top: 50px;
      height: 489px;
      width: 70%;
      transition: all 0.2s;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
      .kalashri-snba__images img:hover {
        transform: scale(1.05); }
    @media (max-width: 600px) {
      .kalashri-snba__images img {
        margin-top: 30px;
        width: 100% !important;
        height: auto !important; } }
    @media (min-width: 768px) and (max-width: 1050px) {
      .kalashri-snba__images img {
        width: 100%;
        height: 350px; } }

.production-snba {
  padding: 50px 0;
  background-color: #ffffff; }
  .production-snba__modal {
    text-align: center;
    margin-top: 30px; }
    .production-snba__modal button {
      color: #ffffff;
      width: 65% !important; }
      .production-snba__modal button:hover {
        color: #ffffff; }
  .production-snba__holder {
    margin: 70px 0 40px 0; }
  @media (max-width: 600px) {
    .production-snba__holder {
      margin: 0; } }
  .production-snba__images {
    text-align: center; }
    .production-snba__images img {
      height: 300px;
      width: 95%;
      transition: all 0.2s;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
      .production-snba__images img:hover {
        transform: scale(1.05); }
    @media (max-width: 600px) {
      .production-snba__images img {
        height: auto !important;
        margin-top: 30px;
        width: 100% !important; } }

@media (min-width: 768px) and (max-width: 1050px) {
  .sub-holder {
    margin-bottom: 30px !important; } }

.modal-title {
  color: orangered; }

.activities {
  padding: 100px 0 50px; }
  .activities__folder {
    text-align: center; }
    .activities__folder--items {
      padding: 35px 0 30px;
      border-right: 1px solid #dee2e6; }
      .activities__folder--items:hover {
        background-color: #434343;
        color: #ffffff !important; }
      .activities__folder--items:last-of-type {
        border-right: 0; }
      .activities__folder--items__info h5 {
        margin: 10px 0 20px;
        letter-spacing: 1px;
        color: #0096d7; }
      .activities__folder--items__info p {
        font-size: 15px; }
      .activities__folder--items__icon {
        color: #0096d7 !important; }
    @media (max-width: 600px) {
      .activities__folder--items {
        border-bottom: 1px solid #dee2e6;
        border-right: 0; } }

.detailed-act {
  padding: 75px 0;
  text-align: center; }
  .detailed-act__heading {
    margin-bottom: 50px; }
    .detailed-act__heading h4 {
      font-size: 35px;
      letter-spacing: 5px; }
  .detailed-act__folder--images img {
    width: 95%; }
  @media (max-width: 600px) {
    .detailed-act__folder--images img {
      width: 100%;
      margin-bottom: 30px; } }
  @media (min-width: 768px) and (max-width: 1050px) {
    .detailed-act__folder--images img {
      margin-bottom: 30px; } }
  .detailed-act__folder--info {
    text-align: justify; }
    .detailed-act__folder--info p {
      font-size: 17px; }

.achievers {
  padding: 50px 0; }
  .achievers__folder {
    text-align: center; }
    .achievers__folder--images {
      display: inline; }
      .achievers__folder--images img {
        width: 90%;
        height: 525px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        border-radius: 3px; }
      @media (max-width: 600px) {
        .achievers__folder--images img {
          width: 97% !important;
          height: auto !important; } }
    .achievers__folder--info h5 {
      font-size: 1.25rem;
      display: inline-block;
      border: 1px solid #e38c46;
      margin: 20px 0;
      padding: 10px 15px; }
    .achievers__folder--grid {
      padding: 50px 10px 20px; }
    @media (max-width: 600px) {
      .achievers__folder--grid {
        padding: 0 !important; } }

.gp__folder {
  text-align: center;
  padding-top: 40px; }
  .gp__folder--images img {
    width: 75%;
    height: 550px; }
  @media (max-width: 600px) {
    .gp__folder--images img {
      width: 97% !important;
      height: auto !important; } }
  @media (min-width: 768px) and (max-width: 1050px) {
    .gp__folder--images img {
      height: 650px; } }
  .gp__folder--info h5 {
    font-size: 1rem;
    display: inline-block;
    border: 1px solid #e38c46;
    margin: 20px 0;
    padding: 10px 15px; }
  .gp__folder--grid {
    text-align: center;
    padding: 0 50px; }
  @media (max-width: 600px) {
    .gp__folder--grid {
      padding: 0 !important; } }

.individual {
  padding: 50px 0 150px; }
  .individual__information--tiles {
    text-align: center; }
    .individual__information--tiles__link {
      display: inline-block;
      margin: 10px;
      text-align: center;
      opacity: 0.99;
      overflow: hidden;
      position: relative;
      border-radius: 3px; }
      .individual__information--tiles__link:before {
        content: '';
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
        width: 100%;
        height: 50%;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 2;
        transition-property: top, opacity;
        transition-duration: 0.3s; }
      .individual__information--tiles__link img {
        width: 100%;
        height: 550px;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; }
      .individual__information--tiles__link--details {
        font-size: 16px;
        padding: 20px;
        color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3; }
        .individual__information--tiles__link--details span {
          display: inline-block;
          opacity: 0;
          position: relative;
          top: 100px;
          transition-property: top, opacity;
          transition-delay: 0s;
          transition-duration: 0.3s; }
        .individual__information--tiles__link--details__heading {
          line-height: 1;
          font-weight: 600;
          font-size: 30px;
          margin-bottom: 10px; }
          .individual__information--tiles__link--details__heading:focus, .individual__information--tiles__link--details__heading:hover {
            transition-delay: 0.15s; }
        .individual__information--tiles__link--details__info {
          text-align: left;
          padding: 0 10px;
          line-height: 1.2;
          margin-top: 5px;
          font-size: 14px;
          letter-spacing: .5px; }
          .individual__information--tiles__link--details__info:focus, .individual__information--tiles__link--details__info:hover {
            transition-delay: 0.25s; }
      .individual__information--tiles__link:focus:before,
      .individual__information--tiles__link:focus span, .individual__information--tiles__link:hover:before,
      .individual__information--tiles__link:hover span {
        opacity: 1; }
      .individual__information--tiles__link:focus:before, .individual__information--tiles__link:hover:before {
        top: 50%; }
      .individual__information--tiles__link:focus span, .individual__information--tiles__link:hover span {
        top: 0; }
      .individual__information--tiles__link:focus .title, .individual__information--tiles__link:hover .title {
        transition-delay: 0.15s; }
      .individual__information--tiles__link:focus .info, .individual__information--tiles__link:hover .info {
        transition-delay: 0.25s; }

.media1 {
  padding: 50px 0; }

.testimonial {
  padding: 50px 0 150px 0;
  margin-bottom: 100px;
  background-color: #e3f1ff; }
  .testimonial__info {
    margin: 10px 0;
    font-size: 20px; }
  .testimonial__btn {
    background-color: #373d4b !important;
    color: #fff !important; }

.testimonial_subtitle {
  color: #0aaa7a;
  font-size: 12px; }

.seprator {
  height: 2px;
  width: 56px;
  background-color: #0aaa7a;
  margin: 7px 0 20px 0; }

.gallery {
  margin-bottom: 150px; }
  .gallery__link {
    position: relative;
    margin: auto;
    overflow: hidden;
    background: #000000 !important; }
  .gallery__conatiner {
    padding: 5px; }
  .gallery__image {
    max-width: 100%;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .3s ease; }
    .gallery__image:hover, .gallery__image:focus {
      transform: scale(1.2);
      opacity: 0.4; }

.credentials {
  padding: 50px 0 100px; }
  .credentials__holder--address {
    margin-bottom: 50px; }
  .credentials__holder--social {
    text-align: center; }
  @media (max-width: 600px) {
    .credentials__holder1 {
      margin-bottom: 50px; } }
  @media (min-width: 768px) and (max-width: 1050px) {
    .credentials__holder1 {
      margin-bottom: 50px; }
    .credentials .uk-card-default {
      width: 75%; } }
