/*navbar code*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500&display=swap');
.menu {
  position: relative;
  width: 90%;
  z-index: 9999;
}

.my-navbar {
  width: 100%;
  padding: 10px 20px;
  background-color: white;
  position: relative;
  z-index: 999;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.nav-item .nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0px 10px;
  position: relative;
  color: black;
}

.nav-item .nav-link:before {
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #009970;
  transition: 0.5s;
}

.nav-item .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}
.navbar-brand {
  text-transform: capitalize;
  font-size: 35px;
  color: #2f3542;
  font-style: italic;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
}





.nav-item .active {
  color: #009970;
}

.custom-toggler.navbar-toggler {
  border-color: #009970;
}
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 128, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar {
  padding: 0.8rem;
  position: relative;
  width: 100%;
  z-index: 9999;
}
.navbar-nav li {
  padding: 3px;
}

.nav-link {
  font-size: 1.2em !important;
}
.nav-link li:hover {
  background-color: black;
}

.nav-item .nav-link:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 100%;
  height: 1px;
  transform: scaleX(0);
  transition: 0.5s;
  content: '';
  transform-origin: left;
  background-color: white;
}
.nav-item .nav-link:hover after {
  transform-origin: right;
  transform: scaleX(1);
}




.navbar-brand {
  text-transform: capitalize;
  font-size: 35px;
  color: black;
}

/*navbar code*/

/* --------------------------------------------------------------------------------- */

/* footer code start */

footer {
  background-color: #3f3f3f;
  color: white;
  padding: 2rem;
  color: #444444;
  font-size: 14px;
  background: #d4d4d4;
}

footer a {
  color: #d5d5d5;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Raleway', sans-serif;
  color: #777777;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009970;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}

/* footer code ends */


.program-intro-card {
    width: 100%;
    margin: 40px auto;
    background: #fff;

    padding: 35px 50px;

    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);

    box-sizing: border-box;
}

.program-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.program-intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 1100px;
}

@media (max-width: 991px) {

  .my-navbar {
    padding: 10px 15px;
  }

  .navbar-brand img {
    width: 90px;
    height: auto;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    background: white;
    padding-top: 15px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    padding: 8px 0;
  }
}