:root {
.  --color-white-100: hsl(206, 5%, 100%);
{
    
}  --color-white-200: hsl(206, 5%, 96%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 9%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-red-100: hsl(349, 100%, 90%);
  --color-red-200: hsl(349, 100%, 80%);
  --color-red-300: hsl(349, 100%, 70%);
  --color-red-400: hsl(349, 100%, 60%);
  --color-red-500: hsl(349, 100%, 45%);
  --color-prim:hsl(15, 100%, 60%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.2;
}

h3 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
}

h4 {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.2;
}

h5 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}


html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    font-size: 24px; /* Adjust size as needed */
    color: #000; /* Adjust color as needed */
}

body {
  font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black-500);
  background: rgb(255 250 240);
}


body.page, body.post{
    background:rgb(255 250 240);    
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  margin: 0 auto;
  padding: 5rem 0 2rem;
}

.container {
  max-width: 80rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
    background: #FDF6EA;
    background: linear-gradient(180deg, rgb(237 226 207) 50%, rgba(255, 255, 255, 0) 100%);
}

.topsection_cat{
      background-color: var(--color-white-100);
}

.navbar {
  display: flex;
  align-items: center;
  align-content: center;
  height: auto;
  padding-top: 0.5rem;
  justify-content: space-between;
}
@media only screen and (min-width: 62rem) {
  .navbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;    
    margin: 0 auto;
  }
}

.brand {
  justify-self: start;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  max-width: 80px;
  width: 80px;
}


.kv-top{
    background-image: url(../images/shiki-japanese-kv.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
}
















@media only screen and (min-width: 62rem) {
  .search {
    justify-self: center;
    grid-column: initial;
    order: initial;
    width: 100%;
    height: auto;
  }
  .search-form {
    max-width: 30rem;
  }
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 3rem 2rem;
  background: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.45s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: inherit;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  text-transform: uppercase;
  color: var(--color-black-500);
  transition: all 0.35s ease-in-out;
}
.menu-link:hover, .menu-item.active a.menu-link{
  outline: none;
  color: var(--color-prim);
  
}
@media only screen and (min-width: 36rem) {
  .menu {
    position: relative;
    justify-self: end;
    top: 0;
    left: inherit;
    width: auto;
    height: auto;
    padding-block: 0;
    background: none;
    box-shadow: none;
    transition: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
}

.burger {
  position: relative;
  justify-self: end;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 36rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-black-100);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.d-flex{
    display: flex;
    flex-wrap: wrap;
}

.kv-top .d-flex{
    align-items: center;
    padding: 180px 0 120px;
}

.col-left {
    width: 60%;
}

.col-right {
    padding-right: 20px;
    width: 45%;
       max-width: 100%;
}

section.kv-top{
    padding:0;
}

.kv-top h2{
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--color-black-500);
    font-weight: 800;
}
.kv-top h4{
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.25;
}

.kv-top p{
    margin-bottom: 40px;
    line-height: 1.5;
    font-size: 20px;
}

.prm_button{
    font-size: 14px;
    padding: 0.7em 1.5em;
    background: ;
    border-width: 2px;
    text-transform: uppercase;
    color: var(--color-prim);    
    border-radius: 3px;
    font-weight: 800;
    background: var(--color-white-100);
    border-color: var(--color-prim);
    border-style: solid;
    transition: background-color 0.5s ease-in-out;
}   

.prm_button:hover{
    background: var(--color-prim);
    color: var(--color-black-500);
}

section{
    padding:80px 0;
}

.quick_btns{
    display:grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    
}

.qck_btn{
    background-size: 100%;
    padding:0 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;

}

.qck_btn .btn-img{
    max-width: 120px; 
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.qck_btn:hover .btn-img{
    transform: scale(1.05);
    opacity: 1;
}


.grammar span{
    color:#187e75;
}

.vocabulary span{
    color:#258ad2;    
}

.kanji span{
    color:#e10e96;
}

.reading span{
    color:#4146a2;    
}

.listening span{
    color:#be0707;
}

.qck_btn span{
    font-weight: 800;
    font-size:20px;
    text-transform: uppercase;
}

.qck_btn .test_lvls{
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.qck_btn .test_lvls a{
    border-radius: 4px;
    background: var(--color-white-100);
    padding:1px 8px;
    color: var(--color-black-500);
    border:solid 1px var(--color-black-500);
}


section.mock_test{
    background: #F7F7F7;
}

.mock_test .grid_bttns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}


.mock_test .grid_bttn{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
}

.heading-holder{
        text-align: center;
    justify-content: center;
    justify-items: center;
    position: relative;
    margin-bottom: 40px;
}

.heading-holder h3{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 800;
}

.heading-separator-wrapper{
        text-align: center;
    justify-content: center;
    justify-items: center;
    display: flex;
    align-items: center;
}

.header-separator-line{
    width: 40px;
    height: 4px;
    background-color: var(--color-prim);
}
.mock_test .grid_bttn img{
    transition: transform 0.3s ease;
}

.mock_test .grid_bttn:hover img{
    transform: scale(1.025);
    opacity: 1;
}

.about_top{
    background:rgb(255 250 240);
}


footer{
    background-color: #444348;
    background-image: url(../images/footer_bg.jpg);
    padding: 60px 0 0;
    line-height: 32px;
    text-align: center;
}

footer .cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    display: grid;
}
    
    
footer .footer_left{
    padding:20px;
}

footer .footer_logo{
    justify-self: flex-start;
    margin-bottom: 15px;
    display: block;
    width: 100px;
    filter: brightness(0) invert(1);
    opacity: .7;
}

footer .social_links{
    text-align: center;
    gap:5px;
    display: flex;
    justify-content: flex-start;
}

footer .social_links a{
    width: 28px;
    height: 28px;
    display: block;
    position: relative;
}

footer .footer_right{
    padding:20px;
}
footer .footer_right ul{
    gap: 1.5rem;
    text-align: left;
    justify-content: flex-end;
    display: flex;
}

footer .footer_right ul li ul{
    display: grid;
    gap: 1px;
}

footer .footer_right ul li ul li a{
    color: #fff;
    position: relative;
    padding-bottom: 0px;
}

footer .footer_right ul li ul li a:hover:after{
    width: 100%;
}

footer .footer_right ul li ul li a:after{
    content: "";
    width: 0%;
    position: absolute;
    bottom: 0;
    background: #fff;
    height: 1px;
    transition: all ease-in-out 250ms;
        left: 0;
}

.copyright{
background: #323232;
    text-align: center;
    color: #c4c4c4;
    padding: 7px 0;
    font-size: 13px;
    margin-top:40px;
}

.main-title-section-container {
    padding: 30px 0px;
    clear: both;
    margin: 0;
    width: 100%;
    background: #f55c24;
    margin-top: 95px;
}

.main-title-section-container h1{
    color:#fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom:15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.header.inner_hd{
    background: #FDF6EA!important;
}

.main-title-section-container h1:after{
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--color-white-100);
    left: 0;
    bottom: 7px;
}

.aioseo-breadcrumb, .aioseo-breadcrumb a{
   color: var(--color-white-100);
}
.aioseo-breadcrumb-separator{
    margin: 0px 8px;
    color: var(--color-white-100);
}

.contact .container{
    max-width: 800px;
}

.contact_form li{
    background: #ffffff;
    border: 1px solid #e2d6c1;
    padding: 0px;
    width: 100%;
    clear: both;
    overflow: hidden;
    border-radius: 3px;
    display:flex;
    margin-bottom: 0.75rem;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.contact_form label{
    font-size: 14px;
    line-height: 48px;
    padding: 9px 0 8px;
    width: 6%;
    text-align: center;
    border-right: 1px solid #e2d6c1;
    margin: 0px;
    min-width: 40px;
        display: flex;
    align-items: center;
    justify-content: center;
}

.contact_form label span{
    color: #808080;
}

.contact_form input, .contact_form textarea{
    border: none;
    padding: 13px 0 12px 2%;
    width: auto;
    margin: 0px;
    display: block;
    width: 100%;
}

.contact_form label.comment{
    align-items: flex-start;
}

.contact_form li.submit{
    background-color:transparent;
    border:none;
    display:flex;
    justify-content: center;
}

.contact_form li.submit label{
    border-right:none;
}

.contact_form li.submit input{
    max-width: 200px;
    padding: 13px 0 12px;
    background-color: #DA853D;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius:4px;
}


.contact_form li.submit input:hover{
    background:var(--color-prim);
}


.pg_jlpt h2{
    text-transform: uppercase;
    position: relative;
    padding-bottom:15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.pg_jlpt h2:after{
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background-color:#f55c24;
    left: 0;
    bottom: 7px;
}



.practice-page h3{
    text-transform: uppercase;
    position: relative;
    padding-bottom:15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.practice-page h3:after{
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background-color:#f55c24;
    left: 0;
    bottom: 7px;
}



.jlpt_content-wrapper{
    margin-bottom: 80px;
}


.jlpt_content-wrapper h3{
    margin-top:20px;
}    

.jlpt_content-wrapper h3:first-child{
    margin-top:0;
}

.jlpt_levels_cntn{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 60px;
}

.level_cntn h3{
    margin-bottom:20px;
}

.jlpt_levels_cntn .level_ttl{
    color: #f55c24;
    font-size: 45px;
    line-height: 1;
    font-weight: 800;
}


.jlpt_level{
    display: flex;
    gap: 20px;
}



.jlpt_content-wrapper ul{
    list-style: circle;
    margin-left: 20px;
    line-height: 1.8;
}

.jlpt_content-wrapper ul li{
    list-style: circle;
}

.jlpt_content-wrapper ul li::marker{
    font-size:24px;
}

.question-box{
    background: var(--color-white-100);
    border-radius: 10px;
    padding:20px;
    width: 95%;
    max-width: 500px;
    margin: 0 auto 20px;
}

.question-box .quiz{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.question-box .quiz p strong{
    border-bottom: solid 2px;
}

.answer__item{
    display: block;
    position: relative;
    cursor: pointer;
    padding: 0.75rem;
    margin: 0.25rem 0;
    border-radius: 5px;
    border: solid 2px rgba(220,220,220);
    display: flex;
    gap: 10px;
    align-items: center;
}

.answer__item span.li-number{
    border-radius: 50%;
    border: solid 1px;
    width: 20px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.answer__item:hover{
    border: solid 2px rgba(155,155,155);
}

.level-grid{
    margin: 30px 0;
}

.level-grid h2{
    margin: 0 0 20px;
}

.level-card{
    background: #fff;
    padding: 12px 15px;
    border-radius: 0 10px 10px 10px;
    margin-bottom: 18px;
    border: 1px solid #0000001a;
}


.level-content {
    display: flex;    
}

.level-card .quick_btns {
    display: flex;
}

.level-card .qck_btn{
    padding: 0;
}


.level-card .qck_btn span {
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 7px;
    border: solid 2px;
    padding: 2px 10px 0;
    transition: all 0.5s ease-in-out;
}

.level-card .qck_btn:hover span{
    background: #f55c24;
    color: #fff;
}

.practice_title, .test_submit{
    width: 95%;
    max-width: 800px;
    margin: 0 auto 20px;
}

.practice_title h2{
    font-size: 20px;
    color:var(--color-prim);
}

.results-wrapper .practice_title h2{
    text-align: center;    
}

.test_submit{
    display: flex;
    justify-content: center;
}

.test_submit button, .test_submit .button{
    max-width: 200px;
    padding: 13px 0 12px;
    background-color: #DA853D;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    width: 100%;
    text-align: center;
}

.test_submit button:hover, .test_submit .button:hover{
    background:var(--color-prim);
}

.practice-benefits.jlpt_content-wrapper{
    margin-bottom:0;
    padding-bottom:20px;
}

/*
.answer__item::before{
    content: "";
    width:20px;
    height: 20px;
    border-radius: 50%;
    border:solid 1px #303030;
    background: #fff;
    display: block;
    position: absolute;
    left: 0.75rem;
    
}


.answer__item::after{
    content: "";
    width:19px;
    height: 19px;
    border-radius: 50%;
    border:solid 1px #303030;
   
    opacity:0;
    position: absolute;
    left: 0.75rem;
}

*/


.result{
    display: flex;
    position: relative;
    cursor: pointer;
    padding: 0.75rem;
    margin: 0.25rem 0;
    border-radius: 5px;
    border: solid 2px #bbbbbb;
    display: flex;
    gap: 10px;
    align-items: center;
}

.result.correct { color: #2e7d32; border: solid 2px #2e7d32;}
.result.incorrect { color: #c62828; border: solid 2px #c62828;}

.result.correct span{ color: #2e7d32;}
.result.incorrect span{ color: #c62828;}

.crrct_answer{
    display: flex;
    gap: 10px;
}


.question-box input[type="radio"]{
  display: none;
}


.score-percentage{
    font-size: 60px;
    color: rgb(229, 0, 26);
    font-weight: bold;
    letter-spacing: -2px;
    line-height: 1;
    margin: 20px;
}

.results_score{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.answer_wrap{
    display: flex;
    flex-direction: column-reverse;
}


.final-score {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.score-number {
    font-size: 22px;
    font-weight: 600;
}

.score-percentage {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
}

.score-grade {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Grade Colors */
.grade-a .score-percentage { color: #2e7d32; } /* Dark Green */
.grade-b .score-percentage { color: #388e3c; }
.grade-c .score-percentage { color: #f9a825; } /* Yellow */
.grade-f .score-percentage { color: #c62828; } /* Red */

/* Background tone */
.grade-a { background: #e8f5e9; }
.grade-b { background: #f1f8e9; }
.grade-c { background: #fff8e1; }
.grade-f { background: #ffebee; }

.score-message {
    font-size: 16px;
    margin-top: 15px;
}



:valid .answer__item--is-correct{
    border: solid 1px #f55c24;
}



/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  width: 700px;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  padding:6px 25px;
  border-radius: 9999px;
  font-size: 14px;
  text-align: center;
  color: #DA853D;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border: solid 2px #DA853D;
  cursor: pointer;
}
.tab_item:hover {
  border: solid 2px var(--color-prim);
  color: var(--color-prim);
  background-color:var(--color-white-100);
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: var(--color-prim);
  color: #fff;
}

.answer__reveal-text {display: none;}
:valid .answer__reveal-text {display: block}

:checked + .answer__item{color:var(--color-prim); border: solid 2px var(--color-prim);}

:checked + .answer__item--is-correct{background-color: #3db540; #f6f6f6;} 

:checked + .answer__item .answer__icon{display: inline-block }


form{ counter-reset: quiz-score }
:checked + .answer__item--is-correct { counter-increment: quiz-score }
.score:after { content: counter(quiz-score) "/" attr(data-question-count) }


/********************************************************************************************************/

.timer { font-size:20px; color:red; margin:10px 0; }

.question-box { margin-bottom:20px; padding:15px; border:1px solid #ddd; }

.btn-start, .btn-next, .btn-retry {
    max-width: 200px;
    padding: 13px 12px 12px;
    background-color: #DA853D;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.section-intro{
    background: var(--color-white-100);
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.section-intro .jlpt-level{
    font-size: 52px;
    font-weight: 400;
}

.section-intro p{
    font-size: 1.75rem;
    line-height: 1.6;
}

.section-intro .time_limit{
    font-size: 1.5rem;
}

.jlpt-test-wrapper .container{
    max-width: 800px;
    width: 95%;
}


.progress-bar{
    margin-bottom: 40px;
}

.progress {
    position: relative;
    overflow: hidden;
    width: auto !important;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    height: 24px;
}

.progress-fill{
    height: 16px;
    border-radius: 3px;
        display: block;
    float: left;
    width: 0%;
    height: 100%;
    box-shadow: inset 0px -1px 2px rgba(0, 0, 0, 0.1);
    transition: width 0.8s ease-in-out;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
    background-color:#4caf50;
}

.progress-bar p{
    display: none;
}


.subsection .subsection_title p{
    font-size: 18px;
    color: var(--color-prim);
    font-weight: 600;
    display: flex;
}


.subsection .subsection_title p strong{
    padding-right: 10px;
    min-width: 105px;
}


.subsection{
    margin-bottom: 60px;  
}

.subsection .subsection_title .sub-intro{
    margin-bottom: 30px    
}



.section-questions #timer{
    position: fixed;
    top: 100px;
    padding: 9px 10px 6px;
    background-color: #fff;
    font-size: 20px;
    right: 0;
    border-radius: 5px 0 0 5px;
    border: solid 1px #ddd;
    border-right: 0;
}

.result-card {
    background: #fff;
    padding: 12px 10px 8px;
    border-radius: 2px;
    margin-bottom: 1px;
    border: 1px solid #0000001a;
    display: flex;
    justify-content: space-between;
}

.hero-wrap {
    padding: 0rem 1.25rem 2rem;
    text-align: center;
        width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-blue {
    background: #E6F1FB;
    color: #0C447C;
}

.badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-teal {
    background: #E1F5EE;
    color: #085041;
}

.badge-purple {
    background: #EEEDFE;
    color: #3C3489;
}


.main-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 0.6rem;
}

.main-title {
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

.main-title span {
    color: #185FA5;
}

.divider {
    width: 48px;
    height: 3px;
    background: #185FA5;
    border-radius: 2px;
    margin: 0 auto 1.15rem;
}

.sub-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin: 0 auto 1rem;
    line-height: 1.5;
    text-align: left;
}


.desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    max-width: 460px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}


#main-form{
        grid-template-columns: repeat(5, minmax(0, 1fr));
            gap:12px;
            display: grid;
            align-items: flex-end;
}


#degree-compare-form{
    display: flex;
      gap:12px;
       align-items: flex-end;
    
}


#main-form .column, #degree-compare-form .column{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}

#main-form .column input, #main-form .column select, #main-form .column button, #degree-compare-form .column select, #degree-compare-form .column button{
    width: 100%;
    border: lab(75 -8.37 -15.71) solid 1px;
    padding: 10px 4px;
    border-radius: 4px;
    background: #fff;
}

#main-form .column label, #degree-compare-form .column label{
    color: #656565;
    font-size: 12px;
    text-transform: uppercase;
}

#main-form .column button, #degree-compare-form .column button{
    text-transform: uppercase;
    padding: 11px 4px 10px;
    transition: all 0.5s ease-in-out;
    background: #4146a2;
    color: #fff;
}


#degree-compare-form .column button{
    min-width: 145px;
}


#main-form .column button:hover, #degree-compare-form .column button:hover{
    background:#252a77;
}

.disclaimr{
    padding: 5px;
    margin-top: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #856404;
  background-color: #fff3cd; /* Soft yellow for warnings */
  border-color: #ffeeba;
  font-size:13px;
}
 
.filter-form{
background: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid #0000001a;
    overflow: hidden;
}
#filter-form{
    display: flex;
}

.filter_label{
    width: 20%;
    background-color: #666666;
    padding: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.filter-form .column{
width:100%;
    text-align: left;
}

.noresults_fnd{
    font-size: 21px;
    color: var(--color-prim);
    border: solid;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.filter-form .column select{
    width: 100%;
}

.filter-form .column-block{
    padding: 8px 15px 9px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    
}

.filter-form select{
    width: 100%;
    border: lab(75 -8.37 -15.71) solid 1px;
    padding: 10px 4px;
    border-radius: 4px;
}

.filter-form label {
    color: #656565;
    font-size: 12px;
    text-transform: uppercase;
    display: none;
}

.result-count{
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
}

.result-count span{
    color:#185FA5;
}

.result-card .class_column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.result-card .class_column p{
    font-weight: 500;
    color: #666;
    font-size: 15px;
}

.result-card .class_column h3{
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 0;
}


.couese-ryt{
    display: flex;
    flex-direction: column;   
    align-items: flex-end;
}

.couese-ryt .cutoff_marks{
    font-size: 14px;
}

.bdge{
    background-color: #d0fae5;
    border: #007a6c solid 1px;
    border-radius: 4px;
    padding: 1px 4px 0;
    font-size: 12px;
    color:#007a6c;    
}



.blog-list-wrap {
  max-width: 960px;
  margin: 40px auto;
}

.blog-list {
    position: relative;
    margin: auto;
    background: #fff;
    padding: 16px;
    border-radius: 5px;
    transition: all 0.3s;
    margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .blog-list {
    width: 100%;
  }
  .blog-list:not(:first-child) {
    margin: 40px auto;
  }
}
@media screen and (max-width: 1200px) {
  .blog-list {
    max-width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .blog-list {
    margin: 180px 20px;
  }
}
.blog-list__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-list__item {
    flex-direction: column;
  }
}
.blog-list__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-list__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #62449e 0%, #fd3838 74%);
  border-radius: 20px;
  opacity: 0.5;
}
.blog-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-list__img {
    transform: translateY(-50%);
    width: 100%;
  }
}
.blog-list__content {
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .blog-list__content {
    margin-top: -70px;
    text-align: center;
    padding: 0 15px;
  }
  .blog-list__content > * {
    transform: translateY(-25px);
    transition: all 0.4s;
  }
}
.blog-list__day {
  color: #7b7992;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}
.blog-list__title a{
    color: #0d0925;
}    

.blog-list__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 5px;
}
.blog-list__text {
    color: #4e4a67;
    margin-bottom: 10px;
    line-height: 1.5em;
    text-align: justify;
}
.blog-list__button {
    display: inline-flex;
    background: #4146a2;
    padding: 9px 22px;
    border-radius: 50px;
    color: #fff;
    /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    font-size: 14px;
}

.blog-list__button:hover{
        background: #252a77;
}

@media screen and (max-width: 768px) {
  .blog-list__button {
    width: 100%;
  }
}

.ie-text {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  text-align: center;
  background: rgba(240, 52, 52, 0.8);
  padding: 10px 0;
  color: #fff;
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ie-text {
    display: block;
  }
}

.blog-post-info p{
    margin-bottom: 30px;
}




.blog-post-info h4{
    margin-top: 10px;
    margin-bottom: 10px;
}



.pro_tip{
    color: #777;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    background-color: #fff;
    font-style: italic;
    padding: 15px 40px 13px 30px !important;
    border-left:lab(75 -8.37 -15.71) 4px solid;
    margin: 0 0 40px;
    padding: 20px 0 0;
    position: relative;
    width: 95%;
}

.pro_tip.safe{
    color: #1d7a4a;
    border-left:#1d7a4a 4px solid;
    background-color: #eaf5ee;
}

.pro_tip.borderline{
    color: #b07315;
    border-left:#b07315 4px solid;
    background-color: #fef6e4;
}

.pro_tip.risky{
    color: #a32d2d;
    border-left:#a32d2d 4px solid;
    background-color: #fcebeb;
}


.blog-post-info table{
    background: #f2f2f2;
    width: 100%;
    margin-bottom: 20px;
}

.blog-post-info table.normal td{
    background: #fff;
}

.blog-post-info table td{
    padding:2px 4px;
}

.blog-post-info table td p{
    margin-bottom: 0;
}

table .risky{
    color: #a32d2d;
    border:#a32d2d 1px solid;
    background-color: #fcebeb;
}

table .safe{
    color: #1d7a4a;
    border-left:#1d7a4a 1px solid;
    background-color: #eaf5ee;
}

table .borderline{
    color: #b07315;
    border-left:#b07315 1px solid;
    background-color: #fef6e4;
}

table .topmarks{
    color: #185fa5;
    border-left:#185fa5 1px solid;
    background-color: #ebf3fb;
} 


.tags-cld {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tags-cld a {
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #777;
    padding: 2px 18px 3px;
    border:solid 1px;
    font-size:13px!important ;
}








.page_cntn p{
    margin-bottom: 30px;
}

.page_cntn h3{
    margin-top: 10px;
    margin-bottom: 10px;  
        color: #185FA5;
}


.page_cntn h4{
    margin-top: 10px;
    margin-bottom: 10px;
}


.tab_btn_holder{
    display: flex;
        gap: 2px;
    margin-top: 25px;
}



.tab_btn_holder a{
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    
    border: 1px solid #0000001a;
    border-bottom: none;
    box-shadow: #f9f9f9;
    box-shadow: 0 -5px 10px rgba(212, 212, 212, .4);
    color: #000;
    background: rgb(255 250 230);
   
}


.tab_btn_holder a:hover{
    background: #fff;
    color:var(--color-prim);
    
}



.tab_btn_holder a.active{
     border-top: solid 3px var(--color-prim);
      color:var(--color-prim);
      background: #fff;
      margin-bottom: -1px;
}


.uni-card-wrap{
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            display: grid;
}

.uni-card{
        padding: 8px 15px 9px;
    border: #007a6c solid 1px;
    border-radius: 4px;
    font-size: 12px;
    background-color:#fff;
}


.uni-card .uni-name{
    font-size:15px;
    margin-bottom: 2px;
    font-weight: 600;
}

.uni-card .cutoff span{
    font-weight: 800;
    font-size: 15px;
     color: #007a6c
}

.uni-card .cutoff{
    font-size: 14px;
   
    
    
}

.badge-low {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}


.results-wrap h3
    {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.results-wrap h3 span{
    color:var(--color-prim);
}

.error-box{
    border-radius: 10px;
    padding:10px;
    background: #ffdede;
    border:#ff0000 solid 1px;
    color:#ff0000;
    
}





@media screen and (max-width: 550px){
	.pc{
		display: none!important;
	}
	
	.sp{
		display: block!important;
	}
	
	
	.result-card {
        flex-direction: column;
        position: relative;
	}
	
	.couese-ryt {
    align-items: flex-start;
    }
    
    .bdge {
    position: absolute;
    right: 10px;
    top: 10px;
}

.filter-form .column-block{
       flex;
       flex-direction: column;
}

.filter_label {
    width:100%;
}	

#filter-form {
    display: flex;
    flex-direction: column;
}
#main-form {
    display: flex;
    flex-direction: column;
}

#main-form .column {
    width: 100%;
}

	
	
}
