@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  letter-spacing: 1px;
  transition: all 0.5s ease-in-out;
}

.icon {
  display: none;
}

.show {
  display: none !important;
}

.mobile {
  display: none;
}

.fixedbg {
  width: 100%;
  height: 100vh;
  z-index: -1;
  position: fixed;
  background: url("../images/bg8.jpg") center no-repeat;
  background-size: cover;
}

body {
  width: 100%;
  height: max-content;
}

::-webkit-scrollbar {
  width: 0;
}

.header-container {
  width: 100%;
  /* padding: 20px 22px; */
  z-index: 1000;
  height: 14vh;
  position: sticky;
  top: 0;
  background: transparent;
}

.active .nav-container {
  padding: 20px 12px;
  background: #000;
}

.header {
  width: 100%;
  margin: auto auto;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: baseline;
}

.logo-round {
  align-items: flex-end;
  width: 150px;
  display: flex;
  justify-content: center;
  height: 150px;
  position: absolute;
  top: -70px;
  left: 45%;
  border-radius: 50%;
  box-shadow: 0px 10px 30px rgb(0 33 71 / 25%);
  background: #fff;
}

.header_logo,
.header_logo_dark {
  width: 25%;
  height: max-content;
}

.header_logo img,
.header_logo_dark img {
  width: 100%;
  height: auto;
}

.nav-container {
  width: 50%;
  padding: 30px 12px;
  height: max-content;
}

.nav-container ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-container ul li {
  list-style: none;
}

.nav-container ul li span {
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

/* .active .nav-container ul li a {
    color: #000;
}

.active .header_logo_dark {
    display: block;
} */

/* .active .nav-container ul li a:hover {
    color: #1f487e;
} */

.label h6 {
  font-size: 40px;
  text-align: center;
  padding: 10px 12px;
  /* margin: 30px; */
}

hr {
  width: 40px;
  margin: auto;
  outline: none;
  height: 4px;
  border: none;
  background: #000;
}

.label h2 {
  font-size: 45px;
  text-align: center;
  margin: 20px auto;
  padding: 10px 12px;
  margin-bottom: 0px;
}

.btn {
  padding: 10px 12px;
  background: transparent;
  border: 1px solid #fff;
  margin: 10px 0px;
  border-radius: 10px;
}

.active .btn {
  background: #1f487e;
  border: none;
}

.btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

.btn a {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

#calculate-button {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

#calculate-button:hover {
  color: #1f487e;
}

.btn:hover {
  background: #fff;
}

.btn:hover a {
  color: #1f487e;
}

.intro-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  background: url("../images/bg.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro-content {
  width: 75%;
  padding: 80px 12px;
}

.intro-content h2 {
  font-size: 40px;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
}

.intro-content p {
  padding: 10px 12px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.laptop-container {
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  margin-top: 350px;
}

.laptop-container img {
  width: 70%;
  height: auto;
  z-index: 3;
}

.about-container {
  width: 100%;
  height: max-content;
  padding: 10px 12px;
  padding-bottom: 30px;
  /* margin: 20px auto; */
  margin-top: -35px;
  padding-top: 0px;
  background: #fff;
}

.about-container p {
  width: 90%;
  margin: auto;
  padding: 10px 12px;
  text-align: center;
}

.about-container h3 {
  text-align: center;
  font-size: 40px;
}

.features {
  background: #d0e3cc;
  width: 100%;
  padding: 40px 12px;
  height: max-content;
}

.grid-container {
  display: grid;
  width: 95%;
  margin: 20px auto;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 222.5px);
  grid-template-rows: repeat(4, 260px);
}

.grid-component {
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.g1 {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 3;
  background: #6799f2;
}

.g2 {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 5;
  background: #424651;
}

.g3 {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 7;
  background: #af3b6e;
}

.g4 {
  grid-column-start: 1;
  grid-column-end: 3;
  background: #af3b6e;
}

.g5 {
  background: #6799f2;
  grid-column-end: 7;
  padding: 5px 6px;
  grid-column-start: 5;
}

.g6 {
  background: #424651;
  grid-column-start: 1;
  grid-column-end: 5;
}

.g7 {
  background: #af3b6e;
  grid-column-start: 5;
  grid-column-end: 7;
}

.g8 {
  background: #6799f2;
  grid-column-start: 1;
  grid-column-end: 3;
}

.g9 {
  background: #424651;
  grid-column-start: 3;
  grid-column-end: 7;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g2 .flex-container {
  flex-direction: column-reverse;
}

.text-content,
.img-container {
  width: 50%;
}

.g2 .text-content,
.g2 .img-container {
  width: 100%;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.g2 .img-container {
  width: 75%;
}

.text-content h3 {
  width: 100%;
  text-align: left;
  font-size: 32px;
  color: #fff;
  padding: 10px 12px;
}

.text-content p {
  width: 100%;
  padding: 0px 12px;
  text-align: left;
  font-size: 14px;
  color: #fff;
}

.img-container img {
  /* width: 100%; */
  margin: auto;
  height: auto;
}

/* .g2 .img-container img {
    width: 80%
} */

.g3 .text-content,
.g4 .text-content,
.g5 .text-content,
.g7 .text-content,
.g8 .text-content {
  width: 60%;
}

.g3 .text-content h3,
.g4 .text-content h3,
.g7 .text-content h3 {
  font-size: 28px;
}

.g3 .text-content p,
.g4 .text-content p,
.g7 .text-content p {
  font-size: 12px;
}

.g6 .img-container img,
.g9 .img-container img {
  width: 240px;
  aspect-ratio: auto;
}

.why-container {
  width: 100%;
  /* margin: 20px auto; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background: #9BBDF9;*/
}

.product-container,
.why {
  width: 50%;
  height: 100%;
  padding: 10px 12px;
  /* background: #e7e7e7; */
}

.why {
  /* background: #fff; */
  padding: 40px 12px;
  box-shadow: 0px 10px 30px rgb(0 33 71 / 25%);
}

.product-container img {
  width: 100%;
  height: auto;
}

.content {
  padding: 10px 12px;
}

.why h6 {
  color: #fff;
}

.why hr {
  background-color: #fff;
}

.content li {
  list-style: none;
  margin: 20px auto;
}

.content li h3 {
  font-size: 26px;
  padding: 5px 12px;
  color: #fff;
}

.content li p {
  font-size: 12px;
  padding: 0px 12px;
  color: #ffff;
}

.our-container {
  padding: 40px 12px;
  margin: 20px auto;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text,
.image {
  width: 50%;
  height: max-content;
}

.image img {
  width: 100%;
  height: auto;
}

.text h3 {
  font-size: 30px;
  padding: 10px 12px;
}

.text p {
  padding: 10px 12px;
}

.swiper {
  width: 80%;
  margin: 20px auto;
}

.swiper-slide {
  height: 100px;
  display: flex;
  width: 50px;
  justify-content: center;
  align-items: center;
}

#pricing {
  width: 100%;
  padding: 60px;
  /* margin: 20px auto; */
  padding-top: 50px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}

.price-container {
  width: 38%;
  padding: 30px 25px;
  /* display: flex; */
  /* align-items: center; */
  box-shadow: 0px 10px 30px rgb(0 33 71 / 25%);
  /* flex-direction: column; */
}

.price-container h5 {
  padding: 5px 0px;
  font-size: 24px;
  color: #fff;
  align-self: flex-end;
  width: 89%;
}

.price-container h4 {
  padding: 10px 12px;
  font-size: 22px;
  color: #ffff;
}

.price-container hr {
  width: 60%;
  margin-left: 12px;
  height: 3px;
  border-radius: 70px;
  border: none;
  outline: none;
  background: #fff;
}

.price-container h3 {
  font-size: 40px;
  color: #fff;
  padding: 10px 12px;
  margin: 20px auto;
}

.price-container li {
  list-style: none;
  font-size: 18px;
  color: #fff;
  display: flex;
  margin: 20px auto;
  padding: 5px 12px;
  flex-wrap: wrap;
}

.first {
  margin-top: 30px;
}

.price-container li ion-icon {
  margin-right: 4px;
  width: 9%;
}

.price-container li ion-icon+span {
  width: 85%;
  display: block;
  font-size: 15px;
}

.price-container .btn {
  margin-top: 40px;
}

.price-container h5 span {
  font-size: 14px;
}

.half {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.price-benefit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.per5 {
  width: 5% !important;
}

.tab {
  position: relative;
  background: #fff;
  padding: 0 20px;
  margin: 20px auto;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.tab input {
  appearance: none;
}

.tab label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.tab label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 2em;
  transition: transform 1s;
}

.h5 {
  margin-top: 20px;
  margin-bottom: 7px;
  /* padding: 0px 12px !important; */
  font-size: 20px;
  color: rgb(49, 78, 104);
}

.close {
  margin: 0px !important;
}

.close h5 {
  font-size: 16px;
}

.tab:hover label::after {
  color: #333;
}

.tab input:checked~label::after {
  transform: rotate(135deg);
}

.tab label h2 {
  width: 40px;
  height: 40px;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.25em;
  border-radius: 5px;
  margin: 0;
  margin-right: 10px;
}

.tab label h3 {
  position: relative;
  font-weight: 500;
  color: #333;
  z-index: 10;
}

.tab .content {
  max-height: 0;
  transition: 1s;
  overflow: hidden;
  width: 100%;
}

.tab input:checked~.content {
  max-height: 100vh;
}

.tab .content p {
  position: relative;
  padding: 10px 0;
  color: #333;
  z-index: 10;
}

.faq {
  margin: 0px auto;
  background: #1157abc9;
}

.faq .container {
  margin: auto;
}

.faq h1 {
  color: #fff;
}

footer {
  width: 100%;
  height: max-content;
  padding: 40px 10px;
  background: #3e78b2;
}

.upper-section,
.lower-section {
  width: 80%;
  height: max-content;
  margin: 10px auto;
  padding: 10px 12px;
}

.lower-section {
  color: #fff;
  text-align: center;
}

.upper-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.links {
  width: max-content;
  padding: 10px 12px;
}

.links h3 {
  font-size: 25px;
  color: #fff;
  padding: 10px 12px;
}

.links li {
  list-style: none;
  margin: 10px auto;
  padding: 0px 12px;
}

.links li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.second-section {
  width: 40%;
  height: 100%;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.social-links {
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  margin: 40px auto;
  justify-content: space-evenly;
}

.brand-img {
  width: max-content;
  margin: auto;
  height: 50%;
}

.brand-img img {
  width: auto;
  height: 120px;
}

.social-btn a {
  color: #fff;
  width: max-content;
  display: flex;
  height: max-content;
}

.social-btn ion-icon {
  font-size: 25px;
}

.contact-section {
  width: 80%;
  height: max-content;
  margin: 20px auto;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
}

.sidebar {
  width: 20%;
  height: 100%;
}

.sidebar h4 {
  width: 100%;
  text-align: center;
  margin: 20px auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sidebar h4 ion-icon {
  color: #000;
  font-size: 22px;
  margin: 0px 12px;
}

.sidebar h4 a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.contact-form {
  width: 78%;
  height: 350px;
}

.contact-form form {
  width: 80%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.pr {
  background: #fff;
  padding-top: 30px;
}

.contact-form .user-box {
  position: relative;
}

.contact-form .user-box input,
.contact-form .user-box textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
}

#contact {
  background: #f3f3f3;
  height: max-content;
  padding: 40px 12px;
}

.contact-form .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 18px;
  color: #000;
  pointer-events: none;
  transition: 0.5s;
}

.contact-form .user-box input:focus~label,
.contact-form .user-box input:valid~label,
.contact-form .user-box textarea:focus~label,
.contact-form .user-box textarea:valid~label {
  top: -30px;
  left: 0;
  color: #1f487e;
  font-size: 15px;
}

form .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

form .container .user-box {
  width: 48%;
}

/* form .container .user-box input {
    margin-bottom: 0px;
} */

.featur {
  width: 100%;
  height: max-content;
  padding: 40px 12px;
  background: #e7e7e7;
}

.self-lines {
  width: 80%;
  height: 700px;
  margin: auto;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
}

.self {
  width: 32%;
  overflow: hidden;
  position: relative;
  height: 500px;
  background: #0c9ba9;
  padding: 5px 6px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-container,
.text-content {
  width: 100%;
}

.bg-container {
  height: 500px;
  transition: all 0.8s;
  border-radius: 20px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.s1 {
  align-self: flex-start;
}

.s2 {
  align-self: center;
}

.s3 {
  align-self: flex-end;
}

.co {
  background: url("../images/collaboration\ tools.jpg");
}

.se {
  background: url("../images/security\ and\ encryption.jpg");
}

.do {
  background: url("../images/document\ orgination.jpg");
}

.cl {
  background: url("../images/[GetPaidStock.com]-64d6252167ea6.jpg");
}

.lo {
  background: url("../images/dlocker.jpg");
}

.in {
  background: url("../images/instant.jpg");
}

.new {
  padding: 5px 0px;
}

/* .text-content {
    position: absolute;
    padding: 10px 12px;
    bottom: -100%;
    height: 250px;
    transition: all .5s;
    background: #fff;
    z-index: 10;
    width: 100%;
    border-radius: 20px;
} */

/* .text-content h3,
.text-content p {
    color: #000;
} */

.self:hover .bg-container {
  transform: scale(1.3);
}

.self:hover .text-content {
  bottom: 0;
}

.btn.btn-submit:hover {
  background: #1f487e;
  cursor: pointer;
}

.btn-submit {
  background: #3e78b2;
  align-self: flex-start;
  /* margin: 10px 18px; */
}

input[type="submit"] {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
}

.container.one .user-box {
  width: 100%;
}

.featur .label h2 {
  color: #0c9ba9;
}

.featur .label h4 {
  padding: 10px 12px;
  width: max-content;
  margin: auto;
}

#plan {
  background-color: white;
}


/*new plan section */
.plan-box {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}


.box1 {
  width: 100%;
  /* height: 500px; */
  background-color: aliceblue;
  box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.041);
  border-radius: 23px;
  /* padding: 0px 40px; */
}

.head-box {
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.37) 5px 10px 10px, rgba(0, 0, 0, 0.418) -5px 0px 10px;
  /* display: flex; */
  color: white;
  /* justify-content: center;
  position: relative;
  flex-direction: column; */
  background: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-align: center;
  margin-bottom: 40px;
}

.content-box {
  padding: 35px 35px 5px 35px;
  display: flex;
  justify-content: space-between;
}

.small-box {
  /* width: 48%; */
  width: 100%;
  /* margin-top: 40px;
  margin-bottom: 40px; */
}

.plan-heading {
  font-size: 30px;
}

.line {
  width: 385px;
  height: 6px;
  background-color: rgb(49, 78, 104);

}

ul {
  list-style: none;
}

.price-list {
  line-height: 1;
  margin-bottom: 30px;
  margin-top: 30px;

}

.price-icone {}

#outputSpan {
  margin-left: 20px;
  color: rgb(49, 78, 104);
  margin-top: 5px;
}

.input-box {
  width: 173px;
  display: flex;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 1000px) and (max-width: 1122px) {
  .input-box-side {
    width: 132.5px;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1400px) {
  .input-box-side {
    /* width: 157.5px; */
    width: 172.5px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1500px) {
  .input-box-side {
    width: 169.5px;
  }
}

/* .input-box-side {
  width: 152.5px;
} */

.input-text {
  margin-left: 7px;
}

.head-text {
  font-size: 40px;
  color: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
  margin-bottom: 20px;
  margin-top: 0px;
}

/* .totel{
  width: 100px;
  height: 35px;
  color: white;
  font-weight: 700;
  padding: 9px 0;
  font-size: 18px;
  background: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
  text-align: center;
} */

.basic-input {
  display: flex;
  align-items: center;
  /* width: 198px; */
  /* width: 137px; */
  width: 172.5px;
}



@media (max-width: 1600px) and (min-width: 1000px) {
  .content-box {
    width: 100%;
  }

  .box1 {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .content-box {
    width: 100%;
    display: block;
    padding: 10px;
  }

  .small-box {
    width: 100%;
    padding: 5px;
  }
}


@media (max-width: 500px) {
  .label-storage {
    width: 200px;
  }
}





@media (max-width: 1960px) and (min-width: 1920px) {
  .grid-container {
    grid-template-columns: repeat(6, 283.5px);
    grid-template-rows: repeat(4, 264px);
  }
}

@media (max-width: 1536px) and (min-width: 1530px) {
  .laptop-container {
    margin-top: 470px;
  }

  /* .box1 {
    width: 60%;
  } */
}

@media (max-width: 1440px) and (min-width: 1365px) {
  .grid-container {
    grid-template-columns: repeat(6, 207.5px);
    grid-template-rows: repeat(4, 300px);
  }

  .laptop-container {
    margin-top: 445px;
  }

  footer {
    padding: 5px 10px;
  }

  .intro-content h2 {
    font-size: 35px;
  }

  .intro-content p {
    font-size: 14px;
  }

  /* .box1 {
    width: 60%;
  } */
}

@media (max-width: 1280px) and (min-width: 1157px) {
  .logo-round {
    left: 44%;
  }

  .price-container li ion-icon {
    width: 10%;
  }

  .price-container li ion-icon+span {
    width: 87%;
    font-size: 13px;
  }

  .price-container h5 {
    font-size: 19px;
  }

  .close h5 {
    font-size: 16px;
  }

  .price-container .btn {
    margin-top: 15px;
  }

  .intro-content h2 {
    font-size: 30px;
  }

  /* .box1 {
    width: 60%;
  } */
}

@media (max-width: 1157px) and (min-width: 940px) {
  .intro-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 940px) and (min-width: 767px) {
  .intro-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 1368px) and (min-width: 1281px) {
  .grid-container {
    grid-template-columns: repeat(6, 185.5px);
    grid-template-rows: repeat(4, 320px);
  }

  .intro-content {
    width: 62%;
  }

  .logo-round {
    left: 44.8%;
  }

  .laptop-container {
    margin-top: 445px;
  }

  footer {
    padding: 5px 10px;
  }

  .intro-content h2 {
    font-size: 35px;
  }

  .intro-content p {
    font-size: 14px;
  }

  .price-container li ion-icon {
    width: 10%;
  }

  .price-container li ion-icon+span {
    width: 87%;
    font-size: 13px;
  }

  .price-container h5 {
    font-size: 19px;
  }

  .close h5 {
    font-size: 16px;
  }

  .price-container .btn {
    margin-top: 15px;
  }

  /* .box1 {
    width: 60%;
  } */
}


@media (max-width: 1024px) and (min-width: 768px) {
  .box1 {
    width: 100%;
  }
}

@media (max-width: 768px) and (min-width: 500px) {

  /* .box1{
   width:90%;
  } */
  .plan-box {
    width: 98%;
  }


}


@media (max-width: 768px) {

  .head-text {
    font-size: 30px;
  }

  .line {
    width: 290px;
  }
}

@media (max-width: 600px) {

  /* .box1{
   width:95%;
  } */
  .input-text {
    margin-left: 0px;
    margin-top: 7px;
  }

  .input-box {
    display: block;
    width: 100px;
  }

  .basic-input {
    display: block;
    width: 100px;
    text-align: center;
  }

  .content-box {
    padding: 5px;
  }

  .plan-box {
    width: 100%;
  }
}

@media (max-width: 650px) and (min-width: 500) {
  .box1 {
    width: 100%;
  }

  .plan-box {
    width: 95%;
  }
}

@media (max-width: 370px) and (min-width: 10px) {
  .laptop-container {
    margin-top: 800px;
  }
}

@media (max-width: 499px) and (min-width: 371px) {
  .laptop-container {
    margin-top: 650px;
  }
}

@media (max-width: 767px) and (min-width: 500px) {
  .laptop-container {
    margin-top: 500px;
  }
}

@media (max-width: 767px) {
  .nav-container {
    display: none;
  }

  .mobile {
    width: 50%;
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    height: 100vh;
    background: #fff;
    padding: 30px 12px;
  }

  .mobile ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile ul li {
    list-style: none;
    margin: 10px auto;
  }

  .mobile ul li span {
    cursor: pointer;
    color: #000;
    padding: 20px 12px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
  }

  .icon {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    background: #000;
    height: max-content;
    padding: 10px 12px;
  }

  .icon ion-icon {
    margin: 5px;
    padding: 5px 6px;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #fff;
    font-size: 30px;
  }

  .intro-container {
    height: max-content;
    padding-top: 80px;
    width: 100%;
  }

  .intro-content {
    width: 100%;
  }

  .intro-container h2 {
    font-size: 23px;
  }

  .intro-container p {
    font-size: 18px;
  }

  .laptop-container img {
    width: 100%;
  }

  .about-container p {
    width: 95%;
    text-align: justify;
  }

  .grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-component {
    width: 100%;
    padding: 30px 15px;
  }

  .flex-container,
  .why-container {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }

  .text-content {
    width: 100% !important;
  }

  .img-container {
    width: 80%;
  }

  .why-container {
    flex-wrap: wrap-reverse;
  }

  .why,
  .product-container {
    width: 100%;
    padding: 30px 0px;
  }

  .price-container {
    width: 100%;
    height: max-content;
    margin: 30px auto;
    padding: 20px 12px;
  }

  .half {
    flex-direction: column;
  }

  .close h5 {
    font-size: 14px;
  }

  #pricing {
    width: 90%;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .tab label {
    flex-wrap: wrap;
  }

  .tab label h2 {
    font-size: 0.98em;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .tab label h3 {
    padding: 10px 0px;
  }

  .tab label::after {
    bottom: 0px;
  }

  .our-container {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .sidebar,
  .contact-form {
    width: 100%;
  }

  .new {
    padding: 5px 12px;
  }

  .sidebar h4 {
    justify-content: flex-start;
  }

  form .container {
    flex-wrap: wrap;
  }

  .upper-section {
    width: 100%;
  }

  .logo-round {
    left: 30%;
  }

  .second-section {
    width: 100%;
  }

  .contact-form {
    height: max-content;
  }

  form .container .user-box {
    width: 100%;
  }

  #contact .label h2 {
    font-size: 28px;
  }

  .contact-section {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 5px auto;
  }

  .contact-form form {
    width: 88%;
  }

  .image {
    width: 80%;
  }

  .text {
    width: 100%;
  }

  .text-content {
    bottom: 0;
  }

  .self-lines {
    flex-direction: column;
    height: max-content;
    width: 100%;
    padding: 10px 12px;
  }

  .self {
    width: 100%;
    height: max-content;
    margin: 15px auto;
  }
}

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

.section-subtitle-feature {
  max-width: max-content;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-block-end: 12px;
  margin-inline: auto;
  font-size: 40px;
}

.section-subtitle-feature::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 30px;
  margin-block-end: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section-subtitle-feature.\:dark {
  color: hsl(0, 0%, 100%);
}

.section-subtitle-feature.\:dark::before {
  background-image: url("../images/text-bars-light.png");
}

.section-subtitle-feature.\:light {
  color: black;
}

.section-title {
  text-align: center;
  color: hsl(0, 70%, 56%);
}

.h1,
.h2,
.h3,
.display-1 {
  font-weight: 700;
  text-transform: uppercase;
}

.display-1 {
  font-size: 3.5rem;
}

.h1 {
  color: hsl(0, 0%, 100%);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.h2 {
  font-size: 2rem;
}

.h3 {
  font-size: 1.8rem;
}

.move-anim {
  animation: moving 2s ease-in-out infinite alternate;
  height: auto;
  display: block;
}

@keyframes moving {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10px);
  }
}

.section {
  padding-block: 60px;
}

.service-banner {
  display: none;
}

.service {
  text-align: center;
  background: aliceblue;
}

.service-list {
  gap: 0;
}

.service-list li {
  list-style: none;
}

.service-list li:nth-child(7) {
  display: contents;
}

.service-list li:nth-child(8) {
  margin-top: 0;
}

.card-title {
  color: hsl(0, 0%, 15%);
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.4rem;
}

.card-icon img {
  display: block;
  height: auto;
}

.service-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 24px;
}

.service-card .card-text {
  line-height: 1.2;
  margin-block: 8px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  font-size: 1rem;
  color: hsl(0, 0%, 44%);
}

.service {
  margin-inline: auto;
}

#features {
  background-color: white;
}

@media (min-width: 575px) {
  .service>div {
    width: 100%;
    margin-inline: auto;
  }

  .h2 {
    font-weight: 700;
  }

  .service .section-title {
    margin-block-end: 30px;
  }

  .service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-block-end: 40px;
    padding: 20px;
  }
}

@media (min-width: 768px) {

  .service>div,
  .hero-content {
    max-width: 100%;
  }

  .section-title:not(.h1) {
    max-width: 500px;
    margin-inline: auto;
  }

  .service-banner {
    display: block;
    position: relative;
  }

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-list li:nth-child(7) {
    display: inline;
  }

  .service-list li:nth-child(8) {
    margin-top: -130px;
  }

  .service-banner img {
    position: absolute;
    top: 0;
    left: -25%;
    margin-block-start: 15%;
    width: 150%;
    transform-origin: top;
  }
}

@media (min-width: 992px) {
  .service>div {
    max-width: 960px;
  }

  .section-text,
  .card-text {
    font-size: 1.8rem;
  }

  .service-card .card-text {
    line-height: 1.45;
    margin-block-end: 15px;
  }

  .service-list li:nth-child(-2n + 3) {
    margin-block-start: 90px;
  }

  .service-list li:nth-child(4) {
    margin-inline-end: 60px;
  }

  .service-list li:nth-child(6) {
    margin-inline-start: 60px;
  }

  .service-list li:nth-child(8) {
    margin-top: -180px;
  }

  .service-banner img {
    left: -55%;
    margin-block-start: -30%;
    width: 210%;
  }
}

@media (min-width: 1200px) {

  .service>div,
  .hero .service>div {
    max-width: 1200px;
  }

  .service .section-title {
    max-width: 700px;
  }

  .service-list {
    margin-block-end: 70px;
  }

  .service-list li:nth-child(2) .card-text {
    padding-inline: 50px;
  }

  .service-list li:nth-child(-2n + 3) {
    margin-block-start: 110px;
  }

  .service-list li:is(:nth-child(1), :nth-child(6)) {
    margin-inline-start: 75px;
  }

  .service-list li:is(:nth-child(3), :nth-child(4)) {
    margin-inline-end: 75px;
  }

  .service-banner img {
    width: max-content;
    left: -41%;
  }
}

@media (min-width: 1400px) {
  :is(.header, .hero) .service>div {
    max-width: 1280px;
  }

  .section-subtitle-feature::before {
    height: 20px;
    margin-inline-end: 5px;
  }
}

.faq>.container {
  padding-inline: 15px;
}

.card-title {
  color: hsl(215, 31%, 14%);
  font-family: "Cuprum", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
}

.faq {
  padding-block: 40px;
  font-family: "Poppins", sans-serif;
  background-color: white;
  color: hsl(0, 0%, 40%);
  font-size: 1.6rem;
  line-height: 1.7;
}

.faq>.container>ul {
  display: grid;
  gap: 20px;
}

.faq>.container>ul>li {
  list-style: none;
}

.title-wrapper img {
  display: block;
  height: auto;
}

.open,
.close {
  display: block;
  pointer-events: none;
}

.card-action {
  display: block;
  border: none;
  cursor: pointer;
}

.faq>.container {
  display: grid;
  gap: 20px;
}

.faq .title-wrapper {
  background-color: hsl(0, 0%, 100%);
  box-shadow: 3px 4px 30px hsla(0, 0%, 53%, 0.1);
  margin: auto;
}

.title-wrapper img {
  width: 80%;
  margin: auto;
  height: auto;
}

.faq .section-title {
  font-size: 40px;
  margin-block-end: 30px;
  color: #000;
}

.faq-card {
  background-color: hsla(145, 63%, 42%, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.faq-card .card-action {
  --action-bg: hsla(145, 63%, 42%, 0.08);
  --color: hsl(0, 0%, 40%);
  background-color: hsl(146, 17%, 34%);
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  gap: 20px;
  transition: 0.25s ease;
}

.faq-card .card-action:is(:hover, :focus, .active) {
  --action-bg: hsl(145, 63%, 42%);
  --color: hsl(0, 0%, 100%);
}

.faq-card .card-title {
  color: white;
  font-size: 1.4rem;
  transition: 0.25s ease;
  text-transform: none;
}

.faq-card ion-icon {
  color: white;
  font-size: 15px;
  transition: 0.25s ease;
  --ionicon-stroke-width: 60px;
}

.faq-card .card-action.active .open,
.faq-card .card-action .close {
  display: none;
}

.faq-card .card-action .open,
.faq-card .card-action.active .close {
  display: block;
}

.faq-card .card-content {
  font-size: 1rem;
  padding-inline: 25px;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

.faq-card .card-content p {
  margin-block: 15px;
}

.faq-card .card-action.active+.card-content {
  max-height: 100%;
}

@media screen and (max-width: 575px) {
  .service>.container>.service-list>li {
    margin-top: 50px;
  }
}

@media (min-width: 575px) {
  .faq>.container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .faq>.container {
    max-width: 720px;
  }

  .section-text {
    max-width: 50ch;
    margin-inline: auto;
  }

  .faq>.container>ul {
    padding-left: 15px;
  }

  .title-wrapper img {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .faq>.container {
    max-width: 960px;
  }

  .faq>.container {
    grid-template-columns: 0.48fr 1fr;
    align-items: flex-start;
  }

  .title-wrapper img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .faq>.container {
    max-width: 85%;
  }

  .title-wrapper img {
    width: 91%;
    height: auto;
  }

  .faq>.container>ul {
    padding-left: 5px;
  }
}

.price-container li {
  flex-direction: column;
}

.label-cal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-storage {
  /* display: flex; */
}

.numberInput[type="number"]::-webkit-inner-spin-button,
.numberInput[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.numberInput[type="number"] {
  width: 100px;
  text-align: center;
}

.displayValue {
  font-size: 20px;
}

.basic {
  color: white;
  font-weight: 700;
  padding: 5px 0;
  font-size: 18px;
  background: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
  border: 0;
}

.basic-readonly {
  background: gray;

}

.advance {
  background-color: #7b3b57;
  color: white;
  font-weight: 700;
  padding: 2px 0;
  font-size: 18px;
}

.accel {
  background-color: #7b3b57;
  color: white;
  font-weight: 700;
  padding: 2px 0;
  font-size: 18px;
}

@media only screen and (max-width: 300px) {
  .label-cal>div:nth-child(1) {
    margin-right: 0px;
  }

  .label-cal>div:nth-child(2) {
    margin-right: 0px;
  }
}

.h55 {
  margin-top: 34px;
  font-size: 20px;
  color: rgb(49, 78, 104);
}

.price-list-file {
  line-height: 1;
  margin-bottom: 30px;
  margin-top: 9px;
}

.d-none {
  display: none;
}






table {
  width: 1200px;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: auto;
  
  margin: auto;
  margin-bottom: 100px;
}

/* table, th, td {
  border: 1px solid #ccc;
} */

th {
  padding: 0px 16px;
  text-align: center;
padding-top: 53px;
padding-bottom: 10px;
   /* Header row text color */
  font-size: 20px; /* Font size of header text */
}

td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ccc;
  
}

tbody tr:nth-child(odd) {
  background-color: #d3d8c2;
  border: 1px solid #ffffff;
}

@media (max-width: 768px) {
  .table-box {
  overflow: auto;
  width: 90%;
  margin-left: 20px;
  }
 
}


@media (max-width: 1245px)  {

  table {
    width: 1000px;
    overflow: auto;
    margin-left: 40px;
    margin: auto;
}
}
