@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif !important;
  background-color: #000;
}

/* Start Common CSS */
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

.fontSize95 {
  font-size: 95px;
}

.fontSize68 {
  font-size: 68px;
}

.fontSize48 {
  font-size: 48px;
}

.fontSize40 {
  font-size: 40px;
}

.fontSize36 {
  font-size: 36px;
}

.fontSize30 {
  font-size: 30px;
}

.fontSize26 {
  font-size: 26px;
}

.fontSize24 {
  font-size: 24px;
}

.fontSize20 {
  font-size: 20px;
}

.fontSize18 {
  font-size: 18px;
}

.fontSize16 {
  font-size: 16px;
}

.fontSize14 {
  font-size: 14px;
}

.fontSize12 {
  font-size: 12px;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.textWhite {
  color: #ffffff;
}

.textGray {
  color: #ffffff80;
}

.textPink {
  color: #e6a8ff;
}

.flexBox {
  display: flex;
  align-items: center;
}

::placeholder {
  color: #d2d8e970;
}

.mainHeading {
  text-align: center;
  margin-bottom: 78px;
}

.newsReaderFont {
  font-family: "Newsreader", serif;
}

.lexendFont {
  font-family: "Lexend", sans-serif;
}

input:focus-visible {
  outline: none;
}
/* End Common CSS */

/* Start Header CSS */
.mainBody {
  background-color: #111;
  background-image: url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/bannerSectionBg1.png"),
    url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/bannerSectionBg2.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
}
.navbar {
  background: transparent;
  width: 100%;
  padding: 40px 0 10px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(15px);
}
.navBarIcon {
  color: #fff;
}
.navbar .navbar-toggler {
  padding: 10px 15px !important;
  border: 1px solid #fff !important;
}
.navbar-toggler:focus {
  box-shadow: unset !important;
}
.navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: block;
  padding: 0;
  margin-right: 24px;
  position: relative;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0696e5;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
}
.navDownloadBtn {
  border: 1px solid #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: unset !important;
}
/* End Header CSS*/

/* Start Banner CSS */
.bannerSection {
  padding: 28px 0 106px;
}
/* End Banner CSS */

/* Start Feature CSS */
.featureSection {
  padding: 20px 0 80px;
}

.featureBox {
  margin-top: 66px;
}
/* End Feature CSS */

/* Start How It Work CSS */
.howItWorkSection {
  padding: 113px 0 141px;
  background-image: url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/howItWorkBg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.workStepContainer {
  position: relative;
  max-width: 854px;
  width: 100%;
  height: 400px;
  margin: 32px auto 0;
}

.workStepBox {
  border: 5px solid #ffffff;
  background: #ffffff1a;
  backdrop-filter: blur(120px);
  max-width: 251px;
  width: 100%;
  min-width: 251px;
  height: 251px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  padding: 30px;
  position: absolute;
}

.workStepBoxLine {
  position: absolute;
  height: 7px;
  background-color: white;
  transform-origin: left center;
}

.workStepBoxLine.line1 {
  top: 235px;
  left: 170px;
  width: 220px;
  transform: rotate(-30deg);
}

.workStepBoxLine.line2 {
  top: 114px;
  right: 170px;
  width: 220px;
  transform: rotate(30deg);
}

.workStepBox.boxOne {
  left: 0;
  bottom: 0;
}

.workStepBox.boxTwo {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.workStepBox.boxThree {
  right: 0;
  bottom: 0;
}
/* End How It Work CSS */

/* Start Not Allowed CSS */
.notAllowedSection {
  padding: 128px 0;
  margin: 80px 0;
  background: #161616;
}
.notAllowedRightImg {
  /* box-shadow: 0px 24px 214px 30px #FFFFFF1C; */
}
.notAllowPoints {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 25px;
}
/* End Not Allowed CSS */

/* Start Download Now CSS */
.downloadContent {
  padding: 30px 0;
  background: linear-gradient(90deg, #1d1d1d, #b66ad7, #1d1d1d) top,
    linear-gradient(90deg, #1d1d1d, #b66ad7, #1d1d1d) bottom;
  background-size: 100% 3px;
  background-repeat: no-repeat;
}
/* End Download Now CSS */

/* Start Blog Section */
.blogSection {
  padding: 80px 0;
}
.blogBox {
  margin-top: 32px;
}
.blogUserName {
  color: #aa60c8;
}
.blogImg {
  margin-bottom: 32px;
  width: 100%;
}
.blogTechText a {
  color: #aa60c8 !important;
}
/* End Blog Section */

/* Start FAQ CSS */
.faqSection {
  background-image: url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/faqbg2.png"),
    url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/faqbg1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -80px, right center;
  padding-bottom: 100px;
}
.faq_item {
  background: none;
  border: none;
  padding: 1.875rem 2.5rem;
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 20px;
}

.faq_item:has(.collapse.show) {
  border: none;
  background: #ffffff05;
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  border-radius: 1.5rem;
}
.faq_item .accordion-button {
  padding: 0;
  box-shadow: none;
  background: none;
  border: none;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-size: clamp(16px, 1.7vw, 24px);
}

.faq_item .accordion-button::after {
  display: none;
}
.faq_item .accordion-button i {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.faq_item .accordion-button:not(.collapsed) i {
  border: none;
}
.faq_item .accordion-button i img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
.faq_item .accordion-button:not(.collapsed) i img[alt="add"] {
  opacity: 0;
}
/* .faq_item2, */
.faq_item2:has(.collapse.show) {
  backdrop-filter: blur(40px);
  border: none;
  border-radius: 1.25rem !important;
  overflow: hidden;
  position: relative;
  background-color: #ffffff05;
  background-image: url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/faqLeft.svg"),
    url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/faqLine.svg"),
    url("https://pov.itechnolabs.tech/wp-content/themes/hello-elementor-child-theme/assets/images/faqLine.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left top, 10% 0%, 80% 100%;
  background-size: 15rem, 13.9375rem, 13.9375rem;
}
/* Start FAQ CSS */

/* Start Footer CSS */
.footer {
  padding: 76px 0;
  background: #191818;
}
.footerInputParent {
  padding: 40px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footerInput {
  padding: 12px 15px 12px 44px;
  border: 1px solid #ffffff14;
  border-radius: 40px;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
  color: #ffffff;
}
.emailLogo {
  position: absolute;
  top: 16px;
  left: 16px;
}
.submitBtn {
  background: #01b1ea;
  border: none;
  border-radius: 12px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.footerList {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footerLink {
  display: block;
  margin-top: 24px;
  font-size: 18px;
  color: #ffffff66 !important;
}
footer hr {
  border-bottom: 1px solid #ffffff30;
  margin: 36px 0;
}
.socialLinkBtn {
  border: 1px solid #ffffff14;
  background-color: transparent;
  padding: 16px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer p {
  margin-bottom: 0 !important;
}
.footer figure {
  margin: 0 !important;
}
/* End Footer CSS */

/* Start Contact Us CSS */
.contactUsSection {
  padding: 87px 0 215px;
}

.contactUsList {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.contactForm {
  border: 1px solid #595959;
  border-radius: 30px;
  padding: 40px;
  margin-top: 78px;
}
.commonLabel {
  font-size: 15px;
  font-weight: 400;
  color: #d2d8e9;
  margin-bottom: 7px;
  display: block;
}
.customInput {
  box-shadow: 0px 0px 2px 0px #e4e5e73d;
  background: #333333;
  border-radius: 10px;
  padding: 12px 20px;
  border: none;
  width: 100%;
}
.form-group {
  padding-top: 20px;
}
.formBtn {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background: #0696e5;
  border-radius: 8px;
  padding: 13px;
  max-width: 213px;
  width: 100%;
  border: none;
}
/* End Contact Us CSS */

/* Start Privacy Policy CSS */
.privacySection {
  padding: 87px 0 84px;
}
.privacyListItem {
  margin-top: 30px;
}
/* End Privacy Policy CSS */

/* Start Explore CSS */
.searchInput {
  border: 1px solid #ffffff33;
  box-shadow: 0px 1px 6.2px 0px #e4e5e7d4;
  border-radius: 10px;
  padding: 17px 20px 17px 50px;
  background-color: transparent;
  width: 100%;
}

.exploreBox {
  margin-top: 40px;
}
.readMoreBtn {
  background: #0696e5;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Newsreader", serif;
}
/* End Explore CSS */

/* Responsive Css Start */

@media screen and (max-width: 1199px) {
  .fontSize95 {
    font-size: 80px;
  }
  br {
    display: none;
  }
  .footerLink {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-nav {
    padding: 24px 0;
    gap: 20px;
    align-items: center;
  }
  .bannerImgParent {
    margin-top: 40px;
  }
  .notAllowImgParent {
    margin-top: 40px;
  }
  .workStepBox {
    max-width: 230px;
    min-width: 230px;
    height: 230px;
  }
  .workStepBox .fontSize18 {
    font-size: 16px;
  }
  .downloadBtnImg {
    max-width: 168px;
    width: 100%;
  }
  .contactUsList {
    margin-top: 30px;
  }
  .navbar-collapse ul li a{
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .fontSize95 {
    font-size: 60px;
  }
  .fontSize68 {
    font-size: 48px;
  }
  .fontSize48 {
    font-size: 34px;
  }
  .fontSize36 {
    font-size: 24px;
  }
  .faqSection .fontSize24 {
    font-size: 18px;
  }
  .faqSection .fontSize18 {
    font-size: 16px;
  }
  .orderTwo {
    order: 2;
  }
  .orderOne {
    order: 1;
  }
  .exploreBox .exporeBoxImg {
    width: 100%;
    margin-bottom: 20px;
  }
  .faqSection .faq_item .accordion-button {
    padding-bottom: 10px;
  }
  .faq_item {
    padding: 1rem;
  }
  .downloadCornerImg {
    display: none;
  }
  .workStepBox {
    max-width: 210px;
    min-width: 210px;
    height: 210px;
  }
  .workStepBox .fontSize18 {
    font-size: 15px;
  }
  .workStepBoxLine.line1 {
    top: 212px;
    left: 142px;
    width: 170px;
  }
  .workStepBoxLine.line2 {
    top: 128px;
    right: 112px;
    width: 184px;
  }
  .blogBox {
    margin-top: 60px;
  }
  .notAllowedSection {
    padding: 70px 0;
  }

  .contactUsSection {
    padding: 70px 0 100px;
  }
  .mainHeading {
    margin-bottom: 60px;
  }
  .footer .footerList {
    align-items: unset !important;
    gap: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 575px) {
  .fontSize95 {
    font-size: 40px;
  }
  .fontSize68 {
    font-size: 36px;
  }
  .fontSize48 {
    font-size: 28px;
  }
  .fontSize36 {
    font-size: 20px;
  }
  .blogDetailSection .fontSize30 {
    font-size: 24px;
  }
  .fontSize26 {
    font-size: 20px;
  }
  .fontSize24 {
    font-size: 20px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize18 {
    font-size: 16px;
  }
  .socialLinkBtn {
    padding: 14px;
    border-radius: 55px;
    font-size: 16px;
  }
  .featureBox {
    margin-top: 50px;
  }
  .pointArrow {
    width: 25px;
  }
  .howItWorkSection {
    padding: 70px 0;
  }
  .workStepContainer {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .workStepBox {
    position: static;
    transform: none !important;
  }
  .workStepBoxLine {
    display: none;
  }
  .faqSection {
    padding-bottom: 70px;
  }
  .faqSection .fontSize48 {
    font-size: 24px;
  }
  .notAllowedSection .fontSize24 {
    font-size: 18px;
  }
  .notAllowedSection .fontSize16 {
    font-size: 14px;
  }
  .downloadBtnImg {
    max-width: 140px;
  }
  .contactUsList .fontSize20 {
    font-size: 16px;
  }
  .contactUsList .contactIcon {
    max-width: 40px;
  }
  .contactForm {
    padding: 24px;
  }
  .mainHeading {
    margin-bottom: 40px;
  }
  .contactUsSection {
    padding: 50px 0 80px;
  }
  .privacySection {
    padding: 50px 0 80px;
  }
  .privacySection .fontSize18 {
    font-size: 18px;
  }
}
