@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&family=Nunito+Sans:wght@300;600;800&family=Roboto+Mono:wght@400;600;700&display=swap");

body {
  color: #53597b;
  overflow-x: hidden;
  font-family: "Mulish", sans-serif;
}

a {
  text-decoration: none;
  color: #53597b;
}

.home-page .title-content .explore:hover {
  background-color: #3498db;
}

button:active {
  transform: scale(0.98);
}

@keyframes navbar {
  from {
    left: 200px;
  }

  to {
    left: 0;
  }
}

/* Navigation Bar  */
header {
  background-color: white;
  position: relative;
  z-index: 10;
  padding: 2% 8%;
  font-family: "Mulish", sans-serif;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 80px;
}

header nav img {
  width: 90px;
}

header nav ul {
  list-style: none;
  margin: auto 0;
}

header nav ul li {
  display: inline;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

header nav ul li a {
  border-radius: 20px;
  padding: 15px 30px;
  transition: all 0.2s ease-out;
}

header nav .btn-register {
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 400;
  background: #2196f3;
  color: white;
  border-radius: 20px;
  margin: auto 0;
  display: none;
  border: 0;
  font-weight: 600;
  box-shadow: 0px 10px 20px -10px #1376c5;
  transition: all 0.3s ease-in;
}

header nav .btn-register:hover {
  color: white;
  background-color: #3498db;
  transition: all 0.3s ease-in;
}

header nav .nav-responsive {
  display: none;
  background-color: #000000;
  padding: 20px 10px 15px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  position: fixed;
  top: -15px;
  right: 0;
  z-index: 10;
  opacity: 1;
}

header nav .nav-responsive img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

nav ul li a:hover {
  padding: 15px 30px;
  color: #53597b;
  transition: all 0.2s ease-in;
  border-radius: 25px;
  background-color: #f5f5f5;
}

@media only screen and (max-width: 950px) {
  header {
    padding: 5%;
  }

  header nav {
    justify-content: space-between;
    position: relative;
  }

  header nav .btn-register {
    display: none;
  }

  header nav .nav-items {
    margin: 0 20px;
  }

  header nav .nav-buttons {
    margin: 0 20px;
    min-width: 0;
  }

  header nav .btn-responsive {
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: #ffff;
    color: #1376c5;
    border-radius: 20px;
    margin: 30px 0;
    border: 0;
    text-align: center;
    font-weight: 600;
  }

  header nav ul {
    display: none;
  }

  header nav ul li {
    margin: 20px 0;
    color: white;
  }

  header nav ul li a {
    color: #ffff;
    font-size: 1.5rem;
  }

  header nav .responsive {
    background-color: #003865;
    border-radius: 5px;
    padding: 5%;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    text-align: left;
    animation: navbar 0.4s;
  }

  header .responsive+.close-div {
    display: block;
    cursor: pointer;
  }

  header nav .collapse-div {
    display: block;
    cursor: pointer;
    margin: 0 20px;
  }

  header nav .collapse-div.remove {
    display: none;
  }

  header nav .close-div {
    display: none;
    margin-right: 20px;
  }

  header nav .close-div.active {
    display: block;
    cursor: pointer;
  }

  header nav .responsive+.collapse-div {
    cursor: pointer;
    display: none;
  }

  hr {
    color: white;
  }
}

#news-slider {
  margin-top: 80px;
}

.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 0px 8px 0px;
  /* margin-left: -10px; */
}

.post-slide .post-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #000000;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 50px;
  border-radius: 15px;
}

.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}

.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}

.post-slide .read-more {
  padding: 10px 20px;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 50px 15px;
  }
}

footer {
  padding: 2% 8%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: hsl(233deg, 26%, 24%);
  color: white;
}

footer a {
  color: white;
  transition: all 0.3s ease-in;
}

footer .box1 {
  width: 40%;
}

footer .box1 img {
  width: 90px;
}

.naac-logo {
  width: 80px !important;
}

.bg-img {
  display: inline-block;
  background-color: white;
  width: 160px;
  object-fit: contain;
  margin-left: 10px;
  border-radius: 5px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

.bg-img img {
  width: 100% !important;
  margin-top: 5px;
}

footer .box1 .content {
  margin-top: 40px;
}

footer a:hover {
  color: #3498db;
  transition: all 0.3s ease-in;
}

footer .box1 .content ul {
  margin: 20px 0;
  padding: 0 20px;
  position: relative;
}

footer .box1 .content ul li {
  color: white;
  list-style: none;
}

footer .box1 .content ul li:before {
  content: url("Home/images/icon-location.svg");
  position: absolute;
  left: 0;
  margin: 0;
  top: 50%;
  transform: translateY(-80%);
}

footer .box1 .content ul li span {
  position: relative;
  left: 10px;
  bottom: 10px;
}

footer .icon {
  display: inline-block;
  padding: 5px;
  text-align: center;
  width: 35px;
  margin: 0 5px;
}

footer .box3 {
  margin: 80px 0 0;
  text-align: center;
}

footer .box3 h4 {
  font-size: 1.2rem;
}

footer .box3 .links {
  margin-top: 15px;
  display: grid;
  text-align: left;
  grid-template-columns: auto auto;
  grid-gap: 20px 30px;
}

footer .box3 .links a {
  color: white;
  transition: all 0.3s ease-in;
}

footer .box3 .links a:hover {
  color: #3498db;
  transition: all 0.3s ease-in;
}

footer .box4 {
  margin-top: 80px;
  text-align: center;
}

footer .box4 h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

footer .box4 .icon {
  cursor: pointer;
}

footer .box4 .icon i {
  font-size: 1.5rem;
}

/*# sourceMappingURL=home.css.map */

@media only screen and (max-width: 900px) {
  footer {
    text-align: center;
    padding: auto;
    flex-direction: column;
  }

  footer .box1 {
    margin-top: 50px;
    width: 100%;
  }

  footer .bg-img img {
    width: 100% !important;
    /* margin-top: 15px; */
    vertical-align: middle;
  }

  .naac-logo {
    margin-left: 0;
    margin: 15px auto 0;
  }

  footer .box3 {
    margin: 20px 0;
    grid-template-columns: auto;
    grid-gap: 50px;
    text-align: center;
  }

  footer .box3 .links {
    grid-gap: 15px;
    grid-template-columns: auto;
    text-align: center;
  }

  .box3 .links2 {
    grid-gap: 15px;
  }

  footer .box4 {
    margin: 10px 0;
    text-align: center;
  }
}