* {
    margin: 0;
    padding: 0;
    font-family: 'Poppsins' sans-serif;
  }
  
  .header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url();
    background-position: center;
    background-size: cover;
    position: relative;
  }

  @import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);
.nav {
  position: fixed;
  background-color: #06111c;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}
.nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}
.nav a {
  color: #fff;
  text-decoration: none;
  padding: 7px 15px;
  transition: all 0.3s ease-in-out;
}
.banner{
  min-height: 100vh;
    width: 100%;
    /* background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/bg1.jpg); */
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 50px;
  /* background: url("images/background.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; */
}
#videobg {
  background: url(video.jpg) no-repeat;
  background-size: cover;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 18px;
  color: #fff;
}
.z-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  /* border-radius: 10px; */
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.z-btn:hover {
  border: 1px solid #fff;
  background: rgb(50, 50, 50);
  transition: 1s;
}
nav .fa-solid {
  display: none;
}
/* @media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
  } */



 
  /*-------course-------*/
  *
  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: consolas;
  }
  
  body
  {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background: #1d061a
  }
  
  .container
  {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  .container .box
  {
    position: relative;
    width: 250px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
  }
  
  .container .box::before
  {
    content:' ';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
  }
  
  .container .box::after
  {
    content:'';
    position: absolute;
    top: 0;
    left: 50;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
  }
  
  .container .box:hover:before,
  .container .box:hover:after
  {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
    
  }
  
  .container .box:nth-child(1):before,
  .container .box:nth-child(1):after
  {
    background: linear-gradient(315deg, #ffbc00, #ff0058)
  }
  
  .container .box:nth-child(2):before,
  .container .box:nth-child(2):after
  {
    background: linear-gradient(315deg, #03a9f4, #ff0058)
  }
  
  .container .box:nth-child(3):before,
  .container .box:nth-child(3):after
  {
    background: linear-gradient(315deg, #4dff03, #00d0ff)
  }
  
  .container .box span
  {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
  }
  
  .container .box span::before
  {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.1s;  
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08)
  }
  
  .container .box:hover span::before
  {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  
  .container .box span::after
  {
    content:'';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    animation-delay: -1s;
  }
  
  .container .box:hover span:after
  {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  
  @keyframes animate
  {
    0%, 100%
    {
      transform: translateY(10px);
    }
    
    50%
    {
      transform: translate(-10px);
    }
  }
  
  .container .box .content
  {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transform: 0.5s;
    color: #fff;
  }
  
  .container .box:hover .content
  {
    left: -25px;
    padding: 60px 40px;
  }
  
  .container .box .content h2
  {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .container .box .content p
  {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4em;
  }
  
  .container .box .content a
  {
    display: inline-block;
    font-size: 1.1em;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .container .box .content a:hover
  {
    background: #ffcf4d;
    border: 1px solid rgba(255, 0, 88, 0.4);
    box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
  }
 
  /*-------campus---------*/
  .campus {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }
  .campus-col {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }
  .campus-col img {
    width: 100%;
    display: block;
  }
  .layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
  }
  .layer:hover {
    background: rgba(0, 0, 255, 0.7);
  }
  
  .layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;
  }
  .layer:hover h3 {
    bottom: 49%;
    opacity: 1;
  }
  
  /*-----facilities------*/
  .facilities h1 {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    display: block;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 10px;
    background-color: white;
    overflow: hidden;
}

.slider__slides {
  width: 100%;
  padding-top: 66%;
}

.slider__slide {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: lemonchiffon; */
    transition: 1s;
    opacity: 0;
}

.slider__slide.active {
    opacity: 1;
}

.slider__slide img {
  width: 100%;
}

.slider__nav-button {
    position: absolute;
    height: 70px;
    width: 70px;
    background-color: #333;
    opacity: .8;
    cursor: pointer;
}

#nav-button--prev {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#nav-button--next {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#nav-button--prev::after,
#nav-button--next::after {
    content: "";
    position: absolute;
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    width: 40%;
    height: 40%;
}

#nav-button--next::after{
    top: 50%;
    right: 50%;
    transform: translate(25%, -50%) rotate(-45deg);
}

#nav-button--prev::after {
    top: 50%;
    right: 50%;
    transform: translate(75%, -50%) rotate(135deg);
}

.slider__nav {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.slider__navlink {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px #fff solid;
    background-color: #333;
    opacity: 1;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

.slider__navlink.active {
    background-color: #fff;
    border: 1px #333 solid;
}


@media screen and (max-width: 640px) {
  .slider__nav-button {
    height: 40px;
    width: 40px;
  }
  .slider__navlink {
    height: 12px;
    width: 12px;
  }
}
  
  /*-----testimonials-----*/
 
 .body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(1, 30, 34);
    font-family: sans-serif;
}
.testimonials h1 {
  text-align: center;
  justify-content: center;
}
.container{
    max-width: 950px;
}
.card{
    border-radius: 1rem;
    box-shadow: 0px -10px 0px rgb(151, 248, 6);
}
@media(max-width:767px){
    .card{
        margin: 1rem 0.7rem 1rem;
        max-width: 80vw;
    }
}
img{
    width: 6.2rem;
    border-radius: 5rem;
    margin: 1.3rem auto 1rem auto;
}
.col-md-4{
    padding:0  0.5rem;
}
.card-title{
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: bold;
    font-family: 'IM Fell French Canon SC';
}
.card-text{
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    color: rgb(82, 81, 81);
    line-height: 1.4rem;
}
.footer{
    border-top: none;
    text-align: center;
    line-height: 1.2rem;
    padding: 2rem 0 1.4rem 0;
    font-family: 'Varela Round';
}
#name{
    font-size: 0.8rem;
    font-weight: bold;
}
#position{
    font-size: 0.7rem;
}
a{
    color: rgb(151, 248, 6);
    font-weight: bold;
}
a:hover{
    color: rgb(151, 248, 6);
}
  /* login form-------------- */
  
  *{
    box-sizing: border-box;
  }

  /* Button used to open the contact form - fixed at the bottom of the page */
  .open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }
  
  /* The popup form - hidden by default */
  .form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }
  
  /*-----footer-----*/
  
 
  body{margin-top:20px;}
  .deneb_footer .widget_wrapper {
      background-repeat: no-repeat;
      background-size: cover;
      padding-top: 200px;
      padding-bottom: 70px;
  }
  @media (max-width: 767px) {
      .deneb_footer .widget_wrapper .widget {
          margin-bottom: 40px;
      }
  }
  .deneb_footer .widget_wrapper .widget .widget_title {
      margin-bottom: 30px;
  }
  .deneb_footer .widget_wrapper .widget .widget_title h4 {
      font-weight: bold;
  }
  .deneb_footer .widget_wrapper .widget .widget_title h4:after {
      content: "";
      display: block;
      background: url(../images/shape/line.png) no-repeat;
      max-width: 38px;
      height: 2px;
      margin-top: 5px;
  }
  .deneb_footer .widget_wrapper .widegt_about p {
      margin-bottom: 20px;
  }
  .deneb_footer .widget_wrapper .widegt_about .social li {
      display: inline-block;
      margin-right: 10px;
  }
  .deneb_footer .widget_wrapper .widegt_about .social li a {
      display: block;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 50%;
      background-color: #f9e6d4;
      color: #fba543;
      font-size: 14px;
      -webkit-transition: all all 0.5s ease-out 0s;
      -moz-transition: all all 0.5s ease-out 0s;
      -ms-transition: all all 0.5s ease-out 0s;
      -o-transition: all all 0.5s ease-out 0s;
      transition: all all 0.5s ease-out 0s;
  }
  .deneb_footer .widget_wrapper .widegt_about .social li a:hover,
  .deneb_footer .widget_wrapper .widegt_about .social li a:focus {
      background-image: -moz-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      background-image: -webkit-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      color: #fff;
      box-shadow: 2.5px 4.33px 15px 0px rgba(254, 176, 0, 0.4);
  }
  .deneb_footer .widget_wrapper .widget_link ul li {
      margin-bottom: 5px;
  }
  .deneb_footer .widget_wrapper .widget_link ul li a {
      text-transform: capitalize;
      color: #7a808d;
  }
  .deneb_footer .widget_wrapper .widget_link ul li a:hover,
  .deneb_footer .widget_wrapper .widget_link ul li a:focus {
      color: #feb000;
  }
  .deneb_footer .widget_wrapper .widget_contact .contact_info .single_info {
      max-width: 250px;
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px;
  }
  .deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .icon {
      font-size: 12px;
      color: #feb000;
      margin-right: 10px;
  }
  .deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p a {
      color: #7a808d;
  }
  .deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p span {
      display: block;
  }
  
  .deneb_footer .copyright_area {
      background: #edecf0;
      padding: 10px 0;
  }
  .deneb_footer .copyright_area .copyright_text {
      text-align: center;
  }
  .deneb_footer .copyright_area .copyright_text p {
      color: #011a3e;
  }
  .deneb_footer .copyright_area .copyright_text p span {
      color: #feb000;
  }
  .deneb_cta .cta_wrapper {
      padding: 45px 50px 42px;
      max-width: 970px;
      border-radius: 15px;
      margin: auto;
      margin-bottom: -135px;
      position: relative;
      background-image: -moz-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      background-image: -webkit-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
      box-shadow: 2.5px 4.33px 15px 0px rgba(254, 176, 0, 0.4);
      z-index: 1;
  }
  .deneb_cta .cta_wrapper:after {
      content: "";
      background: url(../images/shape/cta_shape.png) no-repeat;
      background-position: bottom;
      width: 100%;
      height: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
  }
  .deneb_cta .cta_wrapper .cta_content h3 {
      color: #fff;
      font-weight: bold;
  }
  @media (max-width: 767px) {
      .deneb_cta .cta_wrapper .cta_content h3 {
          font-size: 24px;
      }
  }
  .deneb_cta .cta_wrapper .cta_content h3:after {
      content: "";
      display: block;
      background: url(../images/shape/line_2.png) no-repeat;
      max-width: 110px;
      height: 2px;
      margin-top: 13px;
      margin-bottom: 24px;
  }
  .deneb_cta .cta_wrapper .cta_content p {
      color: #fff;
  }
  .deneb_cta .cta_wrapper .button_box {
      float: right;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .deneb_cta .cta_wrapper .button_box {
          float: none;
          text-align: left;
          margin-top: 30px;
      }
  }
  @media (max-width: 767px) {
      .deneb_cta .cta_wrapper .button_box {
          float: none;
          text-align: center;
          margin-top: 30px;
      }
  }
  .deneb_cta .cta_wrapper .button_box .deneb_btn {
      background: #fff;
      color: #011a3e;
  }
  .deneb_cta .cta_wrapper .button_box .deneb_btn:hover,
  .deneb_cta .cta_wrapper .button_box .deneb_btn:focus {
      box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
  }