/* ================================= start general style ============================== */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
button {
  font-family: sans-serif;
}
.section {
  padding: 50px 0;
}
.container {
width: 95%;
margin: auto;}

.display-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.display-flex-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-block: 0;
}
.display-flex-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-block: 0;
}
.perpel-color {
  color: #8e51ff;
  display: inline;
}
.section-heading {
  width: 60%;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}
.section-h {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin-block: 0;
}
.section-p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 70px;
}
.gray-p {
  color: #6a7282;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
/* ================================= end general style ============================== */

/* ================================= start navbar style ============================== */

.navbar {
  background-color: #f5f3ff;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.navbar-content {
  width: 100%;
}
.logo-image {
  width: 40px;
  height: 40px;
  background-color: #8e51ff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.logo-image img {
  width: 60%;
}
.logo p {
  font-size: 24px;
  color: #333;
  line-height: 32px;
  font-weight: 700;
}
.navbar-list li {
  list-style: none;
  margin-right: 30px;
}
.navbar-list li a {
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 3px;
  font-weight: 400;
  line-height: 24px;
  transition: 0.5s;
}
.navbar-list li a:hover {
  border-bottom: 2px solid #8e51ff;
  color: #8e51ff;
}
.navbar-list li a.active {
  color: #8e51ff;
  border-bottom: 2px solid #8e51ff;
}
/* ================================= end navbar style ============================== */

/* ================================= start hero section style ============================== */
.hero-parent {
  padding: 90px 0 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-content {
  width: 48%;
}
.hero-image {
  width: 47%;
  position: relative;
  padding: 20px;
  border: 2px solid #d9dde5;
  border-radius: 30px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: #8e51ff;
  width: 100px;
  border-radius: 50px;
  line-height: 20px;
  text-align: center;
}
.overlay p {
  margin-block: 5px;
  font-size: 14px;
  color: #fff;
  z-index: 1;
  font-weight: 700;
}
.hero-content-p {
  width: 55%;
}
.hero-content-p p {
  background-color: #a684ff;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 5px 10px;
}
.hero-content-data h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin-block: 0;
}

.hero-content-data-p {
  font-size: 20px;
  line-height: 33px;
  font-weight: 400;
  width: 98%;
}
.hero-content-price {
  width: 50%;
}
.hero-content-price b {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.hero-content-price del {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
.hero-content-price p {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #e7000b;
  background-color: #ffe2e2;
  border-radius: 30px;
  padding: 5px 10px;
}
.hero-buttons button {
  display: block;
  width: 100%;
  padding-block: 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.color-button {
  margin-bottom: 20px;
  background-color: #8e51ff;
  color: #fff;
  border: none;
  transition: 0.2s;
}
.transparent-button {
  border: 1px solid gray;
  background-color: transparent;
  transition: 0.2s;
}
.color-button:hover {
  transform: scale(1.05);
}
.transparent-button:hover {
  transform: scale(1.05);
}
/* ================================= end hero section style ============================== */

/* ================================= start  section two style ============================== */
.section-how-we-compare,
.section-complete-your-setup {
  background-color: #f7f5ff;
  padding: 40px 0 80px;
}
.section-parent {
  border: 2px solid #d1d5dc;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
}

.child {
  flex: 1;
  /* height: 100vh; */
  text-align: center;
  padding-top: 30px;
}
.child .header {
  border-bottom: 2px solid #dadee3;
  height: 80px;
  width: 100%;
}
.child2 {
  background-color: #ede9fe;
  border-radius: 20px;
  color: #8e51ff;
}
.content2-p {
  background-color: #8e51ff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}
.header h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}
.child1 {
  flex: 1.3;
  text-align: left;
}
.child1 .header h3 {
  padding-left: 20px;
}
.content1 {
  height: 30px;
  padding-block: 20px;
  border-bottom: 1px solid #dadee3;
  align-items: flex-start;
}
.content2 {
  height: 30px;
  padding-block: 20px;
  border-bottom: 1px solid #dadee3;
}
.content1 h4 {
  display: inline;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.content1 i {
  padding-left: 10px;
}
.icn1 {
  color: #00b8db;
}
.icn2 {
  color: #00bba7;
}
.icn3 {
  color: #00c950;
}
.icn4 {
  color: #ff6900;
}
.icn5 {
  color: #fb2c36;
}
.icn6 {
  color: #00a6f4;
}
.icn7 {
  color: #615fff;
}
.icn8 {
  color: #2b7fff;
}
.icn9 {
  color: #f0b100;
}
.footer-section3 {
  border: none;
  height: 50px;
  padding-bottom: 50px;
}
.footer-section3 h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.price-p {
  background-color: transparent;
  color: #8e51ff;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.star-color {
  background-color: transparent;
  color: #fdc700;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 30px 0 10px 0;
}
.gray-star {
  color: #d1d5dc;
}
.star-color i {
  padding-top: 20px;
}
.star-color-p {
  margin-block: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #333;
}

.child3-h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
}
.child3-h4-red {
  color: #e55c00;
}
.child3-h4-price {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #333;
}
.child3-h4-star-p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.section2-parent2 {
  height: 80px;
  width: 25%;
  margin: 50px auto 0;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 12px;
  padding: 10px 30px;
  color: #00a63e;
}
.section2-parent2-icon i {
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
  /* color:#00a63e; */
  margin-right: 10px;
}
.section2-parent2-data h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-block: 10px;
}
.section2-parent2-data p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-block: 0px;
}
/* ================================= end  section two style ============================== */
/* ================================= start  section three style ============================== */
.section3-parent {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.section3-stikky {
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  display: flex;
  width: 28%;
  position: sticky;
  top: 0px;
  padding: 30px;
  align-items: center;
  flex-direction: column;
}
.stikky-h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin-block: 0;
}

.rating-parent {
  padding-bottom: 30px;
}
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
}
.rating-row p {
  margin-block: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.rating-bar {
  width: 230px;
  height: 13px;
  background-color: gainsboro;
  border-radius: 12px;
  flex: 1;
  margin-inline: 10px;
}
.rating-fill {
  height: inherit;
  background-color: #f0b100;
  border-radius: inherit;
}
.rating-fill-78 {
  width: 78%;
}
.rating-fill-15 {
  width: 15%;
}
.rating-fill-5 {
  width: 5%;
}
.rating-fill-1-5 {
  width: 1.5%;
}
.rating-fill-0-5 {
  width: 0.5%;
}
.percntage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  text-align: center;
}
.percentage1 h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-block: 0;
}
.percentage1 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-block: 0;
}

.scrolled-sections {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.scroll-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
}
.top-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.data-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.data-2 {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.stikky-stars {
  margin-top: 0;
}
.data-1-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #8e51ff;
  margin-top: 15px;
}
.data-1-image img {
  width: 100%;
  border-radius: 50%;
}
.data-1-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.data-1-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.scrolled-star {
  margin-top: 5px;
  padding-top: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.scrolled-star i {
  margin-top: 0;
  padding-top: 0;
  font-size: 14px;
}
.star-rate {
  font-size: 14px;
  color: #333;
  padding-left: 10px;
}
.data-2-coler-p {
  font-size: 14px;
  background-color: #ede9fe;
  padding: 5px 15px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #5d0ec0;
  margin: 0;
}
.data-2-coler-p2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 5px 0 0;
}
.bottom-data {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #333;
}
.loadmore-button {
  width: 100%;
  margin: auto;
  padding: 50px 0 10px;
  text-align: center;
}
.loadmore-button button {
  text-align: center;
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid #8e51ff;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background-color: #8e51ff;
  color: #fff;
}
.loadmore:hover {
  background-color: #fff;
  color: #8e51ff;
  border: 2px solid #8e51ff;
}

/* ================================= end  section three style ============================== */

/* ================================= start  section four style ============================== */
.cards-parent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.card {
  width: 25%;
  background-color: #fff;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
}
.card-top {
  width: 100%;
  background-color: #333;
  border-radius: 20px;
  position: relative;
}
.card-top img {
  width: 100%;
  height: 200px;
  transition: 0.2s;

  border-radius: inherit;
}
.card-top-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* z-index: 1; */
}
.overlay-bg1 {
  background-color: #00bba7;
  border-radius: inherit;
}
.overlay-bg2 {
  background-color: #00c950;
  border-radius: inherit;
}
.overlay-bg3 {
  background-color: #00b8db;
  border-radius: inherit;
}
.overlay-bg4 {
  background-color: #ff6900;
  border-radius: inherit;
}
.card-top-overlay-p {
  margin: 0;
  padding: 5px 15px;
}
.card-hover:hover img {
  transform: scale(1.05);
}
.card-middel-h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #333;
  margin: 20px 0 10px 0;
}
.card-middel-p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  margin: 0 0 20px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.card-bottom-h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #333;
  margin: 0;
}
.card-bottom-btn {
  margin: 0;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 20px;
  border: none;
  background-color: #8e51ff;
  color: #fff;
}
.view-button {
  width: 100%;
  margin: 50px auto 0;
  text-align: center;
}
.view-btn {
  text-align: center;
  padding: 15px 40px;
  border-radius: 50px;
  border: 2px solid #8e51ff;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background-color: #fff;
  color: #8e51ff;
}
.view-btn:hover {
  background-color: #8e51ff;
  color: #fff;
}
/* ================================= end  section four style ============================== */

/* ================================= start  section footer style ============================== */
.footer {
  background-color: #101828;
  padding-bottom: 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #1e2939;
  padding-bottom: 50px;
}
.footer-card {
  width: 25%;
  color: #fff;
}
.footer-card-p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.footer-card-icons {
  display: flex;
  /* justify-content: s; */
  gap: 15px;
  align-items: flex-start;

}
.footer-card-icons a{
    font-size: 16px;
    color: #fff;
}
.icon-container{
  background-color: #1e2939;
  text-decoration: none;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: 0.2s;
}
.facebook-icon:hover{
    background-color: #1877F2;
}
.twitter-icon:hover{
    background-color: #1DA1F2;
}
.instagram-icon:hover{
    background-color: #E4405F;
}
.youtube-icon:hover{
    background-color: #FF0000;
}
.footer-card-h2{
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 25px;
}
.footer-card-list{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
        display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
gap: 15px;

}
.footer-link {
    color: rgb(164, 164, 164);
    text-decoration: none;
    transition: 0.2s;


}
.footer-link:hover{
    color: #fff;
}
.footer-bootom{
    margin-top: 30px;
    font-size: 14px;
    font-weight: 400px;
    line-height: 20px;
}
.bottom-left{
    color: #fff;

}
.bottom-right{
    gap: 25px;
}
.photo-container{
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 12px;
}
.photo-container img{
    width: 100%;
    height: 16px;
}
/* ================================= end  section footer style ============================== */
