/* RESET CSS STRAT */
:root {
  --bg-red: #8a1310;
  --bg-yellow: #faa61a;
  --bg-white: #ffffff;
  --bg-green: #00a24e;
  --bg-blue: #35bdee;
  --font: 1rem;
  --text-dark: #070707;
  --text-white: #ffffff;
  --text-gray: #8c8c8c;
  --bdr-gray: #bcbcbc;
  --bg-gray: #cdcdcd;
  --text-black: #000000;
}

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

textarea {
  resize: none !important;
}

.dnone {
  display: none;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: normal;
  color: var(--text-dark);
  outline: none;
  line-height: 1.4em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h3,
h4,
h5,
h6 {
  color: var(--text-blue);
  font-size: 2rem;
  margin: 0px;
  line-height: 1.3em;
}

p {
  padding: 0px;
  margin: 0px;
  font-size: var(--font);
  line-height: 1.4;
  color: var(--text-dark);
}

.hr {
  width: 30%;
  opacity: 1;
  height: 6px !important;
  background-color: var(--bg-yellow);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

a {
  outline: none !important;
  color: #ffcb05;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

a:hover,
a:active,
a:focus {
  outline: none !important;
  text-decoration: none;
  color: #4490bc;
}

textarea,
input:focus {
  outline: none !important;
  text-decoration: none;
}

img {
  border: 0;
}

.nopd {
  padding-left: 0px;
  padding-right: 0px;
}

.fsize18 {
  font-size: 18px;
}

.fsize20 {
  font-size: 20px;
}

.fsize22 {
  font-size: 22px;
}

.fsize28 {
  font-size: 28px;
}

.fsize26 {
  font-size: 26px !important;
  line-height: 1.2;
}

.fsize24 {
  font-size: 24px;
  line-height: 1.2;
}

.fsize14 {
  font-size: 10px;
}

.fsize3 {
  font-size: 2.4rem;
}

.zindex5 {
  z-index: 5;
}

.text-justify {
  text-align: justify;
}

.bg-orange {
  background-color: var(--bg-orange);
}

.text-blue {
  color: var(--bg-blue);
}

.bg-blue {
  background-color: var(--bg-blue);
}

.bg-green {
  background-color: var(--bg-green);
}

.bg-yellow {
  background-color: var(--bg-yellow);
}

.text-yellow {
  color: var(--bg-yellow);
}

.text-red {
  color: var(--bg-red);
}

.text-green {
  color: var(--bg-green);
}

.line-h {
  line-height: 1.1;
}

.rounded-8 {
  border-radius: 1rem;
}

li {
  color: #000000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

::-moz-selection {
  background-color: #61a8f0;
  color: #FFF;
}

::selection {
  background-color: #61a8f0;
  color: #FFF;
}

/* RESET CSS END */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--text-dark) !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--text-dark) !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--text-dark) !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--text-dark) !important;
}

/* STICKY ANV BAR */
.sticky1 {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

#header.sticky1 .slider-count {
  display: none;
}

#header.sticky1 .header-absolute {
  background-color: #FFF;
  box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

/* -------------------------------------------------- */
/*  Back Top
/* -------------------------------------------------- */
#back-top {
  position: fixed;
  right: 10px;
  bottom: 0px;
  z-index: 999;
  overflow: hidden;
  display: none;
  width: 50px;
  height: 50px;
  background-color: #2F3180;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#back-top:after {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: 'Font Awesome 5 Pro';
  content: "\f062";
  line-height: 48px;

  -webkit-transition: color .25s ease, -webkit-transform 2s ease;
  transition: color .25s ease, transform 2s ease;
}

#back-top:hover {
  background-color: #1f2086;
}

#back-top:hover:after {
  color: #FFF;
}

/* -------------------------------------------------- */
/*  Back Top END
/* -------------------------------------------------- */


/* Hero Section Slide */

.bc-img01 {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bc-img01::after {
  position: absolute;
  content: '';
  background-image: url(../images/afterimg.png);
  bottom: 0;
  right: 50%;
  transform: translateX(57% );
  background-repeat: no-repeat;
  width: 480px;
  background-size: cover;
  height: 540px;
}

.thankyou-sec .hero-thankyou .bc-img01 {
  height: 100vh;
  background-size: cover;
  padding-top: 4%;
}

.sideNavi {
  position: fixed;
  top: 50%;
  right: -36px;
  z-index: 2;
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sideNavi-item {
  display: flex;
}

.sideNavi a {
  background-color: #2F3180;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  padding: 10px 12px;
}

.sideNavi a span.icons {
  display: none !important;
}

.sideNavi a.whatsapp {
  background-color: #25d366;
  color: #FFF;
}

.sideNavi a.telphone {
  background-color: var(--text-dark);
  color: #FFF;
}

.sideNavi a:hover {
  background-color: #231f20;
  color: #ffffff;
}

.shadow:hover {
  box-shadow: none !important;
  -webkit-transform: translateY(-.5em);
  transform: translateY(-.5em);
}

.shadow {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.thankyou-sec .hero-thankyou .bc-img01 {
  background-image: url(../images/banner.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.thankyou-sec .hero-thankyou .bc-img01::after {
  display: none;
}

.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv {
  background-color: #FFFFFF;
  width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 30px;
}

.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv h3 {
  font-size: 5em;
  color: var(--bg-orange);
}

.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv p {
  font-size: 22px;
  line-height: 1.3;
}

.thankyou-sec .hero-thankyou .bc-img01 {
  height: 100vh;
  background-size: cover;
  padding-top: 10%;
  padding-bottom: 8%;
}


.blog-text>a {
  background-color: var(--bg-yellow);
  color: #000000;
  border-radius: 30px;
  border: 0;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 1rem 10px;
  position: relative;
  text-transform: capitalize;
  transform: perspective(1px) translateZ(0px);
  transition: color 0.3s ease 0s;
  /* vertical-align: middle; */
  font-size: 20px;
}

.blog-text>a:hover {
  color: #FFF;
}

.blog-text>a::before {
  border-radius: 30px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 50% 0 0;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  z-index: -1;
}

.blog-text>a:hover::before {
  transform: scaleY(1);
}

.alumni-block .video-box>a {
  color: #fff;
  font-size: 48px;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 48px;
  display: block;
  margin: 0 auto;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  top: 50%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  z-index: 2;
}

.video-box i {
  color: #ff0000;
  font-size: 60px;
}

.video-box i:hover {
  color: #1e72b9;
}






/* gallery-flex */
.facilities-row {
  max-width: 1305px;
  margin: 0 auto;
  position: relative;
}

#career-memeber.owl-carousel .owl-stage {
  display: flex;
}

#career-memeber.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}

#career-memeber.owl-carousel .items {
  position: relative;
  width: 75.5%;
  display: flex;
  flex-direction: column;
  margin-top: 0rem;
  margin-bottom: 0rem;
  padding: .5rem;
}

#career-memeber.owl-carousel .items .item_row {
  flex: 1 1 0px;
}

#career-memeber.owl-carousel .items .item_row:last-child {
  margin-top: 2.5rem;
}

#career-memeber.owl-carousel .items .item_row:first-child {
  margin-top: 0rem !important;
}

.gallery_area .item_row .popup-gallery-row {
  padding: 0px;
  height: 100%;
}

.galleryBox .container-fluid {
  padding: 0 0;
}

.gallery_area {
  padding-top: 0px;
}

.gallery_area .single_gallery_item {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 100%;

  overflow: hidden;
}

.hover_overlay_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery_area .single_gallery_item .hover_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border: 0px solid #ffffff;
  width: 100%;
  height: 100%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  left: 0%;
  position: absolute;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
}

.gallery_area .single_gallery_item:hover .hover_overlay {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.gallery_area .single_gallery_item:hover .hover_overlay_inner {
  border: 1px solid #ffffff;
}

.gallery_area .single_gallery_item .gallery_info h5,
.gallery_area .single_gallery_item .gallery_info p {
  color: #ffffff;
  position: absolute;
  text-align: center;
  top: 30%;
  width: 100%;
  height: auto;
}

.gallery_area .single_gallery_item .gallery_info p {
  top: 45%;
}

.gallery_area .single_gallery_item .links>a>i {
  color: #ffffff;
  font-size: 40px;
}

.gallery_area .single_gallery_item img {
  height: auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

#career-memeber.owl-theme .owl-dots .owl-dot.active span,
#career-memeber.owl-theme .owl-dots .owl-dot:hover span {
  background: #413932 !important;
}

#career-memeber.owl-theme .owl-dots .owl-dot span {
  background: #97928d !important;
}

#career-memeber.owl-theme .owl-nav {
  margin-top: 0px;
}

.gallery_area .single_gallery_item .links {
  top: 61%;
  position: absolute;
  right: 15%;
  margin-right: -17.5px;
  width: auto;
  z-index: 99;
  overflow: hidden;
}

.gallery_area .single_gallery_item .links {
  position: absolute;
  color: #000000;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  top: 50%;
  left: 0px;
  width: 100%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  overflow: hidden;
}

.gallery_area .single_gallery_item .links a {
  margin: 0 auto;
  display: inline-block;
}

.gallery_area .single_gallery_item .links a img {
  max-width: 45px;
  display: inline-block;
  border: 0px;
}

.section_gallery {
  width: 100%;
  display: block;
  position: relative;
  padding: 30px 0 0;
}

/* ====  Gallery-CLOSE  ==== */