body {
  padding: 0;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  color: #444444;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
li {
  list-style: none;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
}

/* =====================header css===================== */
@media (min-width: 576px) {
  .container{
      max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 990px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1220px;
  }
}


header.header-main {
  padding: 26px 0 30px 0;
  background: #fff;
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header > ul {
  display: flex;

  column-gap: 14px;
}

.header > ul > li > a {
  color: #393838;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-decoration: none;
}
.logo-col {
  width: 30%;
}
.logo-col a img {
  width: 100%;
}

/* toggle css */

.toggle-btn {
  background: transparent;
  border: none;
  width: 35px;
  height: 30px;
  text-indent: -900em;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  outline: none;
}
.toggle-btn:after {
  top: 10%;
  content: "";
  position: absolute;
  width: 78%;
  height: 4px;
  background: #000;
  left: 10%;
  box-shadow: 0 10px 0 #000, 0 20px 0 #000;
}
.menuwrapper {
  display: none;
}
.mobilemenu {
  background-color: #333;
  width: 300px;
  max-width: 300px;
}
.mobilemenu > li > a {
  display: block;
  position: relative;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  outline: none;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.menuwrapper .menu-div {
  width: 300px;
  max-width: 300px;
  margin: 5px 0 0 0;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.menu-div.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* ==================footer css======================= */
.footer-top {
  padding: 15px 0;
  background-color: #252525;
}

.footer-box h5 {
  font-family: "Roboto", sans-serif;
  position: relative;
  color: #ffffff;
  text-transform: capitalize;
  padding: 0px 0px 15px;
  margin: 0px 0px 15px;
  font-size: 20px;
  font-weight: bold;
}

.footer-box h5::before,
.footer-box h5::after {
  position: absolute;
  width: 10%;
  height: 1.5px;
  content: "";
}

.footer-box h5::before {
  left: 0;
  bottom: 0;
  background-color: #fff;
}
.footer-box h5::after {
  left: 10%;
  bottom: 0;
  background-color: #029545;
}
.footer-box ul li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
}
.footer-box ul li span .fa-phone,
.footer-box ul li span .fa-map-marker,
.footer-box ul li span .fa-envelope {
  color: #fff !important;
 font-size: 16px;
  margin-right: 10px;
}
.footer-box ul li span {
  display: block;
  margin-top: -3px;
}
.footer-box ul li p {
  list-style: none;
  font-family: "Roboto", sans-serif;
  display: flex;
  width: 100%;
  position: relative;
  color: #cccccc;
 font-size: 16px;
  margin-bottom: 0px;
}
.footer-box ul li a {
  transition: all 0.4s;
 font-size: 16px;
  display: inline-block;
  color: #cccccc;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}
.footer-box ul li a:hover {
  color: #029545;
}
ul.social-icons li {
  list-style: none;
}
ul.social-icons li a {
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background-color: #fff;
  color: #444444;
  transition: all 0.4s;
}
ul.social-icons li a:hover {
  background-color: #2e5528;
  border: none;
  color: #fff;
}

.footer-bottum {
  background-color: #171917;
  padding: 10px 0;
}

.footer-bottum p {
  color: #ffffff;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  line-height: 26px;
     font-size: 16px;
  font-weight: 300;
  padding: 0 15px;
}

/* ===================   blog banner css =========================*/

.blog-banner {
  overflow: hidden;
  background-color: rgb(152 195 144 / 19%);
  position: relative;
  z-index: 1;
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(../images/blog-banner-shape.png);
  z-index: -1;
  animation: off-on 10s infinite linear;
}

@keyframes off-on {
  0% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.blog-banner .marquee-row {
  display: flex;
  animation: marquee;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.blog-banner .marquee-row img {
  width: 100%;
  height: 100px;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}


.blog-banner-content ul {
  display: flex;
  padding-left: 0;
  column-gap: 23px;
  margin-bottom: 0;
}

.blog-banner-content ul li {
  font-size: 18px;
}
.blog-banner-content ul li a {
  color: #212529;
  position: relative;
  text-decoration: none;
}
.blog-banner-content ul li a::after {
  position: absolute;
  right: -35%;
  top: 50%;
  width: 9px;
  height: 2px;
  background-color: #171917;
  content: "";
}

.blog-banner-content ul li span {
  color: #029545;
}

.blog-banner-content h2 {
  font-size: 40px;
  font-weight: 500;
  position: relative;
  margin-bottom: 0px;
}

/* ===================   blog css =========================*/

.blog-col-right {
  position: sticky;
  top: 0;
}
section.blogs {
  padding: 100px 0;
}
.blog-box {
  /* background-color: rgb(152 195 144 / 25%); */
  background-color: rgb(218 218 218 / 25%);
  padding: 24px;
  box-shadow: 0 0 5px #ccc;
  margin-bottom: 20px;
}


.blogs p {
  font-size: 17px;
  word-spacing: 2px;
  color: #444444;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.blog-content {
  margin-top: 20px;
}

.blog-content h6 {
  text-transform: capitalize;
  color: #5da357;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
.blog-content > a {
  color: #444444;
  display: block;
  margin-top: 10px;
  text-decoration: none;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}
.blog-content .date a {
  text-decoration: none;
     font-size: 16px;
  color: #444444;
}

.blog-col-right .search-bar {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #fffbf5;
  /* background-color: rgb(152 195 144 / 25%); */
  background-color: rgb(218 218 218 / 25%);
  box-shadow: 0 0 5px #ccc;
}

.blog-col-right .search-bar form {
  position: relative;
}
.blog-col-right .search-bar form label {
  display: block;
  margin-bottom: 0;
}
.blog-col-right .search-bar form .search-field {
  background-color: #f9fafb;
  border: 1px solid #d2d2d2;
  height: 55px;
  padding: 8px 15px;
  width: 100%;
  display: block;
  outline: 0;
  border-radius: 5px;
  color: #0a1823;
}

.blog-col-right .search-bar form .search-submit {
  border: none;
  background-color: #f9fafb;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  top: 11px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.blog-col-right .search-bar form .search-submit i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}

.recent-blogs,
.categories,
.tags {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #fffbf5;
  background-color: rgb(246 246 246);
  box-shadow: 0 0 5px #ccc;
}

.recent-blogs span,
.categories span,
.tags > span {
  margin-bottom: 30px;
  font-size: 22px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

.now {
  padding-bottom: 15px;
  margin-bottom: 20px;
  display: flex;
  column-gap: 20px;
  border-bottom: solid 1px #c8cbcb;
}

.now figure {
  max-width: 80px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}
.now figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con {
  max-width: 220px;
}
.con a {
  text-decoration: none;
  color: #363a36;
  line-height: 20px;
  display: block;
     font-size: 16px;
  font-weight: 500;
  transition: all 0.4s;
}

.categories ul li a {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  color: #222;
  text-decoration: none;
}
.tags span {
  display: block;
}
.all-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.all-tags > span {
  display: inline-block;
  color: #fc800a;
  background-color: transparent;
  border: 1px solid #fc800a;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  margin-right: 5px;
  margin-top: 8px;
  text-decoration: none;
  transition: all 0.4s;
}
.all-tags > span:hover {
  background-color: #88b520;
  color: #ffffff;
}

.blog-banner-content .has-gradient {
  background-color: #ffc029;
  background-image: linear-gradient(90deg, #ffc029, #4cd8b0);
  display: block;
  height: 3px;
  margin: 10px auto;
  width: 50px;
}

.mobile-ex-logo{
  display: none;
}


/* inner blog css */

.blog-img2 {
  width: 100%;
}
.blog-img2 img{
  width: 100%;
}
.admission-open {
    position: fixed;
    top: 50%;
    right: 3px;
    z-index: 99;
}


.blog-box h1{
font-size: 1.7rem;
}

.blog-banner-content {
    padding-top: 60px;
    padding-bottom: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media screen and (max-width:576px) {
  .blog-box h1{
font-size: 1rem;
}

}