body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.top-bar{
    background: #a10303;
    padding: 8px 0;
    border-radius: 2px;
 }
 .top-bar ul{
    font-family: trebuchet ms;
     display: flex;
     justify-content: flex-end;
     margin: 0;
     padding: 0;

     align-content: center;
     align-items: center;
     color: #fff;
}
.top-bar ul li{
   list-style: none;  
   margin: 0 10px;
}
.top-bar ul li a{
    color: #fff; 
}
.top-bar ul li:last-child{
    background: #fff;
    padding: 2px 8px;
}
.top-bar ul li:last-child a{
    color: #fa8d07 ;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .sticky + .content {
    padding-top: 60px;
  }

.nav-link{
    color: #1f1e1e;
    
    
}


.navbar-brand {
    padding-left: 90px;
}



.navbar-nav .nav-link {
     font-family: trebuchet ms;

    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: brown;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: #fff;
        transition: .5s;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: 100%;
        height: 0.5px;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}







/* Hero Image begins */
.hero-image {
    background:linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),  url(../image/Glogo.png) top right no-repeat;
    background-size: cover;
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  border-top: solid;
  
  border-bottom: solid;
  border-color: #a10303;
  opacity: 100 ;
}



.hero-text {
  font-weight: ;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

  
}

.hero-text button {
  border-style: solid;
  border-color: #f08e16 ;
  outline: 0;
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  background-color: transparent ;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  
}


.hero-text button:hover {
  background-color: #f08e16;
  color: #fff;
}


/* ARTICLE STARTS */

.workT{
     font-family: Verdana, sans-serif;
}

.workP {
    padding-top: 60px;

}

.workP2 {
     padding-top: 60px;
}

.workP3 {
     padding-top: 80px;
}


article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

/* basic article elements styling */
article h2 {
  margin: 0 0 18px 0;
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: #db5f07; /*var(--title-color)*/;
  transition: color 0.3s ease-out;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;

}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/************************ 
Generic layout (demo looks)
**************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
 /* margin: 0;
  padding: 48px 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
  /*background-image: linear-gradient(45deg, #7c9885, #b5b682);*/
  
}

.articles {

  display: grid;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  
  background-color: grey;
}

.pageA {
    padding: 50px;
    background-color: #f2f0f0 !important;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }
  .article-body p {
    display: ;
  }
}

@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body {
    padding-left: 0;
  }
  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}




/* ARTICELE ENDS */





.Mdcare {
    padding-top: 70px;
    text-align: center;
    font-family: Tahoma;
    font-weight: 600;
    color: #f08e16;
}

.Mdtext {
    padding: 40px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    font-family: Tahoma;
}


/* Black Content sTARTS*/

.SweeR {
    padding-top: 50px;
   background-size: cover;
  /*  height: 400px;
    width: 100%; */
  position: relative;
  color: black;
  background-color: ;
  padding-bottom: 60px;
}





.SweetR {
    padding-top: 50px;
   background-size: cover;
  /*  height: 400px;
    width: 100%; */
  position: relative;
  color: #fff;
  background-color: #080400;
  padding-bottom: 60px;
}

.SweetH {
    text-align: center;
    color: #fff;
    font-size: 1px;
    padding-top: 35px;
    font-family: Trebuchet MS;
    font-weight: 2px;
}

.contentH {
    padding-top: 50px;
    font-family: Calibri;
    

}

.content1 {
    font-family: Calibri !important;
    font-weight: lighter;
    font-weight: bold;
    line-height: 1.1;
    
}


.aa{
    padding-top: 40px;
    font-family: lucida console;
    display: inherit !important;

}

/* bLACK CONTENT ENDS */





/* KnowImg */

button {
    border-style: solid;
    border-color: #f08e16 ;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    padding: 10px 30px;
    display: block;
    text-align: center;
    margin: 5px;
    border-radius: 50px;
}

button.knowB {
    display: block;
    margin: auto;
    }
 
button.BtnI {
     display: block;
    margin: auto;
    align-content: center;
}   



.contactU{
    font-family: trebuchet ms;
    padding : 50px;
}


/* SLIDER ENDS */


/* NEWS GIST */

.heroH {

    padding: 30px;
    font-size: 50px;
    text-align: center;
    color: #db5f07;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0px;
}
.ServText {
    padding: 60px;
    font-weight: 400;
    text-align: center;
    box-sizing: border-box;
}

.course1 {
    text-decoration: none;
    color: black;
}





.LatestImg img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
   object-fit: cover;

    margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
   max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;

  border-radius: 16px;
}



.LatestText {
    

    padding: 5px;

   
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}





/* END OF NEWS */





.arrow {
  border: solid #f0910c;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 7px;

}


.down {

  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.mb-4 h5{
    color: #0d0363;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
    border-bottom :border-5;
}

.display-4 {
    color: #db5f07;
    font-weight: bold;
    font-size: 200;
}









/* SLIDER BEGINS */




/* SLIDER ENDS */





/* Footer */
.footer{
    background-color: #4f0202; /*var(--main-color)*/;
    padding: 50px 0;
    font-family: trubuchet ms;

}
.footer-col h3{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 25px;
    text-transform: capitalize;
}
.footer-col p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 26px;
    margin: 0;
}
.footer-col ul{
    margin: 0;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}   
.footer-col ul li a{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    display: block;
    text-transform: capitalize;
    transition: all 0.5s ease;
    text-decoration: none;
}
.footer-col ul li a:hover{
    padding-left:5px;
}

.footer .copyright-text{
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* START Media QURIES */



@media screen and (max-width: 680px) {

 .hero-text h2 {
    font-size: 25px !important;
    padding: 5px;
 }

 .top-bar ul li {
        font-size: 13px;
    }
 
    .hero-text {
  font-weight: ;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

    font-size: 15px;
 }   

.section-title {
    padding-top: 45px;
}

.footer-col {
    text-align: center;
    padding-top: 15px;
}

}

.TBN {
    padding: 30px;
}


@media (max-width:767px) { 
    .custom-navbar {
        
        float: left;
        margin: 0;
        padding: 15px 0 15px 15px;
    }
    .custom-navbar .navbar-toggle {
        margin: 10px 15px 0 0;
        float: right;
    }
}
@media (min-width:768px) { 
    .custom-navbar .navbar-header {
        width: 100%;
        margin: 0;
    }
    .custom-navbar {
        text-align: center;
        float: none;
    }
}