/* Reset */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "nato sans", "Arial", sans-serif;
}

.nav-lks {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 14px;
    color: #7a7a7a;
}

    .nav-lks li {
        cursor: pointer;
    }
    .btn-active {
        color: #1f2f5c;
        font-weight:700;
    }



.hdr {
    text-align: left;
    padding: 0 20px;
    color: #4f71d1;
    font-size: 20px;
    font-weight: 600;
}

.dtl {
    font-size: 14px;
    line-height: 1.6;
    color: #7a7a79;
    padding: 0 20px;
    text-align:justify
}

.hdr-t1 {
    text-align: left;
    padding: 0 20px;
    color: #1f2f5c;
    font-size: 20px;
    font-weight: 600;
}

table {
    font-size: 14px; 
    color: #7a7a79;
}

.hdr p {
    font-size: clamp(30px, 5vw, 70px);
    font-weight: 700;
    color: #1f2f5c;
    margin-bottom: 24px;
    margin-top: clamp(100px, 5vw, 80px);
}





/* Hero Section */ 
.hero {
    min-height: calc(20vh - 0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 0px; 
}

    .hero h1 {
        font-size: clamp(16px, 5vw, 40px);
        font-weight: 600;
        color: #1f2f5c;
    }
     

     