@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif !important;
}

.ptop {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mtop {
  margin-top: 70px;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #062e09;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

#nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

#nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

#nav .navbar .links {
  display: flex;
}

#nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

#nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

#nav .navbar .links li a:hover {
  color: #f25623;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

#nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

#nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #062e09;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

#nav .navbar .links li:hover .htmlCss-sub-menu,
#nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 48px;
  width: 290px;
  background: #062e09;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #062e09;
}

.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background: #062e09;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width: 920px) {
  #nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }
  #nav .navbar .logo a {
    font-size: 1.5rem;
  }
  #nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  #nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  #nav {
    /* position: relative; */
  }
  .navbar .bx-menu {
    display: block;
  }
  #nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #062e09;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 1rem;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }
  #nav .navbar .links {
    display: block;
    margin-top: 20px;
    padding-left: 0;
  }
  #nav .navbar .links li .arrow {
    line-height: 40px;
  }
  #nav .navbar .links li {
    display: block;
  }
  #nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  #nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  #nav .navbar .links li:hover .htmlCss-sub-menu,
  #nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  #nav .navbar .nav-links {
    max-width: 100%;
  }
  #nav .navbar .logo a {
    font-size: 1.2rem;
  }
}
#hero-section {
  background: url("./assets/images/hero-banner.jpg");
  background-size: cover;
  margin-top: 70px;
  padding: 5rem 0;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.337254902);
  background-blend-mode: darken;
  width: 100%;
  color: #ffffff;
}

#hero-section .btn-default {
  background: #062e09;
  color: #fff;
}

#hero-section .btn-default:hover {
  background: #f25623;
  color: #fff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}

#subject-section {
  background-color: #fff5f2;
}

.subject-title {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subject-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

hr {
  width: 200px;
}

.subject-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.title {
  font-weight: bold;
}

.hero-left-content img {
  width: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-right-content {
  padding-left: 60px !important;
}

@media (max-width: 900px) {
  .hero-right-content {
    padding-left: 15px !important;
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  #hero-section {
    padding: 1rem 0;
  }
}
.left-contact h1 {
  margin-bottom: 25px;
}

.left-contact h4 {
  margin-top: 15px;
  margin-bottom: 1px;
}

.input-fild input,
.input-fild textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding-left: 10px;
  color: #7b6e6e;
}

.input-fild input {
  height: 50px;
}

.input-fild button {
  width: 125px;
  height: 50px;
  outline: none;
  background-color: #f25623;
  color: #fff;
  border: none;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.input-fild button:hover {
  background-color: #062e09;
}

.input-fild button {
  width: 125px;
  height: 50px;
  outline: none;
  background-color: #f25623;
  color: #fff;
  border: none;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.input-fild button:hover {
  background-color: #062e09;
}

.banner {
  margin-top: 70px;
}

.banner .parent-relative {
  position: relative;
}

.banner img {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner .child-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5647058824);
}

.banner .child-absolute h1 {
  font-size: 3rem;
  font-weight: bold;
}

.quiz-card-content a {
  text-decoration: none;
}

.card-border {
  border: none !important;
}

.card-footer-border {
  border-top: none !important;
}

.card-border img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.question {
  font-size: 18px;
  margin-bottom: 10px;
}

.options {
  list-style: none;
  padding: 0;
}

.option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  margin-left: 22px;
}

.checkbox {
  margin-right: 10px;
}

.quiz-option {
  background: #fff4f4;
  font-size: 1.1rem;
  border-radius: 3px;
  border: 1px solid rgba(128, 128, 128, 0.3607843137);
  padding: 5px 8px;
  max-width: 400px;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.quiz-option.right {
  background: #01a901 !important;
  color: #fff;
}

.correct-ans {
  color: #01a901;
}

.quiz-option.wright {
  background: #79e379;
  color: #fff;
}

.quiz-option.wrong {
  background: #f13b3b;
  color: #fff;
}

.wrong-ans {
  color: #f13b3b;
}

.blog-card {
  display: flex;
}

.blog-card .blog-thumbnail {
  width: 40%;
}

.blog-card .blog-content {
  width: 60%;
}

.blog-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blog-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 0 0 5px;
}

.blog-content {
  padding: 0.8rem;
}

.blog-content h5 {
  font-weight: bold;
  color: #000000;
}

.blog-question {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-question img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-question h3 {
  text-align: center;
}

.blog-card-excerpt {
  padding: 0;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 15px;
  color: rgba(94, 86, 86, 0.6274509804) !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#footer-section {
  width: 100%;
  background-color: #062e09;
}

.social-share {
  width: 100%;
  display: flex;
}

.social-share li {
  display: inline-block;
  padding: 5px;
}

.social-share li i {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }
  .blog-card .blog-thumbnail {
    width: 100%;
  }
  .blog-card .blog-content {
    width: 100%;
  }
  .blog-thumbnail img {
    border-radius: 5px 5px 0 0;
  }
}/*# sourceMappingURL=main.css.map */