/* ----- Global Font ----- */
body, h1, h2, h3, p, a, button {
  font-family: 'Plus Jakarta Sans', serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

body{
    background-color: #080807;
}

.inst_content {
    margin: 0 5%;
}
.termssty h1{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}
.termssty h2{
    margin-top: 50px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.25rem;
}
.termssty h3{
    margin-bottom: 10px !important;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.termssty p{
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    line-height: 28px;
}
.termssty h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px !important;
    margin-top: 30px;
    color: #fff;
}
.termssty li {
    padding: 5px 0;
    font-weight: 400;
    color: #fff;
}
.bannersec {
    padding: 3rem 0rem 1rem 0rem;
    text-align: left;
}
.bannersec h1,
.bannersec h3{
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.sub_content h3 {
    margin-top: 20px;
}
.bannersec p{
    color: #fff;
    font-style: italic;
    margin-bottom: 0px;
}
.termssty{
    padding: 0px 10px 3rem 0;
}

.termsty ul li {
    color: #fff;
    list-style: circle;
}



.hero {
  min-height: 80px; /* flexible instead of fixed */
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #202020;
  background-color: #080807; /* optional for contrast */
}

.hero .header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}

.hero .header_btn {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .header_btn .login_btn {
  background-color: #0F67D3;
  color: #fff;
  padding: 0 28px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.hero .header_btn .login_btn:hover {
  cursor: pointer;
  background-color: #005bb5;
}

.hero .header_btn .secondary_btn {
  border: 1px solid #0F67D3;
  color: #0F67D3;
  background-color: transparent;
  padding: 0 28px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .header_btn .secondary_btn:hover {
  cursor: pointer;
  background-color: #0F67D3;
  color: #fff;
}

/* Mobile fix */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 70px;
  }

  .hero .header {
    padding: 10px 16px;
  }

  .hero .header_btn {
    gap: 8px;
  }

  .hero .header_btn .login_btn,
  .hero .header_btn .secondary_btn {
    font-size: 14px;
    height: 36px;
    padding: 0 20px;
  }
}


.footer {
  padding: 0px 5% 30px 5%;
  background-color: #080807;
  display: flex;
  justify-content: space-between;
}

/* Tablet and below */
@media screen and (max-width: 1024px) {
  .footer {
    padding: 50px 5% 30px;
    background-color: #080807;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.footer .footer_logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer p {
  color: #CACFD6;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .footer p {
    font-size: 14px;
    text-align: center;
  }
}

.footer .footer_nav {
  display: flex;
  align-items: center;
}

.footer .footer_nav ul {
  display: flex;
  gap: 24px;
  margin: 0px;
  padding: 0;
}

.footer .footer_nav ul li {
  list-style: none;
}

.footer .footer_nav ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media screen and (max-width: 767px) {
  .footer .footer_nav ul li a {
    font-size: 14px;
  }
}

.footer .footer_nav ul li a:hover {
  color: #0F67D3;
}
