* {
  text-decoration: none;
}

body {
  font-family: "Nunito", sans-serif;
}

.top-menu {
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 0 5px #dddddd;
  background: transparent;
}
.top-menu .navbar-brand {
  color: #444;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.top-menu .navbar-nav {
  background: transparent;
}
.top-menu .navbar-nav .nav-item {
  margin-right: 10px;
}
.top-menu .navbar-nav .nav-item .nav-link {
  padding: 5px 10px;
  color: #333;
}
.top-menu .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.top-menu .top-right-menu li {
  color: #fff;
}
.top-menu .top-right-menu li a.nav-link.get-started {
  background: navy;
  color: #fff;
  border-radius: 5px;
}
.top-menu .top-right-menu li a.nav-link.login {
  color: navy;
}

@media (min-width: 992px) { /* lg and above */
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* removes the gap */
  }
}
.hero-section {
  background: linear-gradient(rgba(196, 196, 196, 0.95), rgba(248, 248, 248, 0.95)), url("../images/hero.png") no-repeat center bottom/contain, linear-gradient(to bottom right, #f8faff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  min-height: 70vh;
  position: relative;
}
@media only screen and (max-width: 567px) {
  .hero-section {
    padding: 75px 0 100px;
    min-height: auto;
  }
}
.hero-section .hero-cta {
  max-width: 750px;
}
.hero-section .hero-cta .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #043868;
  line-height: 1.3;
}
@media only screen and (max-width: 567px) {
  .hero-section .hero-cta .hero-title {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
.hero-section .hero-cta .hero-subtext {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.hero-section .hero-cta .hero-btn {
  background-color: #e23524;
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(226, 53, 36, 0.3);
}
.hero-section .hero-cta .hero-btn:hover {
  background-color: #c82f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(226, 53, 36, 0.4);
}
.hero-section .hero-nav-link {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  text-align: center;
}
.hero-section .hero-nav-link li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.hero-section .hero-nav-link li a {
  color: #444;
  font-size: 1rem;
  text-decoration: none;
  padding: 0 8px;
  position: relative;
  transition: color 0.3s ease;
}
.hero-section .hero-nav-link li a:hover {
  color: #e23524;
}
.hero-section .hero-nav-link li a::after {
  content: "|";
  position: absolute;
  right: -10px;
  color: #ccc;
}
.hero-section .hero-nav-link li:last-child a::after {
  content: none;
}

.latest-posts {
  background: #fafafa;
}
.latest-posts .post-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.latest-posts .post-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.latest-posts .post-box:hover img {
  transform: scale(1.05);
}
.latest-posts .post-box .post-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.latest-posts .post-box .post-image img {
  transition: transform 0.4s ease;
}
.latest-posts .post-box .post-content .post-meta span {
  font-weight: 600;
  color: #043868;
}
.latest-posts .post-box .post-content .post-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.latest-posts .post-box .post-content .post-short-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.latest-posts .post-box .post-content .btn-read-more {
  background: #043868;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.latest-posts .post-box .post-content .btn-read-more:hover {
  background: #e23524;
  color: #fff;
}

footer {
  background: #ededed;
  padding: 50px 0 40px;
}
footer h3 {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
footer ul.grid-2 li {
  flex: 0 0 48%;
  box-sizing: border-box;
}
footer ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.copyright {
  background: navy;
  color: #ccc;
  padding: 20px 0;
}
.copyright p {
  margin-bottom: 0;
  text-align: center;
}

.section-title {
  font-weight: 700;
  color: #111;
  font-size: 1.8rem;
}

.section-underline {
  width: 50px;
  height: 3px;
  background-color: #e23524;
  margin-top: 8px;
  border-radius: 2px;
}

#backToTop i {
  font-size: 1.5rem;
}
#backToTop i:hover {
  opacity: 0.8;
}

.modal-exam-enquiry-form {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-bottom: 2px solid #aaa;
}
.modal-exam-enquiry-form h2 {
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.modal-exam-enquiry-form h2:after {
  width: 50px;
  height: 2px;
  background-color: navy;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
}
.modal-exam-enquiry-form .form-group label {
  font-size: 16px;
  font-weight: 500;
}
.modal-exam-enquiry-form .form-group .form-control {
  background-color: #F0F0F0;
}
.modal-exam-enquiry-form .form-group .form-control::placeholder {
  font-size: 14px;
}
.modal-exam-enquiry-form .btn-submit {
  background: navy;
  color: #fff;
  border-radius: 3px;
  padding: 7px 15px;
  width: 100%;
  text-align: center;
  border: none;
  box-shadow: none;
}

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