@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:root {
  --text-blue: #1e7be2;
  --box-blue: rgba(0, 186, 242, 1);
  --text-white: rgba(255, 255, 255, 1);
  --text-black: #000000;
  --text-gray: #474747;
  --light-blue: #f1f6ff;
  --dark-blue: #014998;
  --light-gray: #c3c3c3;
  --btn-color: #ee4823;
  --text-dark-blue: #0c64c6;
}

/* font styles */
.font-45-700 {
  font-size: 45px;
  font-weight: 700;
}

.font-40-700 {
  font-size: 40px;
  font-weight: 700;
}

.font-26-600 {
  font-size: 26px;
  font-weight: 600;
}

.font-22-600 {
  font-size: 25px;
  font-weight: 600;
}

.font-18-400 {
  font-size: 18px;
  font-weight: 400;
}

.font-27-700 {
  font-size: 20px;
  font-weight: 700;
}

.font-19-400 {
  font-size: 19px;
  font-weight: 400;
}

.font-16-400 {
  font-size: 16px;
  font-weight: 400;
}

.font-16-700 {
  font-size: 16px;
  font-weight: 700;
}

.font-18-400 {
  font-size: 18px;
  font-weight: 400;
}

.font-18-700 {
  font-size: 18px;
  font-weight: 700;
}

.font-60-700 {
  font-size: 60px;
  font-weight: 700;
}

.font-35-700{
  font-size: 35px;
  font-weight: 700;
}
.font-25-700{
  font-size: 25px;
  font-weight: 600;
}
.font-130-600{
  font-size: 130px;
  font-weight: 600;
}
/* color styles */
.color-gray {
  color: var(--text-gray);
}

.color-light-gray {
  color: var(--light-gray);
}

.color-black {
  color: var(--text-black);
}

.color-blue {
  color: var(--text-blue);
}

.color-dark-blue {
  color: var(--dark-blue);
}

.color-text-dark-blue {
  color: var(--text-dark-blue);
}

.color-white {
  color: var(--text-white);
}

.color-blue-linear {
  background: linear-gradient(90deg, #4b97ee 48.36%, #005abe 70.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.w-90 {
  width: 90%;
}

/* css */
#section-one {
  background: linear-gradient(
      105.64deg,
      rgba(227, 237, 255, 0.2) 0.79%,
      rgba(190, 213, 255, 0.2) 15.35%
    ),
    url(https://cdn.funnel.kryoni.com/pay-per-use-peer-review-system/box-background.webp);
  background-size: cover;
}

#section-one .logo {
  width: 250px;
}

#section-one .funnel-one-crm {
  background: linear-gradient(90.33deg, #3c74b3 1.85%, #004898 99.75%);
  box-shadow: 0px 0px 6px 0px #00000026;
  border-radius: 20px;
  width: 90%;
  margin-left: auto;
}

#section-one .actions input {
  width: 48%;
}

#section-one .actions .submit-input {
  background: var(--btn-color);
  color: var(--text-white);
  border: none;
}

#section-one .actions .reset-input {
  background: var(--text-black);
  color: var(--text-white);
  border: none;
}

#section-two {
  padding: 4rem 0;
}

#section-three {
  padding: 4rem 0;
  background: url(https://cdn.funnel.kryoni.com/pay-per-use-peer-review-system/traditional-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#section-three .center-main-heading {
  width: 75%;
  margin: auto;
}

#section-three .feature-card {
  background-color: var(--text-white);
  box-shadow: 0px 0px 5px 0px #00000040;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#section-three .feature-card p {
  width: 90%;
}

#section-four {
  padding: 4rem 0;
}

#section-four .feature-ul {
  list-style: none;
}

#section-four .feature-ul li {
  margin-bottom: 40px;
}

#section-four .feature-ul img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

#section-four .ul-container {
  padding-top: 4rem;
}

#section-five {
  padding: 4rem 0;
  background: url(https://cdn.funnel.kryoni.com/pay-per-use-peer-review-system/how-works.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#section-five .work-card-container {
  transition: 0.5s ease-in-out;
  background-color: var(--text-white);
  box-shadow: 0px 0px 5px 0px #00000040;
  padding: 15px 20px;
  border-radius: 20px;
  cursor: pointer;
}

#section-five .work-card-container:hover {
  transition: 0.5s ease-in-out;
  background-color: var(--dark-blue);
  color: var(--text-white);
}

#section-five .work-card-container:hover .color-light-gray {
  color: var(--text-white);
}

#section-five .work-card-container:hover .color-gray {
  color: var(--text-white);
}

#section-five .work-card-container:hover .scene-icon {
  filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(11deg)
    brightness(106%) contrast(101%);
}

.scene-icon {
  width: 60px;
  height: 60px;
}

#section-six {
  padding: 4rem 0;
}

#section-six .center-main-heading {
  width: 60%;
  margin: auto;
}

#section-six .pricing-container {
  /* width: 70%; */
  margin: 40px auto 40px auto;
}

#section-six .pricing-card {
  border: 1.5px dashed #909090;
  padding: 10px 25px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

#section-six .pricing-card:hover {
  border: 1.5px dashed transparent;
  background: linear-gradient(180deg, #3c74b3 0%, #004898 100%);
  box-shadow: 0px 0px 4px 0px #00000040;
  color: var(--text-white);
  transition: all 0.5s ease-in-out;
}

#section-six .pricing-card:hover .color-black {
  color: var(--text-white);
}

#section-six .pricing-card:hover .color-gray {
  color: var(--text-white);
}

#section-six .pricing-card:hover .color-dark-blue {
  color: var(--text-white);
}
#section-six .earlybird{
  color: rgba(0, 72, 152, 1);
}
#section-six .pricing-card:hover .earlybird{
  color: var(--text-white);
}

.request-button {
  padding: 7px 20px;
  background: var(--btn-color);
  color: var(--text-white);
  border: none;
  border-radius: 10px;
}

#section-seven {
  padding: 0rem 0 4rem 0;
}

#section-seven .start-container {
  background: url(https://cdn.funnel.kryoni.com/pay-per-use-peer-review-system/start-using.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
  #section-one .logo-container {
    text-align: center;
  }

  #section-one {
    text-align: center;
  }

  #section-one .logo {
    width: 40%;
  }

  .font-45-700 {
    font-size: 24px;
    font-weight: 700;
  }

  .font-26-600 {
    font-size: 20px;
    font-weight: 600;
  }

  .w-90 {
    width: 100%;
  }

  .font-18-400 {
    font-size: 16px;
    font-weight: 400;
  }

  #section-one .funnel-one-crm {
    width: 100%;
  }

  .font-19-400 {
    font-size: 20px;
    font-weight: 400;
  }

  #section-two {
    padding: 2rem 0;
    text-align: center;
  }

  #section-three {
    padding: 0rem 0 2rem 0;
    text-align: center;
  }

  #section-three .center-main-heading {
    width: 100%;
  }

  #section-three .challenges img {
    width: 60px !important;
    height: 60px !important;
  }

  #section-four {
    padding: 2rem 0;
  }

  #section-four .ul-container {
    padding-top: 2rem;
  }

  #section-four .feature-ul {
    padding: 0px;
  }

  #section-four .feature-ul li {
    margin-bottom: 15px;
  }

  #section-five {
    padding: 0rem 0 2rem 0;
    text-align: center;
  }

  #section-five .how-works .img-container {
    min-width: 70px !important;
    width: 70px !important;
    height: 70px !important;
    background-color: var(--text-white);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 0px 2px 0px #00000040;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  #section-five .how-works .img-container img {
    object-fit: contain;
  }

  #section-six {
    padding: 2rem 0;
  }

  #section-six .center-main-heading {
    width: 100%;
  }

  #section-six .pricing-container {
    width: 100%;
    margin: 20px auto 20px auto;
  }

  #section-six .pricing-span {
    line-height: 35px;
  }

  .font-60-700 {
    font-size: 40px;
    font-weight: 500;
  }

  #section-six .pricing-card {
    padding: 30px;
  }

  #section-six .pricing-card:hover .color-text-dark-blue {
    color: var(--text-white);
  }

  .font-40-700 {
    font-size: 25px;
  }

  .font-22-600 {
    font-size: 20px;
    font-weight: 400;
  }

  .font-27-500 {
    font-size: 20px;
    font-weight: 500;
  }
  .font-35-700{
  font-size: 20px;
}
.font-25-700{
  font-size: 16px;
}
.font-130-600{
  font-size: 60px;
}
#section-six .pricing-card {
  padding: 10px 25px;
}
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
  .image-center {
    text-align: start !important;
  }

  #section-one .logo-container {
    text-align: start !important;
  }

  #section-one {
    text-align: start !important;
  }

  #section-four .ul-container {
    padding-top: 0px !important;
  }

  #section-four .feature-ul {
    padding: 0px;
    margin-top: 20px !important;
  }

  .font-45-700 {
    font-size: 30px !important;
    font-weight: 700;
  }

  #section-three {
    padding: 3rem 0 3rem 0 !important;
    text-align: center;
  }
}

@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .font-45-700{
    font-size: 35px;
  }

  #section-three {
    padding: 3rem 0;
  }

  .h-100.feature-card div.me-3{
    margin-right: 0px !important;
  }
}

@media (min-width: 992px) and (max-width: 1499.98px) {
   .font-35-700{
  font-size: 26px;
}
.font-25-700{
  font-size: 20px;
}
.font-130-600{
  font-size: 60px;
}
#section-six .pricing-card {
  padding: 10px 25px;
  min-height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section-six .test{
  width: 32%;
}
}