@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&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=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
* {
  padding: 0;
  margin: 0;
}

p, a, li, h3 {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 106; /* ensure it's on top of other elements */
  transition: transform 0.5s ease-in-out; /* add transition effect */
  background-color: white;
}
.nav-bar .side-bar {
  padding: 70px 0 30px 30px;
  display: none;
  position: fixed;
  overflow-y: auto;
  flex-direction: column;
  top: 0;
  left: -300px;
  height: 100vh;
  width: 290px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.734);
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: left 0.5s;
}
.nav-bar .side-bar .close {
  position: absolute;
  background-color: #028ECB;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  top: 10px;
  right: 10px;
}
.nav-bar .side-bar .type {
  display: inline-flex;
  height: 70px;
}
.nav-bar .side-bar .type .type-text {
  font-weight: 500;
}
.nav-bar .side-bar .type .dyn-text {
  margin-top: 0;
  margin-left: 12px;
  overflow: hidden;
  height: 80%;
  width: 200px;
  gap: 20px;
}
.nav-bar .side-bar .type .dyn-text li {
  font-size: 35px;
  animation: slide 9s steps(3) infinite;
  position: relative;
  transition: animation 2s ease;
  top: 0;
}
@keyframes slide {
  100% {
    top: -194.5px;
  }
}
.nav-bar .side-bar .type .dyn-text li span {
  font-family: "IBM Plex Mono";
  font-weight: 700;
  position: relative;
}
.nav-bar .side-bar .type .dyn-text li span .gradient-span {
  background-image: linear-gradient(90deg, #1AABF4, #07DBA8, #028ECB, #07DBA8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400%, 400%;
  animation: animate 15s ease infinite;
}
.nav-bar .side-bar .type .dyn-text li span::after {
  content: "";
  overflow-x: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  border-left: solid 2px #07DBA8;
  left: 0;
  animation: typing 3s steps(10) infinite;
  background-color: rgba(255, 255, 255, 0.678);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
@keyframes typing {
  100% {
    left: 100%;
    margin: 0 -25px 0 25px;
  }
}
.nav-bar .side-bar ul {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  gap: 40px;
}
.nav-bar .side-bar ul li {
  display: flex;
  align-items: center;
}
.nav-bar .side-bar ul li .hovbars {
  position: relative;
  color: #000;
}
.nav-bar .side-bar ul li .hovbars::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 5px; /* adjust the height of the underline */
  background: transparent;
  border-radius: 5px;
  transition: width 0.3s;
}
.nav-bar .side-bar ul li .hovbars:hover::after {
  background: linear-gradient(to right, rgb(26, 171, 244), rgb(7, 219, 168));
  width: 100%;
}
.nav-bar .side-bar ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}
.nav-bar .side-bar ul li a img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.nav-bar .nav-content {
  display: flex;
  justify-content: space-between;
  margin: 10px 40px;
}
.nav-bar .nav-content .left-side-content, .nav-bar .nav-content .right-side-content {
  display: flex;
  align-items: center;
}
.nav-bar .nav-content .left-side-content ul, .nav-bar .nav-content .right-side-content ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-bar .nav-content .left-side-content ul .showSidebar, .nav-bar .nav-content .right-side-content ul .showSidebar {
  display: none;
}
.nav-bar .nav-content .left-side-content ul .logo, .nav-bar .nav-content .right-side-content ul .logo {
  display: flex;
  width: auto;
}
.nav-bar .nav-content .left-side-content ul .logo h1, .nav-bar .nav-content .right-side-content ul .logo h1 {
  color: #028ECB;
  font-size: 25px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  margin-right: 10px;
}
.nav-bar .nav-content .left-side-content ul .logo img, .nav-bar .nav-content .right-side-content ul .logo img {
  height: 35px;
  width: 35px;
}
.nav-bar .nav-content .left-side-content ul li, .nav-bar .nav-content .right-side-content ul li {
  display: flex;
  align-items: center;
}
.nav-bar .nav-content .left-side-content ul li .hovbar, .nav-bar .nav-content .right-side-content ul li .hovbar {
  position: relative;
  color: #000;
}
.nav-bar .nav-content .left-side-content ul li .hovbar::after, .nav-bar .nav-content .right-side-content ul li .hovbar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 5px; /* adjust the height of the underline */
  background: transparent;
  border-radius: 5px;
  transition: width 0.3s;
}
.nav-bar .nav-content .left-side-content ul li .hovbar:hover::after, .nav-bar .nav-content .right-side-content ul li .hovbar:hover::after {
  background: linear-gradient(to right, rgb(26, 171, 244), rgb(7, 219, 168));
  width: 100%;
}
.nav-bar .nav-content .left-side-content ul li a, .nav-bar .nav-content .right-side-content ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}
.nav-bar .nav-content .left-side-content ul li a .searchbtn, .nav-bar .nav-content .left-side-content ul li a .darkmodebtn, .nav-bar .nav-content .right-side-content ul li a .searchbtn, .nav-bar .nav-content .right-side-content ul li a .darkmodebtn {
  height: 20px;
  width: 20px;
}
.nav-bar .nav-content .left-side-content ul li a .arrowdwn, .nav-bar .nav-content .right-side-content ul li a .arrowdwn {
  height: 16px;
  width: 16px;
  margin-left: 2px;
}
.nav-bar .nav-content .left-side-content ul li a svg, .nav-bar .nav-content .right-side-content ul li a svg {
  fill: #000;
}
.nav-bar .nav-content .left-side-content ul li button, .nav-bar .nav-content .right-side-content ul li button {
  font-family: "Roboto mono";
  font-weight: 600;
  background-color: #028ECB;
  background-image: linear-gradient(to right, #028ECB 50%, #028ECB 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  border: none;
  padding: 20px 30px;
  border-radius: 16px;
  color: white;
  transition: background-position 1s;
}
.nav-bar .nav-content .left-side-content ul li button:hover, .nav-bar .nav-content .right-side-content ul li button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, rgb(7, 219, 168) 50%);
}

.hide-nav {
  transform: translateY(-100%);
}

#overview {
  padding-top: 200px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(./assests/Vector.png);
  background-size: cover;
  background-position: center;
  text-align: center;
}
#overview .ovrvw-text h3 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 20px;
  font-size: 14px;
  color: #808080;
}
#overview .ovrvw-text h2 {
  font-family: "IBM Plex Mono";
  font-size: 60px;
  font-weight: 500;
  line-height: 78px;
  color: black;
}
#overview .ovrvw-text h2 span .gradient-span {
  background-image: linear-gradient(90deg, #1AABF4, #07DBA8, #028ECB, #07DBA8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-size: 400%, 400%;
  animation: animate 15s ease infinite;
}
#overview .ovrvw-text h2 span .gradient-span::after { /* add this pseudo-element */
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* adjust the position of the underline */
  width: 100%;
  height: 5px; /* adjust the thickness of the underline */
  background-image: linear-gradient(to right, #1AABF4 30%, rgb(7, 219, 168) 100%); /* match the gradient color */
  border-radius: 2px;
  background-size: 400%, 400%;
  animation: animate 15s ease infinite;
}
@keyframes animate {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 100% 0;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
#overview .ovrvw-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
#overview .ovrvw-btn {
  margin: 50px 0;
  display: flex;
  gap: 30px;
}
#overview .ovrvw-btn a button {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 14px 30px;
  border: none;
  border-radius: 16px;
  line-height: 20px;
}
#overview .ovrvw-btn .reqbtn button {
  background-color: rgba(255, 255, 255, 0);
  border: solid 1.5px #028ECB;
  color: #028ECB;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: background-position 1s;
}
#overview .ovrvw-btn .reqbtn button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to right, rgb(2, 142, 203), rgb(7, 219, 168) 50%);
  color: #fff;
}
#overview .ovrvw-btn .freebtn button {
  background-color: #028ECB;
  color: white;
  background-image: linear-gradient(to right, #028ECB 50%, #028ECB 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  border: none;
  border-radius: 16px;
  transition: background-position 1s;
}
#overview .ovrvw-btn .freebtn button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, rgb(7, 219, 168) 50%);
}
#overview .ovrvw-people .peoplephoto {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
#overview .ovrvw-people .peoplephoto .phtcase {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  margin-left: -15px;
}
#overview .ovrvw-people .peoplephoto .phtcase img {
  height: 100%;
  width: 100%;
}
#overview .ovrvw-people .runup-num h3 {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
#overview .ovrvw-people .runup-num h3 span {
  font-family: "IBM Plex Mono";
  font-size: 30px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: rgb(2, 142, 203);
}

#dataAnalyticReport {
  display: flex;
  justify-content: center;
  position: relative;
}
#dataAnalyticReport .dataanarepo {
  display: flex;
  text-align: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7, 219, 168, 0.2) 0%, rgba(249, 249, 249, 0.2) 100%);
  width: 62%;
  border-radius: 50px;
  opacity: 0;
  top: 150px;
}
#dataAnalyticReport .dataanarepo img {
  width: auto;
  height: 394px;
  padding: 20px;
}

.interpg {
  margin: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.interpg .fdein {
  transform: translateY(20px);
  opacity: 0;
  transition: 1s ease;
}
.interpg .fdein-visible {
  transform: translateY(0);
  opacity: 1;
}
.interpg .interpg-text {
  margin: 50px;
}
.interpg .interpg-text h3 {
  font-family: "Poppins";
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.interpg .interpg-text h1 {
  font-family: "IBM PLex Mono";
  font-size: 36px;
  line-height: 46.8px;
  font-weight: 500;
}
.interpg .intercards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  font-style: "Inter";
}
.interpg .intercards .intercard {
  display: flex;
  flex-direction: column;
  width: 316px;
  background: linear-gradient(180deg, rgba(26, 171, 244, 0.2) 0%, rgba(26, 171, 244, 0) 100%);
  border-radius: 30px;
}
.interpg .intercards .intercard .card-logo {
  height: 100px;
  background-image: url(./assests/Vector.png);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.interpg .intercards .intercard .card-logo .logo-holder {
  margin: 20px;
  height: 66px;
  width: 66px;
  border: 1px solid #028ECB;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.interpg .intercards .intercard .card-logo .logo-holder .logopad {
  background: rgba(2, 142, 203, 0.2);
}
.interpg .intercards .intercard .card-logo .logo-holder .logopad img {
  padding: 20px;
}
.interpg .intercards .intercard .card-text {
  margin: 25px 15px;
}
.interpg .intercards .intercard .card-text h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
.interpg .intercards .intercard .card-text p {
  font-family: "Roboto Mono";
  margin: 15px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.interpg .lrnmore {
  margin: 50px;
}
.interpg .lrnmore p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
.interpg .lrnmore button {
  font-family: "Roboto Mono";
  margin: 30px auto;
  background-color: #028ECB;
  padding: 14px 30px;
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  background-image: linear-gradient(to right, #028ECB 50%, #028ECB 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: background-position 1s;
}
.interpg .lrnmore button img {
  height: 10px;
}
.interpg .lrnmore button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, rgb(7, 219, 168) 50%);
}

.price-page {
  padding: 30px;
  background-color: #EFFFFB;
  overflow: hidden;
}
.price-page .price-header {
  text-align: center;
}
.price-page .price-header h2 {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.price-page .price-header h1 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 36px;
  line-height: 46.8px;
}
.price-page .price-txt {
  text-align: center;
}
.price-page .price-txt p {
  margin: 50px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}

.price-cards {
  display: flex;
  gap: 50px;
  flex-wrap: nowrap;
  width: -moz-min-content;
  width: min-content;
  margin: auto;
}
.price-cards .subscribe-p {
  background-color: white;
  width: 300px;
  height: auto;
  padding: 0 0 20px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  border: solid 1px #ccc;
  overflow: hidden;
}
.price-cards .subscribe-p .recomplan {
  position: relative;
  top: -100%;
}
.price-cards .subscribe-p .recomplan .recomlabel {
  position: absolute;
  background: #FF0000;
  top: -12px;
  right: 0;
  border-bottom-left-radius: 25px;
}
.price-cards .subscribe-p .recomplan .recomlabel p {
  padding: 14px 43px 2px;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.price-cards .subscribe-p .price-h {
  margin-top: 30px;
  height: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-cards .subscribe-p .price-h h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
.price-cards .subscribe-p .price-h p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #808080;
}
.price-cards .subscribe-p ul {
  list-style: none;
  margin: 15px;
  height: 250px;
}
.price-cards .subscribe-p ul li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto Mono", serif;
}
.price-cards .subscribe-p ul li img {
  height: 15px;
  width: 15px;
}
.price-cards .subscribe-p .amntnsub {
  margin-top: 30px;
  text-align: center;
}
.price-cards .subscribe-p .amntnsub h4 {
  font-family: "IBM PLex Mono";
  font-weight: 700;
  font-size: 30px;
}
.price-cards .subscribe-p .amntnsub h4 span {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}
.price-cards .subscribe-p .amntnsub p {
  font-weight: 300;
  font-size: 12px;
  line-height: 14.52px;
}
.price-cards .subscribe-p .amntnsub .pricebtn {
  margin: 20px 0;
}
.price-cards .subscribe-p .amntnsub .pricebtn .nomvp, .price-cards .subscribe-p .amntnsub .pricebtn .mvp1, .price-cards .subscribe-p .amntnsub .pricebtn .mvp2 {
  border: none;
  background-color: #028ECB;
  color: #fff;
  padding: 14px 60px;
  border-radius: 15px;
  font-family: "Roboto Mono";
  font-size: 14px;
  font-weight: 400;
  background-image: linear-gradient(to right, #028ECB 50%, #028ECB 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: background-position 1s;
}
.price-cards .subscribe-p .amntnsub .pricebtn .nomvp:hover {
  cursor: pointer;
}
.price-cards .subscribe-p .amntnsub .pricebtn .mvp1:hover, .price-cards .subscribe-p .amntnsub .pricebtn .mvp2:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, #02c697 50%);
}

#resources {
  background-color: rgba(238, 238, 238, 0.3607843137);
}
#resources .restxt {
  padding: 50px 0;
  text-align: center;
}
#resources .restxt h2 {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  color: #808080;
}
#resources .restxt h1 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 36px;
  line-height: 46.8px;
}
#resources .resgrids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  row-gap: 25px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 40px;
}
#resources .resgrids .resgrid {
  background-color: white;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 30% 60%;
  gap: 30px;
  padding: 10px;
}
#resources .resgrids .resgrid:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-out;
}
#resources .resgrids .resgrid .imgholder {
  height: auto;
  width: 200px;
  border-radius: 16px;
  background-color: #808080;
  overflow: hidden;
}
#resources .resgrids .resgrid .imgholder img {
  width: 100%;
  height: 100%;
}
#resources .resgrids .resgrid .resgridtext {
  font-family: "Inter";
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
#resources .resgrids .resgrid .resgridtext h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24.2px;
  margin: 13px 0;
}
#resources .resgrids .resgrid .resgridtext p {
  margin: 10px 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 14.52px;
}
#resources .resgrids .resgrid .resgridtext .reslink {
  display: flex;
  align-items: center;
}
#resources .resgrids .resgrid .resgridtext .reslink a {
  color: #028ECB;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-right: 6px;
}
#resources .resgrids .resgrid .resgridtext .reslink a:hover {
  color: #2484ad;
}
#resources .resgrids .resgrid .resgridtext .reslink img {
  height: 20px;
  width: 20px;
}
#resources .resbtn {
  text-align: center;
  padding-bottom: 50px;
}
#resources .resbtn button {
  padding: 14px 30px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0);
  border: solid 1px #028ECB;
  color: #028ECB;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: background-position 1s;
}
#resources .resbtn button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to right, rgb(2, 142, 203), rgb(7, 219, 168) 50%);
  color: #fff;
}

#customerReview {
  background-color: rgba(238, 238, 238, 0.9333333333);
  padding: 80px 0 80px 150px;
  overflow-x: hidden;
}
#customerReview .review-text {
  margin-bottom: 60px;
}
#customerReview .review-text h1 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 36px;
  line-height: 47px;
}
#customerReview .review-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
#customerReview .sectionWrappers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#customerReview .sectionWrappers hr {
  border: solid 0.2px #808080;
}
#customerReview .sectionWrappers .first-review-section, #customerReview .sectionWrappers .second-review-section, #customerReview .sectionWrappers .third-review-section {
  padding: 40px 20px;
}
#customerReview .sectionWrappers .first-review-section .frevw h1, #customerReview .sectionWrappers .second-review-section .frevw h1, #customerReview .sectionWrappers .third-review-section .frevw h1 {
  font-size: 100px;
  font-weight: 300;
  height: 80px;
}
#customerReview .sectionWrappers .first-review-section .frevw p, #customerReview .sectionWrappers .second-review-section .frevw p, #customerReview .sectionWrappers .third-review-section .frevw p {
  text-align: center;
  font-weight: 300;
  font-size: 20px;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid, #customerReview .sectionWrappers .second-review-section .frevw .whosaid, #customerReview .sectionWrappers .third-review-section .frevw .whosaid {
  display: flex;
  margin: 40px 0 0 30px;
  align-items: center;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid .idholder, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .idholder, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .idholder {
  height: 60px;
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: solid 1.5px #028ECB;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid .idholder img, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .idholder img, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .idholder img {
  height: 100%;
  width: 100%;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid .whatwassaid, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .whatwassaid, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .whatwassaid {
  width: 245px;
  text-align: left;
  border-top: solid 0.5px #808080;
  margin-left: 10px;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid .whatwassaid h3, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .whatwassaid h3, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .whatwassaid h3 {
  font-weight: 200;
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
}
#customerReview .sectionWrappers .first-review-section .frevw .whosaid .whatwassaid p, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .whatwassaid p, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .whatwassaid p {
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
}

#faq {
  margin: 30px 150px;
}
#faq .faq-h {
  text-align: center;
}
#faq .faq-h h2 {
  font-weight: 300;
  font-size: 14px;
  color: #808080;
}
#faq .faq-h h1 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 36px;
  line-height: 47px;
}
#faq .faqlist ul {
  margin: 70px 0;
  list-style: none;
}
#faq .faqlist ul li .faq-h {
  display: flex;
  align-items: center;
  margin: 30px 0;
  text-align: left;
}
#faq .faqlist ul li .faq-h .number {
  font-weight: 400;
  font-size: 12px;
  color: #49B6E5;
}
#faq .faqlist ul li .faq-h .ques {
  margin-right: auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 25px;
  font-family: "Roboto Mono";
}
#faq .faqlist ul li .faq-h .faqplus {
  display: flex;
  background-color: #028ECB;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
}
#faq .faqlist ul li .faq-h .faqactive {
  background-color: white;
  border: solid 1px #028ECB;
}
#faq .faqlist ul li .faq-content {
  display: none;
  padding: 10px 0;
}
#faq .faqlist ul li .faq-content p {
  font-size: 20px;
  font-weight: 300;
  font-family: "Roboto Mono";
  line-height: 24.2px;
}
#faq .faqlist ul li .faq-content ul {
  margin: 5px 0;
  padding: 0;
  list-style: circle;
}
#faq .faqlist ul li .faq-content ul li {
  font-family: "Roboto Mono";
}
#faq .faqlist ul hr {
  border: solid 1px #808080;
}

#data-footy {
  background-color: #028ECB;
  padding: 50px 100px;
}
#data-footy .footyheader {
  text-align: center;
}
#data-footy .footyheader h3 {
  font-family: IBM Plex Mono;
  font-size: 45px;
  font-weight: 500;
  line-height: 58.5px;
  text-align: center;
  color: #ffffff;
}
#data-footy .footyheader p {
  color: #ffffff;
  font-family: Inter;
  size: 16px;
  line-height: 25px;
  font-weight: 400;
  margin-top: 15px;
}
#data-footy .footy-btn {
  margin: 30px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}
#data-footy .footy-btn a button {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 14px 30px;
  border: none;
  border-radius: 16px;
  line-height: 20px;
}
#data-footy .footy-btn .btn-req button {
  padding: 14px 20px;
  background-color: #028ECB;
  color: white;
  background-image: linear-gradient(to right, #028ECB 50%, #028ECB 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  border: solid 1px #ffffff;
  transition: background-position 1s;
}
#data-footy .footy-btn .btn-req button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, #ffffff 50%);
  color: #028ECB;
}
#data-footy .footy-btn .btn-free button {
  padding: 14px 20px;
  background-color: #ffffff;
  color: #028ECB;
  background-image: linear-gradient(to right, #ffffff 50%, #ffffff 50%);
  background-position: 100% 0;
  background-size: 200% 100%;
  border: none;
  border-radius: 16px;
  transition: background-position 1s;
}
#data-footy .footy-btn .btn-free button:hover {
  background-position: 0% 0%;
  cursor: pointer;
  background-image: linear-gradient(to left, #028ECB, rgb(7, 219, 168) 50%);
  color: #ffffff;
  border: solid 1px #fff;
}
#data-footy .footy-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-between;
  margin-bottom: 30px;
}
#data-footy .footy-grid .foot1 p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 10px;
}
#data-footy .footy-grid .foot1 .links {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
#data-footy .footy-grid .foot1 .links a {
  color: #ffffff;
  opacity: 79.84%;
  text-decoration: none;
}
#data-footy .footy-grid .foot2 {
  color: #ffffff;
}
#data-footy .footy-grid .foot2 p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  margin-bottom: 10px;
}
#data-footy .footy-grid .foot2 .links {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
#data-footy .footy-grid .foot2 .links a {
  color: #ffffff;
  opacity: 79.84%;
  text-decoration: none;
}
#data-footy .footy-grid .foot3 {
  color: #ffffff;
}
#data-footy .footy-grid .foot3 p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  margin-bottom: 10px;
}
#data-footy .footy-grid .foot3 .links {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
#data-footy .footy-grid .foot3 .links a {
  color: #ffffff;
  opacity: 79.84%;
  text-decoration: none;
}
#data-footy .footy-grid .foot4 {
  color: #ffffff;
}
#data-footy .footy-grid .foot4 p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  margin-bottom: 10px;
}
#data-footy .footy-grid .foot4 .links {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
#data-footy .footy-grid .foot4 .links a {
  color: #ffffff;
  opacity: 79.84%;
  text-decoration: none;
}
#data-footy .footy-grid .foot5 {
  color: #ffffff;
}
#data-footy .footy-grid .foot5 p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  margin-bottom: 10px;
}
#data-footy .footy-grid .foot5 .links {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
#data-footy .footy-grid .foot5 .links a {
  color: #ffffff;
  opacity: 79.84%;
  text-decoration: none;
}
#data-footy hr {
  border: #ffffff solid 1px;
}
#data-footy .data-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
#data-footy .data-info .foot-logo {
  display: flex;
  align-items: center;
}
#data-footy .data-info .foot-logo img {
  height: 35.07px;
  width: 35px;
}
#data-footy .data-info .foot-logo h3 {
  font-family: IBM Plex Mono;
  font-size: 25px;
  font-weight: 500;
  line-height: 58.5px;
  text-align: center;
  color: #ffffff;
  margin-left: 5px;
}
#data-footy .data-info p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
}
#data-footy .data-info .social-link {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#data-footy .data-info .social-link li {
  list-style: none;
}
#data-footy .data-info .social-link li .socialmedia {
  border: solid 1px white;
  padding: 5px 10px;
  border-radius: 50%;
}
#data-footy .data-info .social-link li .facebook {
  padding: 5px 14px;
}
#data-footy .contact-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 50px;
}
#data-footy .contact-grid p {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #ffffff;
}
#data-footy .contact-grid .contacts {
  list-style: none;
}
#data-footy .contact-grid .contacts li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
#data-footy .contact-grid .contacts li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  gap: 10px;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.signup-body {
  background-color: #EEEEEE;
}
.signup-body .signup-container {
  padding: 50px 150px;
  background-image: url("assests/big-dk-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 30%;
}

h3 {
  font-family: "IBM Plex Mono";
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-section img {
  width: 100px;
}

.text-section {
  text-align: center;
}
.text-section .container {
  margin: 50px 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.text-section .container h2 {
  font-family: "IBM plex mono";
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.2rem;
}
.text-section p {
  font-family: "inter";
  font-size: 1rem;
  padding: 0px 150px;
}

.form-sections {
  margin: 60px 0;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 50px;
}
.form-sections .trial h3 {
  font-size: 2.25rem;
  line-height: 5rem;
  font-weight: 500;
}
.form-sections .trial ul li {
  display: flex;
  align-items: start;
  gap: 0.3rem;
  margin: 0 0 30px;
  font-size: 0.9rem;
}
.form-sections .trial ul li img {
  width: 20px;
  height: 20px;
}
.form-sections .form {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: -5px 10px 25px -3px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
}
.form-sections .form h3 {
  font-size: 2.25rem;
  font-weight: 500;
}

.char {
  transform: translateY(80px);
  transition: transform 0.5s;
}

.about-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 200px;
  padding: 50px;
}
.about-contain .about {
  flex: 1; /* Allow the about section to take up available space */
  margin-right: 20px;
}
.about-contain .about h3 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 20px;
  font-size: 14px;
  color: #808080;
}
.about-contain .about h2 {
  font-family: "IBM Plex Mono";
  font-size: 60px;
  font-weight: 500;
  line-height: 78px;
  color: black;
  margin-bottom: 10px;
}
.about-contain .aboutphoto img {
  max-width: 100%; /* Ensure the image is responsive */
  height: auto; /* Maintain aspect ratio */
}

@media screen and (max-width: 1025px) {
  #navigationBar .showSidebar {
    display: block;
  }
  #navigationBar .tags {
    display: none;
  }
  .interpg .fdein {
    opacity: 1;
  }
  .interpg .intercards {
    height: auto;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .interpg .intercards .intercard {
    height: auto;
  }
  .interpg .intercards .intercard .card-logo .logo-holder {
    margin-top: 20px;
  }
  .interpg .lrnmore {
    margin-top: 100px;
  }
  #dataAnalyticReport .dataanarepo {
    width: 80%;
  }
  #dataAnalyticReport .dataanarepo img {
    width: 95%;
    height: auto;
  }
  .price-cards {
    gap: 20px;
    margin: 40px;
  }
  .price-cards .subscribe-p .recomplan .recomlabel p {
    font-size: 7px;
    padding: 14px 30px 2px;
  }
  .price-cards .subscribe-p .amntnsub {
    margin-top: 10%;
  }
  .price-cards .subscribe-p .amntnsub h4 {
    font-size: 25px;
  }
  .price-cards .subscribe-p .amntnsub .pricebtn .nomvp, .price-cards .subscribe-p .amntnsub .pricebtn .mvp1, .price-cards .subscribe-p .amntnsub .pricebtn .mvp2 {
    padding: 14px 30px;
  }
  #resources .resgrids {
    grid-template-columns: 48% 48%;
  }
  #resources .resgrids .resgrid .resgridtext {
    padding: 10px;
    justify-content: left;
  }
  #resources .resgrids .resgrid .resgridtext h3 {
    font-size: 15px;
    line-height: 16px;
  }
  #resources .resgrids .resgrid .imgholder {
    height: 150px;
    width: 150px;
  }
  #customerReview {
    padding: 40px;
  }
  #customerReview .sectionWrappers {
    flex-direction: column;
    margin: 10px 40px;
  }
  #customerReview .sectionWrappers .first-review-section, #customerReview .sectionWrappers .second-review-section, #customerReview .sectionWrappers .third-review-section {
    padding: auto;
  }
  #customerReview .sectionWrappers .first-review-section .whosaid, #customerReview .sectionWrappers .second-review-section .whosaid, #customerReview .sectionWrappers .third-review-section .whosaid {
    margin: auto;
  }
  #faq {
    margin: 30px 100px;
  }
  #data-footy {
    width: auto;
  }
  #data-footy .footyheader {
    text-align: center;
  }
}
@media screen and (max-width: 890px) {
  .interpg {
    margin: 50px;
  }
  .interpg .fdein {
    opacity: 1;
  }
  .interpg .intercard {
    height: auto;
    width: auto;
  }
  .interpg .intercard .logo-holder {
    margin-top: 25px;
  }
  .interpg .lrnmore {
    margin: 100px 40px;
  }
  .price-cards {
    display: grid;
    margin: 0;
    width: auto;
    grid-auto-flow: column;
    scroll-behavior: auto;
    gap: 1.2rem;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .price-cards::-webkit-scrollbar {
    display: none;
  }
  #resources .resgrids {
    grid-template-columns: 48% 48%;
  }
  #resources .resgrids .resgrid {
    gap: 10px;
  }
  #resources .resgrids .resgrid .imgholder {
    height: 100px;
    width: 100%;
  }
  #resources .resgrids .resgrid .resgridtext {
    padding: 5px;
  }
  #resources .resgrids .resgrid .resgridtext h3 {
    margin: 0;
    font-size: 12px;
  }
  #resources .resgrids .resgrid .resgridtext p {
    margin: 5px 0;
    font-size: 9px;
    line-height: 9px;
  }
  #faq {
    margin: 30px 100px;
  }
  #faq .faqlist ul li .faq-h .ques {
    margin-right: auto;
    font-size: 16px;
  }
  #faq .faqlist ul li .faq-content p {
    font-size: 14px;
  }
  #faq .faqlist ul li .faq-content ul {
    font-size: 14px;
  }
  #data-footy {
    width: auto;
  }
  #data-footy .footy-grid {
    grid-template-columns: auto auto auto auto;
  }
  #data-footy .contact-grid .contacts li .digits {
    display: grid;
  }
  #data-footy .footy-grid .foot1, #data-footy .footy-grid .foot2 {
    margin-bottom: 10px;
  }
  #data-footy .footy-grid .foot4 .links {
    margin-bottom: 10px;
  }
  #data-footy .data-info {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 690px) {
  #overview .ovrvw-text h3 {
    font-size: 14px;
  }
  #overview .ovrvw-text h2 {
    font-size: 60px;
    line-height: 60px;
    margin: 20px;
  }
  #overview .ovrvw-text p {
    font-size: 16px;
    line-height: 20px;
  }
  #overview .ovrvw-btn button {
    padding: 14px 20px;
  }
  .price-page {
    padding: 40px 10px;
  }
  .price-cards {
    margin: 0;
    gap: 10px;
  }
  #resources .resgrids .resgrid .imgholder {
    width: 70px;
    height: 70px;
  }
  #resources .resgrids .resgrid .resgridtext h2 {
    font-size: 9px;
  }
  #resources .resgrids .resgrid .resgridtext h3 {
    font-size: 9px;
    line-height: 10px;
  }
  #resources .resgrids .resgrid .resgridtext p {
    font-size: 6px;
    line-height: 7px;
  }
  #data-footy {
    width: auto;
  }
  #data-footy .footyheader h3 {
    font-size: 35px;
    line-height: 45px;
  }
  #data-footy .footy-grid {
    grid-template-columns: auto auto;
  }
  #data-footy .footy-grid .foot1, #data-footy .footy-grid .foot3 {
    margin-bottom: 10px;
  }
  #data-footy .footy-grid .foot4 .links {
    margin-bottom: 10px;
  }
  #data-footy .data-info p {
    font-size: 12px;
  }
  #data-footy .contact-grid {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 480px) {
  .nav-bar .nav-content {
    margin: 10px 10px;
    gap: 10px;
  }
  .nav-bar .nav-content .left-side-content ul, .nav-bar .nav-content .right-side-content ul {
    gap: 5px;
  }
  .nav-bar .nav-content .left-side-content ul .logo h1, .nav-bar .nav-content .right-side-content ul .logo h1 {
    font-size: 20px;
    margin-right: auto;
  }
  .nav-bar .nav-content .left-side-content ul .logo img, .nav-bar .nav-content .right-side-content ul .logo img {
    height: 25px;
    width: 25px;
  }
  .nav-bar .nav-content .left-side-content ul li a .searchbtn, .nav-bar .nav-content .left-side-content ul li a .darkmodebtn, .nav-bar .nav-content .right-side-content ul li a .searchbtn, .nav-bar .nav-content .right-side-content ul li a .darkmodebtn {
    height: 15px;
    width: 15px;
  }
  .nav-bar .nav-content .left-side-content ul li button, .nav-bar .nav-content .right-side-content ul li button {
    padding: 14px 10px;
    font-size: 10px;
  }
  #overview {
    padding-top: 50px;
  }
  #overview .ovrvw-text h3 {
    font-size: 10px;
  }
  #overview .ovrvw-text h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 20px;
  }
  #overview .ovrvw-text h2 span .gradient-span::after {
    height: 3px;
  }
  #overview .ovrvw-text p {
    font-size: 12px;
    line-height: 15px;
  }
  #overview .ovrvw-btn {
    gap: 10px;
  }
  #overview .ovrvw-btn a button {
    padding: 14px 15px;
  }
  #overview .ovrvw-people .peoplephoto {
    justify-content: center;
    width: 200px;
    margin-left: 25px;
  }
  #overview .ovrvw-people .peoplephoto .phtcase {
    height: 40px;
    width: 40px;
  }
  #overview .ovrvw-people .runup-num h3 {
    font-size: 12px;
  }
  #overview .ovrvw-people .runup-num h3 span {
    font-size: 25px;
  }
  #dataAnalyticReport .dataanarepo {
    border-radius: 25px;
  }
  #dataAnalyticReport .dataanarepo img {
    width: 90%;
  }
  .interpg {
    margin: 50px 25px;
  }
  .interpg .fdein {
    opacity: 1;
    transform: translateY(0);
  }
  .interpg .interpg-text {
    margin: 30px 10px;
  }
  .interpg .interpg-text h3 {
    font-size: 10px;
  }
  .interpg .interpg-text h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .interpg .intercards {
    flex-direction: column;
  }
  .interpg .intercards .intercard {
    width: 100%;
  }
  .interpg .intercards .intercard .card-logo .logo-holder {
    margin: 15px;
    height: 50px;
    width: 50px;
    border-radius: 15px;
  }
  .interpg .intercards .intercard .card-logo .logo-holder .logopad img {
    height: 25px;
  }
  .interpg .intercards .intercard .card-text {
    margin: 0px 20px;
  }
  .interpg .intercards .intercard .card-text h3 {
    font-size: 20px;
    line-height: 25px;
  }
  .interpg .intercards .intercard .card-text p {
    font-size: 12px;
  }
  .interpg .lrnmore {
    margin: 20px 10px;
  }
  .interpg .lrnmore p {
    font-size: 12px;
    line-height: 20px;
  }
  .price-page .price-header h2 {
    font-size: 12px;
  }
  .price-page .price-header h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .price-page .price-txt p {
    margin: 30px 10px;
    font-size: 14px;
  }
  .price-cards {
    padding: 30px 20px;
    display: grid;
    width: auto;
    grid-auto-flow: column;
    scroll-behavior: auto;
    gap: 1.2rem;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .price-cards::-webkit-scrollbar {
    display: none;
  }
  .price-cards .subscribe-p {
    width: 80vw;
    height: auto;
  }
  .price-cards .subscribe-p ul {
    margin: 20px 30px;
    height: 200px;
  }
  .price-cards .subscribe-p ul li {
    font-size: 12px;
  }
  #resources .restxt {
    padding: 30px 0;
  }
  #resources .restxt h2 {
    font-size: 10px;
  }
  #resources .restxt h1 {
    font-size: 20px;
    line-height: 30px;
  }
  #resources .resgrids {
    padding: 20px 0;
    grid-template-columns: 95%;
  }
  #resources .resgrids .resgrid {
    grid-template-columns: 20% 80%;
    gap: 5px;
    padding: 10px;
  }
  #resources .resgrids .resgrid .imgholder {
    height: auto;
    width: auto;
    border-radius: 10px;
  }
  #resources .resgrids .resgrid .resgridtext h2 {
    display: none;
  }
  #resources .resgrids .resgrid .resgridtext h3 {
    font-size: 12px;
    line-height: 13px;
  }
  #resources .resgrids .resgrid .resgridtext p {
    font-size: 9px;
    line-height: 11px;
  }
  #customerReview {
    padding: 30px 20px;
  }
  #customerReview .review-text {
    margin-bottom: 30px;
  }
  #customerReview .review-text h1 {
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0;
  }
  #customerReview .review-text p {
    font-size: 14px;
    line-height: 20px;
  }
  #customerReview .sectionWrappers .first-review-section, #customerReview .sectionWrappers .second-review-section, #customerReview .sectionWrappers .third-review-section {
    padding: 20px 0;
  }
  #customerReview .sectionWrappers .first-review-section .frevw .whosaid, #customerReview .sectionWrappers .second-review-section .frevw .whosaid, #customerReview .sectionWrappers .third-review-section .frevw .whosaid {
    margin: 20px 0;
  }
  #customerReview .sectionWrappers .first-review-section .frevw .whosaid .idholder, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .idholder, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .idholder {
    width: 40px;
    height: 40px;
  }
  #customerReview .sectionWrappers .first-review-section .frevw .whosaid .whatwassaid h3, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .whatwassaid h3, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .whatwassaid h3 {
    font-size: 14px;
  }
  #customerReview .sectionWrappers .first-review-section .frevw .whosaid .whatwassaid p, #customerReview .sectionWrappers .second-review-section .frevw .whosaid .whatwassaid p, #customerReview .sectionWrappers .third-review-section .frevw .whosaid .whatwassaid p {
    font-size: 10px;
  }
  #faq {
    margin: 30px 20px;
  }
  #faq .faq-h h2 {
    font-size: 10px;
  }
  #faq .faq-h h1 {
    font-size: 20px;
  }
  #faq .faqlist ul li {
    margin: 15px 0;
  }
  #faq .faqlist ul li .faq-h .number {
    font-size: 9px;
  }
  #faq .faqlist ul li .faq-h .ques {
    font-size: 15px;
    line-height: 16px;
  }
  #faq .faqlist ul li .faq-h .faqplus {
    padding: 10px;
  }
  #faq .faqlist ul li .faq-content p {
    font-size: 12px;
  }
  #faq .faqlist ul li .faq-content ul {
    font-size: 12px;
  }
  #data-footy {
    padding: 50px 20px;
  }
  #data-footy .footyheader h3 {
    line-height: 25px;
    font-size: 20px;
  }
  #data-footy .footyheader p {
    font-size: 14px;
    line-height: 20px;
  }
  #data-footy .footy-btn {
    gap: 10px;
  }
  #data-footy .footy-btn a button {
    padding: 14px 10px;
    font-size: 12px;
  }
  #data-footy .footy-grid {
    grid-template-columns: auto auto;
    row-gap: 20px;
    -moz-column-gap: 50px;
         column-gap: 50px;
    justify-content: center;
  }
  #data-footy .footy-grid .foot1 .links, #data-footy .footy-grid .foot2 .links, #data-footy .footy-grid .foot3 .links, #data-footy .footy-grid .foot4 .links, #data-footy .footy-grid .foot5 .links {
    font-size: 12px;
  }
  #data-footy .data-info {
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
    margin-bottom: 10px;
  }
  #data-footy .contact-grid {
    grid-template-columns: auto;
  }
  #data-footy .contact-grid .contacts li {
    gap: 5px;
  }
  #data-footy .contact-grid .contacts li a {
    font-size: 10.2px;
    gap: 5px;
  }
}/*# sourceMappingURL=data-krib-styles.css.map */