.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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-around;
  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;
}
.section-wrapper :nth-child(2) {
  border-top-right-radius: 0.8rem;
}
.section-header {
  background: var(--clr-lBlue);
  color: var(--clr-primary);
  padding: 1rem;
  text-align: center;
}
.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: 16px 20px;
  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: 2.5rem 2rem 0;
}

.calculator-wrapper button i {
  font-size: 1.5rem;
}
.calculator-wrapper button {
  align-self: center;
  min-width: 150px;
}
/* Calculator Main Ends */

.result-wrapper {
  margin: 2rem;
  /* border: 1px solid var(--clr-lBlue); */
  border-radius: 0.8rem;
}

.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;
}

.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;
  }

  .input-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .calculator-wrapper .btn-wrap {
    flex-direction: row;
  }

  .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;
  }
}
