.hide-section {
  display: none !important;
}
.sec-title {
  font-size: 1.2rem;
}
.comm-para p {
  font-size: 0.9rem;
}

/* Calculator Main */
.calculator-wrapper {
  border: 1px solid var(--clr-lBlue);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 3.5rem 0 1rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
}

.section-wrapper {
  margin: -3.5rem 0 3rem;
  border-bottom: 2px solid var(--clr-lBlue);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.section-wrapper :nth-child(1) {
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}

.section-header {
  background: var(--clr-lBlue);
  color: var(--clr-primary);
  padding: 1rem;
  text-align: center;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.section-header.active {
  font-weight: 600;
  border-bottom: 2px solid var(--clr-primary);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 2rem;
}

.calculator-wrapper input,
.calculator-wrapper select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--clr-lBlue);
  border-radius: 12px;
  font-family: var(--input-font);
  font-size: var(--input-fs-main);
  background: transparent;
  color: var(--clr-primary);
}

/* .calculator-wrapper label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-primary);
} */

.calculator-wrapper .btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 2rem 0;
}

.calculator-wrapper button i {
  font-size: 1.5rem;
}
.calculator-wrapper button {
  align-self: center;
  min-width: 150px;
}
/* Calculator Main Ends */


/* Table Start */
.test-table {
  width: 100%;
}

.test-table td {
  padding: 0.8rem;
}

.test-table th:nth-child(1), 
.test-table td:nth-child(1) {
  width: 10%;
}

.test-table td {
	vertical-align: inherit;
}

.test-tables {
  margin: 2rem 0 0.5rem;
}

.test-tables .error-msg {
  text-align: center;
  padding: 1.5rem 0 0;
}
/* Table End */

.calculator-wrapper .form-field {
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  border-radius: 12px;
}

.input-wrap {
	display: grid;
	grid-template-columns: 70% auto;
	place-items: center;
}

.input-wrap .form-field {
  border: none;
}

.input-wrap div {
  display: flex;
  align-items: center;
  color: rgba(218, 36, 29, 0.70);
}

.input-wrap div i {
  color: rgba(218, 36, 29, 0.70);
  font-size: 25px;
  font-weight: 500;
}

.input-wrap .cancel-txt {
  display: none;
}

table .button {
  padding: 0.1rem 0.5rem;
  border-radius: 0.4rem;
  min-width: 5px;
  background: var(--input-error);
}

.result-wrapper {
  margin: 2rem;
  /* border: 1px solid var(--clr-lBlue); */
  border-radius: 0.8rem;
  scroll-margin-top: 10rem;
}

.result-wrap {
  padding: 1rem;
  /* border: 1px solid var(--clr-primary); */
  border-radius: 0.8rem;
  background: var(--clr-lBlue);
}

.result-wrap p {
  font-size: 0.9rem;
  text-transform: capitalize;
}

#result-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.cta-wrap {
  margin: 1rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-wrap a {
  align-self: center;
}

.error-msg {
  font-size: 0.9rem;
  color: var(--input-error);
  margin: 0;
  padding: 0.5rem;
}

#message {
  margin: -1rem 0 1rem;
  text-align: center;
}

/* Content CSS */

.cgpa-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2rem;
}

.cgpa-sticky-div {
  position: relative;
  height: 100%;
}
.cgpa-img {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.benefit-img-wrap,
.benefit-content {
  width: 100%;
}
.cgpa-box {
  padding: 1.8rem;
  margin-bottom: 40px;
  border-radius: 44px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(200deg, #c6d3e3, #ffffff, #dde5ee) border-box;
}
.cgpa-count {
  color: #fff;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 2px #ff4524;
  font-size: 45px;
  font-weight: 600;
}
.cgpa-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-secndry);
  margin-bottom: 16px;
  text-transform: capitalize;
}

@media screen and (min-width: 1080px) {
  .sec-title {
    font-size: 2.5rem;
  }
  .comm-para p {
    font-size: 1rem;
  }

  .calculator-wrapper .btn-wrap {
    flex-direction: row;
  }

  .input-wrapper {
    margin: 0 10rem;
  }

  /* .test-table {
    width: 70%;
  } */

  .test-table td:nth-child(3) {
    width: 15%;
  }

  .test-table td {
    padding: 1.5rem;
  }

  .test-tables {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .input-wrap {
    grid-template-columns: 60% auto;
  }

  .input-wrap .cancel-txt {
    display: block;
  }

  .result-wrapper {
    padding: 1rem;
  }

  .cgpa-content-wrap {
    flex-direction: row;
    margin-top: 6rem;
  }

  .cgpa-img-wrap {
    display: block;
    width: 40%;
  }

  .cgpa-content {
    width: 50%;
  }
  .cgpa-box {
    padding: 3.8rem;
  }
  .cgpa-title {
    font-size: 1.5rem;
  }
}
