@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;1,200&family=Quicksand:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=The+Nautigal:wght@700&display=swap");
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  width: 100%;
  text-align: center;
}

.v-center {
  position: relative;
}

.v-center .v-center-mid {
  position: absolute;
  top: 40%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.h-line {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: red;
}

.jstfy {
  text-align: justify;
  text-justify: inter-word;
  font-size: .9rem;
  padding: .5rem;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.long2 {
  grid-column: span 2;
}

.long4 {
  grid-column: span 4;
}

.row-100 {
  -ms-grid-rows: 10rem;
      grid-template-rows: 10rem;
}

.row-200 {
  -ms-grid-rows: 20rem;
      grid-template-rows: 20rem;
}

.row-250 {
  -ms-grid-rows: 25rem;
      grid-template-rows: 25rem;
}

.row-300 {
  -ms-grid-rows: 30rem;
      grid-template-rows: 30rem;
}

.list {
  width: 100%;
  list-style: none;
}

.card {
  width: 100%;
  height: 100%;
}

.card .img-holder {
  position: relative;
}

.card .img-holder img {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

.card .img-holder:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  cursor: pointer;
}

.card .text-area {
  position: relative;
}

.card .large {
  padding: auto;
  font-size: 2rem;
}

.card .mid {
  padding: auto;
  font-size: 1.4rem;
}

.card .jstfy {
  text-align: justify;
  text-justify: inter-word;
  font-size: .9rem;
  padding: .5rem;
}

.img-holder {
  position: relative;
}

.img-holder img {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

body {
  background-color: whitesmoke;
  background-size: cover;
  background-position: center;
  font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

.hero {
  width: 100%;
  height: auto;
  position: absolute;
}

.hero .top {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
}

.hero .top .img-holder {
  width: 100%;
  overflow: hidden;
}

.hero .top .img-holder img {
  width: 100%;
  display: block;
}

.hero .top .img-holder:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.hero .top .img-holder p {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 3.5rem;
  color: whitesmoke;
  z-index: 1;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(26, 25, 25, 0.867);
  font-family: 'The Nautigal', cursive;
  -webkit-text-decoration: underline palegreen;
          text-decoration: underline palegreen;
  padding-bottom: .2rem;
}

.hero #logo {
  position: absolute;
  top: 2%;
  left: 2%;
  width: 15rem;
  -webkit-box-shadow: 0.1rem 0.1rem 0.5rem rgba(10, 10, 10, 0.867);
          box-shadow: 0.1rem 0.1rem 0.5rem rgba(10, 10, 10, 0.867);
}

.hero .row {
  position: relative;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.hero .row h2 {
  font-size: 2rem;
  background: -webkit-linear-gradient(left, #FF0074, #071900, yellowgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .row h2 .title {
  font-size: 6rem;
  font-family: 'The Nautigal', cursive;
  padding-right: .4rem;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  background: -webkit-linear-gradient(left, yellowgreen, gold, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .row h2::after {
  content: '';
  width: 55%;
  height: .2rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF0074), color-stop(#AAC3B1), to(yellowgreen));
  background-image: linear-gradient(to right, #FF0074, #AAC3B1, yellowgreen);
  position: absolute;
  left: 25%;
  top: 6.5rem;
}

.hero .row img {
  width: 40%;
  -webkit-box-shadow: .1rem .5rem 1rem  #080808;
          box-shadow: .1rem .5rem 1rem  #080808;
}

.hero .row p {
  width: 90%;
  font-size: large;
  margin: 1rem auto;
}

.hero .row .jstfy {
  text-align: justify;
}

.hero .row #red {
  width: 100%;
  font-size: 2rem;
  color: #AAC3B1;
  text-shadow: .1rem .1rem .2rem #080808;
}

.hero .row #red::first-letter {
  font-family: 'The Nautigal', cursive;
  font-size: 5rem;
  color: #FF0074;
}

.hero .row .vision, .hero .row .mission {
  width: 95%;
  padding: 1rem;
  background-color: rgba(26, 25, 25, 0.867);
}

.hero .row .vision h3, .hero .row .mission h3 {
  font-size: 2rem;
  color: gold;
}

.hero .row .vision h3::first-letter, .hero .row .mission h3::first-letter {
  font-size: 5rem;
  font-family: 'The Nautigal', cursive;
  padding-right: .4rem;
  color: #FF0074;
}

.hero .row .vision p, .hero .row .mission p {
  font-size: x-large;
  color: #FFD373;
}

.hero .ldmem {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 1rem auto;
}

.hero .ldmem .ldmemBtn {
  font-size: x-large;
  text-decoration: none;
  color: whitesmoke;
  background-color: #49596B;
  padding: 1rem 1.2rem;
  -webkit-box-shadow: .4rem .1rem .4rem #3c3f3f;
          box-shadow: .4rem .1rem .4rem #3c3f3f;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

.hero .ldmem .ldmemBtn:hover {
  -webkit-box-shadow: .4rem .1rem .4rem #FF5B4F;
          box-shadow: .4rem .1rem .4rem #FF5B4F;
  opacity: 0.85;
}

.hero .footer {
  width: 98%;
  margin: auto;
  text-align: center;
  background-color: rgba(26, 25, 25, 0.867);
  padding: 1rem;
  color: #AAC3B1;
}

.full {
  grid-column: span 12;
  width: 100%;
  text-align: center;
  margin: 1rem auto;
}

.half {
  grid-column: span 6;
  width: 100%;
  text-align: center;
  margin: 1rem auto;
}

.mar-all {
  margin: 1rem;
}

.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.hero2 {
  width: 99%;
  height: auto;
  margin: 1rem;
  text-align: center;
}

.hero2 .centerImg {
  width: 100%;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  place-items: center;
  background-color: rgba(26, 25, 25, 0.867);
}

.hero2 .centerImg #logo {
  position: absolute;
  width: 15rem;
  -webkit-box-shadow: 0.1rem 0.1rem 0.5rem rgba(10, 10, 10, 0.867);
          box-shadow: 0.1rem 0.1rem 0.5rem rgba(10, 10, 10, 0.867);
}

.hero2 .maintitle {
  width: 100%;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: normal;
}

.hero2 .card {
  position: relative;
  width: 80%;
  height: auto;
  margin: 2rem auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(5, 102, 155, 0.9)), to(rgba(0, 26, 40, 0.8)));
  background-image: linear-gradient(to right, rgba(5, 102, 155, 0.9), rgba(0, 26, 40, 0.8));
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}

.hero2 .card .img-hold {
  position: relative;
  width: 80%;
  height: 95%;
  overflow: hidden;
}

.hero2 .card .img-hold img {
  position: relative;
  width: 90%;
  height: 80%;
  top: 5rem;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  display: block;
  -webkit-filter: drop-shadow(1rem 0.1rem 2rem rgba(19, 18, 18, 0.6));
          filter: drop-shadow(1rem 0.1rem 2rem rgba(19, 18, 18, 0.6));
}

.hero2 .card .img-hold .big {
  position: relative;
  width: 90%;
  height: 90%;
  top: 5rem;
  display: block;
  -webkit-box-shadow: .4rem .4rem  5rem #AAC3B1;
          box-shadow: .4rem .4rem  5rem #AAC3B1;
  padding: .5rem;
  margin: .5rem;
}

.hero2 .card .text-area {
  width: 90%;
  height: 100% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem auto;
}

.hero2 .card .text-area h2 {
  color: whitesmoke;
  font-weight: 400;
  margin: .5rem auto;
  text-align: left;
}

.hero2 .card .text-area h2::after {
  content: '';
  position: absolute;
  width: 30rem;
  height: .2rem;
  background-color: #FF0074;
  top: 3rem;
  left: 0;
}

.hero2 .card .text-area .degi {
  font-size: large;
  color: goldenrod;
  text-align: left;
}

.hero2 .card .text-area .small-text {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}

.hero2 .card .text-area .small-text .small-para {
  color: aliceblue;
  text-align: justify;
}

.hero2 .card .text-area .small-text .small-para1 {
  position: absolute;
  width: 80%;
  height: auto;
  background-color: #FFD373;
  color: #071900;
  text-align: justify;
  line-height: 1.8rem;
  padding: 1rem;
}

.hero2 .card .text-area .small-text .cool {
  color: #071900;
}

.hero2 .card .text-area .small-text .blue {
  color: #00E1ED;
}

.hero2 .card .text-area .small-text p {
  color: aliceblue;
}

.hero2 .card .text-area .small-text .boldText {
  font-weight: bold;
  color: blueviolet;
}

.hero2 .card .btn-area {
  width: 100%;
  height: auto;
  text-align: left;
}

.hero2 .card .btn-area a {
  text-decoration: none;
  color: #FFD373;
  background-color: rgba(5, 102, 155, 0.9);
  padding: .5rem 1rem;
}

.hero2 .card .btn-area a:hover {
  background-color: #071900;
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: medium;
  }
  .hero .top {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero .top .img-holder {
    width: 100vw;
  }
  .hero .top .img-holder img {
    width: 100%;
  }
  .hero .top .img-holder p {
    font-size: 2rem;
  }
  .hero #logo {
    top: 2rem;
    left: 2rem;
    width: 5rem;
  }
  .hero .row {
    display: block;
  }
  .hero .row h2 {
    font-size: 1.2rem;
    text-align: center;
  }
  .hero .row h2 .title {
    font-size: 3rem;
  }
  .hero .row img {
    width: 100%;
  }
  .hero .row p {
    font-size: medium;
  }
  .hero .row #red {
    font-size: 1.2rem;
  }
  .hero .row #red::first-letter {
    font-size: 3rem;
  }
  .hero .row .vision, .hero .row .mission {
    width: 92%;
  }
  .hero .row .vision h3, .hero .row .mission h3 {
    width: 90%;
    margin: auto;
    font-size: medium;
  }
  .hero .row .vision h3::first-letter, .hero .row .mission h3::first-letter {
    font-size: larger0.2rem;
  }
  .hero .row .vision p, .hero .row .mission p {
    font-size: small;
    text-align: justify;
  }
  .hero .ldmem {
    background-color: #00E1ED;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .hero .ldmem .ldmemBtn {
    font-size: x-small;
    padding: .5rem;
  }
  .hero .footer {
    font-size: small;
  }
  .hero2 .centerImg #logo {
    width: 10rem;
  }
  .hero2 .maintitle {
    font-size: larger;
  }
  .hero2 .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .hero2 .card .img-hold {
    width: 100%;
    height: 100%;
  }
  .hero2 .card .img-hold img {
    width: 100%;
    height: 100%;
  }
  .hero2 .card .img-hold .big {
    height: 100%;
  }
  .hero2 .card .text-area {
    width: 98%;
    margin: 1rem;
  }
  .hero2 .card .text-area h2 {
    font-size: medium;
  }
  .hero2 .card .text-area h2::after {
    width: 15rem;
    top: 2.5rem;
  }
  .hero2 .card .text-area .degi {
    font-size: large;
  }
  .hero2 .card .text-area .small-text {
    width: 90%;
  }
  .hero2 .card .text-area .small-text .small-para {
    font-size: medium;
  }
  .hero2 .card .text-area .small-text .blue {
    font-size: medium;
  }
  .hero2 .card .btn-area a {
    font-size: small;
  }
}
/*# sourceMappingURL=about.css.map */