* {
  margin: 0;
  padding: 0;
  font-family: "Inter-Regular";
}
body {
  font-size: 16px;
}

.container {
  width: 1140px;
}

header {
  padding: 10px;
  background:linear-gradient(
    90deg,
    rgb(255 255 255 / 90%) 0%,
    rgb(255 246 229 / 90%) 100%
  );
  position: fixed;
  z-index: 99;
  width: 100%;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #fff9ec;

}

.top-banner {
  min-height: 600px;
  background: #0b113a url("../images/banner-bg.svg") no-repeat top right;
  background-size: 500px;
  padding-top: 100px;
}

.sign-up-btn {
  background-image: linear-gradient(45deg, #ebcefd, #bb60f3);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.sign-up-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #c266e8 8.33%, #8938bc 100%);
}
.login-btn {
  background: linear-gradient(90deg, #f9ad0c 8.33%, #e98e33 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.login-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: 2px;
  border-radius: inherit;

  background: linear-gradient(90deg, #e98e33 8.33%, #f9ae0b 100%);
}
.login-btn:hover,
.sign-up-btn:hover {
  opacity: 0.9;
}
.text-white-f {
  color: #fff;
}

span.line-vr {
  background: linear-gradient(
    180deg,
    rgba(74, 24, 119, 0.1) 0%,
    rgba(181, 49, 229, 0.1) 100%
  );
  width: 2px;
  height: 30px;
}
.menu-btn span {
  background: linear-gradient(180deg, #4a1877 0%, #b531e5 100%);
  border-radius: 5px;
  height: 2px;
  width: 100%;
  display: block;
}
button.menu-btn {
  gap: 5px 0px;
}
.h1-heading {
  font-size: 28px;
  /* font-family: "Inter-Bold"; */
  line-height: 40px;
}
.h1-heading .span-1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}
.h1-heading  span.span-2 {
  font-size: 30px;
  font-family: 'Inter-Light';
  font-weight: 100;
}

.h1-heading span.span-3 {
  font-size: 27px;
  font-family: 'Inter-Light';
  font-weight: 100;
  font-style: italic;
  margin-top: 10px;
  display: inline-block;
}
.fs-34-px{
  font-size: 34px;
}
.bg-img-right {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 10%;
}

.c-light-orang {
  background: linear-gradient(90deg, #ffba8b 0%, #fec34a 97.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ora-logo-text {
  background: linear-gradient(
    180deg,
    rgba(166, 45, 213, 0.1) 0%,
    rgba(120, 31, 167, 0.1) 100%
  );
  border: 1px solid rgba(155, 107, 193, 0.6);
  backdrop-filter: blur(17px);
  border-radius: 150px;
  padding: 20px 45px;
  margin: 15px;
}

.in-orac-text span {
  font-size: 28px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: Inter-light;
}

.bg-blur {
  background: radial-gradient(
    73.11% 73.34% at 40.8% 3.44%,
    #331fa4 0%,
    rgba(0, 0, 0, 0) 100%
  );
  transform: rotate(0.86deg);
  width: 300px;
  height: 300px;
  border-radius: 100%;
  filter: blur(20px);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 90px;
  z-index: -1;
}

img.laptop-img {
  max-width: 100%;
  top: 43px;
  width: 1000px;

}
.slider-imgs {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}
.slider-banner {
  position: absolute;
  top: 64px;
  left: -4px;
  right: 0;
  margin: auto;
  width: 788px;
  background: #000;
  height: 440px;
  /* border-radius: 10px; */
  /* overflow: hidden; */
}
.slider {
  margin: 0 auto;
  /* max-width: 770px; */
}

.menu-side {
  background: rgba(51, 57, 62, 0.6);
  box-shadow: -20px 14px 34px rgb(0 0 0 / 35%);
  backdrop-filter: blur(22px);
  border-radius: 15px;
  width: 340px;
  position: absolute;
  z-index: 99;
  color: #fff;
  right: 0;
  /* min-height: 75vh; */
  border: 2px solid rgb(120 91 125 / 37%);
  padding-bottom: 0;
  transition: 0.3s;
}

.nav-link-s {
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.nav-link-s:after {
  content: "";
  background: linear-gradient(
    90deg,
    #e98e33 8.33%,
    rgba(249, 174, 11, 0) 84.44%
  );
  height: 3px;
  width: 70%;
  display: flex;
  border-radius: 160px;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  bottom: -6px;
  left: 5px;
}
img.header-icons-link {
  opacity: 0.7;
  width: 20px;
}
.nav-link-s:hover:after, .nav-link-s:hover img.header-icons-link  {
  opacity: 1;
}

.login-signup-s {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  padding-bottom: 0;
}
.all-links {
  padding: 30px;
  margin-bottom: 50px;
}

.show-menu-side {
  display: flex !important;
}

.menu-back-drop {
  background: rgb(0 0 0 / 54%);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 19;
  display: none;
}

.sub-headings {
  color: #9743c7;
  font-size: 34px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
}
.about-section {
  padding-top: 80px;
}

.about-bg {
  background: url("../images/bg-1.svg") right 100px no-repeat;
  background-size: 50%;
  padding-top: 30px;
}

.about-img-screen {
  background: rgba(225, 224, 226, 0.7);
  border: 2px solid #f5f5f5;
  box-shadow: 0px 24px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 20px 10px;
}

.login-img1 {
  border-radius: 10px;
  max-width: 100%;
}

.features-section {
  padding-top: 60px;
  position: relative;
}
.features-section:before {
  /* content: ""; */
  background: url("../images/blur-bg.svg");
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  opacity: 0.5;
}

.features-section:after {
  content: "";
  background: url("../images/bg-2.svg") no-repeat left 170px fixed;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  opacity: 0.05;
}

.fetre-icon {
  padding: 10px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 4px 0px rgb(191 134 235 / 10%);
  border-radius: 6px;
}
.feat-bg1 {
  background: linear-gradient(
    180deg,
    rgb(105 31 151 / 13%) 0%,
    rgba(249, 234, 255, 0) 100%
  );
}
.feat-bg2 {
  background: linear-gradient(
    180deg,
    rgba(248, 172, 35, 0.22) 0%,
    rgba(249, 234, 255, 0) 100%
  );
}
.features-listing {
  width: calc(31% - 26px);
  gap: 7px 0px;
  margin-bottom: 20px;
  transition: 0.3s;
  padding: 15px;
  border-radius: 10px;
}
.features-listing:hover {
  background: #fff;
  box-shadow: 10px 10px 0px 0px #ccc;
}
.why-co-screening-in {
  width: 31%;
  gap: 7px 0px;
  margin-bottom: 20px;
  align-items: center;
}
.features-heading {
  font-size: 16px;
  margin-bottom: 5px;
  /* font-weight: normal; */
}
.features-parag {
  color: rgba(85, 85, 85, 0.6);
  line-height: 24px;
  text-align: left !important;

}
.about-content-1 p {
  line-height: 23px;
}
.why-co-screening {
  margin-top: 40px;
  padding-top: 20px;
  background: #f3f8ff;
}

img.why-co-img {
  width: 110px;
}

.fetre-icon img {
  width: 22px;
}
.in-why-co {
  margin-bottom: 25px;
  transition: 0.3s;
  padding: 15px;
  border: 1px solid #e5e7ff;
  border-radius: 10px;
}

.in-why-co:hover {
  background: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 0px 0px #f9ad0c;
}
.in-why-co .features-parag {
  text-align: left;
  color: #676767;
}
.img-check {
  width: 25px;
}

section.how-it-works {
  padding: 50px 0;
  background: #0b113a;
}

.text-123 {
  background: linear-gradient(180deg, #f9af0b 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Inter-Bold";
  font-size: 102px;
  font-weight: bold;
  position: absolute;
  right: 40px;
  opacity: 0.7;
  bottom: -60px;
}

.line-white:before {
  width: 100%;
  content: "";
  background: #fff;
  height: 1px;
  position: absolute;
  top: 27%;
  z-index: 0;
}
img.img-123 {
  position: relative;
  z-index: 11;
}
.advantages-section {
  padding: 60px 0;
}

.listing-ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  padding: 10px;
  transition: 0.3s;
}

.listing-ul li:hover {
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 5px 0px 0px #f9ad0c;
}

.cx-bg-img {
  background: url("../images/cx-bg-1.png") no-repeat top fixed;
  background-size: cover;
  padding: 70px 0;
}
.cx-oracel {
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 14px 24px rgb(0 0 0 / 35%);
  backdrop-filter: blur(12px);
  border-radius: 150px;
}

.cx-oracel {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  font-size: 22px;
  font-weight: bold;
}

.advance-cx-int {
  padding: 60px 0;
}
.line-white:nth-child(3):before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 83.65%);
}

.advance-cx-int .features-parag {
  color: #676767;
}
.advance-cx-int::before {
  content: "";
  background: url(../images/bg-1.svg) right 50px no-repeat fixed;
  background-size: 40%;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
}

.advance-cx-int::after {
  content: "";
  background: url("../images/bg-2.svg") no-repeat left bottom;
  background-size: 50%;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  opacity: 0.1;
}
.btm-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff6f6 100%);
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.company-benfits {
  padding: 60px 0;
}

.advance-cx-int .features-heading {
  font-size: 24px;
  margin-bottom: 13px;
}
.company-benfits .features-heading {
  font-size: 24px;
  margin-bottom: 13px;
}

.company-benfits .features-parag {
  color: #676767;
}

.company-benfits::before {
  content: "";
  background: linear-gradient(
    90deg,
    #f9ab0c 0%,
    rgba(170, 169, 170, 0) 46.57%,
    #7522a2 97.62%
  );

  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  opacity: 0.1;
  filter: blur(190px);
}
.pricing-sction {
  background: #f6f6f6;
  padding: 60px 0;
}
.support-mail {
  font-size: 22px;
  font-weight: 600;
  color: #551b82;
}
footer {
  padding: 50px 0 30px 0px;
  background: linear-gradient(180deg, #0b113a 29.62%, #4a1877 29.62%);
}
.contact-form {
  background: #7522a3;
  border-radius: 10px;
}

footer form {
  width: 500px;
}
.input-style {
  border: 1px solid #9972bc;
  padding: 10px 15px;
  border-radius: 3px;
  background: #4a1877;
  color: #fff;
}

footer form textarea {
  min-width: calc(100% - 32px);
  max-width: 100%;
  min-height: 80px;
  max-height: 200px;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ccc;
}

button.btn-contact {
  padding: 13px;
  width: 200px;
  border-radius: 19px;
  border: none;
  margin: auto;
  font-weight: bold;
  font-size: 16px;
}
.copy-rights {
  padding: 30px 0px 0 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(217, 217, 217, 0.2);
  margin-top: 40px;
}
.copy-rights a:hover {
  text-decoration: underline;
}

div#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(90deg, #c266e8 8.33%, #8938bc 100%);
  padding: 10px 13px;
  border-radius: 7px;
  box-shadow: 6px 6px 0px 0px rgb(0 0 0 / 50%);
  opacity: 0.5;
  display: none;
  transition: 0.3s;
}
.show:hover {
  opacity: 1 !important;
}
.show {
  display: block !important;
}
div#scroll-top img{
  filter: invert(100);
}
label#mainCaptcha {
  background: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 20px;
}
.form__form-group #refresh{
  position: relative;
  right: auto;
  height: 37px;
  top: 0;
  width: 37px;
  background-size: 55%;
}

.form__form-group.captcha-block {
  display: flex;
  gap: 12px;
}

span.validation-Texts {
  color: #f00;
  background: #fff;
  padding: 4px 15px;
  font-size: 12px;
  border-radius: 50px;
  width: fit-content;
}

.inner-page-top{
  padding-top: 100px;
}
.terms-privacy{
  line-height: 28px;
}
.terms-privacy p{
  margin-bottom: 22px;
}

.terms-privacy h3{

}

/* FAQ Section START */
.pricing-sction {
  background: #f6f6f6;
  padding: 60px 0;
}

.acc-container {
  max-width: 100%;
  width: 100%;
 
}

.acc {
  margin-bottom: 10px;
 
}

.acc-head {
  background-image: linear-gradient(90deg, #c266e8 8.33%, #8938bc 100%);
  padding: 15px 10px;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
 }
 .acc-head.active {
  border-radius: 6px 6px 0px 0px;
}
 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all .3s;
 }

 .acc-head::before {
  right: 29px;
  width: 2px;
  height: 15px;
  margin-top: -9px;
}

.acc-head::after {
  right: 23px;
  width: 15px;
  height: 2px;
  margin-top: -3px;
}

.acc-head p {
  color: #fff;
  font-weight: bold;
}

.acc-content {
  padding: 20px;
  display: none;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgb(0 0 0 / 10%);
}
        
.acc-head.active::before {
    transform: rotate(90deg);
}
.acc-content p {
  font-size: 16px;
  line-height: 24px;
}
/* FAQ Section END END */
.list-123 li{
  margin-bottom: 10px;
}
.list-123{
  padding-left: 20px;
}