/**
* Template Name: Mentor - v2.2.1
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000;
}

a {
  color: #3633FF;
}

a:hover {
  color: red;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, li {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding:0;
  box-shadow: 0 0 30px rgb(34, 27, 27);
  background-color: #000000;
}

#header .cLogo{
  max-height: 90px;
  max-width: 120px; 
  padding: 0;
  margin: 13px 0 13px 0;
  color: white;
  font-weight: bolder;
}

#header .ministry_tag2 {
  display: none;
}


@media (max-width: 990px) {
  #header .ministry_tag {
    display: none;
  }

  #header .ministry_tag2 {
    display: block;
    font-size: 18px;
  }
  

  #header .cLogo{
    margin-left: -0.5rem !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  transition: 0.3s;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e2230a;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #000000;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e60a0a;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 22px;
  background: #f00606;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #e20303a1;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 40px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: white;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fcfcfc;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #838181;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #000000;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(32, 38, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: red;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  position: relative;
  background: no-repeat scroll center;
  -webkit-background-size: cover;
  background-size: cover;
 
}

.home {
  background-color: rgb(214, 71, 71);
}

#hero .welcome{
  margin-top: 40px;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1064px) {
  #hero {
    background-attachment: fixed;
  }
  
  #hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: "Poppins", sans-serif;
  }
  #hero h2 {
    font-size: 25px;
    line-height: 24px;
  }
  
}

@media (max-width: 768px) {
  
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: auto;
    max-width: 100%;
    max-height: 89vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(31,39,43,0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 100px;
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2{
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}


.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .main-banner .caption h1{
    font-size: 30px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}

@media (max-width: 767px) {
  .main-banner {
    height: 95vh;
    max-height: 95vh;
  }

  #bg-video {
    height: 95vh;
    min-height: 95vh;
    max-height: 95vh;
  }

}


/*
---------------------------------------------
services
---------------------------------------------
*/

.services {
  margin-top: -460px;
  position: absolute;
  width: 100%;
}


.services .single-box .img-text h2{
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services .single-box .img-text p{
  font-size: 14px;
}

.services .single-box{
  position: relative;
  margin-bottom: 30px;
  background-color: rgba(255, 0, 0, 0.24);
  border-radius: 20px;
  text-align: center;
  color: #fff;
}


/* Adjust margin-top specifically for desktop screens */
@media (min-width: 1024px) {
  .services {
    margin-top: -500px; /* Adjust this value as needed for desktops */
  }
}
@media screen and (max-width: 990px) {
  .services .single-box .img-text h2{
    font-size: 18px;
  }

  .myServices{
    margin-top: -460px;
  }

  .services .myRow{
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .services .myCard {
    display: initial;
    max-width: 50%;
    min-width: 50%;
    
  }
  .services .myCard .single-box{
    overflow: hidden;
    max-height: 100px;
  }

  .services .single-box .img-text{
    width: 100%;
    display: block;
    text-align: center;
    padding: 10% 5% 10% 5%;
    border-radius: 15px;
  }
  .services .single-box .img-text h2{
    font-size: 12px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  .services .single-box .img-text p{
    font-size: 8px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
}

@media (orientation: landscape) and (max-width: 767px){
    .myServices{
    margin-top: -150px;
  }
  
  .main-banner {
    height: 150vh;
    max-height: 150vh;
  }

  #bg-video {
    height: 150vh;
    min-height: 150vh;
    max-height: 150vh;
  }
  
}
/* ================= progress tracker ++++++++++++++++++++++++++*/

.trackertitle {
    font-size: 32px;
}

@media (max-width: 767px) {
  .trackertitle {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trackertitle {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .trackertitle {
    font-size: 32px;
  }
}


/*=====================Program Overview Starts===========================*/
.programOverContainer{
  background: linear-gradient(45deg, #000000, #ffffff);
}

.programOverview{
  box-shadow: 0px 0px 5px 5px;
  background-color: rgb(231, 227, 227);
}

.programOverview .poHeading{
  border: 3px solid black;
  background-color: rgb(255, 253, 253);
}

.programOverview .poHeading{
  border: 3px solid black;
  background-color: rgb(0, 0, 0);
}

.programOverview .poHeading{
 color: white;
}

/*=====================Program Overview Ends===========================*/

/*=====================Careeer Clusters===========================*/
.hero-header {
  background: url(../img/careercluster.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.careerCluster{
  background-color: rgb(233, 231, 227);
}

.careerCluster h4{
  font-size: 30px;
}

.careerCluster ul li button{
  background-color: #bbd5f7;
}

.careerCluster ul .nav-item{
 max-width: 50%;
 min-width: 50%;
}

.careerCluster ul li:hover{
  transform: translateX(-25px);
}

.careerCluster ul li button:hover{
  background-color: #0b6ae6;
}

@media screen and (max-width: 775px){
  .careerCluster ul li button{
    font-size: 14px;
  }
}

@media screen and (max-width: 600px){
  .careerCluster ul .nav-item{
    max-width: 100%;
    min-width: 100%;
  }
}

@media screen and (max-width: 1000px){
  
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
  }
}

/*=====================Careeer Clusters Ends===========================*/

/*=====================Clusters Start===========================*/
  .cluster h1, h3, h6{
    font-weight: bolder;
  }
/*=====================Clusters Start===========================*/


/*====================Home Registration==========================>*/
.registration{
  width: 50%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(224, 112, 112, 0.5); 
  margin-top: 10px;
  margin-bottom: 10px;
  }
  .registration .inner-container {
      margin: 20px;
      border: 2px solid red;
      border-radius: 20px;
  }
  .registration form {
  margin: 20px;
  align-items: center;
  justify-content: center;
}

.popup{
  width: 400px;
  background: #ebe9e9;
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}

.openPopup{
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);

}
.popup img{
  width: 35%;
  margin-top: -15%;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h2{
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
}

.popup button{
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background-color: #6fd649;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);

}
@media screen and (max-width: 990px) {
  .registration  {
    width: 70%;
    margin-top: 0;
  }
}
  @media screen and (max-width: 750px) {
  .registration  {
    width: 100%;
    margin-top: 0;
  }
}







