main {
  margin-top: 88px !important;
  padding: 20px;
  background-color: #c0b5b5;
  border-radius: 8px;
  position: relative;
  background-image: url("./img/smiling lady for first pic.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  height: 335px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.containers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 100%;
}

.text-input-wrapper {
  max-width: 100%;
}

.text-input-wrapper h1 {
  margin: 0 0 10px;
  color: #000;
  font-weight: 800;
  font-size: 36px;
  margin-top: -20px;
}

.input-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
}

.input-container input[type="text"] {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: 2px solid #000;
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 16px;
  padding-right: 40px;
}

.inner-div .input-container input[type="text"] {
  width: 100%;
  padding: 12px 20px 12px 20px;
  border: 2px solid #000;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  padding-right: 40px;
}

.input-container button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.input-container button i {
  font-size: 16px;
  color: #ccc;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  margin: 80px auto;
  min-height: 200px;
}

.info-section img {
  max-width: 230px;
  height: auto;
  border-radius: 20px;
}

.info-section h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin-left: 20px;
  padding: 0 15px;
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: -8px;
  font-weight: 700;
  line-height: 44px;
}

.info-section p {
  margin: 10px 0;
  color: #000;
  font-size: 16px;
  margin-left: 33px;
}

.info-section button {
  padding: 10px 20px;
  border: 3px solid;
  background-color: var(--primary-color);
  color: black;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  width: 15%;
}

.help-item-box {
  font-size: 20px;
}

.info-section button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

/* @media (min-width: 1600px) and (max-width: 2560px) {
  .text-input-wrapper h1 {
    font-size: 36px;
  }
} */

@media (max-width: 1200px) {
  main {
    height: auto;
  }
}

@media (max-width: 992px) {
  main {
    margin: 20px;
    border-radius: 20px;
  }

  .containers {
    padding: 10px;
    margin: 20px;
  }

  .containers h1 {
    font-size: 28px;
  }

  input[type="text"] {
    font-size: 14px;
  }

  .info-section {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  /* .containers {
    height: 100px;
    margin: auto;
  } */

  .input-container button {
    display: none;
  }

  main {
    background-image: url("./img/WomanCut.jpg");
    margin-top: 100px !important;
  }

  .containers h1 {
    font-size: 1.2em;
  }

  input[type="text"] {
    font-size: 12px;
    padding: 8px 30px 8px 8px;
  }

  .info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-section img {
    max-width: 100%;
    display: none;
  }

  .info-section h2 {
    margin-left: 0px;
  }

  .info-section p {
    margin-left: 0px;
  }

  .info-section button {
    width: auto;
  }
}

/* responsive */

.help-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 40px auto;
}

.Upgrade {
  background-color: #f4f1ed;
}

.help-section h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 52px;
  font-weight: 600;
}

.help-item {
  background-color: #f4f1ed;
  overflow: hidden;
  padding: 30px;
  border-radius: 18px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  transition: background-color 0.3s;
}

.help-item button {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 30px;
  width: 55%;
  margin-left: 70px;
}

.help-item button:hover {
  background-color: #242424;
  color: #fff;
}

.help-h {
  font-size: 24px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -0.3px;
  margin: 10px 0;
}

/* Media Queries for small screens */
@media (max-width: 992px) {
  .help-section {
    margin: 0px;
  }

  .help-item {
    flex: 1 1 calc(50% - 20px);
    margin-left: 50px;
  }

  .help-section h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .help-section {
    flex-direction: column;
    align-items: center;
  }

  .help-item {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .help-section h1 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .Upgrade {
    margin-left: -1px;
  }

  .help-item {
    padding: 20px;
    margin-left: 0px;
  }

  .help-section h1 {
    font-weight: 800;
    font-size: 36px;
  }

  .help-item button {
    font-size: 14px;
  }

  .conta h1 {
    font-size: 36px !important;
  }

}

/* responve 1 */
.conta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0px;
  justify-content: center;
  margin: auto;
}

.conta h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 52px;
}

.topic {
  flex: 1 1 calc(33.333% - 40px);
  box-sizing: border-box;
  background-color: #f4f1ed;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}

.topic h3 {
  font-size: 24px;
  font-weight: 700;
}

.conta-section1 {
  font-size: 20px;
}

.topic-btn {
  width: fit-content;
  background-color: #fff !important;
}

.topic-btn:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.topic img {
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .topic {
    flex: 1 1 calc(50% - 40px);
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .topic {
    flex: 1 1 100%;
    margin: 15px;
  }

  .conta {
    margin-top: 40px;
  }

  .conta h1 {
    margin-top: 15px;
  }
}

/* reonsive  3 */
.abc {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px;
  background-color: #555551;
  justify-content: center;
}

.abc>div {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 300px;
  align-items: center;
}

.b1 {
  padding: 15px 20px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #000;
  background-color: white;
  color: black;
  border-radius: 30px;
  transition: background-color 0.3s;
  text-align: center;
}

.b1:hover {
  background-color: black;
  border: 2px solid #000;
  color: white;
}

@media (max-width: 768px) {
  .abc {
    flex-direction: column;
    align-items: center;
  }

  .abc>div {
    flex-direction: column;
    align-items: center;
  }

  .b1 {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .b1 {
    font-size: 14px;
    max-width: 300px;
  }
}

.section__container {
  padding: 3rem 1rem;
}

/* adding page */
.about__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 80px;
}

.about__image img {
  width: 96%;
  border-radius: 20px;
  display: block;
  margin-left: 2px !important;
}

.section__header {
  font-size: 44px;
  text-align: left;
  margin-top: -14px;
}

.section__header1 {
  font-size: 44px;
  text-align: left;
  width: 540px;
  font-weight: 800;
  margin-top: -14px;

}

.section__description {
  /* margin-bottom: 24px; */
  font-size: 20px;
  width: 650px;
}

.antivirus-10-vpn {
  margin-top: 150px;
}

.about__content {
  padding: 15px !important;
}

.c-bait__cta {
  margin-top: 25px;
  border: 2px solid #000;
}

.online-privacy {
  margin-top: 50px;
  margin-bottom: 85px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 55px;
}

.customer_top {
  margin: 4rem 8rem;
}

.c-true {
  font-size: 50px;
  font-weight: 800;
  text-align: center;

}

@media (max-width: 768px) {
  .section__container {
    padding: 0rem 0rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0rem 0rem;
  }

  .about__content {
    padding: 30px;
  }

  .section__header {
    font-size: 36px;
    line-height: 48px;
  }

  .section__header1 {
    font-size: 36px;
    line-height: 48px;
  }

  .section__description {
    font-size: 18px;
  }

  .antivirus-10-vpn {
    margin-top: 0px;
  }

  .c-bait__cta {
    margin-top: 20px;
  }

  .customer_top {
    margin: 2rem 4rem;
  }

  .online-privacy {
    margin-left: 24px;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .section__header {
    font-size: 28px;
    line-height: 36px;
    margin-top: 10px;
  }

  .section__header1 {
    font-size: 28px;
    line-height: 36px;
    /* margin-top: 50px; */
    width: 300px;
    font-weight: 900;

  }

  .c-true {
    font-size: 32px !important;
  }

  .section__description {
    font-size: 16px;
    line-height: 1.6;
    width: 350px;
    /* margin-top: 50px; */
  }

  .about__content {
    padding: 20px;
  }

  .c-bait__cta {
    margin-top: 15px;
  }

  .customer_top {
    margin: 6rem 1rem !important;
    margin-bottom: 3rem !important;
  }
}

/* spyware -page  */
.about__content h2 {
  margin: 0;
  font-size: 48px;
}

.about__image {
  width: 600px;
}

.about__content {
  width: 50%;
}

.about__btn .btn {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
}

.about__btn .btn:hover {
  border: 2px solid #000;
}

.spyware-img {
  max-width: 150px;
  height: auto;
  display: block;
  margin-top: 0;
}

@media (min-width: 568px) and (max-width: 1068px) {
  .about__content h2 {
    font-size: 1.5rem;
  }

  .about__btn .btn {
    padding: 8px 16px;
  }

  .spyware-img {
    max-width: 80px;
  }
}

@media (max-width: 568px) {
  .about__content {
    width: 100%;
  }

  .about__content h2 {
    font-size: 35px;
    line-height: 48px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .about__btn .btn {
    padding: 6px 12px;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .spyware-img {
    max-width: 60px;
  }

  .spyware-image {
    margin-top: 130px !important;
  }

  .about__image {
    width: 365px;
  }

  .norton-plus {
    margin-left: 13px;
  }
}

/* slider 2 */
.additional-info {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 30px;
  width: 100%;
}

.ios-security-page {
  margin-top: 100px;
}

.additional-infos {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 95px;
  margin-left: 85px;
  width: 100%;
}

.info-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  max-width: 290px;
  flex: 1 1 100%;
  font-size: 20px;
}

.info-item img {
  width: 40px;
}

.info-item div h4 {
  font-size: 20px;
  font-weight: 700;
}

.info-item div {
  font-size: 18px;
  font-weight: 500;
}

.for-margin {
  margin: 0;
}

@media only screen and (max-width: 576px) {
  .info-item {
    flex-direction: row;
    font-size: 12px;
    max-width: 100%;
  }

  .info-item img {
    width: 60px;
    height: auto;
  }

  .info-item div {
    margin-top: 10px;
  }

  .ios-security-page {
    margin-top: 30px;
  }

  .for-margin {
    margin: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1068px) {
  .additional-info {
    flex-direction: row;
    align-items: left;
    text-align: left;
    padding: 40px;
  }

  .additional-infos {
    flex-direction: row;
    align-items: left;
    text-align: left;
    margin-left: 0 !important;
    padding: 40px;
  }

  .info-item {
    max-width: 46%;
  }

}

/* Styles for desktops and up to huge screens (992px to 1279px) */
@media only screen and (min-width: 1068px) and (max-width: 1440px) {
  .additional-info {
    flex-direction: row;
    align-items: left;
    text-align: left;
    padding: 40px;
  }

  .info-item {
    max-width: 23%;
  }

  .about__image img {
    width: 100%;
  }

}

.faq {
  margin-top: 100px;
  width: 100%;
  margin: auto;
}

.faq h1 {
  font-size: 50px;
  margin-top: 100px;
  font-weight: 800;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e0e0;
  color: #007bff;
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #f9f9f9;
  transition: max-height 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}

.icon-container {
  font-size: 24px;
  color: #007bff;
}

.icon-container i {
  margin-right: 10px;
}

.icon-container i.fa-minus {
  display: none;
}

.ultimate-additional {
  margin-bottom: 0px !important;
  margin-top: 70px;
}

@media (max-width: 600px) {
  .faq {
    margin-top: 100px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 8px;
  }

  .faq h1 {
    font-size: 36px;
    margin-top: 0px;
  }

  .ultimate-additional {
    margin-bottom: 70px !important;
    margin-top: -65px;
  }
}

.container12 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  height: auto;
  width: 100%;
}

.featured-head h2 {
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
}

.item {
  flex: 1 1 calc(25% - 32px);
  box-sizing: border-box;
  border: 1px solid black;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px gray;
  padding: 0px;
  background: #fff;
  transition: box-shadow 0.3s ease-in-out;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0px 0px;
  margin: 0;
}

.item p {
  color: #007bff;
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
}

.item p:hover {
  color: #3f8df3;
}

@media (max-width: 1200px) {
  .item {
    flex: 1 1 calc(33.333% - 32px);
  }
}

@media (max-width: 900px) {
  .item {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 600px) {
  .item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container12 {
    padding: 8px;
  }

  .item {
    padding: 0px;
    box-shadow: 0 0 10px gray;
  }

  .additional-infos {
    margin-left: 0 !important;
    gap: 30px;
  }

  .featured-head h2 {
    margin-top: 50px;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0px;
  }
}

.ch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  margin-top: 40px;
  margin-bottom: 80px;
}

.ch h2 a {
  text-decoration: underline;
  color: #007bff;
  transition: color 0.3s ease;
  font-size: 30px;
  font-weight: 800;
}

.ch a:hover {
  color: #3f8df3;
}

/* adding page */
.container-ab {
  background-color: #f4f1ed;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 80px;
  margin-top: 30px;
  gap: 50px;
}

.container-ab span {
  font-size: 12px;
}

.breadcrumb {
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li+li::before {
  content: ">";
  margin: 0 10px;
  color: #000;

  font-size: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  margin: 0;
  font-size: 15px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a.active {
  border-radius: 20px;
  background-color: #e0e0e0;
  padding: 5px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .breadcrumb {
    font-size: 14px;
  }

  .breadcrumb ol {
    flex-direction: column;
  }

  .breadcrumb li+li::before {
    content: "";
  }
}

.container-ab h3 {
  font-weight: 800;
  margin-top: 40px;

  font-size: 18px;
}

.container-ab .color {
  margin-top: 40px;
}

/* Image container */
.image-container {
  display: flex;
  gap: 20px;
}

.container12 .item {
  text-align: left;
  font-size: 10px;
}

.image-container img {
  max-width: 50%;
  margin-left: 30px;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 14px;
  }

  .container-ab {
    padding: 10px;
  }
}

.conatiner-context {
  font-size: 15px;
  font-style: italic;
}

/* community -page */
.community {
  width: 100%;
  background-color: blue;
  padding: 10px 0;
  font: 1em sans-serif;
  margin-top: 30px;
  margin-top: 70px;
}

.community-box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 0px;
}

.community-p {
  color: white;
  text-align: center;
  margin: 0;
}

.community-a {
  color: white;

  text-decoration: none;
  display: inline-block;
}

.community-button {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.left-buttons {
  display: flex;
  gap: 10px;
  color: #000;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-button {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  color: #000;
  border: 2px solid #000;
}

.Latest-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  color: #000;
  background-color: transparent;
}

@media (max-width: 768px) {
  .community {
    margin-top: 100px;
  }

  .community-button {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .left-buttons,
  .right-buttons {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}

hr:not([size]) {
  height: 3px;
}

@media (max-width: 768px) {
  hr:not([size]) {
    height: 3px;
  }
}

.community-categories {
  padding: 0px;
}

.community-categories h1 {
  text-align: center;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  margin: 40px;
}

.community-categories .categories-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.community-categories .categories-container>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(247, 242, 242);
  line-height: 64px;
  box-sizing: border-box;
  border-radius: 10px;
  height: 215px;
  margin: 0 10px;
}

.community-categories img {
  width: 20%;
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

.community-categories a {
  display: block;
  margin-top: 10px;
  color: #000;
  font-weight: 700;
}

.community-categories button {
  margin-left: 42%;
  text-align: center;
}

.hidden-categories {
  display: none;
}

@media (max-width: 768px) {
  .community-categories h1 {
    /* text-align: center; */
    font-weight: 700;
    font-size: 38px;
    line-height: 42px;
    margin: 10px;
  }

  .community-box {
    width: 95%;
  }

  .community-a {
    font-size: 16px;
  }

  .community-button button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .community-categories {
    padding: 0px;
    margin: 0 20px;
  }

  .community-categories img {
    max-width: 120px;
  }

  .community-discussions-container img {
    width: 100%;
    max-width: 200px;
  }
}

@media (min-width: 769px) {
  .community-box {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  .community-box {
    width: 60%;
  }

  .community-button button {
    padding: 12px 24px;
    font-size: 18px;
  }

  .community-categories img {
    max-width: 180px;
  }
}

@media (min-width: 1200px) {
  .community-categories .categories-container {
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  }
}

.community-discussions {
  padding: 20px;
}

.community-discussions h1 {
  text-align: center;
  font-weight: 700;
  font-size: 50px;
  margin-left: 100px;
}

.community-discussions-container {
  flex-wrap: wrap;
  gap: 20px;
}

.community-discussions-container div {
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  flex: 1 1 calc(100% - 20px);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.community-discussions-container div:hover {
  background-color: #f9f9f9;
}

.community-discussions-container img {
  max-width: 50px;
  height: auto;
  border-radius: 4px;
  border-radius: 50px;
}

.community-discussions-container p {
  flex-direction: column;
  margin: 0;
  color: #333;
  flex: 1;
}

.community-discussions-container p span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: aqua;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

.community-discussions button {
  margin-left: 42%;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .community-discussions-container div {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 1024px) {
  .community-discussions-container div {
    flex: 1 1 calc(33.33% - 20px);
  }
}

@media (max-width: 480px) {
  .community-discussions {
    display: none;
    width: 1000%;
  }
}

/* primum */
.first {
  display: flex;
  background-color: lightgray;
  padding: 50px 50px 50px 50px;
  box-sizing: border-box;
  background-image: url("./img/Untitled design (2).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 88px;
  border-radius: 20px;
}

.overlay-content {
  flex: 2;
  padding: 20px;
  border-radius: 10px;
}

.overlay-content h1 {
  font-weight: 800;
  font-size: 40px;
  text-align: start;
  margin: 20px 0;
  width: 70%;
}

.overlay-content p {
  margin-top: 50px;
  width: 67%;
}

.overlay-content button {
  padding: 0.7pc 20px;
  width: 180px;
  color: #000;
  font-size: 18px;
  border-radius: 30px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .first {
    background-image: url("./img/background_hero_girl_half.png");;
    width: 350px;
    flex-direction: column;
    margin: 22px;
    margin-top: 115px;
    /* opacity: 0.5; */
    padding: 0px 25px 50px 25px;
  }

  .content-container {
    margin-top: 50px;
  }

  .overlay-content {
    font-size: 1rem;
    padding: 10px;
    margin-top: -30px;
  }

  .overlay-content h1 {
    font-size: 30px;
    width: 102%;
  }

  .overlay-content p {
    font-size: 16px;
    width: 100%;
    margin-top: 0px;
  }

  .overlay-content button {
    width: 152px;
    font-size: 16px;
  }

  .community-categories button {
    margin-left: 18%;
    text-align: center;
    margin-bottom: 30px;
  }

  .community-discussions button {
    margin-left: 0%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1068px) {
  .first {
    max-width: 814px;
    background-position: left;
  }

  .overlay-content {
    font-size: 1.5rem;
  }

  .overlay-content p {
    font-size: 1.125rem;
  }

  .content {
    position: absolute;
    top: 50px;
  }
}

@media (min-width: 1025px) {
  .overlay-content {
    font-size: 2rem;
  }

  .overlay-content p {
    font-size: 1.5rem;
  }
}

/* Styling for additional info box */
.additional-info-box {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.info-item-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

.info-item-box img {
  width: 35px;
  height: auto;
}

.info-item-box .h1 {
  font-size: 22px;
  font-weight: 700;
  text-align: start;
}

.info-item-box p {
  margin: 5px 0;
  font-size: 20px;
}

.info-item-box a {
  margin-top: 50px;
  color: #007bff;
  font-weight: 800;
  font-size: 20px;
}

.info-item-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-item-box {
    display: flex;
    flex-direction: row;

    flex: 1 1 calc(33.333% - 20px);
  }

  .info-item-box img {
    width: 49px;
  }

  .additional-info-box {
    flex-direction: column;
  }
}

/* try to free page 1 */
.click-id-sec {
  background-color: #f8f8f8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 81.25%);
  justify-content: center;
  justify-content: center;
}

.a12 {
  margin-top: 104px;
  margin-left: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 78%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 5px;
}

.a12 li {
  display: flex;
  flex-direction: column;
}

.a12 a {
  text-decoration: none;
  color: #333;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.a12 span {
  font-size: 12px;
  margin-top: 100px;
  font-weight: 900;
}

.freetrials-id {
  width: 25px;
  margin-left: 12px;
}

.freetrials-id:hover {
  width: 20px;
  margin-left: 5px;
  color: #007bff;
}

.freetrials-id img {
  display: block;
  max-width: 100%;
}

.freetrials-id-game {
  width: 40px;
  margin-left: 5px;
  color: #007bff;
  margin-top: 5px;
}

.freetrials-id-game:hover {
  width: 40px;
  margin-left: 5px;
  color: #007bff;
}

.freetrials-id-mobile {
  width: 20px;
  margin-left: 12px;
}

.freetrials-id-mobile:hover {
  width: 18px;
  margin-left: 5px;
  color: #007bff;
}

.freetrials-id-profile {
  width: 20px;
  margin-left: 50px;
  color: #007bff;
}

.freetrials-id-profile:hover {
  width: 20px;
  margin-left: 50px;
  color: #007bff;
}

@media (max-width: 768px) {
  .a12 {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: -140px;
  }
}

@media (max-width: 480px) {
  .freetrials-id img {
    max-width: 50px;
  }

  .a12 span {
    font-size: 12px;

    font-weight: 900;
  }

  .freetrials-id {
    width: 20px;
    margin-left: 12px;
  }

  .freetrials-id-mobile {
    width: 20px;
    margin-left: 12px;
  }
}

/* slider try free*/
.first12 {
  width: 100%;
  display: flex;
  margin-left: 0;
  background-image: url("./img/1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: auto;
}

.overlay-content12 {
  flex: 2;
  padding-bottom: 25px;
  border-radius: 10px;
  width: 95%;
  padding: 5%;
}

.overlay-content12 h1 {
  font-weight: 800;
  font-size: 60px;
  width: 80%;
  margin-top: 35px;
  text-align: left;
  margin-left: 40px;
}

.overlay-content12 p {
  margin-top: 50px;
  width: 50%;
  margin-left: 40px;
  margin-bottom: 20px;
}

.overlay-content12 .input-container-button12 {
  background-color: rgba(247, 196, 67, 0.9);
  color: #333;
  font-size: 20px;
  border-radius: 50px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 40px;
  padding: 10px 15px;
}

.overlay-content12 .input-container-button12 :hover {
  background-color: rgba(224, 203, 16, 0.9);
}

.content12 span {
  flex: 1;
  margin-top: 100px;
  margin-left: 110px;
}

@media (max-width: 768px) {
  .first12 {
    background-image: url("./img/try_bacground_half.png");
    height: 535px;
    flex-direction: column;
    margin-top: 175px;
    padding: 5%;
  }

  .content12 span {
    margin-left: 30px;
  }

  .content12 {
    margin-top: 50px;
  }

  .overlay-content12 {
    font-size: 1rem;
    padding: 10px;
    margin-top: -30px;
  }

  .overlay-content12 h1 {
    font-size: 22px;
    margin-top: 0px;
    width: 100%;
    margin-left: 0;
  }

  .overlay-content12 p {
    font-size: 16px;
    text-align: left;
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
    line-height: 30px;
  }

  .overlay-content12 .input-container-button12 {
    width: 170px;
    padding: 2%;
    font-size: 18px;
    margin-left: 0px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .first12 {
    background-image: url("/img/75% american_lost.jpg");
    height: 750px;
  }

  .overlay-content12 {
    font-size: 1.5rem;
  }

  .overlay-content12 p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1025px) {
  .overlay-content12 {
    font-size: 2rem;
  }

  .overlay-content12 p {
    font-size: 1.5rem;
  }
}

/* slider3 try free 1 */
.plan-comparison {
  width: 100%;
  text-align: center;
  background-color: rgb(240, 238, 238);
  padding: 20px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.plan-comparison h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 70px;
  margin-top: 70px;
  text-align: center;
}

.plan-comparison p {
  color: #000;
  font-size: 35px;
  font-weight: 700;
}

.plan-comparison h3 {
  font-weight: 600;
  font-size: 1.5rem;
}

.trick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trick {
  font-size: 16px;
  list-style: none;
  text-align: left;
}

.trick li {
  margin-top: 15px;
}

.trick li {
  position: relative;
  padding-left: 25px;
}

.trick li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
  color: green;
}

.plan-col {
  margin-top: 50px;
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.plan-main span {
  font-style: normal;
  font-weight: 600;
}

.plan-main h3 {
  font-size: 30px;
  font-weight: 800;
}

.btn {
  background-color: rgba(247, 196, 67, 0.9);
  color: #302626;
  border: 2px solid black;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;

  margin: 10px 0;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: rgba(224, 203, 16, 0.9);
  color: #000;
}

@media (max-width: 768px) {
  .plan-comparison {
    padding: 10px;
    margin-top: 100px;
  }

  .plan-comparison h1 {
    font-size: 1.5rem;
  }

  .plan-comparison p {
    font-size: 0.875rem;
  }

  .plan-col {
    flex: 1 1 calc(50% - 20px);
    padding: 0px;
    margin: 0%;
    height: 900px;
  }
}

@media (max-width: 480px) {
  .plan-comparison h1 {
    font-size: 36px;
    margin-top: 22px;
  }

  .plan-comparison p {
    font-size: 0.75rem;
  }

  .plan-col {
    flex: 1 1 100%;
    padding: 10px;
  }

  .btn {
    font-size: 0.875rem;
    padding: 8px 16px;
  }
}

/* slider  css 3 */
.ite-box31 {
  margin-top: 100px;
  width: 100%;
}

.ite-box31 h1 {
  text-align: center;
  margin: 20px 0;
  font-weight: 900;
  margin-top: 60px;
  font-size: 50px;
}

.item-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
  width: 100%;
  margin-top: 100px;
}

.feature-item {
  flex: 1 1 300px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.feature-icon {
  max-width: 35%;
  height: auto;
  margin-bottom: 10px;
  margin-left: 110px;
}

.feature-item h4 {
  font-weight: 700;
}

.feature-description {
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .feature-icon {
    justify-content: center;
    margin-left: 80px;
  }

  .ite-box31 {
    margin-top: 100px;
    padding: 0px;
  }

  .ite-box31 h1 {
    margin: 0 10px;
    font-size: 1.45rem;
  }

  .feature-item {
    flex: 1 1 100%;
  }

  .feature-description {
    font-size: 12px;
  }
}

.trial-section-all-in-one {
  display: flex;
  margin-top: 80px;
  background-image: url("./img/black-for-gamer.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  color: white;
  height: 650px;
  border-bottom-left-radius: 20px;
}

/* slider  4 try free trails css */
.trial-section{
  display: flex;
  margin-top: 80px;
  background-image: url("./img/black\ for\ gamers.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  color: white;
  height: 505px;
  border-bottom-left-radius: 20px;
}

.trial-info {
  flex: 2;
  border-radius: 10px;
}

.trial-info h1 {
  font-weight: 800;
  font-size: 40px;
  margin-top: 80px;
  margin-left: 50px;
}

.trial-info p {
  margin-top: 10px;
  /* margin-bottom: 50px; */
  width: 50%;
  margin-left: 55px;
  font-size: 20px;
  gap: 10px;
  line-height: 2pc;
}

.trial-info a {
  margin-left: 55px;
}

.trial-infos {
  flex: 2;
  border-radius: 10px;
}

.trial-infos h1 {
  font-weight: 800;
  font-size: 40px;
  margin-top: 80px;
  margin-left: 50px;
}

.trial-infos p {
  margin-top: 10px;
  margin-bottom: 20px;
  width: 50%;
  margin-left: 55px;
  font-size: 20px;
  gap: 10px;
  line-height: 2pc;
}

.trial-button {
  background-color: rgba(247, 196, 67, 0.9);
  width: 200px;
  color: #333;
  font-size: 20px;
  border-radius: 50px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
  padding: 12px 12px;
  margin-bottom: 10px;
}

.trial-button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

.pricing,
.subscription-details {
  display: block;
  color: white;
  margin-left: 50px;
}

.freetraial-faq {
  margin-top: 100px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .trial-section {
    background-image: url("./img/try-slider2-half.jpg");
    border-radius: 20px;
    height: 790px;
    width: auto;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10%;
  }

  .app-list-container {
    margin-top: 50px !important;
  }

  .trial-info h1 {
    font-size: 25px;
    margin-top: 2px;
    width: 100%;
    margin: 0px;
    text-align: left;
  }

  .trial-info p {
    font-size: 16px;
    width: 100%;
    text-align: left;
    margin-left: -2px;
  }

  .trial-infos h1 {
    font-size: 25px;
    margin-top: 2px;
    width: 100%;
    margin: 0px;
    text-align: left;
  }

  .trial-infos p {
    font-size: 16px;
    width: 100%;
    text-align: left;
    margin-left: -2px;
  }

  .trial-button {
    width: 150px;
    font-size: 16px;
    margin-left: -2px;
    /* margin-top: -15px; */
  }

  .pricing,
  .subscription-details {
    margin-left: 0px;
  }

  .freetraial-faq {
    margin-top: 50px !important;
  }
}

/* section11 css */
.app-list-container {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  padding: 0;
}

.app-card {
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid black;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}

.app-card h2 {
  text-align: center;
  padding: 30px 40px;
  background-color: #f4f1ed;
  font-size: 28px;
  font-weight: 800;
}

.app-details {
  padding: 40px 40px;
}

.app-details p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}

.app-details span {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
}

.app-card button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: rgba(247, 196, 67, 0.9);
  color: black;
  border: 3px solid black;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 800;
}

.app-card button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

@media (max-width: 768px) {
  .app-list-container {
    padding: 5%;
  }

  .app-card {
    flex: 1 1 100%;
  }
}

/* slider try to free 6 */
.responsive-div {
  background-color: #f4f1ed;
  padding: 90px;
  text-align: center;
  border-radius: 20px;
  margin-top: 100px;
}

.responsive-div h1 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 800;
}

.responsive-div p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2pc;
  margin: 45px 0;
}

.responsive-div button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgba(247, 196, 67, 0.9);
  color: black;

  border: 3px solid black;
  cursor: pointer;
  font-weight: 800;
  border-radius: 50px;
}

.responsive-div button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .responsive-div {
    margin-top: 0px;
    padding: 10%;
    text-align: start;
  }

  .responsive-div h1 {
    font-size: 24px;
    line-height: 40px;
  }

  .responsive-div p {
    font-size: 14px;
    margin: 20px 0;
  }

  .responsive-div button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .responsive-div h1 {
    font-size: 30px;
  }

  .responsive-div p {
    font-size: 16px;
    line-height: 30px;
  }

  .responsive-div button {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* slider try ti free 7  */
.content-wrapper {
  position: relative;
  padding: 0;
  margin: 100px auto;
  margin-bottom: 170px;
}

.image-section {
  width: 100%;
  height: 900px;
}

.image-section img {
  width: 100%;
  border-radius: 20px;
  height: 1050px;
}

.overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  height: auto;
  color: white;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  margin: 90px;
}

.overlay-text h2 {
  font-size: 3rem;
  font-weight: 700;
}

.overlay-text h3 {
  font-weight: 800;
}

.overlay-text p {
  text-align: left;
}

.overlay-text a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline !important;
  outline: none;
  color: #0f71f0 !important;
}

@media (max-width: 480px) {
  .image-section img {
    height: 200px;
    gap: 50px;
    padding: 10px;
    border-radius: 20px;
    margin-top: -40px;
  }

  .overlay-text {
    background-color: rgb(59, 58, 58);
    left: -80px;
    width: calc(100% - 20px);
    font-size: 16px;
    margin-top: 220px;
    border-radius: 20px;
  }
}

/* slider 3 of privacy monitor assistance  */
.content-wrappers {
  position: relative;
  padding: 0;
  margin: 100px auto;
  margin-bottom: 170px;
}

.image-sections {
  width: 100%;
  height: auto;
}

.image-sections img {
  width: 100%;
  border-radius: 20px;
}

.black-img-privacy {
  display: block;
}

.overlay-texts {
  position: absolute;
  top: 20px;
  left: 10px;
  height: auto;
  color: white;
  width: 40%;
  padding: 20px;
  box-sizing: border-box;
  margin: 90px;
}

.overlay-texts h2 {
  font-size: 44px;
  line-height: 46px;
  font-weight: 800;
  margin-bottom: 50px;
}

.overlay-texts li {
  text-align: left;
  font-size: 18px;
  line-height: 2pc;
  font-weight: 600;
  margin-bottom: 30px;
}

.icons-of-privacy-assist {
  margin-top: 100px;
}

@media (max-width: 568px) {
  .image-sections img {
    height: 200px;
    gap: 50px;
    padding: 10px;
    border-radius: 20px;
    margin-top: -40px;
  }

  .overlay-texts {
    background-color: #000;
    left: 10px;
    width: calc(100% - 20px);
    font-size: 16px;
    margin: 0px;
    border-radius: 20px;
  }

  .black-img-privacy {
    display: none;
  }

  .content-wrappers {
    position: relative;
    padding: 0;
    margin: 0px auto;
    margin-bottom: 0px;
  }

  .icons-of-privacy-assist {
    margin-top: 680px;
  }
}

@media (min-width:568px) and (max-width:1068px) {
  .overlay-texts {
    top: 10px;
    left: 10px;
    height: auto;
    color: white;
    width: 95%;
    margin: 10px;
  }
}

/* bussiness part css start */
/* slider 11 */
.business-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
}

.business-image {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  box-sizing: border-box;
}

.business-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.business-text {
  flex: 1;
  padding: 10px;
}

.business-text h1 {
  font-size: 40px;
  margin-bottom: 10px;

  font-weight: 900;
}

.business-text p {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 10px;
}

.business-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgba(247, 196, 67, 0.9);
  color: black;
  border: 3px solid black;
  cursor: pointer;
  font-weight: 800;
  font-size: 20px;
  border-radius: 50px;
}

.business-button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

@media (max-width: 768px) {
  .business-container {
    flex-direction: column;
    text-align: center;
  }

  .business-image {
    padding: 0;
    margin-bottom: 20px;
    border: none;
  }

  .business-text {
    padding: 0;
  }
}

/* slider 12 */
.busii {
  margin-top: 100px;
  background-color: #f4f1ed;
  border-radius: 20px;
}

.bussin-responsive {
  padding: 20px;
  margin-top: 0;
}

.bussin-responsive h1 {
  font-size: 50px;
  text-align: center;
  margin-top: 50px;
  font-weight: 900;
}

.bussin-responsive p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 20px;
}

.step-item {
  text-align: center;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item img {
  width: 50px;
  height: 40px;
  display: block;
  margin: 0 auto;
}

.step-item h4 {
  font-size: 1.2em;
  margin: 10px 0;
  font-weight: 800;
}

.step-item p {
  font-size: 1em;
}

/* Media Queries */
@media (min-width: 600px) {
  .steps {
    flex-direction: row;
    justify-content: space-around;
  }

  .step-item {
    flex: 1;
    margin: 20px;
  }

  .step-item img {
    width: 50px;
    height: 40px;
  }

  .step-item h4 {
    font-size: 1.4em;
  }

  .step-item p {
    font-size: 1.1em;
  }
}

@media (min-width: 900px) {
  .bussin-responsive {
    max-width: 1200px;
    margin: 0 auto;
  }

  .step-item {
    margin: 30px;
  }

  .step-item img {
    width: 90px;
  }

  .step-item h4 {
    font-size: 1.5em;
  }

  .step-item p {
    font-size: 1.2em;
  }
}

/* bussiness part css start */
/* slider 1 */
.cybersecurity-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-sizing: border-box;
}

.carousel {
  flex: 1 1 50%;
  box-sizing: border-box;
  position: relative;
}

.carousel-images {
  display: flex;
  overflow: hidden;
  margin-top: -200px;
}

.carousel-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.carousel-button {
  position: absolute;
  top: 50%;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 2rem;
  transform: translateY(-50%);
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

.cybersecurity-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  margin-top: 100px;
  box-sizing: border-box;
}

.carousel {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.cybersecurity-content-container {
  flex: 1 1 50%;
  max-width: 700px;
  padding-left: 20px;
  box-sizing: border-box;
}

.cybersecurity-content-container h1 {
  font-weight: 800;
  font-size: 45px;
}

.cybersecurity-section h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cybersecurity {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.cybersecurity li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.cybersecurity li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

.cybersecurity-dropdown {
  width: 21%;
}

.cybersecurity-dropdown select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.cybersecurity-pricing {
  font-size: 1.5rem;
}

.cybersecurity-old-price {
  text-decoration: line-through;
  margin-bottom: 0;
}

.cybersecurity-new-price {
  font-weight: bold;
  color: #000;
  font-size: 35px;
}

.first-year {
  font-size: 1rem;
  color: #000;
}

.save {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #007644;
}

.buttons1 {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.saving-para {
  font-size: 14px;
  margin-bottom: 20px;
}

.saving-para a {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .cybersecurity-section {
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
  }

  .carousel {
    width: 100%;
    margin-bottom: 20px;
  }

  .cybersecurity-content-container {
    width: 100%;
    padding-left: 0;
  }

  .cybersecurity-content-container h1 {
    font-weight: 800;
    font-size: 36px;
  }
}

@media (min-width: 1028px) and (max-width: 1366px) {
  .carousel {
    width: 80%;
  }

  .cybersecurity-content-container {
    padding-left: 10px;
  }

  .cybersecurity-section h1 {
    font-size: 32px;
  }

  .cybersecurity li {
    font-size: 1rem;
  }

  .cybersecurity-new-price {
    font-size: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 1025px) {
  .carousel-item img {
    height: 500px;
    object-fit: cover;
  }
}

/* Additional CSS for Slider */
/* slide 2 */
.b31 h1 {
  font-size: 52px;
  margin-top: 50px;
  text-align: center;
  font-weight: 800;
}

.business-plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  margin-top: 50px;
}

.business-plan {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 400px;
  position: relative;
}

.business-plan a {
  color: #000;
}

.business-plan a:hover {
  color: #0070f3;
}

.business-plan h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.business-plan h2 span {
  font-weight: 400;
  font-size: 20px;
}

.business-most-popular {
  border: 3px solid black;
}

.business-plan-header {
  margin-bottom: 20px;
}

.business-plan-header h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.business-badge {
  background-color: #0070f3;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9em;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.business-old-price {
  text-decoration: line-through;
  color: #777;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 500;
}

.business-discount {
  color: #007644;
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
}

.business-new-price {
  font-size: 2em;
  font-weight: bold;
}

.business-price-term {
  font-size: 14px;
}

.business-plan-devices button {
  background-color: #fff;
  padding: 1px 10px;
  border: 1px solid black;
  color: black;
  font-size: 12px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.business-plan-devices button:hover {
  background-color: #000;
  color: #fff;
}

.business-plan-devices .active {
  background-color: #000;
  color: #fff;
}

.business-plans-para span {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 9pt;
  line-height: 1pc;
}

.business-plans-para span a {
  color: #0070f3;
  text-decoration: underline;
}

.b31 {
  margin-top: 100px;
  margin: 0;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  text-align: center;
}

.pln {
  margin-top: 20px;
  margin-left: 30px;
  font-size: 18px;
  text-align: start;
  font-weight: 700;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background-color: #f7f7f7;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  margin: 10px;
}

.circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 5px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.percentage {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  position: absolute;
}

.stat-description {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  max-width: 250px;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }

  .stat-item {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .b31 h1 {
    font-size: 1.8em;
    margin-top: 100px;
  }

  .business-plans {
    flex-direction: column;
    padding: 0 10px;
    gap: 10px;
  }

  .business-plan {
    width: 100%;
    padding: 15px;
    /* margin-top: 23px; */
    margin-top: -36px;
    margin-bottom: 20px;
  }

  .business-plan-header {
    margin-bottom: 15px;
  }

  .business-new-price {
    font-size: 1.5em;
    margin: 10px 0;
  }

  .business-plan-devices button {
    padding: 5px 8px;
    font-size: 0.9em;
  }

  .b31 {
    margin-top: 50px;
    padding: 15px;
    border-radius: 5px;
  }
}

@media (max-width: 480px) {

  /* .business-plans {
    margin-top: -10px !important;
  } */
  .business-plan {
    margin-top: 0px;
  }
}

/* antivese plus page */
.plus-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 40px;
}

.plus-image-section {
  width: 100%;
  height: 100%;
}

.plus-image-section img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.antivirus-vpn-plus-img {
  margin-left: 90px;
  margin-right: 0px;
}

.plus-image-section1 img {
  height: 1000px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.plus-content-section {
  text-align: center;
}

.plus-title1 {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 900;
}

.plus-description1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.plus-device-select {
  padding: 15px;
  margin-bottom: 20px;
  width: 250px;
  border-radius: 10px;
  border: 4px solid black;
}

.plus-pricing {
  display: flex;
  flex-direction: column;
}

.plus-old-price-section,
.plus-new-price-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.plus-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.5rem;
}

.plus-discount,
.plus-new-price {
  font-size: 1.5rem;
  color: #000;
}

.plus-discount {
  color: green;
}

.plus-first-year {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

.plus-cta-button {
  background-color: #ffcc00;
  border: 3px solid black;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  color: #000;
  font-weight: 800;
}

.plus-cta-button1 {
  background-color: #ffcc00;
  border: 3px solid black;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  color: #000;
  font-weight: 800;
}

@media (min-width: 1024px) {
  .plus-main-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .plus-image-section {
    width: 50%;
  }

  .plus-image-section1 {
    width: 50%;
    text-align: left;
  }

  .plus-content-section {
    width: 50%;
    text-align: left;
  }

  .plus-title1 {
    font-size: 45px;
    text-align: start;
  }

  .plus-description1 {
    font-size: 1.25rem;
  }

  .plus-cta-button {
    width: auto;
  }

  .plus-cta-button1 {
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .plus-main-container {
    margin-top: 50px;
  }

  .plus-image-section1 img {
    width: 700px;
    height: 400px;
  }

  .plus-image-section img {
    height: 400px;
  }

  .plus-title1 {
    font-size: 1.5rem;
  }

  .plus-description1 {
    font-size: 1rem;
  }

  .plus-cta-button {
    font-size: 0.875rem;
    padding: 10px 20px;
  }

  .plus-cta-button1 {
    font-size: 0.875rem;
    padding: 10px 20px;
  }

  .plus-old-price-section,
  .plus-new-price-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {

  .plus-content-section {
    text-align: start;
  }

  .plus-main-container {
    padding: 10px;
    gap: 10px;
  }

  .plus-image-section1 img {
    height: 300px;
    width: 300px;
  }

  .plus-image-section img {
    max-height: 300px;
  }

  .plus-old-price-section {
    margin-left: 0px;
    margin-top: 1px;
    font-size: 5px;
    gap: 10px;
    margin-left: 80px;
  }

  .plus-new-price-section {
    margin-left: 0px;
    margin-top: -10px;
    font-size: 5px;
    gap: 10px;
  }

  .plus-title1 {
    font-size: 36px;
    margin-top: 20px;
    margin-left: 0px;
  }

  .plus-description1 {
    font-size: 18px;
    margin-left: 0px;
  }

  .plus-cta-button {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .plus-cta-button1 {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .antivirus-vpn-plus-img {
    margin-left: 0px;
  }
}

/* Features Section */
.plus-features-section {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.plus-features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 900;
  color: #333;
}

.plus-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.plus-feature-item {
  max-width: 400px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.plus-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #333;
}

.plus-feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.plus-feature-item p {
  font-size: 1em;
  color: #666;
}

@media (max-width: 768px) {
  .plus-features-section h2 {
    font-size: 2rem;
  }

  .plus-icon {
    font-size: 2.5em;
  }

  .plus-feature-item h3 {
    font-size: 1.25rem;
  }

  .plus-feature-item p {
    font-size: 0.9em;
  }

  .plus-features-container {
    flex-direction: column;
    align-items: center;
  }

  .plus-feature-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .plus-features-section h2 {
    font-size: 1.75rem;
  }

  .plus-icon {
    font-size: 2em;
  }

  .plus-feature-item h3 {
    font-size: 1rem;
  }

  .plus-feature-item p {
    font-size: 16px;
  }
}

/* antiveStand  css  */
.stand-product-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
}

.stand-product-image {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.stand-product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.stand-product-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.stand-product-title {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 10px;
  justify-items: center;
}

.stand-product-description {
  font-size: 20px;
  margin-bottom: 20px;
}

.stand-product-pricing,
.stand-product-price-current,
.stand-product-cta,
.stand-device-support {
  margin-bottom: 15px;
  font-size: 0px;
}

.stand-price-original {
  color: #999;
  font-size: 2rem;
}

.stand-price-discount {
  color: rgb(14, 223, 94);
  font-size: 20px;
}

.stand-price-discount span {
  font-size: 20px;
}

.stand-price-current {
  font-size: 2.5rem;
  color: rgb(8, 8, 8);
  margin-right: 5px;
  font-weight: bold;
}

.stand-price-duration {
  font-size: 40px;
  color: #555;
}

.stand-cta-button {
  padding: 10px 20px;
  background-color: rgb(212, 212, 34);
  color: black;
  border: 3px solid black;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50px;
}

.stand-subscription-details,
.stand-device-support span {
  font-size: 0.875rem;
  color: #666;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .stand-product-image {
    max-width: 100%;
    padding: 10px;
  }

  .stand-product-content {
    margin-top: 20px;
  }

  .stand-product-title {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .stand-price-discount {
    text-align: center;
  }

  .stand-price-original {
    justify-content: center;
    /* margin-left: 60px; */
  }

  .stand-product-description {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .stand-price-current {
    font-size: 1.5rem;
  }

  .stand-cta-button {
    width: 100%;
    padding: 15px;
  }
}

/* antiverse gamer css */
.gamer-product-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 30px;
}

.gamer-product-image {
  flex: 1;
  max-width: 50%;
  border-radius: 40px;
  box-sizing: border-box;
}

.gamer-product-image1 {
  flex: 1;
  max-width: 50%;
  border-radius: 40px;
  box-sizing: border-box;
}

.gamer-product-image img {
  border-radius: 20px;
}

.gamer-product-image1 img {
  border-radius: 20px;
}

.gamer-product-content {
  flex: 1;
  max-width: 50%;
  padding-left: 70px;
}

.gamer-product-title {
  font-size: 44px;
  font-weight: 700;
}

.gamer-product-description {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

.gamer-product-descriptions {
  font-weight: 800;
}

.gamer-pricing-toggle {
  border-radius: 50px;
  background-color: #000;
  width: 230px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.gamer-toggle-button {
  color: white;
  border-radius: 40px;
  margin: 0 5px;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.gamer-toggle-button.active {
  background-color: white;
  color: black;
}

.gamer-product-pricing {
  font-size: 25px;
  margin-top: 20px;
}

.gamer-price-discount {
  color: #00b300;
}

.gamer-product-price-current {
  font-size: 25px;
}

.gamer-price-current {
  font-size: 39px;
  font-weight: 900;
}

.gamer-cta-button {
  background-color: rgb(224, 217, 0);
  border: none;
  border-radius: 30px;
  padding: 15px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s ease;
  border: 3px solid #000;
}

.gamer-cta-button:hover {
  --primary-color-dark: rgba(224, 203, 16, 0.9);
  --primary-color: rgba(247, 196, 67, 0.9);
}

/* Large Screens (1200px and above) */
@media (min-width: 1200px) {

  .gamer-product-image,
  .gamer-product-content {
    max-width: 50%;
  }

  .gamer-product-image1 {
    max-width: 50%;
  }

  .gamer-product-image {
    margin-bottom: 0;
    border-radius: 20px;
  }

  .gamer-product-image1 {
    margin-bottom: 0;
    border-radius: 20px;
  }

}

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .gamer-product-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 10px;
  }

  .gamer-pricing-toggle {
    margin-left: 265px;
  }

  .gamer-product-image,
  .gamer-product-content {
    max-width: 100%;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
  }

  .gamer-product-image1 {
    max-width: 100%;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
  }

  .gamer-product-image {
    margin-bottom: 20px;
  }

  .gamer-product-image1 {
    margin-bottom: 20px;
  }

}

/* Small Screens (768px and below) */
@media (max-width: 768px) {
  .gamer-product-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0px;
  }

  .gamer-product-image,
  .gamer-product-content {
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .gamer-product-image1 {
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .gamer-product-title {
    font-size: 1.5rem;
    margin-top: 0px;
  }

  .gamer-product-description {
    font-size: 1rem;
  }

  .gamer-price-current {
    font-size: 1.5rem;
  }

  .gamer-cta-button {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
  }
}

/* Extra Small Screens (600px and below) */
@media (max-width: 600px) {
  .gamer-product-content {
    margin-top: 0 !important;
  }

  .gamer-pricing-toggle {
    max-width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-left: 60px;
  }

  .gamer-toggle-button {
    font-size: 14px;
    padding: 8px 15px;
    margin: 5px 0;
  }

  .gamer-cta-button {
    padding: 12px;
  }

  .gamer-product-image img {
    margin-top: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1440px) {
  .customer_top {
    margin: 4rem 1rem;
  }


  .section-flex {
    gap: 1rem;
    padding-top: 0;
    margin-top: 100px;
    display: flex;
  }

  .info-section button {
    width: 35%;
  }

  .about__container {
    gap: 1rem;
    max-width: auto;
  }

  .about__contents {
    padding-left: 132px;
  }

  .section__description {
    font-size: 18px;
    /* width: auto; */
  }

  .conta h1 {
    margin-top: 60px;
  }

  .about__image {
    width: 50%;
  }

  .about__content {
    padding: 0px !important;
    width: 50%;
  }

  .item-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    margin-top: 100px;
  }

  .info-item {
    display: flex;
    flex-direction: row;
    max-width: 278px;
    font-size: 20px;
  }

  .content-wrapper {
    margin: 100px auto;
    margin-bottom: 80px;
  }

  .a12 {
    margin-top: 104px;
    margin-right: 20px;
    margin-left: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .overlay-content12 {
    width: 100%;
  }

  .trial-info h1 {
    margin-top: 12px;
  }

  .pricing,
  .subscription-details {
    margin-left: 75px;
  }

  .trial-section {
    height: 565px;
  }

  .overlay-text {
    width: auto;
    margin: auto;
  }

  .image-section {
    width: 100%;
    height: 830px;
  }

  .image-section img {
    height: 830px;
  }

  .business-plans {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: 50px;
  }

  .btn {
    font-size: 15px;
  }

  .trick {
    font-size: 14px;
  }

  .plan-comparison h1 {
    font-size: 48px;
    font-weight: 800;
  }

  main {
    margin-top: 120px !important;
  }

  .info-section img {
    max-width: 175px;
  }
}

.spyware-head {
  padding: 0px 0px 0px 0px;
}

/* onestopsolution-ultra-vpn page */
.background-vpn {
  position: relative;
  width: 100%;
  height: 690px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0px;
  background-image: url("./img/3.jpg");
}

.vpn-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 50%;
  color: rgb(22, 21, 21);
  width: 50%;
  margin-top: 100px;
}

.vpn-context h1 {
  font-weight: 800;
  font-size: 48px;
  width: 100%;
  margin-left: 95px;
  text-align: left;
  margin-top: 321px;
}

.vpn-context p {
  margin-top: 10px;
  font-size: 20px;
}

.vpn-context ul {
  padding: 0;
}

.vpn-context ul li {
  margin-left: 110px;
}

.vpn-button {
  background-color: rgba(247, 196, 67, 0.9);
  color: #333;
  font-size: 20px;
  border-radius: 50px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  padding: 10px 15px;
  margin-left: 95px;
}

.vpn-button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

.section-tarct img {
  height: 580px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .background-vpn {
    background-image: url("./img/img-avengers-hero-d.avif");
    height: 590px;
    padding: 5%;
  }

  .vpn-context {
    font-size: 1rem;
    padding: 20px;
    margin-top: 50px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .vpn-context h1 {
    font-weight: 700;
    font-size: 30px;
    width: 70%;
    margin-right: 350px;
    text-align: left;
    margin-top: 300px;
  }

  .vpn-context p {
    font-size: 20px;
    width: 70%;
    margin-left: 0px;
    text-align: left;
    line-height: 1.2;
  }

  .vpn-context ul li {
    margin-left: 10px;
  }

  .vpn-button {
    background-color: rgba(247, 196, 67, 0.9);
    color: #333;
    /* width:%; */
    text-align: left !important;
    margin-left: 20px !important;
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .spyware-head {
    padding: 30px 0px 0px 0px;
  }

  .background-vpn {
    background-image: url("./img/img-avengers-hero-d.avif");
    height: auto;
    padding: 5%;
    margin-top: 50px;
  }

  .vpn-context {
    font-size: 1rem;
    padding: 10px;
    margin-top: 30px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .vpn-context h1 {
    font-size: 22px;
    margin-top: 20px;
    margin-left: 0;
    width: 50%;
    text-align: center;
  }

  .vpn-context p {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .vpn-context ul li {
    margin-left: 0;
    margin-left: -300px;
  }

  .vpn-button {
    background-color: rgba(247, 196, 67, 0.9);
    color: #333;
    width: 100%;
    font-size: 18px;
    border-radius: 20px;
    border: 2px solid black;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .background-vpn {
    background-image: url("./img/img-avengers-hero-wotags-m.jpg");
    margin-top: 50px;
  }

  .vpn-context {
    font-size: 1rem;
    padding: 10px;
    margin-top: 30px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .vpn-context h1 {
    font-size: 30px;
    margin-top: 20px;
    width: 100%;
    text-align: left;
  }

  .vpn-context p {
    font-size: 20px;
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .vpn-context ul li {
    margin-left: 0;
  }

  .vpn-button {
    background-color: rgba(247, 196, 67, 0.9);
    color: #333;
    width: 100%;
    font-size: 16px;
    border-radius: 20px;
    border: 2px solid black;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px;
    margin-left: 0px;
  }

  .section-tarct {
    margin-top: 105px;
  }

  .section-tarct img {
    height: 400px;
  }
}

.p.ac {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

.about__image-container {
  height: 100%;
  width: 100%;
}

.centered-text {
  text-align: center;
  margin-top: 100px;
  font-size: 60px;
}

.centered-text a {
  text-decoration: none;
  color: rgb(51, 12, 192);
  font-weight: bold;
  text-decoration: underline;
}

.game-optimizer-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background-image: url("./img/Antivirus gamer black man image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
}

.antivirusgamer h1 {
  font-size: 36px;
  line-height: 50px;
  text-align: center;
  margin-top: 100px;
  font-weight: 800
}

.antivirusgamer h3 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: 600;
}

.game-optimizer-content {
  border-radius: 10px;
  text-align: left;
  position: relative;
  margin-left: 19px;
  margin-top: 80px;
}

.game-optimizer-content h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 56px;
}

.game-optimizer-content p {
  font-size: 20px;
  line-height: 2pc;
  color: #242424;
  font-weight: 500;
}

.game-optimizer-overlay span {
  font-size: 15px;
}

.game-optimizer-content ul {
  font-size: 20px;

  text-align: left;
  margin-left: -10px;
}

.game-optimizer-content ul li p {
  margin: 0;
  font-size: 19px;
  color: #242424;
}

@media (max-width: 768px) {
  .game-optimizer-container {
    background-image: url("./img/Untitled design (2).png");
    margin-top: 60px;
    padding: 20px;
    height: 900px;
  }

  .game-optimizer-content {
    font-size: 1rem;
    padding: 15px;
    margin-left: 15px;
    margin-top: 0px;
  }

  .game-optimizer-content h1 {
    font-size: 25px;
  }

  .game-optimizer-content p {
    font-size: 14px;
  }

  .game-optimizer-content button {
    width: 150px;
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .game-optimizer-container {
    background-image: url("./img/Untitled design (2).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .game-optimizer-content {
    font-size: 1.5rem;
  }

  .game-optimizer-content p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1025px) {
  .game-optimizer-container {
    padding: 50px;
  }

  .game-optimizer-content {
    font-size: 2rem;
  }
}

/* adding gamer page  */
.designgamerr-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
}

.designgamerr-section-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.designgamerr-about__content {
  flex: 1;
  max-width: 50%;
}

.designgamerr-section__header {
  font-size: 45px;
  font-weight: 800;

  margin-bottom: 30px;
}

.designgamerr-section__description {
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 20px;
}

.designgamerr-about__image {
  flex: 1;
  max-width: 50%;
}

.designgamerr-about__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .designgamerr-container {
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
  }

  .designgamerr-about__content,
  .designgamerr-about__image {
    max-width: 100%;
  }

  .designgamerr-section__header {
    font-size: 1.5em;
  }
}

/* gemer adding page  */
.container-fluid {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  background-color: #000;
}

.design-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.design-fluid h1 {
  margin-top: 100px;
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
}

.design-fluid p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

.design-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.design-feature-item {
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.design-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.design-feature-item h2 {
  font-size: 24px;
  margin-top: 30px;
  font-weight: 800;
}

.design-feature-item p {
  margin-top: 50px;
  text-align: center;
}

.design-feature-item img {
  max-width: 15%;
  margin: 0 auto;
}

.design-fluid span {
  display: block;
  font-size: 0.875em;
  margin-top: 20px;
  text-align: center;
  color: white;
}

@media (min-width: 576px) {
  .design-feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 768px) {
  .design-feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 992px) {
  .design-feature-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (min-width: 1200px) {
  .design-feature-item {
    flex: 1 1 calc(25% - 20px);
  }
}

/* adding ios page  */
.virusbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.virusbox-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  position: relative;
}

.virusbox-image {
  position: relative;
  width: 75%;
  margin-left: 250px;
  height: 535px;
}

.virusbox-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.virusbox-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  padding: 20px;
  margin-top: 80px;
  z-index: 1;
  color: black;
}

.virusbox-text h1 {
  font-size: 43px;
  margin-bottom: 20px;
  font-weight: 800;
  margin-left: 100px;
  color: black;
}

.virusbox-text h5 {
  font-size: 1.5em;
  margin-top: 20px;
  font-weight: 800;
  margin-left: 100px;
}

.virusbox-text p {
  margin: 10px 0;
  margin-left: 100px;
}

.virusbox-text h1,
.virusbox-text h5,
.virusbox-text p {
  color: black;
}

@media (max-width: 768px) {
  .virusbox-content {
    flex-direction: column;
    position: relative;
  }

  .virusbox-image {
    height: 250px;
    margin-left: 0;
  }

  .virusbox-image-img {
    height: 100%;
  }

  .virusbox-text {
    position: static;
    width: 100%;
    background: lightblue;
    margin-left: 0;
    color: #1a0f0f;
    padding: 10px 20px;
  }

  .virusbox-text h1 {
    font-size: 24px;
    margin-left: 0;
  }

  .virusbox-text h5 {
    font-size: 1.2em;
    margin-left: 0;
  }

  .virusbox-text p {
    margin-left: 0;
  }
}

/* virusmovel page */
/* slider 1 */

.movel-device-background {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-left: 0;
  background-image: url("./img/1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -50px;
  padding: 20px;
}

.movel-device-overlay-content {
  flex: 1;
  padding: 20px;
  margin-top: 28px;
}

.movel-device-overlay-content h3 {
  font-weight: 800;
  width: 50%;

  text-align: left;
  font-size: 52px;
  line-height: 76px;
}

.movel-device-overlay-content h5 {
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.movel-device-overlay-content p {
  font-size: 20px;
  margin-top: 20px;
  width: 50%;
  margin-bottom: 20px;
}

.movel-device-overlay-content .custom-button {
  background-color: rgba(247, 196, 67, 0.9);
  color: #333;
  font-size: 1.25rem;
  border-radius: 50px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 20px;
  margin-top: 21px;
}

.movel-device-overlay-content .custom-button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

.movel-device-content {
  flex: 1;
  margin-top: 100px;
  margin-left: 110px;
}

@media (max-width: 768px) {
  .movel-device-background {
    background-image: url("./img/small-business-owner-using-technology-mobile.jpg");
    background-size: cover;
    height: 900px;
    flex-direction: column;
    padding: 5%;
    justify-content: center;
  }

  .movel-device-content {
    margin-left: 0;
    margin-top: 50px;
  }

  .movel-device-overlay-content {
    font-size: 1rem;
    padding: 10px;
    text-align: center;
  }

  .movel-device-overlay-content h3 {
    font-size: 35px;
    line-height: 40px;
    margin-top: 0px;
    width: 100%;
    text-align: center;
  }

  .movel-device-overlay-content h5 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
    margin-top: 20px;
  }

  .movel-device-overlay-content p {
    font-size: 20px;
    width: 100%;
  }

  .movel-device-overlay-content .custom-button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-left: 70px;
  }

  .buttons1 {
    display: flex;
    justify-content: start;
    margin-top: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .movel-device-background {
    background-image: url("./img/small-business-owner-using-technology-desktop.jpg");
    background-size: cover;
    height: 800px;
    justify-content: flex-end;
  }

  .movel-device-overlay-content {
    font-size: 1.25rem;
  }

  .movel-device-overlay-content h3 {
    width: 70%;
    font-size: 52px;
    line-height: 76px;
  }

  .movel-device-overlay-content p {
    font-size: 20px;
    width: 50%;
  }
}

@media (min-width: 1025px) {
  .movel-device-overlay-content {
    font-size: 2rem;
    text-align: left;
  }

  .movel-device-overlay-content p {
    font-size: 20px;
  }
}

.dotted-underline {
  text-decoration: underline;
  text-decoration-style: dotted;
  color: black;
}

.dotted-underline:hover {
  color: blue;
}

/* slide 2 */
.movel-main-content {
  display: flex;
  flex-direction: column;
}

.movel-main-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.movel-content-section {
  flex: 1;
  padding: 20px;
}

.movel-content-section h5 {
  font-weight: 700;
  margin-top: 20px;
  font-size: 20px;
}

.underline-text {
  text-decoration: underline;
}

.movel-title1 {
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
}

.movel-description1 {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: -0.3px;
  line-height: 2pc;
  margin-bottom: 10px;
  font-weight: 500;
}

.movel-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .movel-main-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .movel-content-section {
    padding: 15px;
  }

  .movel-title1 {
    font-size: 40px;
  }

  .movel-description1 {
    font-size: 18px;
  }

  .movel-image-section {
    margin: 20px 0 0;
  }
}

@media (max-width: 768px) {
  .movel-main-container {
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
    margin-top: 0px;
  }

  .movel-content-section {
    padding: 10px;
  }

  .movel-title1 {
    font-size: 30px;
  }

  .movel-description1 {
    font-size: 16px;
    width: 350px;
    text-align: left;
  }

  .movel-image-section {
    margin: 20px 0 0;
  }

  .movel-image-section img {
    height: 275px;
    border-radius: 20px;
    width: 347px;
  }
}

@media (min-width: 1200px) {
  .movel-main-container {
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* slider 3 */
.movel-h {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.movel-p {
  font-size: 18px;
  line-height: 30px;
  font-weight: none;
}

.movel-buuton {
  color: #fff;
  background-color: #0f71f0;
  border-radius: 10px;
  padding: 4px 15px;
  white-space: nowrap;
  display: inline-block;
  font-size: 1pc;
  line-height: 24px;
  border: none;
}

/* slider 4 */
.virusmovel-background {
  width: 100%;
  display: flex;
  margin-left: 0;
  background-image: url("./img/bussinessman using laptop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.virusmovel-overlay-content {
  flex: 1;
  padding: 20px;
}

.virusmovel-overlay-content h1 {
  font-weight: 800;
  width: 50%;
  margin-top: 35px;
  text-align: left;
  margin-left: 60px;
  font-size: 52px;
  line-height: 56px;
}

.virusmovel-overlay-content h5 {
  font-weight: 700;
  width: 50%;
  text-align: left;
  margin-left: 40px;
  margin-top: 20px;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.virusmovel-overlay-content ul li {
  margin-left: 20px;
}

.virusmovel-overlay-content p {
  margin-top: 20px;
  width: 50%;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}

.virusmovel-overlay-content .virusmovel-button {
  background-color: rgba(247, 196, 67, 0.9);
  color: #333;
  font-size: 1.25rem;
  border-radius: 50px;
  border: 2px solid black;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 40px;
}

.virusmovel-overlay-content .virusmovel-button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

.virusmovel-content {
  flex: 1;
  margin-top: 100px;
  margin-left: 110px;
}

/* Mobile */
@media (max-width: 768px) {
  .virusmovel-background {
    background-image: url("./img/small-business-owner-using-technology-mobile.jpg");
    background-size: cover;
    height: auto;
    flex-direction: column;
    margin-top: 175px;
    padding: 5%;
  }

  .virusmovel-content {
    margin-left: 0;
    margin-top: 50px;
  }

  .virusmovel-overlay-content {
    font-size: 1rem;
    padding: 10px;
    margin-top: 0;
  }

  .virusmovel-overlay-content h1 {
    font-size: 1.5rem;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
  }

  .virusmovel-overlay-content h5 {
    font-size: 1.25rem;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .virusmovel-overlay-content p {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .virusmovel-overlay-content .virusmovel-button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-left: 0;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .virusmovel-background {
    background-image: url("./img/small-business-owner-using-technology-desktop.jpg");
    background-size: cover;
    background-position: center;
    height: 900px;
    padding: 0% 5% 5% 5%;
  }

  .virusmovel-overlay-content {
    font-size: 1.5rem;
    padding: 20px;
  }

  .virusmovel-overlay-content h1 {
    font-size: 2rem;
    width: 100%;
    margin-top: 0px;
    margin-left: 0;
  }

  .virusmovel-overlay-content h5 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .virusmovel-overlay-content p {
    font-size: 1.125rem;
    width: 100%;
    margin-left: 0;
  }

  .virusmovel-overlay-content .virusmovel-button {
    width: 100%;
    padding: 15px;
    font-size: 1.125rem;
    margin-top: 10px;
    margin-left: 0;
  }
}

.movel-l {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* slider 6 */
.removel {
  background-color: black;
  padding: 60px;
  color: white;
  height: auto;
  margin: 0px 80px;
  border-radius: 20px;
}

.removel h1 {
  font-size: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
}

.removel p {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 30px;
}

.removel-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 100px;
}

.removel-box-left,
.removel-box-right {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.removel-box img {
  max-width: 10%;
  height: auto;
  margin-bottom: 20px;
  margin-left: 260px;
}

.removel-box h3 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 800;
}

.removel-box p {
  font-size: 20px;
  text-align: center;
  width: 50%;
  margin-left: 150px;
  line-height: 30px;
  margin-bottom: 24px;
}

.removel-box button {
  color: #ffffff;
  border: 2px solid white;
  border-radius: 50px;
  background: #242424;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 26px;
  font-weight: 800;
}

.removel-box button:hover {
  background-color: white;
  color: #000;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .removel-box {
    flex-direction: column;
    margin-top: 50px;
  }

  .removel h1 {
    font-size: 70px;
  }

  .removel p {
    font-size: 30px;
  }

  .removel-box-left,
  .removel-box-right {
    margin-bottom: 20px;
  }

  .removel-box-left h3,
  .removel-box-right h3 {
    font-size: 50px;
  }

  .removel-box img {
    max-width: 20%;
    margin-left: 210px;
  }

  .removel-box p {
    font-size: 30px;
    width: 100%;
    margin-left: 0;
  }

  .removel-box button {
    width: 100%;
    padding: 20px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .removel-box {
    flex-direction: column;
    margin-top: 30px;
  }

  .removel-box-left,
  .removel-box-right {
    margin-bottom: 15px;
  }

  .removel {
    margin: 0px 10px;
    width: 370px;
  }

  .removel h1 {
    font-size: 45px;
  }

  .removel-box img {
    max-width: 30%;
    margin-left: 60px;
  }

  .removel-box p {
    font-size: 16px;
    width: 90%;
    margin-left: 0;
  }

  .removel-box button {
    padding: 0px;
  }
}

/* Large Screens (min-width: 1440px) */
@media(min-width:1024px) and (max-width: 1440px) {
  .removel {
    padding: 40px;
  }

  .removel h1 {
    font-size: 60px;
  }

  .removel p {
    font-size: 1.5em;
  }

  .removel-box {
    margin-top: 150px;
  }

  .removel-box h3 {
    font-size: 30px;
  }

  .removel-box p {
    font-size: 22px;
  }

  .removel-box img {
    max-width: 8%;
    margin-left: 200px;
  }
}

/* slider 8 */
.movel-responsive-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.movel-responsive-box-container h1 {
  font-weight: 900;
  font-size: 52px;
  line-height: 56px;
  margin: 3pc 0;
}

.movel-responsive-box-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}

.movel-responsive-box-container p {
  font-size: 20px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: 100px;
}

.movel-responsive-box-center-content {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
}

.movel-responsive-box-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.movel-responsive-box-info-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.movel-responsive-box-img-program {
  max-width: 150px;
  height: 80px;
}

.movel-responsive-box-img-program img {
  max-width: 100%;
  height: 70px;
  margin-top: -20px;
}

.movel-responsive-box-info h4 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 800;
  margin-top: 70px;
}

.movel-responsive-box-info p {
  font-size: 20px;
  margin: 0;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .movel-responsive-box-info {
    flex-direction: column;
    align-items: center;
  }

  .movel-responsive-box-info-item {
    margin-bottom: 20px;
    flex-direction: column;
  }

  .movel-responsive-box-img-program {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .movel-responsive-box-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .movel-responsive-box-info-item {
    margin-bottom: 15px;
    flex-direction: column;
  }

  .movel-responsive-box-img-program {
    max-width: 100%;
    margin-bottom: 5px;
  }

  .movel-responsive-box-info h4 {
    font-size: 16px;
    margin: 5px 0;
  }

  .movel-responsive-box-description {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 20px !important;
  }

  .movel-responsive-box-refund-note {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    margin-left: 20px;
  }
}

/* slider 9 */
.movel-box-dec-main-content {
  background-color: #f4f1ed;
  padding: 20px;
  width: 100%;
  margin-top: 100px;
}

.movel-box-dec-main-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
}

.movel-box-dec-content-section {
  flex: 1;
  padding: 20px;
  color: white;
}

.content-sec {
  gap: 20px;
}

.movel-box-dec-image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.movel-box-dec-image-section img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.movel-box-dec-title1 {
  color: #000;
  font-size: 50px;
  font-weight: 800;
}

.movel-box-dec-description1 {
  color: #000;
  font-size: 20px;
}

.movel-box-dec-content-section p {
  color: #000;
  font-size: 20px;
  letter-spacing: -0.3px;
  line-height: 2pc;
  margin-bottom: 20px;
}

.movel-box-dec-content-section a {
  color: #096bdb;
  text-align: center;
  font-size: 20px;
  justify-items: center;
}

@media (max-width: 1024px) {
  .movel-box-dec-main-container {
    flex-direction: column;
  }

  .movel-box-dec-content-section,
  .movel-box-dec-image-section {
    padding: 15px;
  }
}

@media (max-width: 768px) {

  .movel-box-dec-content-section,
  .movel-box-dec-image-section {
    padding: 10px;
  }

  .movel-box-dec-title1 {
    font-size: 1.5em;
  }

  .movel-box-dec-description1 {
    font-size: 1em;
  }
}

/* slider 12 */
.movel-include {
  background-color: black;
  color: white;
  padding: 20px;
}

.movel-include h1 {
  text-align: center;
  font-weight: 900;
  font-size: 52px;
  line-height: 56px;
  margin: 3pc 0;
  margin-top: 100px;
}

.movel-include p {
  text-align: center;
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

.movel-include h5 {
  text-align: center;
  font-weight: 800;
  margin-top: 30px;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.movel-include-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.movel-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 200px;
  text-align: center;
  margin-left: 70px;
  margin-top: 50px;
}

.movel-feature img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.movel-feature h4 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.movel-feature p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  margin-left: 0;
}

/* Media queries for tablets */
@media (max-width: 1024px) {
  .movel-include h1 {
    font-size: 40px;
    line-height: 44px;
    margin-top: 60px;
  }

  .movel-include p {
    font-size: 18px;
    line-height: 26px;
  }

  .movel-feature {
    max-width: 45%;
    margin-left: 10px;
  }
}

/* Media queries for mobile devices */
@media (max-width: 768px) {
  .movel-include-box {
    flex-direction: column;
    align-items: center;
  }

  .movel-feature {
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .movel-feature p {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .movel-feature img {
    width: 80px;
  }

  .movel-include h1 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 50px;
  }

  .movel-include p {
    font-size: 16px;
    line-height: 22px;
  }
}

.monitor-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px;
  background-color: #f4f1ed;
}

.monitor-info-content {
  text-align: left;
  margin-bottom: 30px;
}

.monitor-info-content h1 {
  font-size: 50px;
  font-weight: bold;
  color: #000;
}

.monitor-info-form {
  width: 100%;
  max-width: 600px;
}

.monitor-info-flex-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.monitor-info-input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #0a0a0a;
  border-radius: 4px;
}

.monitor-info-recaptcha {
  justify-content: flex-start;
  align-items: center;
}

.monitor-info-button {
  width: 50%;
  padding: 15px;
  font-size: 18px;
  color: #999;
  background-color: #e6e6e6;
  border: none;
  border-radius: 50px;
  cursor: not-allowed;
}

.monitor-info-disclaimer {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 20px;
}

/* Media Queries for Tablet */
@media screen and (max-width: 768px) {
  .monitor-info-container {
    padding: 50px;
  }

  .monitor-info-content h1 {
    font-size: 40px;
  }

  .monitor-info-form {
    max-width: 100%;
  }

  .monitor-info-button {
    width: 70%;
  }
}

/* Media Queries for Mobile */
@media screen and (max-width: 480px) {
  .monitor-info-container {
    padding: 30px;
    flex-direction: column;
  }

  .monitor-info-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .monitor-info-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .monitor-info-form {
    width: 100%;
  }

  .monitor-info-flex-group {
    flex-direction: column;
    gap: 10px;
  }

  .monitor-info-button {
    width: 100%;
  }
}

/* smart page start */
/* slider 1 */
.smart-fire-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-image: url("./img/firewall2.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  height: 110vh;
  position: relative;
}

.smart-fire-content {
  max-width: 50%;
  text-align: right;
}

.smart-fire-content h1 {
  font-size: 52px;
  line-height: 76px;
  color: #000;
  text-align: left;
  font-weight: 900;
  margin-top: 150px;
}

.smart-fire-content h5 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  color: #000;

  font-weight: 900;
  margin-top: 10px;
  text-align: left;
}

.smart-fire-content p {
  color: #000;
  margin-left: auto;
  margin-right: 0;
  font-size: 20px;
  line-height: 2pc;
  margin-top: 30px;

  text-align: left;
  margin-bottom: 100px;
}

.antivirus-vpn-service h2 {
  margin-bottom: 50px;
  font-size: 44px;
  font-weight: 800;
  margin-top: 100px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .smart-fire-container {
    background-image: url("./img/mom-working-from-home-desktop.jpg");
    padding: 15px;
    height: auto;
  }

  .smart-fire-content {
    max-width: 70%;
  }

  .smart-fire-content h1 {
    font-size: 40px;
    margin-top: 100px;
    text-align: left;
  }

  .smart-fire-content h5 {
    font-size: 20px;
    text-align: left;
  }

  .smart-fire-content p {
    font-size: 18px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .smart-fire-container {
    background-image: url("./img/small-business-owner-using-technology-mobile.jpg");
    padding: 10px;
    height: auto;
    background-size: cover;
    background-position: top center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .smart-fire-content {
    max-width: 100%;
    text-align: center;
    margin-top: 80px;
    padding: 20px;
  }

  .smart-fire-content h1 {
    font-size: 30px;
    margin-top: 20px;
    line-height: 46px;
  }

  .smart-fire-content h5 {
    font-size: 18px;
  }

  .smart-fire-content p {
    font-size: 16px;
  }

  .antivirus-vpn-service h2 {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 800;
    margin-top: 100px;
    text-align: start;
  }
}

/* slider 2 */
.smart-cloud {
  background-image: url("./img/firewall3.png");
  background-size: cover;
  background-position: center;
  text-align: left;
  padding: 20px;
  height: 800px;
  margin-top: 70px;
}

.smart-cloud-content {
  max-width: 600px;
  margin: 0;
}

.smart-cloud-content h1 {
  color: white;
  margin-top: 50px;
  font-size: 44px;
  line-height: 56px;
  font-weight: 900;
}

.smart-cloud-content p {
  color: white;
  margin-top: 50px;
  font-size: 20px;
  line-height: 2pc;
}

.smart-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 200px;
}

.smart-box-item {
  padding: 15px;
  border-radius: 8px;
  flex: 1;
  margin-top: -50px;
}

.smart-box-item h1 {
  color: white;
  font-size: 24px;
  line-height: 36px;
  margin-top: -45px;
  text-align: left;
  margin-left: -20px;
}

.smart-box-item p {
  font-size: 16px;
  color: white;
  font-size: 20px;
  margin-bottom: 24px;
}

.smart-box-item a {
  color: #00f;
  text-decoration: underline;
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .smart-cloud {
    background-image: url("./img/image-cloud-data-desktop.jpg");
    background-position: center;
    height: auto;
  }

  .smart-box {
    flex-direction: row;
    margin-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .smart-cloud {
    background-image: url("./img/image-cloud-data-mobile.jpg");
    background-position: center left;
    padding: 10px;
    height: auto;
  }

  .smart-box {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
  }

  .smart-box-item {
    padding: 10px;
  }

  .smart-box-item h1 {
    color: white;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
    margin-top: 50px;
    margin-left: 0px;
  }
}

/* slider 3 */
.smart-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.smart-slide {
  display: none;
  width: 100%;
  transition: all 0.5s ease;
}

.smart-slide.active {
  display: block;
}

.smart-slider-controls {
  text-align: center;
  margin-top: -25px;
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 160px;
}

.smart-slider-controls .nav-btn {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.06);
  transition: 0.3s ease;
}

.smart-slider-controls .nav-btn:not(:last-child) {
  margin-right: 20px;
}

.circle-btn {
  padding: 8px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  cursor: pointer;
  margin: 0 10px;
  font-size: 20px;
}

.circle-btn:hover {
  background-color: #ddd;
}

/* Slide layout styles */
.smart-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.smart-image {
  flex: 1;
  margin-right: 20px;
}

.smart-image img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.smart-content {
  flex: 1;
  padding-left: 20px;
}

.smart-content h1 {
  font-size: 36px;
  font-weight: bold;
}

.smart-problem,
.smart-solution {
  margin-top: 20px;
}

.smart-problem h2,
.smart-solution h2 {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-icon,
.solution-icon {
  font-size: 32px;
}

.smart-problem p,
.smart-solution p {
  font-size: 18px;
  line-height: 1.5;
}

/* Responsive media queries */
@media only screen and (max-width: 1024px) {
  .smart-layout {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .smart-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .smart-image img {
    max-width: 80%;
  }

  .smart-content {
    max-width: 100%;
    padding-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .smart-layout {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .smart-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .smart-image img {
    max-width: 100%;
  }

  .smart-content {
    max-width: 100%;
    padding-left: 0;
  }

  .smart-content h1 {
    font-size: 24px;
    text-align: center;
  }

  .smart-problem h2,
  .smart-solution h2 {
    font-size: 20px;
  }

  .problem-icon,
  .solution-icon {
    font-size: 24px;
  }

  .smart-problem p,
  .smart-solution p {
    font-size: 14px;
  }
}

/* slider 4 */
.advanced-layer-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #222;
  color: #fff;
}

.advanced-layer-header {
  margin-bottom: 20px;
}

.advanced-layer-header h1 {
  font-weight: 900;
  margin-top: 50px;

  font-size: 44px;
  line-height: 56px;
}

.advanced-layer-header p {
  text-align: left;
  font-size: 20px;
  line-height: 2pc;
  margin-top: 60px;
}

.advanced-layer-header h5 {
  text-align: center;

  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.advanced-layer-image {
  margin-bottom: 20px;
}

.advanced-layer-image img {
  width: 100%;
  height: auto;
}

.advanced-layer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.advanced-layer-item {
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
  padding: 15px;
  border-radius: 5px;
}

.advanced-layer-item h4 {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.advanced-layer-item p {
  font-size: 1pc;
  line-height: 30px;
  margin-bottom: 24px;
}

.advanced-layer-item button {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 12px;
}

.advanced-layer-container p {
  margin-top: 50px;
}

.advanced-layer-item-box {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .advanced-layer-item {
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .advanced-layer-item {
    flex: 1 1 calc(50% - 20px);
  }

  .advanced-layer-header h1 {
    font-size: 36px;
  }

  .advanced-layer-header h5 {
    font-size: 22px;
  }

  .advanced-layer-header p {
    font-size: 16px;
  }

  .advanced-layer-item h4 {
    font-size: 24px;
  }

  .advanced-layer-item p {
    font-size: 12px;
  }

  .advanced-layer-item button {
    padding: 8px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .advanced-layer-item {
    flex: 1 1 100%;
  }

  .advanced-layer-header h1 {
    font-size: 28px;
  }

  .advanced-layer-header h5 {
    font-size: 20px;
  }

  .advanced-layer-header p {
    font-size: 14px;
    text-align: left;
  }

  .advanced-layer-item h4 {
    font-size: 20px;
  }

  .advanced-layer-item p {
    font-size: 12px;
    margin-top: 40px;
  }

  .advanced-layer-item button {
    padding: 6px;
    font-size: 12px;
  }
}

/* slider 5 */
.prevention-container {
  background-color: #e0f7fa;
  padding: 20px;
  color: #000;
  margin-top: 70px;
}

.prevention-header {
  margin-bottom: 20px;
}

.prevention-header h1 {
  font-weight: 700;
  margin-top: 60px;
  font-size: 44px;
  line-height: 56px;
  text-align: center;
}

.prevention-header p {
  text-align: center;
  margin-top: 50px;
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

.prevention-content {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.prevention-image {
  margin-right: 15px;
  text-align: left;
}

.prevention-image i {
  font-size: 3rem;
  color: #007bff;
}

.prevention-info {
  flex: 2;
}

.prevention-info h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
}

.prevention-info p {
  font-size: 20px;
  line-height: 2pc;
  width: 50%;
}

@media (max-width: 768px) {
  .prevention-content {
    flex-direction: row;
    align-items: center;
  }

  .prevention-image {
    text-align: left;
  }

  .prevention-info {
    text-align: left;
  }

  .prevention-image i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .prevention-header h1 {
    font-size: 28px;
  }

  .prevention-header p {
    font-size: 14px;
  }

  .prevention-info h5 {
    font-size: 20px;
  }

  .prevention-info p {
    font-size: 14px;
    width: 100%;
  }

  .prevention-image i {
    font-size: 2rem;
  }

  .prevention-content {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}

/* safe-web page section styling */
.smart-cloudss {
  background-image: url("./img/firewall3.png");
  background-size: cover;
  background-position: center;
  text-align: left;
  padding: 20px;
  height: auto;
  margin-top: 70px;
}

.smart-clouds-stretpara {
  font-size: 20px;
  color: #fff;
  line-height: 2pc;
  text-align: center;
}

.smart-cloud-contentss {
  max-width: 600px;
  margin: 0;
}

.smart-cloud-contentss h1 {
  color: #fff;
  margin-top: 50px;
  font-size: 50px;
  font-weight: 900;
}

.smart-cloud-contentss p {
  color: #fff;
  margin-top: 50px;
  font-size: 20px;
}

.smart-boxes {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 80px;
}

.smart-box-items {
  padding: 15px;
  border-radius: 8px;
  flex: 1;
}

.smart-box-items h1 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  color: #fff;
  font-weight: 800;
}

.smart-box-items p {
  font-size: 20px;
  color: #fff;
  line-height: 2pc;
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .smart-cloud {
    background-image: url("./img/image-cloud-data-desktop.jpg");
    background-position: center;
    height: auto;
  }

  .smart-box {
    flex-direction: row;
    margin-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .smart-cloud {
    background-image: url("./img/image-cloud-data-mobile.jpg");
    background-position: center left;
    padding: 10px;
    height: auto;
  }

  .smart-box {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
  }

  .smart-box-item {
    padding: 10px;
  }

  .smart-boxes {
    display: block;
  }
}

/* page style more antivers */
.product-gamer-box-price-current {
  display: flex;
  align-items: center;
}

.product-gamer-box-price-current {
  font-size: 30px;
  font-weight: 600;
}

.product-gamer-box-price-duration {
  font-size: 20px;
  font-weight: normal;
  margin-left: 5px;
}

/* start page Antiveus 10 */
/* slider 1 */
.antivers-section {
  background-image: url("./img/windows 10 11 antivirus.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
  transition: background-image 0.5s ease;
  margin-top: 88px;
}
.antivers-section-windo-11{
  background-image: url("./img/windows-antivirus-11.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
  transition: background-image 0.5s ease;
  margin-top: 88px;
}

.antivers-section-mac {
  background-image: url("./img/windows-antivirus-mac.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
  transition: background-image 0.5s ease;
  margin-top: 88px;

}

.antivers-section-anti-vpn{
  background-image: url("./img/windows-antivirus-vpn.png");
  background-size: cover;
  background-position: center;
  padding: 20px;
  transition: background-image 0.5s ease;
  margin-top: 88px;
}

.antivers-content {
  display: flex;
  justify-content: left;
  flex-direction: column;
  color: #333;
  padding: 20px;
  width: 50%;
  margin-left: 50px;
}

.antivers-overlay-content h1 {
  font-weight: 900;
  font-size: 46px;
  line-height: 4pc;
  text-align: start;
}

.antivers-overlay-content p {
  font-size: 18px;
  line-height: 2pc;
  margin-bottom: 24px;
}

.windows-11-first {
  margin-top: auto;
}

.anitivirus-heading-3rd-sec {
  margin-bottom: 50px;
  font-size: 44px;
  font-weight: 800;
  margin-top: 100px;
}

.flex-vpn-anti {
  display: flex;
  margin-top: 100px;
}

.flex-vpn-anti-reverse {
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 480px) {
  .antivers-section {
    background-image: url("./img/win10-av-hero-2x-m.jpg");
    background-size: cover;
    background-position: center;
    padding: 10px;
    margin-top: -30px;
    height: 990px;
  }

  .antivers-content {
    padding: 10px;
    display: block;
    width: 100%;
    margin-left: 0px;
  }

  .antivers-overlay-content {
    width: 100%;
    padding: 10px;
    margin-left: 0px;
  }

  .antivers-overlay-content h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0px;
    width: 100%;
  }

  .antivers-overlay-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    width: 100%;
  }

  .flex-vpn-anti {
    display: block;
    margin-top: 50px;
  }

  .flex-vpn-anti-reverse {
    display: block;
    flex-direction: column;
  }

  .anti-vpn-service {
    margin-top: 110px;
  }

  .windows-11-first {
    margin-top: 150px;
  }

  .anitivirus-heading-3rd-sec {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 800;
    margin-top: 100px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .antivers-section {
    background-image: url("./img/win10-av-hero-2x-d.avif");
    background-size: cover;
    background-position: center;
    margin-top: 100px;
  }

  .antivers-content {
    padding: 15px;
  }

  .antivers-overlay-content {
    width: 100%;
    padding: 15px;
    margin-top: 100px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .antivers-section {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 655px;
  }

  .antivers-content {
    padding: 15px;
    width: 80%;
    margin-left: 0px;
  }

  .antivers-overlay-content {
    width: 100%;
    padding: 15px;
  }

  .antivers-overlay-content h1 {
    font-weight: 800;
    font-size: 43px;
    line-height: 3pc;
  }

  .antivers-overlay-content p {
    font-size: 20px;
    line-height: 2pc;
    margin-bottom: 10px;
  }
}

/* slider 3 */
.antives-second {
  padding: 20px;
}

.antives-second h2 {
  font-weight: 900;
  font-size: 44px;
  line-height: 66px;
  margin: 3pc 0;
  text-align: center;
}

.antives-second p {
  font-size: 20px;
  line-height: 2pc;
  text-align: center;
}

.antives-steps {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}

.antives-steps-image {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

.antives-steps-image img {
  max-width: 90%;
  border-radius: 20px;
  gap: 100px;
}

.antives-steps-content {
  flex: 2 1 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* margin-top: 50px; */
}

.antives-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.antives-step img {
  max-width: 30px;
  height: auto;
  flex-shrink: 0;
}

.antives-step p {
  margin: 0;
  text-align: left;
}


/* Media Queries */
@media (max-width: 768px) {
  .antives-steps {
    flex-direction: column;
  }

  .antives-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .antives-step img {
    max-width: 60px;
  }
}

@media (max-width: 480px) {
  .antives-step img {
    max-width: 50px;
  }

  .antives-second h2 {
    line-height: 48px;
    font-size: 36px;
  }
}

/* password-manger page */
/* slider 1 */
.password-manager-wrapper {
  position: relative;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.password-manager-image img {
  width: 100%;
  height: auto;
  margin-top: 88px;
}

.password-manager-text {
  position: absolute;
  top: 42%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  padding: 20px;
  text-align: left;
  margin-top: 100px;
}

.password-manager-title {
  margin-top: 10px;
  font-size: 52px;
  font-weight: 900;
}

.password-manager-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-top: 30px;
}

.password-manager-text p {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .password-manager-image img {
    height: 647px;
  }

  .antivers-content {
    display: flex;
    justify-content: left;
    flex-direction: column;
    color: #333;
    padding: 0px;
    width: 47%;
    margin-left: 50px;
  }
}

@media (max-width: 1200px) {
  .password-manager-text {
    width: 50%;
    padding: 30px;
    text-align: left;
  }

  .password-manager-title {
    font-size: 56px;
  }

  .password-manager-subtitle {
    font-size: 32px;
  }

  .password-manager-text p {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .password-manager-wrapper {
    height: auto;
  }

  .password-manager-image img {
    height: 650px;
    margin-top: 100px;
  }

  .password-manager-text {
    width: 60%;
    text-align: left;
  }

  .password-manager-title {
    font-size: 48px;
    width: 100%;
  }

  .password-manager-subtitle {
    font-size: 26px;
  }

  .password-manager-text p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .password-manager-wrapper {
    flex-direction: column;
    margin-top: 530px;
    height: auto;
  }

  .password-manager-image img {
    content: url("./img/mom-working-from-home-mobile1.jpg");
    display: none;
    margin-top: 0;
    width: 100%;
  }

  .password-manager-text {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 220px;
  }

  .password-manager-title {
    font-size: 32px;
    margin-top: 20px;
  }

  .password-manager-subtitle {
    font-size: 22px;
    margin-top: 10px;
  }

  .password-manager-text p {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* slider 2 */
.password-manage-seconds-cloud {
  background-image: url("./img/password manager0001.png");
  background-size: cover;
  background-position: center;
  text-align: left;
  padding: 20px;
  height: 900px;
  margin-top: 70px;
}

.password-manage-seconds-cloud-content {
  max-width: 600px;
  margin: 0;
}

.password-manage-seconds-cloud-content h1 {
  color: white;
  margin-top: 50px;
  font-size: 44px;
  line-height: 56px;
  font-weight: 900;
}

.password-manage-seconds-cloud-content p {
  color: white;
  margin-top: 50px;
  font-size: 20px;
  line-height: 2pc;
}

.password-manage-seconds-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 200px;
}

.password-manage-seconds-box-item {
  border-radius: 8px;
  flex: 1;
  margin-top: -50px;
}

.password-manage-seconds-box-item h1 {
  color: white;
  font-size: 24px;
  line-height: 36px;
  margin-top: -45px;
  text-align: left;
}

.password-manage-seconds-box-item p {
  font-size: 16px;
  color: white;
  font-size: 20px;
}

.password-manage-seconds-box-item a {
  color: #00f;
  text-decoration: underline;
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .password-manage-seconds-cloud {
    background-image: url("./img/image-cloud-data-desktop.jpg");
    background-position: center;
    height: auto;
  }

  .password-manage-seconds-box {
    flex-direction: row;
    margin-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .password-manage-seconds-cloud {
    background-image: url("./img/image-cloud-data-mobile.jpg");
    background-position: center left;
    padding: 10px;
    height: auto;
    margin-top: -200px;
  }

  .password-manage-seconds-box {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
  }

  .password-manage-seconds-box-item {
    padding: 10px;
  }

  .password-manage-seconds-box-item h1 {
    color: white;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
    margin-top: 50px;
    text-align: left;
  }
}

/* slider 5 */

.week-password-video-trnk {
  text-align: center;
}

.week-password-video-iframe {
  border-radius: 20px;
  margin-top: 50px;
}

.week-password-video-trnk h1 {
  font-weight: 900;
  font-size: 52px;
}

@media (max-width: 767px) {
  .week-password-video-trnk h1 {
    font-size: 24px;
  }

  .week-password-video-iframe {
    height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .week-password-video-trnk h1 {
    font-size: 28px;
  }

  .week-password-video-iframe {
    height: 350px;
  }
}

/* slider 6 */
.password-management {
  background-color: #cfe3fc;
  padding: 20px;
  border-radius: 20px;
  width: 95%;
  margin: auto;
}

.password-management h1 {
  font-size: 42px;
  margin-top: 100px;
  text-align: center;
  font-weight: 800;
}

.password-management-p {
  font-size: 20px;
  text-align: center;
  margin-top: 50px;
}

.password-management-correct,
.password-management-incorrect {
  margin-top: 50px;
}

.password-management-correct h4,
.password-management-incorrect h4 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}

.icon-tick {
  color: #4caf50;
  font-size: 24px;
  margin-right: 10px;
}

.icon-cross {
  color: #f44336;
  font-size: 24px;
  margin-right: 10px;
}

.password-management-correct p,
.password-management-incorrect p {
  font-size: 20px;
  line-height: 2pc;
}

/* slider 7 */
.password-section {
  background-color: black;
  color: white;
  padding: 80px;
  text-align: center;
}

.pass-manage {
  width: 1000px;
  margin: auto;
}

.password-section-most h1 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 800;
  margin: 0;
  padding: 10px 0;
}

.password-section-most p {
  font-size: 20px;
  margin-top: 50px;
  font-weight: 500;
  line-height: 2pc;
}

@media (min-width: 1024px) {
  .responsive-image {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .responsive-image {
    height: 500px;
  }

  .password-section {
    margin-bottom: 50px;
  }

  .password-section-most h1 {
    font-size: 36px;
  }

  .password-section-most p {
    font-size: 16px;
  }

  .password-section {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
  }

  .pass-manage {
    width: auto;
    margin: auto;
  }

  .password-section-most {
    padding: 20px;
    width: 386px;
  }
}

/* slider 8 */
.password-reason-main-content {
  display: flex;
  flex-direction: column;
}

.password-reason-main-container {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.password-reason-content-section {
  /* flex: 1; */
  width: 50%;
  padding: 20px;
}

.password-reason-content-section h5 {
  font-weight: 700;
  margin-top: 20px;
  font-size: 20px;
}

.underline-text {
  text-decoration: underline;
}

.password-reason-title1 {
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
  margin-top: 40px;
}

.password-reason-description1 {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 2pc;
  margin-bottom: 10px;
  font-weight: 500;
}
.password-reason-image-section {
  width: 50%;
}

.password-reason-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .password-reason-main-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .password-reason-content-section {
    padding: 15px;
  }

  .password-reason-title1 {
    font-size: 40px;
  }

  .password-reason-description1 {
    font-size: 18px;
  }

  .password-reason-image-section {
    margin: 20px 0 0;
  }
}

@media (max-width: 768px) {
  .password-reason-main-container {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 50px;
  }

  .password-reason-content-section {
    padding: 10px;
    width: 100%;
  }

  .password-reason-title1 {
    font-size: 30px;
  }

  .password-reason-description1 {
    font-size: 16px;
  }

  .password-reason-image-section {
    margin: 20px 0 0;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .password-reason-main-container {
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* slider 9 */
.password-secure-cloud {
  background-color: lightgray;
  padding: 20px;
}

.password-secure-cloud-select-one h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.password-secure-cloud-select-one p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
  text-align: center;
}

.password-secure-cloud img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.password-secure-cloud .password-secure-cloud-select {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.password-secure-cloud .password-secure-cloud-select-col {
  flex: 1;
  padding: 10px;
}

.password-secure-cloud h4 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  font-weight: 800;
}

.password-secure-cloud-select-col p {
  font-size: 20px;
  line-height: 2pc;
}

@media (max-width: 768px) {
  .password-secure-cloud .password-secure-cloud-select {
    flex-direction: column;
    align-items: center;
  }

  .password-secure-cloud .password-secure-cloud-select-col {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* slider 10 */
.password-guarantee-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.password-guarantee-col-section {
  flex: 1;
  padding: 10px;
}

.password-guarantee-col-section p {
  font-size: 20px;
}

@media (max-width: 768px) {
  .password-guarantee-col {
    flex-direction: column;
    align-items: center;
  }

  .password-guarantee-col-section {
    padding: 10px;
    text-align: center;
  }
}

/* start page parental-control */
/* slider 1 */
.parental-control-wrapper {
  position: relative;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.parental-control-image img {
  width: 100%;
  height: auto;
  margin-top: 88px;
}

.parental-control-text {
  position: absolute;
  top: 42%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  padding: 20px;
  text-align: left;
  margin-top: 100px;
}

.parental-control-title {
  margin-top: 10px;
  font-size: 52px;
  font-weight: 900;
}

.parental-control-subtitle {
  font-size: 28px;
  font-weight: 800;
  margin-top: 30px;
}

.parental-control-text p {
  font-size: 20px;
  line-height: 2pc;
}

.safe-web-second-sec {
  margin-top: auto;
}

.safe-secondsection h2 {
  margin-bottom: 30px;
}

.saf-web-unorder-list ul {
  margin-top: 20px;
}

.saf-web-unorder-list ul li {
  margin-bottom: 10px;
}

.safe-8thsection img {
  height: 700px;
}

@media (min-width: 1200px) {
  .parental-control-text {
    width: 50%;
    padding: 30px;
    text-align: left;
  }

  .parental-control-title {
    font-size: 52px;
    margin-top: -150px;
  }

  .parental-control-subtitle {
    font-size: 32px;

  }

  .parental-control-text p {
    font-size: 22px;

  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .parental-control-wrapper {
    height: auto;
  }

  .parental-control-image img {
    height: 650px;
    margin-top: 100px;
  }

  .parental-control-text {
    width: 60%;
    text-align: left;
  }

  .parental-control-title {
    font-size: 48px;
    width: 100%;
  }

  .parental-control-subtitle {
    font-size: 26px;
  }

  .parental-control-text p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .parental-control-wrapper {
    flex-direction: column;
    margin-top: 109px;
    height: auto;
    margin-bottom: -360px;
  }

  .parental-control-image img {
    content: url("./img/mom-working-from-home-mobile1.jpg");
    margin-top: 0;
    width: 100%;
  }

  .parental-control-text {
    position: relative;
    width: 100%;
    padding: 20px;
    /* text-align: center; */
    margin-top: 260px;
  }

  .parental-control-title {
    font-size: 32px;
    margin-top: 252px;
  }

  .parental-control-subtitle {
    font-size: 22px;
    margin-top: 10px;
  }

  .parental-control-text p {
    font-size: 16px;
    margin-top: 10px;
  }

  .safe-web-second-sec {
    margin-top: 345px;
  }

  .safe-8thsection img {
    height: 35px;
  }
}

/* slideer page another page mc-antivers */
.tips-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tips-box {
  border: 2px solid #000;
  padding: 0;
  text-align: center;
  flex: 1 1 23%;
  max-width: 23%;
  height: 350px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.mac-box h1 {
  font-size: 52px;
  font-weight: 900;
  margin-top: 100px;
}

.tips-box p {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: 20px;
  line-height: 2pc;
  white-space: normal;
}

.tips-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tips-box p {
  color: #0070f3;
  margin-top: 50px;
}

.mac-anti-second-sec h2 {
  margin-bottom: 50px;
  font-size: 44px;
  font-weight: 800;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .col-sm-3 {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .tips-box {
    height: auto;
  }
}

@media (max-width: 576px) {
  .col-sm-3 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-box {
    height: auto;
  }

  .mac-box h1 {
    font-size: 36px;
    font-weight: 800;
    margin-top: 50px;
    margin-left: 20px;
  }

  .mac-anti-second-sec h2 {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 800;
    margin-top: 50px;
  }
}

/* slder 2 */
.control-parental-second-container {
  padding: 20px;
  padding-left: 130px;
  padding-right: 130px;
}

.control-parental-second-title {
  text-align: center;
  font-size: 44px;
  line-height: 56px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 100px;
}

.control-parental-second-subtitle {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-weight: 800;
  margin-top: 50px;
}

.control-parental-second-description {
  text-align: center;
  font-size: 20px;
  line-height: 2pc;
  margin-top: 30px;
}

.control-parental-second-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}

.control-parental-second-box-left,
.control-parental-second-box-right {
  flex: 1 1 45%;
  margin: 10px;
}

.control-parental-second-heading {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  font-weight: 600;
}

.control-parental-second-list {
  list-style: disc inside;
  font-size: 20px;
  line-height: 2pc;
}

button.control-parental-second-btn {
  display: block;
  margin: 50px auto 0;
  border: 2px solid black;
  border-radius: 50px;
  padding: 12px 30px;
  background-color: rgba(247, 196, 67, 0.9);
  color: black;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button.control-parental-second-btn:hover {
  background-color: black;
  color: white;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .control-parental-second-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .control-parental-second-content {
    flex-direction: column;
    margin-top: 0;
  }

  .control-parental-second-box-left,
  .control-parental-second-box-right {
    flex: 1 1 100%;
  }

  .control-parental-second-title {
    font-size: 28px;
    margin-top: 0px;
  }

  .control-parental-second-heading {
    font-size: 18px;
  }

  .control-parental-second-list {
    font-size: 14px;
  }

  button.control-parental-second-btn {
    width: 100%;
  }
}

/* slider 4 */
.control-parental-second-tools-container {
  padding: 20px;
}

.control-parental-second-tools-title {
  text-align: center;
  font-size: 44px;
  line-height: 56px;
  font-weight: 800;
  margin-top: 100px;
}

.control-parental-second-tools-subtitle {
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 50px;
}

.control-parental-second-tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.control-parental-second-tool {
  flex: 1 1 30%;
  max-width: 30%;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #f9f9f9;
}

.control-parental-second-tool h3 {
  font-size: 18px;
  margin: 10px 0;
}

.control-parental-second-tool p {
  font-size: 16px;
  color: #666;
}

.control-parental-second-tool-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .control-parental-second-tools-grid {
    flex-direction: column;
  }

  .control-parental-second-tool {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .control-parental-second-tool h3 {
    font-size: 16px;
  }

  .control-parental-second-tool p {
    font-size: 14px;
  }

  .control-parental-second-tool-icon {
    width: 30px;
    height: 30px;
  }

  .control-parental-second-tools-title {
    font-size: 28px;
  }
}

/* slider 5 */
.control-parsental-four-dec-main-content {
  padding: 20px;
  background-color: #f9f9f9;
}

.control-parsental-four-dec-main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.control-parsental-four-dec-content-section {
  width: 50%;
  padding: 20px;
}

.control-parsental-four-dec-title1 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 800;
  margin-top: 100px;
}

.control-parsental-four-dec-description1 {
  font-size: 20px;
  letter-spacing: -0.3px;
  line-height: 2pc;
  margin-bottom: 10px;
}

.control-parsental-four-ul {
  list-style-type: disc;
  margin-left: 20px;
}

.control-parsental-four-li {
  font-size: 20px;
  line-height: 2pc;
}

.control-parsental-four-dec-pricing {
  margin-top: 30px;
  font-size: 18px;
  color: #333;
}

.control-parsental-four-dec-image-section {
  width: 45%;
  text-align: right;
}

.control-parsental-four-dec-image-section img {
  max-width: 100%;
  height: auto;
  margin-top: 100px;
  border-radius: 20px;
}

/* Media Queries */
@media (max-width: 768px) {

  .control-parsental-four-dec-content-section,
  .control-parsental-four-dec-image-section {
    width: 100%;
    text-align: start;
  }

  .control-parsental-four-dec-title1 {
    font-size: 28px;
    margin-top: 20px;
  }

  .control-parsental-four-dec-description1 {
    font-size: 14px;
  }
}

/* slider 7 */
.control-five-parental {
  background-color: #000;
}

.control-five-parental-statistics {
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;

  color: white;
}

.control-five-parental-statistics h1 {
  font-size: 52px;
  line-height: 56px;
  margin: 3pc 0;
  font-weight: 900;
}

.control-five-parental-statistics p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;

  text-align: center;
}

.control-five-parental-statistics-survey h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 28px;
  font-weight: 800;
}

.control-five-parental-survey-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.control-five-parental-survey-item {
  flex: 0 1 45%;
  margin-bottom: 20px;
  text-align: center;
}

.control-five-parental-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
}

.control-five-parental-circle img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.control-five-parental-statistics-survey p {
  font-size: 20px;
  text-align: center;
  margin-top: 85px;
}

@media screen and (max-width: 768px) {
  .control-five-parental-statistics h1 {
    font-size: 28px;
  }

  .control-five-parental-statistics p {
    font-size: 16px;
  }

  .control-five-parental-survey-container {
    flex-direction: column;
    align-items: center;
  }

  .control-five-parental-survey-item {
    flex: 0 1 100%;
    margin-bottom: 20px;
  }

  .control-five-parental-circle {
    width: 90px;
    height: 90px;
  }

  .control-five-parental-circle img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .control-five-parental-statistics h1 {
    font-size: 32px;
  }

  .control-five-parental-survey-item {
    flex: 0 1 48%;
  }

  .control-five-parental-circle {
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width: 1025px) {
  .control-five-parental-statistics h1 {
    font-size: 52px;
  }

  .control-five-parental-survey-item {
    flex: 0 1 45%;
  }

  .control-five-parental-circle {
    width: 120px;
    height: 120px;
  }
}

/* slider 8 */
.control-eight-parental-div {
  background-color: #f4f1ed;
  padding: 90px;
  text-align: center;
  border-radius: 20px;
  margin-top: 100px;
}

.control-eight-parental-div h1 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 800;
}

.control-eight {
  font-size: 20px;
  line-height: 2pc;
}

.control-eight-parental-button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.control-eight-parental-div button {
  background-color: rgba(247, 196, 67, 0.9);
  border-width: 2px;
  font-size: 1pc;
  color: #000;
  text-align: center;
  border-radius: 50px;
  margin-top: 50px;
}

.control-eight-parental-div button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .control-eight-parental-div {
    margin-top: 0px;
    padding: 10%;
  }

  .control-eight-parental-div h1 {
    font-size: 24px;
  }

  .control-eight-parental-div button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .control-eight-parental-button-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .control-eight-parental-div h1 {
    font-size: 20px;
  }

  .control-eight-parental-div button {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.movel-1-box-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.movel-1-box-container p {
  margin-left: 53px;
}

.movel-1-box-item {
  display: flex;
  flex: 1;
  max-width: 50%;
  box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  margin-left: 72px;
}

.movel-1-box-img-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.movel-1-box-img-content img {
  max-width: 40px;
  height: auto;
}

.movel-1-box-h {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: -100px;
}

.movel-1-box-content {
  margin-top: 10px;
}

.movel-1-box-p {
  font-size: 1em;
  line-height: 1.5;
}

.movel-1-box-button {
  background-color: #f0f0f0;
  border: 2px solid black;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
}

.virus-last-section {
  margin-left: 40px;
  margin-top: 50px;
}

.family-middle-sec img {
  height: 519px;
}

.utility-width-increse{
  width: 451px !important;
  margin-top: 0px;
}
.utility-width-increse1{
  width: 492px !important;
  margin: 0;


}

@media (max-width: 768px) {
  .movel-1-box-item {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 30px;
  }

  .movel-1-box-container p {
    margin-left: 0px;
  }

  .virus-last-section {
    margin-left: 0px;
    margin-top: 0px;
  }

  .family-middle-sec img {
    height: 350px;
  }
  .utility-width-increse1{
    padding: 0px;
    margin-right: 40px;
  }
  .movel-content-section-increase{
    width: 450px !important;
   
  }
  .buttons-increase {
    margin-left: 50px;
   
  }
  .removel-increase{
    margin: 0px 10px;
    width: 462px !important;
  }
  .movel-box-dec-description-increase{
    width: 441px !important;
  }
  .movel-image-section-increase img{
    height: 275px;
    border-radius: 20px;
    width: 443px !important;
  }
  .movel-i-increase img{
    width:490px !important;
    margin-bottom: 30px !important;
  }
  .movel-image-section-increase12 img{
    height: 400px !important;
  }
  .movel-main-content-reverse{
    display: flex;
    flex-direction: column-reverse;

  }
  .movel-main-content-reverse1{
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .control-parental-second-space{
    line-height: 1.2;
  }
  .control-parental-second-space1{
    line-height: 2;
    font-size: 14px !important;
  }
}

@media (min-width: 1028px) and (max-width: 1440px) {
  .bussin-responsive h1 {
    font-size: 48px;
  }
  .movel-image-section-increase img{
    height: 600px !important;
  }
  .stand-product-image-height img{
    height: 600px !important;
  }

  .busii {
    width: 89%;
  }

  .additional-info {
    gap: 8px;
  }

  .info-section {
    width: 88%;
  }

  .a12 {
    margin-top: 104px;
    margin-right: 70px;
    margin-left: 70px;
  }

  .trial-info p {
    margin-bottom: 30px;
  }

  .trial-info h1 {
    margin-top: 65px;
  }

  .more-security h1 {
    text-align: center;
    font-size: 48px;
  }

  .faq h1 {
    font-size: 48px;
  }

  .plus-features-container {
    display: flex;
    justify-content: center;
    gap: 0px;
  }

  .virusmovel-overlay-content h1 {
    font-weight: 800;
    width: 50%;
    margin-top: 45px;
    text-align: left;
    margin-left: 0px;
    font-size: 52px;
    line-height: 56px;
  }

  .virusmovel-overlay-content h5 {
    margin-left: 0px;
  }

  .virusmovel-overlay-content p {
    margin-top: 20px;
    width: 50%;
    margin-left: 0px;
  }

  .removel {
    margin: 0px 60px;
    border-radius: 20px;
  }
}
