body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
}

.flex-container {
  display: flex;
}

.flex-child {
  flex: 1;
  border: 2px solid rgba(247, 196, 67, 0.9);
}

.flex-child:first-child {
  margin-right: 20px;
}

.before-gallery {
  display: flex;
}

.before-gallery h2 {
  font-size: 42px;
  font-weight: 800;
}

.before-gallery img {
  width: 38px;
  margin-left: 40px;
}

.gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 30px;
  margin-top: 50px;
}

.gallery-item {
  flex: 1;
  margin: 10px;
  position: relative;
  color: blue;
}

.gallery-item img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  pointer-events: none;
}

.gallery-item img:hover::after {
  opacity: 1;
}

.gallery-item span a {
  color: #0f71f0;
  text-decoration: underline;
}

.gallery-item a {
  display: block;
  margin-top: 15px;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-item a:hover {
  text-decoration: underline;
  color: #87b8f7;
}

.descriptions {
  margin-top: 20px;
  color: #000;
}

.descriptions p {
  font-size: 16px;
  font-weight: 500;
}

.descriptions span {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .gallery-item {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .gallery-item {
    max-width: 100%;
  }

  .gallery {
    padding: 20px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 220px;
  }

  .gallery-item a {
    font-size: 0.8rem;
  }

  .description {
    font-size: 1rem;
  }
}

.second-section-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}

.image-container {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-spacing: 5px;
  border-radius: 20px;
}

.image-container img {
  width: 100%;
  height: 100%;
}

.text-container {
  position: absolute;
  top: 0;
  color: white;
  padding: 90px;
}

.text-container h2 {
  font-size: 44px;
  line-height: 46px;
  font-weight: 700;
}

.text-container p {
  font-size: 20px;
  line-height: 2pc;
  font-weight: 500;
  padding-top: 42px;
  margin-bottom: 0;
}

.text-container p span {
  font-size: 20px;
  line-height: 2pc;
  font-weight: 800;
  padding-top: 38px;
}

.text-container span {
  font-size: 13px;
  font-weight: 400;
  margin-top: 40px !important;
}

.button-containers {
  position: absolute;
  bottom: 80px;
  left: 7%;
  width: auto;
}

.button-containers a {
  color: #000;
}

.buttonnext {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: rgb(7, 0, 0);
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background-color: #f0c400;
}

@media (max-width: 768px) {
  .second-section-blog {
    padding: 0px;
  }

  .image-container {
    margin-left: 5px;
    margin-right: 5px;
  }

  .text-container {
    font-size: 0.8rem;
  }

  .button-containers {
    bottom: 60px;
  }
}

@media (max-width: 480px) {
  .second-section-blog {
    padding: 0px;
  }

  .image-container {
    margin-left: 0;
    margin-right: 0;
  }

  .text-container {
    font-size: 0.6rem;
    padding: 10px;
  }

  .button-containers {
    bottom: 40px;
  }

  .buttonnext {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .second-section-blog {
    padding: 5px;
  }

  .image-container {
    border-radius: 10px;
  }

  .text-container {
    font-size: 0.5rem;
  }

  .button-containers {
    bottom: 20px;
  }

  .buttonnext {
    font-size: 0.6rem;
  }
}

/* Fourth Section Styling */
.grid-container {
  margin-top: 80px !important;
}

.two-grid {
  display: flex;
  width: 100%;
}

.four-grid-item {
  border-bottom: 1px solid #e2e2e2;
}

.grid-item {
  display: flex;
  font-size: 1rem;
  margin: 15px 10px;
  width: 50%;
}

.grid-item .flex-four-img {
  width: 100%;
}

.grid-item .flex-four-img img {
  width: 220px;
  height: 85%;
  border-radius: 20px;
  margin-bottom: 30px;
}

.grid-item .content-section {
  margin-left: 35px;
}

.grid-item .content-section p {
  margin-bottom: 20px;
}

.grid-item .content-section p a {
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  outline: none;
  color: #0f71f0;
}

.content-section h5 a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 500;
}

.content-section span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

/* Fifth Section Styling */
.banner {
  background-color: #f4f1ed;
  color: #000;
  padding: 50px 50px 35px;
  border-radius: 25px;
  position: relative;
  margin-top: 120px;
}

.banner .banner-top-icon {
  width: 158px;
  height: 158px;
  background-color: #f4f1ed;
  border-radius: 100px 100px 100px 0px;
  position: relative;
  margin-top: -115px;
  margin-left: -50px;
}

.banner .banner-top-icon img {
  top: 45px;
  left: 54px;
  display: block;
  max-width: 100%;
  height: auto;
  width: 50px;
  position: absolute;
}

.banner h1 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 700;
}

.banner h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .gallery-item {
    max-width: 45%;
  }

  .grid-container .two-grid {
    display: block;
  }

  .banner {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    max-width: 100%;
    margin: 20px 0;
  }

  .second-section-blog {
    flex-direction: column;
    height: max-content;
    padding: 10px;
    background-color: #e9e8e8;
  }

  .image-container {
    height: auto;
    width: 100%;
  }

  .before-gallery h2 {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 38px;
  }

  .before-gallery img {
    margin-top: 20px;
  }

  .text-container {
    font-size: 1rem;
    line-height: 1.2;
    position: static;
    color: #000;
  }

  .button-containers {
    position: static;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .grid-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .banner {
    padding: 20px;
  }

  .banner h1 {
    font-size: 1.5rem;
  }

  .banner h3 {
    font-size: 1rem;
  }
}

/* 6th section css */
.cyber {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  gap: 20px;
  border-radius: 20px;
  margin-top: 100px;
}

.cyber1 {
  width: 100%;
  background-color: #f0f0f0;
  flex: 1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.text-style-inner h3 a {
  color: #0f71f0;
  text-decoration: underline;
}

.cyber1 a {
  color: black;
}

.cyber2 a {
  color: black;
}

.big-img-cyber1 {
  width: 600px;
  height: 400px;

  margin-bottom: 40px;
}

.big-img-cyber1 img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cyber1 h3 a {
  color: #0f71f0;
  text-decoration: underline;
  font-size: 15px;
}

.cyber1 h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-left: 40px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.cyber1 p {
  margin-left: 40px;
  font-size: 16px;
  font-weight: 500;
}

.cyber1 span {
  margin-left: 40px;
  font-size: 13px;
  font-weight: 400;
}

.cyber1 h3 {
  font-size: 18px;
  color: #000;
  margin-left: 40px;
  font-weight: 600;
}

.cyber2 {
  display: flex;
  flex-direction: column;
  flex: 2;
  box-sizing: border-box;
  border-radius: 20px;
}

.inner-div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.inner-div img {
  width: 200px;
  height: auto;
  margin-right: 15px;
  margin-top: 20px;
  border-radius: 20px;
}

.inner-div .text-style-inner {
  flex: 1;
}

.text-style-inner h3 {
  font-size: 15px;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.text-style-inner h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 15px 0;
}

.text-style-inner p {
  font-size: 15px;
  margin: 5px 0;
  font-weight: 500;
}

.text-style-inner span {
  font-size: 13px;
}

.text-style-inner hr {
  margin: 20px 0;
  border: none;
}

@media (max-width: 1200px) {
  .cyber {
    flex-direction: column;
  }

  .cyber1,
  .cyber2 {
    flex: 1 1 auto;
  }
}

@media (max-width: 768px) {
  .cyber1 img {
    width: 365px;
  }

  .cyber1 h2,
  .cyber1 h3,
  .cyber1 h4,
  .cyber1 p,
  .cyber1 span {
    font-size: 16px;
  }

  .inner-div h4 {
    font-size: 14px;
  }

  .inner-div p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  .cyber1 h2,
  .cyber1 h3,
  .cyber1 h4,
  .cyber1 p,
  .cyber1 span {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .inner-div {
    display: block;
  }

  .inner-div img {
    width: 335px;
  }

  .inner-div h4 {
    font-size: 12px;
  }

  .inner-div p {
    font-size: 10px;
  }
}

.cyber2 .inner-div .inner-h3 {
  font-size: 15px;
}

/* section11 css */
.list-container {
  display: flex;
  margin-top: 100px;
}

.child {
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid black;
  border-radius: 20px;
  background-color: #fff;
  margin-right: 25px;
  margin-top: 25px;
  width: 100%;
  padding: 30px;
  bottom: 50px;
}

.child:last-child {
  margin-right: 0;
}

.child h2 {
  text-align: center;
  padding: 30px;
  background-color: #f4f1ed;
  margin: -30px;
  top: 20px;
  height: 100%;
}

.child ul {
  list-style-type: disc;
  padding-left: 40px;
  margin: 25px 0 0 0;
}

.child ul li {
  margin-top: 25px;
  font-weight: 700;
  text-decoration: underline;
  outline: none;
  text-decoration: none;
  color: inherit;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: blue;
}

.child ul li a {
  color: #0f71f0;
  font-size: large;
  font-weight: 500;
}

.writings {
  text-align: center;
  background-color: rgba(247, 196, 67, 0.9);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.spacer {
  text-align: center;
  background-color: #f4f1ed;
  padding: 100px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.spacer h2 {
  font-size: 52px;
  font-weight: 800;
}

.spacer p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

/* css for section 12 */
.fevicons {
  justify-content: center;
  display: flex;
}

.fevicons a {
  padding: 15px;
}

.fevicons a img {
  width: 40px;
}

/* css for how to renew page */
.container-image {
  position: relative;
  width: 100%;
  height: 472px;
  overflow: hidden;
  margin-top: 88px;
}

.renew-first-section {
  margin-top: 0px;
}

.text {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-10%, -50%);
  color: black;
  padding: 20px;
}

.text h1 {
  font-size: 52px;
  font-weight: 700;
}

.text p {
  font-size: 20px;
  line-height: 2pc;
}

/* Style for the button */
.button {
  margin-top: 20px;
  padding: 0.75rem 1.5rem;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid;
}

.button button {
  height: 60px;
  width: 250px;
  border-radius: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
  align-items: center;
  margin-left: 100px;
}

/* Style for the lower section */
.lowersection {
  overflow: hidden;
  padding: 90px;
}

.text1 {
  color: black;
  padding: 80px 40px;
  background-color: #e8f4e4;
  border-radius: 20px;
  /* height: auto; */
  width: auto;
  height: 950px;
}

.text1 h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
}

.logoss {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  height: 40px;
}

.text-with-img {
  width: 33.3%;
}

.logoss img {
  width: 238px;
  height: 40px;
  margin-top: 150px;
  margin-bottom: 20px;
  margin-left: 135px;
}

.logoss p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: -50px;
  text-align: center;
}

.how-img {
  width: 50%;
  height: 100%;
  margin-top: 180px;
}

.how-img img {
  margin-left: 50%;
}

.h2 {
  text-align: center;
  font-size: 10px;
  line-height: 0.5pc;
  margin-top: 100px;
  font-size: 1pc;
  line-height: 24px;
  margin-bottom: 24px;
}

/* Responsive design for different screen sizes */
@media (min-width: 768px) {
  .container-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 40px;
  }

  .image1 img {
    background-image: url(/background-half.jpg);
  }

  .logoss {
    flex-direction: row;
    /* justify-content: space-around; */
    justify-content: center;
    text-align: center;
  }

  .text-with-img {
    margin: 0 15px;
    justify-content: center;
    text-align: center;
  }

  .text {
    font-size: 1.5vw;
  }

  .text1 {
    font-size: 1.8rem;
  }

  .button button {
    width: 300px;
  }

  .writings {
    height: 100%;
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    border-radius: 20px;
  }
}

@media (width < 576px) {
  .renew-first-section {
    margin-top: 5px;
  }

  .list-container {
    display: block;
    margin-bottom: 30px;
  }

  .text1 {
    height: 1400px;
  }

  .child {
    margin-right: 0px;
  }

  .logoss img {
    width: 40px;
    height: 40px;
    margin-top: 150px;
    margin-bottom: 20px;
    margin-left: 135px;
  }

  .child ul {
    padding-left: 0px;
  }

  .how-to-renewval {
    margin-top: 100px;
  }

  .container-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 250px;
    margin-bottom: 0px;
  }

  .container-image img {
    width: 100%;
    height: 66%;
  }

  .text {
    position: relative;
    top: 0;
    left: 10%;
    padding: 20px;
    background-color: #e9e8e8;
    width: 100%;
  }

  .text h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .text p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lowersection {
    overflow: hidden;
    padding: 0px 20px 50px 20px;
  }

  .text1 h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .how-img {
    width: 100%;
    height: 100%;
    margin-top: 700px;
  }

  .how-img img {
    margin-left: 0%;
  }

  .text-with-img {
    width: 100%;
  }

  .logoss img {
    margin-top: 85px;
    margin-bottom: 20px;
    margin-left: 100px;

  }
}

/* CSS FOR 2ND PAGE OF TRY FREE */
.content-box {
  width: 100%;
  height: 100%;
  top: -15px;
  background-color: #f7f7f7;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.content-box-top-img {
  height: auto;
}

.content h5 {
  font-size: 4pc;
  line-height: 76px;
  /* padding: 60px 0px; */
  padding-bottom: 35px;
  font-weight: 700;
}

.content p {
  font-size: 20px;
  line-height: 2pc;
  margin: 0px 130px;
  font-weight: 500;
}

/* css for next to try free 2 */
.top-freetools {
  background-color: #f4f1ed;
  width: 100%;
  text-align: center;
  margin-top: 88px;
}

.top-freetools ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-bottom: 50px;
  margin-top: 88px;
  padding-left: 0;
}

.top-freetools ul li {
  list-style: none;
}

.top-freetools .freetool-head-top a {
  color: #000;
  line-height: 1;
  border-right: 1px solid #c4c4c4;
}

.top-freetools .freetool-head a {
  color: #000;
  line-height: 1;
  border-left: 1px solid #c4c4c4;
}

.freetools-right-border a {
  border-right: 1px solid #c4c4c4;
}

.top-freetools ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
}

.top-freetools ul li a:hover {
  color: #0f71f0;
}

@media (max-width: 768px) {
  .top-freetools ul li a {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    /* line-height: 50px; */
  }

  .big-img-cyber1 {
    width: 375px;
  }
}

@media (min-width: 568px) and (max-width:1068px) {
  .top-freetools ul {
    margin-top: 113px;
  }
}

/* Base styles for the grid container */
.grid-containersss {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
  outline: none;
  border: none;
  max-width: 1150px;
}

/* Styles for grid items */
.grid-items {
  outline: none;
}

.grid-boxs {
  border: none !important;
  border-radius: 0px;
  box-shadow: none !important;
  flex-direction: column;
  width: 100%;
}

.grid-image {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.grid-contents {
  padding: 20px;
  outline: none;
}

.grid-contents h5 {
  font-size: 28px;
  font-weight: 800;
  line-height: 40px;
  margin: 2pc 0;
}

.grid-contents p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
}

/* Button styles */
.button {
  padding: 10px 20px;
  background-color: rgba(247, 196, 67, 0.9);
  border-radius: 30px;
  color: #242424;
  border: 3px solid #000;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

/* css for 3*3 matrix */
.matrix-container {
  top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
}

.matrix-containers {
  top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
}

.matrix {
  background: #f4f1ed;
  border-radius: 20px;
  line-height: inherit;
  letter-spacing: inherit;
  padding: 40px;
}

.icon {
  font-size: 64px;
  margin-bottom: 20px;
  color: #333;
}

.grid-content h2 {
  font-size: 28px;
  line-height: 40px;
  margin: 1pc 0;
  font-weight: 800;
}

.grid-content h2 span {
  font-size: 22px !important;
}

.matrix-icons {
  margin-left: 44%;
}

.matrix-icons p {
  margin: 0 0 15px;
  font-size: 22px;
}

.matrix-icons img {
  width: 44px;
  height: 44px;
}

.button1 {
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 30px;
  margin-right: 100px;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 0;
}

.button2 {
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 30px;
  margin-right: 100px;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  margin: 18px 0 0;
}

.button1:hover,
.button2:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transition: 0.3s;
}

/* Media Queries */

/* @media (min-width: 769px) and (max-width: 1024px) {

} */

/* For tablets and smaller screens */
@media (max-width: 768px) {
  .content {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
    text-align: start;
    color: #fff;
  }

  .content-box-top-img {
    height: 200px;
  }

  .content h5 {
    font-size: 24px;
    line-height: 35px;
    padding: 0px 0px;
    padding-bottom: 0px;
    font-weight: 600;
  }

  .content p {
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0px;
    font-weight: 500;
  }

  .grid-containersss {
    display: block;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .grid-boxs {
    margin-bottom: 30px;
  }

  .grid-contents h5 {
    margin: 0 0;
  }

  .grid-contents p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px !important;
  }

  .grid-item {
    display: block;
    font-size: 1rem;
    margin: 15px 10px;
    width: 100%;
  }

  .grid-item .content-section {
    margin-left: 0;
  }

  .grid-item .flex-four-img img {
    width: 330px;
    height: 40%;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .grid-image {
    height: 120px;
  }

  .spacer {
    text-align: start;
    background-color: #f4f1ed;
    padding: 30px;
  }

  .spacer p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .spacer h2 {
    font-size: 35px;
    font-weight: 700;
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  .content {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
    text-align: start;
    color: #fff;
  }

  .content-box-top-img {
    height: 200px;
  }

  .content h5 {
    font-size: 24px;
    line-height: 35px;
    padding: 0px 0px;
    padding-bottom: 0px;
    font-weight: 600;
  }

  .content p {
    font-size: 14px;
    line-height: 20px;
    margin: 0px 0px;
    font-weight: 500;
  }

  .grid-containersss {
    display: block;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .grid-boxs {
    margin-bottom: 30px;
  }

  .grid-contents h5 {
    margin: 0 0;
  }

  .grid-contents p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px !important;
  }

  .grid-item {
    display: block;
    font-size: 1rem;
    margin: 15px 10px;
    width: 100%;
  }

  .grid-container {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .grid-image {
    height: 100px;
  }

  .button {
    padding: 8px 16px;
    font-size: 16px;
  }

  .spacer {
    text-align: start;
    background-color: #f4f1ed;
    padding: 30px;
  }

  .spacer p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .spacer h2 {
    font-size: 35px;
    font-weight: 700;
  }

  /* css for 3*3 matrix */
  .matrix-container {
    display: block;
    margin: 40px auto;
  }

  .matrix-containers {
    top: 50px;
    display: grid;
    margin: 40px auto;
  }

  .matrix {
    background: #f4f1ed;
    border-radius: 20px;
    line-height: inherit;
    letter-spacing: inherit;
    padding: 30px;
    margin-bottom: 20px;
  }

  .icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #333;
  }

  .grid-content h2 {
    font-size: 28px;
    line-height: 40px;
    margin: 1pc 0;
    font-weight: 800;
  }

  .matrix-icons {
    margin-left: 44%;
  }

  .matrix-icons p {
    margin: 0 0 15px;
    font-size: 22px;
  }

  .matrix-icons img {
    width: 44px;
    height: 44px;
  }

  .button1 {
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 30px;
    margin-right: 100px;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin: 18px 0 0;
  }

  .button2 {
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 30px;
    margin-right: 100px;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    margin: 18px 0 0;
  }

  .button1:hover,
  .button2:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transition: 0.3s;
  }
}

/* Add some responsiveness */
@media (max-width: 1000px) {
  .matrix-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .matrix-containers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* css for 3*1 grid */

.grid-containers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-itemm {
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: 5px;
  background-color: #f4f1ed;
  font-size: larger;
  padding: 40px;
  margin-right: 15px;
}

.newbutton {
  background: var(--primary-color);
  height: 40px;
  width: 150px;
  border-radius: 20px;
  border-width: 2px;
  padding: 11px 20px;
  font-size: 14px;
  font-size: large;
  font-weight: 700;
}

.blank {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 40px;
  letter-spacing: inherit;
}

.full {
  font-size: 19px;
  margin: 0 0 15px;
  line-height: 2pc;
  letter-spacing: inherit;
}

.full a {
  text-decoration: underline;
  color: #242424;
  font-weight: 500;
}

.full a:hover {
  text-decoration: underline;
  color: #0f71f0;
  font-weight: 500;
}

.paragraph3 {
  justify-content: center;
  top: 500px;
}

.easy {
  font-size: 52px;
  font-weight: 800;
  line-height: 56px;
  margin: 3pc 0;
  margin-top: 100px;
  text-align: center;
}

.toe {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
  text-align: center;
}

.href {
  font-weight: 700;
  text-decoration: underline;
  outline: none;
  color: #0f71f0;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.body {
  background-color: white;
}

/* css for faqs */
.faq-new-section {
  margin: 0 auto;
  padding: 20px;
}

.faq-new-section h1 {
  text-align: center;
  color: #333;
  font-size: 50px;
  font-weight: 900;
}

.faq-new-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.faq-new-question {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.icon-container {
  margin-right: 10px;
}

.faq-new-answer {
  display: none;
  padding: 10px 0;
  color: #555;
}

.fas {
  font-size: 18px;
}

@media (max-width: 768px) {
  .grid-containers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* .faq-new-section {} */
  .faq-new-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
  }

  .faq-new-question {
    font-size: 16px;
  }

  .icon-container {
    margin-right: 5px;
  }

  .fas {
    font-size: 16px;
  }

  .easy {
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    margin: 2pc 10px;
  }
}

@media (max-width: 480px) {
  .grid-containers {
    display: block;
  }

  .toe {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 35px;
    margin-left: 20px;
    text-align: start;
  }

  .grid-itemm {
    border: 1px solid #ddd;
    border-radius: 20px;
    margin: 0px;
    background-color: #f4f1ed;
    font-size: larger;
    padding: 30px;
    margin-bottom: 20px;
  }

  .faq-new-section {
    margin-top: 1100px;
  }

  .faq-new-question {
    flex-direction: row;
    align-items: flex-start;
  }

  .icon-container {
    margin-bottom: 5px;
  }

  .faq-new-answer {
    padding: 5px 0;
  }

  .fas {
    font-size: 14px;
  }

  .cat-sec {
    margin-top: 110px;
  }
}

/* how button  Try Norton 360 plan */
.buttonnext {
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  font-size: 18px;
  color: #242424;
  border: 3px solid #242424;
  border-radius: 40px;
  padding: 1pc 30px;
  line-height: 1;
  background-color: rgba(247, 196, 67, 0.9);
}

.buttonnext:hover {
  background-color: rgba(224, 203, 16, 0.9);
}

/* Css for all in one page */
/* css for image section */
.parent-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}

.content-container {
  width: 50%;
  padding: 20px;
  background-color: #f4f1ed;
  padding-top: 70px;
}

.image-container2 {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.image-container2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-container h1 {
  font-size: 4pc;
  line-height: 76px;
  margin: 68px 0;
}

@media (min-width:768px) and (max-width: 1068px) {
  .text {
    font-size: 1.2vw;
    position: absolute;
    top: 22%;
    left: 50%;
  }

  .text1 {
    font-size: 1.3rem;
  }

  .text h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .text p {
    font-size: 16px;
    line-height: 2pc;
  }

  .container-image {
    height: 360px;
  }

  .container-image img {
    margin-top: 30px;
    height: 280px;
  }

  .lowersection {
    overflow: hidden;
    padding: 90px;
    padding-top: 35px;
  }
}

@media (min-width: 1068px) and (max-width: 1440px) {
  .text {
    position: absolute;
    top: 40%;
    left: 60%;
    padding: 0px;
  }

  .text h1 {
    font-size: 34px;
  }

  .text p {
    font-size: 16px;
    line-height: 24px;
  }

  .container-image {
    height: 320px;
    margin-top: 25px;
  }
}


@media (min-width: 768px) and (max-width: 1440px) {
  .content {
    position: absolute;
    top: 50px;
  }

  .content-box-top-img {
    height: 435px;
  }

  .grid-item {
    width: 100%;
  }

  .grid-item .flex-four-img {
    width: auto;
  }

  .big-img-cyber1 img {
    width: 775px;
  }

  .cyber1 span {
    margin-bottom: 20px;
  }

  .second-section-blog {
    height: 55vh;
    margin-top: 120px;
  }

  .grid-containers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .text1 h2 {
    font-size: 34px;
  }

  .logoss img {
    margin-top: 260px;
    margin-left: 35px;
  }

  .how-img {
    margin-top: 260px;
  }

  .blog-banner {
    height: 580px;
  }

  .button-containers {
    left: 12%;
  }
}

/* blog first page slider csss */
.articlespot h2 {
  margin-top: 140px;
  margin-bottom: 40px;
  margin-left: 10px;
  font-size: 42px;
  font-weight: 700;
}

.row-articlespotlight {
  display: flex;
  margin-bottom: 80px;
  border-radius: 20px;
}

.blog-box {
  width: 50%;
  display: flex;
  height: 539px;
  position: relative;
}

.blog-box .picture {
  width: 100%;
  height: 539px;
  position: relative;
}

.picture img {
  height: 539px;
  border-radius: 20px 0 0 20px;
}

.c-articlespotlight__shadow {
  position: absolute;
  height: 539px;
  width: 45%;
  z-index: 2;
  right: -1px;
  margin: auto;
  background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #f4f1ed);
}

.c-articlespotlight__featured-text {
  background-color: rgba(247, 196, 67, 0.9);
  margin: 0;
  position: absolute;
  top: 0;
  z-index: 4;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 15px 0 20px 0;
}

.blogbox {
  background-color: #f4f1ed;
  padding: 60px;
  height: 539px;
  border-radius: 0 20px 20px 0;
  width: 50%;
}

.blogbox h3 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.blogbox h3 a {
  font-weight: 800;
  font-size: 40px;
  color: #000;
}

.blogbox p a {
  margin-top: 0;
  color: #000;
}

.blogbox span {
  color: #333;
  margin-top: 100px;
}

.blogbox .ancer {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1028px) {
  .row-articlespotlight {
    margin-bottom: 0px;
  }

  .picture img {
    height: 500px;
    border-radius: 20px 0 0 20px;
  }

  .c-articlespotlight__shadow {
    position: absolute;
    height: 500px;
  }

  .blogbox {
    padding: 20px;
    height: 500px;
  }

  .blogbox h3 a {
    font-size: 35px;
  }

  .blogbox h3 {
    margin-top: 20px;
  }

  .blogbox p {
    margin-top: 10px;
  }

  .cybersecurity-section {
    margin-top: 120px;
  }
}

@media (max-width: 768px) {
  .row-articlespotlight {
    display: block;
    margin-bottom: 80px;
  }

  .blog-box {
    width: 100%;
    display: flex;
    height: 318px;
    position: relative;
  }

  .blog-box .picture {
    width: 100%;
    height: 318px;
  }

  .c-articlespotlight__shadow {
    display: none;
  }

  .picture img {
    height: 320px;
    border-radius: 20px 20px 0px 0px;
  }

  .blogbox {
    background-color: #f4f1ed;
    padding: 40px;
    height: 560px;
    border-radius: 0px 0px 20px 20px;
    width: 100%;
  }

  .blogbox h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .blogbox h3 a {
    font-size: 35px;
  }

  .articlespot {
    margin-top: 120px;
  }

  /* blog first page slider csss */
  .articlespot h2 {
    margin-top: 20px;
    font-size: 38px;
  }
}

/* Identity lock page  */

.container-imagess {
  position: relative;
  width: 100%;
  height: 472px;
  overflow: hidden;
  margin-top: 100px;
}

.container-imagess img {
  height: 100%;
  width: 100%;
}

.textss {
  position: absolute;
  top: 35%;
  left: 50%;
  color: black;
  padding: 20px;
}

.textss h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 35px;
}

.textss p {
  font-size: 20px;
  line-height: 2pc;
  font-weight: 500;
}

.lowersectionss {
  overflow: hidden;
  padding: 90px;
  background-color: #cfe3fc;
}

.text1ss {
  color: black;
  padding: 0px 40px;
  border-radius: 20px;
  height: auto;
  width: auto;
  padding: 90px;
}

.text1ss h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

.logosss {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  margin: 20px;
  /* height: 40px; */
}

.text-with-imgs {
  width: 33.3%;
}

.logosss img {
  width: 40px;
  height: 40px;
  margin-left: 22px;
}

.how-imgs {
  width: 70%;
  height: 100%;
  margin-bottom: 50px;
  margin-left: 15px;
}

.how-imgs img {
  margin-left: 20%;
}

.logosss p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
  margin-left: 15px;
  font-weight: 500;
}

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .text1ss {
    font-size: 2rem;
  }

  .textss {
    font-size: 1.2vw;
  }
}

/* Medium screens (tablets, small desktops) */
@media (min-width: 768px) {
  .container-imagess {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 88px;
  }

  .container-imagess img {
    height: 100%;
    width: 100%;
  }

  .logosss {
    flex-direction: row;
    justify-content: space-around;
  }

  .text-with-imgs {
    margin: 0 15px;
    display: flex;
  }

  .text1ss {
    font-size: 1.8rem;
    padding: 30px;
  }

  .textss {
    font-size: 1.5vw;
  }
}

/* Small screens (phones) */
@media (max-width: 576px) {
  .container-imagess {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
  }

  .container-imagess img {
    height: 270px;
    width: 100%;
  }

  .textss {
    font-size: 1.5vw;
    position: absolute;
    top: 18%;
    left: 30%;
    color: black;
    padding: 10px;
  }

  .textss h1 {
    font-size: 2pc;
    line-height: 3pc;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .textss p {
    font-size: 1pc;
    line-height: 24px;
  }

  .lowersectionss {
    overflow: hidden;
    padding: 0px 20px;
  }

  .text1ss {
    padding: 0px 0px;
  }

  .text1ss h2 {
    font-size: 2pc;
    line-height: 38px;
  }

  .how-imgs {
    width: 100%;
    height: 100%;
  }

  .how-imgs img {
    margin-left: 0%;
  }

  .text-with-imgs {
    width: 100%;
  }

  .logosss {
    flex-direction: column;
    margin-bottom: 0px;
  }

  .logosss img {
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 150px;
  }
}

/* **************Safe web ************ */
.safe-web-head {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  /* width: 500px; */
}

.stand-sm-head {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stand-sm-heads {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.stand-para {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 35px;
}

.flex-para {
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 35px;
}

.flex-contents ul li {
  font-size: 22px;
  font-weight: 700;
}

.logo-container {
  margin-left: 10px;
  width: 100%;
}

.browsers {
  margin-left: 30px;
  width: 50%;
}

.browsers img {
  margin-left: 30px;
  width: 50%;
}

.mycontent-section {
  max-width: 800px;
}

.mycontent-section h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 30px;
}

.mycontent-section p {
  font-size: 20px;
  line-height: 2pc;
  margin-bottom: 24px;
  font-weight: 500;
}

.center {
  padding-top: 100px;
  padding-bottom: 50px;
}

.big_image {
  width: 100%;
  position: relative;
}

.bg-grey {
  background-color: #f4f1ed;
}

.bg-green {
  background-color: #e8f4e4;
}

/* css for privacy-moniter */
.databroker-text {
  font-size: 52px;
  line-height: 56px;
}

.data {
  font-size: 1pc;
  line-height: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.New-plan {
  font-weight: 900;
  text-decoration: underline;
}

.smart-solution-my {
  margin-left: 100px;
}

.smart-problem-my {
  margin-left: 100px;
}

.moniters {
  margin-left: 40px;
  font-weight: 900;
}

#more {
  margin-left: 45px;
  margin-bottom: 100px;
}

.moniters {
  font-weight: 800;
}

.section__2nd {
  font-weight: 800;
  font-size: 22px;
  margin-top: 30px;
}

.section__description-01 {
  margin-right: 100px;
}

/* section new */
.privacy-box-monitry-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 20px;
}

.privacy-box-monitry-text-with-imgs {
  display: flex;
  align-items: center;
  width: 33.3%;
  margin-right: 20px;
}

.privacy-box-monitry-text-with-imgs img {
  width: 40px;
  height: 40px;
  margin-right: 25px;
}

.privacy-box-monitry-text-with-imgs p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.about-last-para {
  padding: 0px;
}

@media (max-width: 768px) {
  .privacy-box-monitry-logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-box-monitry-text-with-imgs {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .privacy-box-monitry-text-with-imgs img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .privacy-box-monitry-text-with-imgs p {
    font-size: 18px;
  }

  .about-last-para {
    padding: 0px;
  }
}

@media (max-width: 480px) {
  .safe-web-head {
    margin-left: 0px;
  }

  .stand-sm-head {
    margin-left: 0px;
  }

  .stand-para {
    margin-left: 0px;
  }

  .logo-container {
    margin-left: 0px;
    width: 100%;
  }

  .browsers {
    margin-left: 0px;
    width: 50%;
  }

  .browsers img {
    margin-left: 0px;
    width: 50%;
  }

  .mycontent-section h2 {
    font-size: 44px;
  }

  .top-freetools {
    background-color: #f4f1ed;
    width: 100%;
    text-align: center;
    margin-top: 120px;
  }
}

@media (min-width:768px) and (max-width:1068px) {
  .textss {
    position: absolute;
    top: 10%;
    left: 50%;
    color: black;
    padding: 20px;
  }
}

@media (min-width: 1028px) and (max-width: 1440px) {
  .before-gallery h2 {
    font-size: 48px;
    font-weight: 700;
  }
}