.cyber-banner-wrapper {
  background-image: url(./../assets/images/csc-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 20px 0px;
  overflow: hidden;
  height: 422px;
  max-height: 422px;
  position: relative;
}
.cyber-banner-wrapper .lets-connect {
  background-color: #FFAB23;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 10%;
  right: 2%;
  animation: move 1s infinite alternate-reverse;
}
.cyber-banner-wrapper .lets-connect img {
  width: 26px;
  height: auto;
}
@keyframes move {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(15px);
  }
}
.cyber-banner-wrapper .left-details {
  margin-bottom: 25px;
  position: relative;
}
.cyber-banner-wrapper .left-details h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}
.cyber-banner-wrapper .left-details h1 .typing {
  display: inline-flex;
  white-space: nowrap;
  color: #E60025;
  border-right: 3px solid #E60025;
  animation: typingErase 8s steps(8) infinite;
  overflow: hidden;
}
@keyframes typingErase {
  0% {
    width: 0ch;
  }
  30% {
    width: 9ch;
  }
  /* full text typed */
  60% {
    width: 9ch;
  }
  /* hold */
  90% {
    width: 0ch;
  }
  /* erased */
  100% {
    width: 0ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.cyber-banner-wrapper .left-details h1 .italic {
  font-style: italic;
  color: #E60025;
}
.cyber-banner-wrapper .left-details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #fff;
}
.cyber-banner-wrapper .right-details {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 21px 33px;
  width: 70%;
  margin: auto;
}
.cyber-banner-wrapper .right-details h3 {
  font-weight: 600;
  font-size: 27px;
  line-height: 37px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #0F0F0F;
}
.cyber-banner-wrapper .right-details h3 .typing {
  display: inline-flex;
  white-space: nowrap;
  color: #E60025;
  border-right: 3px solid #E60025;
  animation: typing 8s steps(11) infinite;
  overflow: hidden;
}
@keyframes typing {
  0% {
    width: 0ch;
  }
  30% {
    width: 11ch;
  }
  /* full text typed */
  60% {
    width: 11ch;
  }
  /* hold */
  90% {
    width: 0ch;
  }
  /* erased */
  100% {
    width: 0ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.cyber-banner-wrapper .right-details .check-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.cyber-banner-wrapper .right-details .check-wrapper img {
  width: 139px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.cyber-banner-wrapper .right-details .check-wrapper .check-now-btn {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  border: 0.5px dashed var(--primary);
  border-radius: 9px;
  padding: 12px 34px;
  transition: all 0.5s ease;
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2588235294);
  background-color: var(--primary);
  color: #fff;
}
.cyber-banner-wrapper .right-details .check-wrapper .check-now-btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.cyber-banner-wrapper .right-details .arrow-shape {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 0;
}
.cyber-banner-wrapper .right-details .arrow-shape img {
  width: 80px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.client-list-wrapper {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 30px 0px;
  margin-bottom: 3rem;
}
.client-list-wrapper .slide-track {
  display: flex;
/*  width: 3500px; */
  animation: scroll 30s linear infinite;
  gap: 80px;
}
.client-list-wrapper .slide-track .slide {
  width: 215px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px dashed #A7A7A7;
  border-radius: 10px;
  padding: 5px 5px;
}
.client-list-wrapper .slide-track .slide img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1.9/1.3;
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.client-list-wrapper:hover .slide-track {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testing-service-wrapper .left-details .top-integrated-wrapper {
  background-image: url(./../assets/images/integrated-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 600px;
  margin-bottom: 3rem;
  position: relative;
}
.testing-service-wrapper .left-details .top-integrated-wrapper .center-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, 20%);
}
.testing-service-wrapper .left-details .top-integrated-wrapper .center-heading h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 26px;
  text-align: center;
  color: #131313;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0px;
}
.testing-service-wrapper .left-details .top-integrated-wrapper .center-heading h3 span {
  font-weight: 600;
  font-size: 52px;
  line-height: 68px;
  text-align: center;
}
.testing-service-wrapper .left-details .top-integrated-wrapper .common-card-icons {
  box-shadow: 0px 3px 14.6px 4px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 50%;
  padding: 10px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testing-service-wrapper .left-details .top-integrated-wrapper .common-card-icons img {
  width: 55px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.testing-service-wrapper .left-details .top-integrated-wrapper .card-1 {
  left: 50%;
  position: absolute;
  top: 10%;
  transform: translate(-90%, 100%);
}
.testing-service-wrapper .left-details .top-integrated-wrapper .card-2 {
  left: 22%;
  position: absolute;
  bottom: 36%;
  transform: translate(0%, 100%);
}
.testing-service-wrapper .left-details .top-integrated-wrapper .card-3 {
  right: 32%;
  position: absolute;
  bottom: 36%;
  transform: translate(0%, 100%);
}
.testing-service-wrapper .left-details .integrated-csc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #000000;
}
.testing-service-wrapper .left-details .booking-banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 50px;
  border-radius: 27px;
  background-image: url(../assets/images/shop-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 3rem;
}
.testing-service-wrapper .left-details .booking-banner-wrap .detail-title h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 45.2px;
  letter-spacing: 0.23px;
  margin-bottom: 14px;
  color: #FFFFFF;
}
.testing-service-wrapper .left-details .booking-banner-wrap .detail-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 29.3px;
  letter-spacing: 0.51px;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.testing-service-wrapper .left-details .booking-banner-wrap .book-now-btn {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 0px;
  font-weight: 400;
  font-size: 14px;
  padding: 13px 40px;
  transition: all 0.3s ease;
}
.testing-service-wrapper .left-details .booking-banner-wrap .book-now-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.testing-service-wrapper .left-details .common-heading-wrapper {
  margin-bottom: 30px;
  margin-top: 5rem;
}
.testing-service-wrapper .left-details .common-heading-wrapper h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  color: var(--black_text);
  margin-bottom: 15px;
}
.testing-service-wrapper .left-details .common-heading-wrapper h3 span {
  color: var(--secondary);
}
.testing-service-wrapper .left-details .common-heading-wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 0px;
}
.testing-service-wrapper .left-details .common-list-card {
  border: 1px solid #D3D3D3;
  border-radius: 8px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}
.testing-service-wrapper .left-details .common-list-card:hover {
  box-shadow: 0px 1px 10px 1px rgba(205, 0, 31, 0.2392156863);
  border-color: var(--primary);
}
.testing-service-wrapper .left-details .common-list-card:hover a {
  color: var(--primary);
  text-decoration: none;
}
.testing-service-wrapper .left-details .common-list-card .service-logo {
  width: 60%;
}
.testing-service-wrapper .left-details .common-list-card .service-logo .media-wrap {
  box-shadow: 4px 3px 12.2px 0px rgba(0, 0, 0, 0.0784313725);
  background: #fff;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.testing-service-wrapper .left-details .common-list-card .service-logo .media-wrap img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testing-service-wrapper .left-details .common-list-card .service-logo h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px;
  text-align: center;
  margin-top: 5px;
}
.testing-service-wrapper .left-details .common-list-card a {
  color: #515151;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.3px;
  letter-spacing: 0.51px;
  margin-bottom: 0px;
  text-decoration: none;
}
.testing-service-wrapper .right-testing-list {
  background-color: #F6F6F6;
  padding: 30px 14px;
  border-radius: 20px;
  position: sticky;
  top: 5.5rem;
  margin-bottom: 20px;
}
.testing-service-wrapper .right-testing-list .common-list-wrap h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  text-align: left;
  color: #000;
  margin: 30px 0px;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul {
  margin: 0px;
  padding: 0px;
  -moz-column-count: 2;
       column-count: 2;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li {
  list-style-type: none;
  margin-bottom: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #383838;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.6s ease;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li span {
  width: 20px;
  height: 24px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li span svg {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s ease;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li span svg path {
  fill: rgba(229, 152, 164, 0.8156862745);
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li:hover {
  color: #000000;
  font-weight: 500;
}
.testing-service-wrapper .right-testing-list .common-list-wrap ul li:hover span svg path {
  fill: var(--primary);
}

.defence-banner {
  background-image: url(./../assets/images/defence-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 54px 0px;
  height: 280px;
  margin-top: 4rem;
}
.defence-banner .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
.defence-banner .main-title h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 51.2px;
  letter-spacing: 0.23px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.defence-banner .main-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 29.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #FFFFFF;
}

.approach-wrapper {
  background-color: #fff;
  padding: 4vmax 0px;
  overflow: hidden;
}
.approach-wrapper .helping-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9%;
  margin-top: 15vmax;
  margin-bottom: 13vmax;
}
.approach-wrapper .helping-list .approach-cards {
  position: relative;
}
.approach-wrapper .helping-list .approach-cards:nth-child(even) .details-approach {
  bottom: -46%;
  transform: translateY(40%);
}
.approach-wrapper .helping-list .approach-cards:nth-child(odd) .details-approach {
  top: -46%;
  transform: translateY(-40%);
}
.approach-wrapper .helping-list .approach-cards .details-approach {
  position: absolute;
}
.approach-wrapper .helping-list .approach-cards .details-approach p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25.3px;
  letter-spacing: 0.51px;
  text-align: center;
  vertical-align: middle;
  color: #626262;
}
.approach-wrapper .helping-list .approach-cards .details-approach h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  color: #000000;
  text-align: center;
}
.approach-wrapper .helping-list .helping-cards {
  outline-offset: 10px;
  outline: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: relative;
}
.approach-wrapper .helping-list .helping-cards.active::after {
  animation: rotate360 2s linear;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.approach-wrapper .helping-list .helping-cards img {
  width: 55px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.approach-wrapper .helping-list .helping-cards.card-1 {
  background-color: #F44A6A;
}
.approach-wrapper .helping-list .helping-cards.card-1::after {
  content: "";
  background-image: url(./../assets/images/round-line-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -24%;
  left: -20%;
  position: absolute;
  width: 140%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.approach-wrapper .helping-list .helping-cards.card-2 {
  background-color: #FFAB23;
}
.approach-wrapper .helping-list .helping-cards.card-2::after {
  content: "";
  background-image: url(./../assets/images/round-line-yellow.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -24%;
  left: -20%;
  position: absolute;
  width: 140%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.approach-wrapper .helping-list .helping-cards.card-3 {
  background-color: #F44A6A;
}
.approach-wrapper .helping-list .helping-cards.card-3::after {
  content: "";
  background-image: url(./../assets/images/round-line-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -24%;
  left: -20%;
  position: absolute;
  width: 140%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.approach-wrapper .helping-list .helping-cards.card-4 {
  background-color: #FFAB23;
}
.approach-wrapper .helping-list .helping-cards.card-4::after {
  content: "";
  background-image: url(./../assets/images/round-line-yellow.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -24%;
  left: -20%;
  position: absolute;
  width: 140%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.approach-wrapper .helping-list .helping-cards.card-5 {
  background-color: #F44A6A;
}
.approach-wrapper .helping-list .helping-cards.card-5::after {
  content: "";
  background-image: url(./../assets/images/round-line-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -24%;
  left: -20%;
  position: absolute;
  width: 140%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}

.we-support-wrapper {
  padding: 4vmax 0px;
}
.we-support-wrapper .support-cards {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.we-support-wrapper .support-cards .common-support-cards {
  border: 0.5px dashed #B1B1B1;
  background-color: #F5F5F5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  height: 154px;
  padding: 20px;
  transition: all 0.4s ease;
}
.we-support-wrapper .support-cards .common-support-cards img {
  width: 62px;
  height: 62px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.we-support-wrapper .support-cards .common-support-cards p {
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px;
  text-align:center;
}
.we-support-wrapper .support-cards .common-support-cards:hover {
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.2392156863);
  transform: translateY(-2px);
}

.our-partners-wrapper {
  padding: 4vmax 0px;
}
.our-partners-wrapper .partner-list-wrap {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.our-partners-wrapper .partner-list-wrap .common-partner-cards {
  border: 0.5px dashed #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 14%;
  height: 92px;
  padding: 20px;
  transition: all 0.4s ease;
}
.our-partners-wrapper .partner-list-wrap .common-partner-cards img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.2;
}
.our-partners-wrapper .partner-list-wrap .common-partner-cards:hover {
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.2392156863);
  transform: translateY(-2px);
}

.industry-we-serve-wrapper {
  padding: 50px 0px;
  background-color: #F6F6F6;
  overflow: hidden;
}
.industry-we-serve-wrapper .industries-list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 3rem;
}
.industry-we-serve-wrapper .industries-list-wrap .common-industry-cards {
  border: 0.6px solid #DBDBDB;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 5px;
  width: 13.5%;
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: all 0.3s ease;
  will-change: transform;
  transform-origin: top;
}
.industry-we-serve-wrapper .industries-list-wrap .common-industry-cards:hover {
  border-color: var(--primary);
  margin-top: -8px;
}
.industry-we-serve-wrapper .industries-list-wrap .common-industry-cards:hover img {
  filter: grayscale(0%);
}
.industry-we-serve-wrapper .industries-list-wrap .common-industry-cards img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  transition: filter 0.3s ease-in-out;
  filter: grayscale(100%);
}
.industry-we-serve-wrapper .industries-list-wrap .common-industry-cards h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 0px;
}
.industry-we-serve-wrapper .view-all-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vmax;
  overflow: hidden;
}
.industry-we-serve-wrapper .view-all-wrap .industry-btn {
  background-color: #fff;
  box-shadow: 0px 1px 6.6px -1px rgba(0, 0, 0, 0.1215686275);
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: var(--primary);
  padding: 14px 28px;
  transition: all 0.4s ease;
}
.industry-we-serve-wrapper .view-all-wrap .industry-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.why-choose-snc-wrapper {
  padding: 4vmax 0px;
  overflow: hidden;
}
.why-choose-snc-wrapper .listing-wrapper {
  display: flex;
  gap: 20px;
}
.why-choose-snc-wrapper .listing-wrapper ul {
  margin: 0px;
  padding: 0px;
}
.why-choose-snc-wrapper .listing-wrapper ul li {
  list-style-type: none;
  margin-bottom: 20px;
}
.why-choose-snc-wrapper .listing-wrapper ul li .common-list-card {
  display: flex;
  gap: 15px;
  align-items: center;
}
.why-choose-snc-wrapper .listing-wrapper ul li .common-list-card img {
  width: 58px;
  height: 58px;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-choose-snc-wrapper .listing-wrapper ul li .common-list-card h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 6px;
}
.why-choose-snc-wrapper .right-heading-content {
  margin-bottom: 4vmax;
}
.why-choose-snc-wrapper .right-heading-content h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 25px;
}
.why-choose-snc-wrapper .right-heading-content h2 span {
  color: var(--primary);
}
.why-choose-snc-wrapper .right-heading-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 40px;
}
.why-choose-snc-wrapper .score-archived {
  border: 1px dashed var(--primary);
  border-radius: 20px;
  padding: 20px 15px;
  background-color: #fff;
  margin-bottom: 20px;
}
.why-choose-snc-wrapper .score-archived h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-choose-snc-wrapper .score-archived p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #555454;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 0px;
}/*# sourceMappingURL=cybersecurity.css.map */