  /* custom helper class style */
.align-items-center {
  align-items: center;
}

.font-medium {
  font-weight: 500;
}

.d-block {
  display: block;
}

.title-semibold h1,
.title-semibold h2,
.title-semibold h3,
.title-semibold h4,
.title-semibold h5,
.title-semibold h6 {
  font-weight: 600;
}

.title-mt-0 h1,
.title-mt-0 h2,
.title-mt-0 h3,
.title-mt-0 h4,
.title-mt-0 h5,
.title-mt-0 h6 {
  margin-top: 0;
}

.bg-blue-100 {
  background-color: #3072b8;
  color: #ffffff;
}

.text-blue-100 {
  color: #3072b8;
}

.responsive-py-64px {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 992px) {
  .responsive-py-64px {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pr-lg-32px {
    padding-right: 32px;
  }

  .px-lg-32px {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (min-width: 1200px) {
  .pr-xl-48px {
    padding-right: 48px;
  }
}

@media (min-width: 1400px) {
  .pr-xxl-80px {
    padding-right: 80px;
  }

  .text-xxl-17px {
    font-size: 17px;
  }

  .py-xxl-110px {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media(max-width: 991px) {
  .hide-on-mbl {
    display: none !important;
  }
}
/* custom helper class style End */

.banner-block {
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.banner-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #231f20;
  opacity: 50%;
  z-index: -1;
}

.banner-block h1 {
  font-weight: 600;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 24px;
}

.banner-block h1 small {
  color: inherit;
  display: block;
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.5;
}

.banner-block .btn {
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .banner-block h1 {
    margin-bottom: 32px;
  }

  .banner-block h1 small {
    font-size: 20px;
    margin-top: 24;
  }
}

@media (min-width: 992px) {
  .banner-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .banner-block:before {
    opacity: 31%;
  }

  .banner-block h1 {
    margin-bottom: 40px;
    font-size: 40px;
  }

  .banner-block h1 small {
    margin-top: 28px;
    font-size: 24px;
  }

  .banner-block .btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .banner-block .btn {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .banner-block {
    padding-top: 110px;
    padding-bottom: 110px;
    min-height: 570px;
  }

  .banner-block h1 {
    margin-bottom: 62px;
    font-size: 56px;
  }

  .banner-block h1 small {
    margin-top: 46px;
    font-size: 28px;
  }

  .banner-block .btn {
    font-size: 18px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* list-icon */
.list-icon ul,
ul.list-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

.list-icon ul li,
ul.list-icon li {
  position: relative;
  padding-left: 28px;
}

.list-icon ul li + li,
ul.list-icon li + li {
  margin-top: 14px;
}

.list-icon ul li:before,
ul.list-icon li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/sentinel/images/cancel.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
}

@media (min-width: 1400px) {
  .list-icon ul li,
  ul.list-icon li {
    padding-left: 32px;
  }

  .list-icon ul li + li,
  ul.list-icon li + li {
    margin-top: 18px;
  }
}

/* list icon check */
.list-icon.list-icon--check ul li,
ul.list-icon.list-icon--check li {
  padding-left: 28px;
}

.list-icon.list-icon--check ul li:before,
ul.list-icon.list-icon--check li:before {
  background-image: url(/wp-content/themes/sentinel/images/check.svg);
}

/* two-col */
.two-col .row {
  display: flex;
  flex-wrap: wrap;
}

.two-col .row [class*="col"] {
  flex: 0 0 auto;
  width: 100%;
  float: none;
}

.two-col__media {
  margin-bottom: 32px;
}

.two-col iframe {
  display: block;
  width: 100%;
  height: 250px;
}

.two-col h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .two-col iframe {
    height: 295px;
  }

  .two-col h3 {
    font-size: 22px;
  }

  .two-col h3 + p,
  .two-col h3 + ul {
    margin-top: 24px;
  }
}

@media (min-width: 992px) {
  .two-col .row .col-lg-6 {
    width: 50%;
  }

  .two-col__media {
    margin-bottom: 0;
  }

  .two-col h3 + p,
  .two-col h3 + ul {
    margin-top: 32px;
  }
}

@media (min-width: 1400px) {
  .two-col h3 {
    font-size: 24px;
  }

  .two-col h3 + p,
  .two-col h3 + ul {
    margin-top: 40px;
  }
}

/* column-bg */
.column-bg {
  position: relative;
  z-index: 1;
}

.column-bg .overlay {
  z-index: -1;
}

.column-bg__media {
  display: block;
}

.column-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-bg .panel-text {
  max-width: none;
}

.column-bg.column-bg--right .panel-text {
  margin-left: 0;
  margin-right: auto;
}

.column-bg .panel-text__title {
  font-weight: 800;
  color: #215c9b;
  font-size: 24px;
  margin-bottom: 16px;
}

.column-bg .panel-text__title small,
.column-bg .panel-text__subtitle {
  font-size: 20px;
}

.column-bg .panel-text__title small {
  display: block;
  font-weight: 800;
  color: #757575;
  margin-bottom: 16px;
}

.column-bg .panel-text__subtitle {
  display: block;
  color: #757575;
  font-weight: 500;
  margin-top: 10px;
}

.column-bg .panel-text__shortDesc {
  color: #215c9b;
  margin-top: 16px;
  display: block;
}

.column-bg blockquote {
  margin: 0;
  border: none;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
}

.column-bg blockquote h4 {
  font-size: 14px;
  font-weight: 800;
  margin-top: 32px;
}

.column-bg blockquote h4 span {
  color: #ffffff;
  font-size: 13px;
  display: block;
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.5;
}

.column-bg .overlay-white {
  background: #ffffff;
}

.column-bg .overlay-blue {
  background: #215c9b;
}

@media (min-width: 576px) {
  .column-bg .panel-text__title {
    margin-bottom: 24px;
  }

  .column-bg .panel-text__shortDesc {
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .column-bg__media {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 57%;
    z-index: -2;
  }

  .column-bg--right .column-bg__media {
    left: auto;
    right: 0;
  }

  .column-bg .panel-text {
    max-width: 450px;
    margin-left: auto;
    margin-right: 0;
  }

  .column-bg .overlay-white {
    background: linear-gradient(
      90deg,
      #ffffff 53%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .column-bg .overlay-blue {
    background: linear-gradient(
      90deg,
      rgba(49, 115, 184, 0) 25%,
      rgba(49, 115, 184, 1) 50%,
      rgba(49, 115, 184, 1) 100%
    );
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .column-bg.column-bg--right .panel-text {
    max-width: 500px;
  }
}

@media (min-width: 992px) {
  .column-bg .panel-text {
    max-width: 600px;
  }

  .column-bg .panel-text__title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .column-bg .panel-text__title small,
  .column-bg .panel-text__subtitle {
    font-size: 22px;
  }

  .column-bg .panel-text__shortDesc {
    margin-top: 32px;
  }
}

@media (min-width: 1440px) {
  .column-bg .panel-text__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .column-bg .panel-text__title small,
  .column-bg .panel-text__subtitle {
    font-size: 24px;
  }

  .column-bg .panel-text__title small {
    margin-bottom: 24px;
  }

  .column-bg .panel-text__shortDesc {
    margin-top: 40px;
    padding-right: 124px;
  }
}

@media (max-width: 767px) {
  .column-bg__media {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .column-bg__media {
    height: 300px;
  }
}

/* step-list */
.step-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: counter-count 0;
  font-size: 16px;
}

.step-list li {
  position: relative;
  padding-left: 36px;
  padding-bottom: 24px;
}

.step-list li:last-child {
  padding-bottom: 0;
}

.step-list li:before {
  content: counter(counter-count);
  counter-increment: counter-count;
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  padding-bottom: 3px;
  background-color: #059dcc;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  z-index: 1;
}

.step-list li:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 13px;
  height: 100%;
  width: 2px;
  background-color: #757575;
}

.step-list li:last-child:after {
  display: none;
}

.step-list li p {
  margin-bottom: 16px;
}

.step-list li strong {
  display: block;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

@media(min-width: 576px) {
  .step-list li {
    padding-left: 48px;
  }

  .step-list li:before {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .step-list li:after {
    left: 17px;
  }
}

@media (min-width: 992px) {
  .step-list li {
    padding-left: 64px;
    padding-bottom: 32px;
  }

  .step-list li:before {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .step-list li:after {
    left: 23px;
  }

  .step-list li p {
    margin-bottom: 20px;
  }

  .step-list li .btn {
    font-size: 15px;
    font-weight: 600;
    min-width: 260px;
  }
}

@media (min-width: 1400px) {
  .step-list li {
    padding-left: 76px;
    padding-bottom: 36px;
  }

  .step-list li:before {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .step-list li:after {
    left: 27px;
  }
}

/* ssPackage-block */
.ssPackage-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ssPackage-block__header {
  text-align: center;
  margin-bottom: 32px;
}

.ssPackage-block__header h3 {
  color: #215C9B;
  font-weight: 600;
}

@media(min-width: 576px) {
  
}

@media(min-width: 992px) {
  .ssPackage-block__header {
    margin-bottom: 56px;
  }
}

@media(min-width: 1400px) {
  .ssPackage-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ssPackage-block__header {
    font-size: 18px;
    margin-bottom: 74px;
  }
}

/* ssPackage-head */
.ssPackage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px;
  margin-bottom: 32px;
  color: #ffffff;
  background-color: #215C9B;
}

.ssPackage-head__item {
  flex: 0 0 auto;
  width: 100%;
  align-items: center;
}

.ssPackage-head__item.item--left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ssPackage-head__item.item--left h4 {
  font-size: 16px;
  font-weight: 700;
  padding-right: 16px;
  margin: 0;
}

.ssPackage-head__item.item--left strong {
  position: relative;
  padding-right: 24px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.ssPackage-head__item.item--left strong:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  background-image: url('/wp-content/themes/sentinel/images/chevron-right-white.svg');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.ssPackage-head__item.item--right {
  padding-left: 12px;
}

.ssPackage-head__item.item--right .inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: -35px;
}

.ssPackage-title-wrap {
  flex: 0 0 auto;
  width: 33.33%;
  padding-left: 8px;
  padding-right: 8px;
}

.ssPackage-block .ssPackage-title {
  position: relative;
  display: block;
  width: 100%;
  min-height: 70px;
  padding: 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  background-color: #969799;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.ssPackage-block .ssPackage-title:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 18px 17px 0px 17px;
  border-color: #969799 transparent transparent transparent;
}

.ssPackage-block .ssPackage-title.ssPackage-title--blue {
  background-color: #059DCC;
}

.ssPackage-block .ssPackage-title.ssPackage-title--blue:after {
  border-color: #059DCC transparent transparent transparent;
}

.ssPackage-block .ssPackage-title.ssPackage-title--green {
  background-color: #009444;
}

.ssPackage-block .ssPackage-title.ssPackage-title--green:after {
  border-color: #009444 transparent transparent transparent;
}

@media(min-width: 576px) {
  .ssPackage-head {
    padding: 20px 24px;
  }
}

@media(min-width: 992px) {
  .ssPackage-head {
    margin-bottom: 64px;
  }

  .ssPackage-head__item {
    width: 50%;
  }

  .ssPackage-head__item.item--left h4 {
    font-size: 18px;
  }
}

@media(min-width: 1400px) {
  .ssPackage-head {
    padding: 20px 35px;
    margin-bottom: 85px;
  }

  .ssPackage-head__item.item--right .inner {
    margin-left: -15px;
    margin-right: -15px;
  }

  .ssPackage-title-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ssPackage-block .ssPackage-title {
    min-height: 82px;
  }
}

/* ssPackage-info */
.ssPackage-info {
  padding: 0 16px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, .15);
  overflow: hidden;
}  

.ssPackage-block .ssPackage-info + .ssPackage-info {
  margin-top: 32px;
}

.ssPackage-info > h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 16px;
  color: #215C9B;
}

.ssPackage-info__inner {
  display: flex;
  flex-wrap: wrap;
}

.ssPackage-info__item {
  flex: 0 0 auto;
  width: 100%;
}

.ssPackage-content {
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.3;
}

.ssPackage-content p strong {
  display: block;
  font-weight: 600;
}

.ssPackage-content p:last-of-type {
  margin-bottom: 0;
}

.ssPackage-panel-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.ssPackage-panel-wrap > .item {
  flex: 0 0 auto;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.ssPackage-panel {
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
  padding: 16px 8px;
}

.ssPackage-panel:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F0F2F1;
  z-index: -1;
}

.ssPackage-panel--blue:before {
  background-color: #E7F5F7;
}

.ssPackage-panel--green:before {
  background-color: #E9F4EC;
}

.ssPackage-panel h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0 6px;
}

@media(min-width: 576px) {
  .ssPackage-info {
    padding: 0 24px;
  }

  .ssPackage-panel-wrap > .item {
    width: 33.33%;
  }
}

@media(min-width: 992px) {  
  .ssPackage-block .ssPackage-info + .ssPackage-info {
    margin-top: 48px;
  }

  .ssPackage-info > h4 {
    font-size: 18px;
  }

  .ssPackage-info__item {
    width: 50%;
  }

  .ssPackage-info__itemLeft {
    padding-right: 16px;
  }

  .ssPackage-info__inner:not(:last-child) .ssPackage-content {
    border-bottom: 1px solid rgba(128, 130, 133, .4);
  }

  .ssPackage-info__itemRight {
    padding-left: 12px;
  }
  
  .ssPackage-panel-wrap,
  .ssPackage-panel-wrap > .item {
    height: 100%;
  }

  .ssPackage-info__inner:first-child .ssPackage-panel:before {
    top: -999px;
  }

  .ssPackage-info__inner:not(:last-child) .ssPackage-panel:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: rgba(128, 130, 133, .4);
  }

  .ssPackage-panel h5 {
    display: none;
  }
}

@media(min-width: 1400px) {
  .ssPackage-info {
    padding: 0 35px;
  }
  
  .ssPackage-info__itemLeft {
    padding-right: 48px;
  }

  .ssPackage-panel-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .ssPackage-panel-wrap > .item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ssPackage-panel {
    padding: 16px 18px;
  }
}

@media(max-width: 991px) {
  .ssPackage-info {
    padding-bottom: 24px;
  }

  .ssPackage-info__inner:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(128, 130, 133, .4);
  }
}

/* ssPackage-btnGroup */
.ssPackage-btnGroup {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0;
  text-align: center;
  row-gap: 20px;
}

.ssPackage-btnGroup__item {
  flex: 0 0 auto;
  width: 100%;
}

.ssPackage-btn {
  font-size: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  min-width: auto !important;
  white-space: unset;
}

.ssPackage-quoteWrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  row-gap: 20px;
}

.ssPackage-quote__item {
  flex: 0 0 auto;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

@media(min-width: 576px) {
  .ssPackage-quote__item {
    width: 33.33%;
  }
  .ssPackage-btnGroup__item.item--left {
    padding-right: 8px;
    width: 25%;
  }

  .ssPackage-btnGroup__item.item--right {
    padding-left: 8px;    
    width: 75%;
  }
}

@media(min-width: 992px) {
  .ssPackage-btnGroup {
    padding: 20px 24px 0;
  }

  .ssPackage-btnGroup__item.item--left {
    padding-right: 16px;
    width: 50%;
  }

  .ssPackage-btnGroup__item.item--right {
    padding-left: 12px;    
    width: 50%;
  }
}

@media(min-width: 1200px) {
  .ssPackage-btn {
    font-size: 11px !important;
  }
}

@media(min-width: 1400px) {
  .ssPackage-btnGroup {
    padding: 20px 35px 0;
  }
  
  .ssPackage-quoteWrap {
    margin-left: -16px;
    margin-right: -16px;
  }

  .ssPackage-quote__item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ssPackage-btn {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}

@media(max-width: 767px) {
  .ssPackage-btn {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media(max-width: 575px) {
  .ssPackage-btn {
    width: 100%;
  }
}

.security-standard-video-wrap video{
    max-width: 100%;
}
/* New Page start */
.banner-block--alt {
  position: relative;
  z-index: 1;
}

.banner-block--alt:after {
  content: '';
  background-color: rgba(255, 255, 255, .7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-block--alt figure {
  margin: 0 0 10px;
}
.banner-block--alt h1 {
  color: #2C2E35;
  margin: 0;
}

.intro-block {
  background-repeat: no-repeat;
  background-size: cover;
}

.block-operation {
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
}

.btn {
  font-weight: 700;
}
.row-reverse {
  flex-direction: row-reverse;
}
.block-operation .btn-style2 {
  color: #0069A1;
  border: 1px solid #0069A1;
}


.btn.btn-border {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.btn.btn-border:hover {
  border-color: #fff;
  background-color: #fff;
  color: #0069A1;
}

.block-operation .btn-border {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.block-operation .btn-border:hover {
  border-color: #fff;
  background-color: #fff;
  color: #0069A1;
}

.block-operation .btn-style2:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.block-operation .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.block-towers {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position:relative;
  z-index: 1;
}

.block-towers .btn-wrap a {
  display: block;
  max-width: 155px;
  white-space: pre-wrap;
  margin: 10px 0;
}

.block-towers .btn-style3:hover {
  background-color: transparent;
  border: 1px solid #1369A8;
  color: #1369A8;
}

.block-towers .btn-border {
  border: 1px solid #1369A8;
  color: #1369A8;
  background-color: transparent;
}

.block-towers .btn-border:hover {
  border: 1px solid #1369A8;
  color: #fff;
  background-color: #1369A8;
}

.block-towers .btn-wrap {
  position: absolute;
  top: 0;
}

.block-towers figure {
  margin-top: -1rem;
}
.block-towers .left-aside {
  padding: 15px;
}

.block-drone .panel-text {
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.block-drone h2 small {
  font-size: 17px;
  text-transform: capitalize;
  display: block;
  color: #fff;
}
.block-drone .btn {
  padding: 11px 15px 9px;
  line-height: 1;
  min-width: 136px;
}

.block-drone .btn-style3:hover {
  background-color: #fff;
  color: #1369A8;
}

.bg_info {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}

.bg_info .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bg_info:after {
  content: '';
  background-color: rgba(19, 105, 168, .9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg_info .left-aside h2 {
  font-weight: 700;
}

.bg_info .left-aside small {
  display: block;
  color: #fff;
}

.bg_info .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.bg_info .btn-wrap a {
  max-width: 155px;
  white-space: pre-wrap;
  display: flex;
  align-items: center;
}

.bg_info .btn-wrap .btn-style2 {
  color: #0069A1;
  border: 1px solid #fff;
}

.bg_info .btn-wrap .btn-style2:hover {
  background-color: transparent;
  color: #fff;
}
.bg_info--white {
  background-position: 100% 100% !important;
} 

.bg_info--white .row {
  align-items: flex-start;
}

.bg_info--white:after {
  background-color: rgba(255, 255, 255, .2);
}

.bg_info--white .btn-wrap {
  justify-content: flex-start;
}

.bg_info--white .btn-wrap a {
  line-height: 1.2;
  padding: 7px 15px;
}
.bg_info--white .btn-style3:hover {
  border: 1px solid #0069A1;
  background-color: transparent;
  color: #0069A1;
}

.bg_info--white .btn-border {
  border: 1px solid #0069A1;
  background-color: transparent;
  color: #0069A1;
}

.bg_info--white .btn-border:hover {
  border: 1px solid #0069A1;
  background-color: #0069A1;
  color: #fff;
}

@media(min-width: 576px) {
  .ssPackage-quote__item {
    width: 33.33%;
  }
  .ssPackage-btnGroup__item.item--left {
    padding-right: 8px;
    width: 25%;
  }

  .ssPackage-btnGroup__item.item--right {
    padding-left: 8px;    
    width: 75%;
  }

  .block-towers .btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -100%);
  }
}

@media(min-width: 992px) {
  .ssPackage-btnGroup {
    padding: 20px 24px 0;
  }

  .ssPackage-btnGroup__item.item--left {
    padding-right: 16px;
    width: 50%;
  }

  .ssPackage-btnGroup__item.item--right {
    padding-left: 12px;    
    width: 50%;
  }
  .block-drone h2 small {
    font-size:22px;
    }
}

@media(min-width: 1200px) {
  .ssPackage-btn {
    font-size: 11px !important;
  }
}

@media(min-width: 1400px) {
  .ssPackage-btnGroup {
    padding: 20px 35px 0;
  }
  
  .ssPackage-quoteWrap {
    margin-left: -16px;
    margin-right: -16px;
  }

  .ssPackage-quote__item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ssPackage-btn {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}

@media(max-width: 991px) {

  .block-operation:after {
    content: '';
    background:rgba(49, 115, 184, .8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .block-operation .panel-text {
    max-width: 100%;
  }
}

@media(max-width: 767px) {
  .ssPackage-btn {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media(max-width: 575px) {
  .ssPackage-btn {
    width: 100%;
  }
}


/* Added by Hemraj  */

/* .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 15px;
} */

@media(min-width: 1366px) {
  .page-template-template-tactical-wayfinding .container {
    width: 1340px;
  }
}

.hero-section {
  padding: 115px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: white;
}

.hero-section h1 {
  margin-top: 0;
  font-weight: 600;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #231F20;
  opacity: 0.7;
  z-index: -1;
}

.banner-left-part {
  max-width: 990px;
}

@media (max-width:1024) {
  .banner-left-part {
    max-width: 690px;
  }
}

.content-section-bg {
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 60px 0;
  background: linear-gradient(90deg, #3072B8 -317.97%, #3173B8 -317.89%);
}

.the-solution-section {
  padding: 115px 0;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.the-solution-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 44%);
  z-index: -1;
}

.the-solution-right-part {
  max-width: 900px;
  text-align: right;
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
}


/* Added by sumesh  */

.the-solution-section h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 900;
  color: #215C9B;
}

.line-title {
  color: #3072B8;
}

.tactical-service-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 60px 0;
  font-size: 16px;
}

.tactical-service-section .overlay-blue {
  z-index: -1;
}

.tactical-service-section .text-wrap {
  max-width: 900px;
}

.tactical-service-section .btn {
  text-decoration: none;
}

.tactical-service-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tactical-service-section ul li {
  margin-bottom: 20px;
  padding-left: 37px;
  position: relative;
}

.tactical-service-section ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/themes/sentinel/images/checked-icon.png');
  background-repeat: no-repeat;
}

.tactical-service-section .title-style2 {
  margin-bottom: 0;
}

.tactical-service-section .sm-title {
  display: block;
  margin-bottom: 40px;
  font-size: 31px;
  font-weight: 500;
}

.choose-option {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  font-size: 16px;
  font-weight: 600;
  color: #757575;
}

.choose-option h2 {
  margin-top: 0;
  font-weight: 800;
  color: #215C9B;
}

.choose-media p:last-child {
  margin-bottom: 0;
}

.choose-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -40px 50px;
}

.choose-media-info,
.choose-media-image {
  padding: 0 40px;
  width: 100%;
}

.choose-media-image {
  margin: 0;
}

.table-holder table {
  width: 100%;
  font-size: 14px;
  margin: 0;
  min-width: 900px;
}

.table-wrap {
  border: 1px solid #808285;
  border-radius: 8px;
  padding: 0 15px;
  color: #58595B;
  overflow: hidden;
  overflow-x: auto;
}

.table-holder td {
  text-align: center;
  padding: 0 10px;
  width: 145px;
  vertical-align: bottom;
}

.table-holder th {
  text-align: center;
  padding: 0 15px;
}

.title-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  background: #959597;
  border-radius: 4px;
  width: 100%;
  color: #fff;
  min-height: 55px;
  position: relative;
}

.title-badge:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #959597 transparent transparent transparent;
  transform: translateX(-50%) rotate(0deg);
}

.title-badge.blue {
  background: #069CCB;

}

.title-badge.blue:before {
  border-color: #069CCB transparent transparent transparent;
}

.title-badge.green {
  background: #009348;
}

.title-badge.green:before {
  border-color: #009348 transparent transparent transparent;
}

.table-holder td span {
  display: block;
  border-bottom: 1px solid #808285;
  padding: 12px 15px;
}

.table-holder tr:last-child span {
  border-bottom: none;
}

.table-holder td:first-child {
  text-align: left;
  width: auto;
}

.table-holder td:nth-child(2) {
  background: #F0F2F1;
}

.table-holder td:nth-child(3) {
  background: #E7F4F6;
}

.table-holder td:last-child {
  background: #E9F4EC;
}


.table-holder .title {
  display: block;
  padding: 22px 40px;
  text-transform: uppercase;
  background: #00689F;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.award-section {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.award-section h2 {
  color: #6D6E72;
  font-weight: 600;
  margin-top: 0;
}

.award-wrap {
  max-width: 638px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  font-size: 16px;
}

.award-wrap .logo {
  width: 100%;
}

.award-wrap .award-info {
  width: 100%;
}

.award-wrap p:last-child {
  margin-bottom: 0;
}

@media (min-width:768px) {

  .choose-media-info,
  .choose-media-image {
    width: 50%;
  }

  .table-holder table {
    font-size: 16px;
  }

  .award-section {
    padding: 90px 0 120px;
  }
  
  .award-section h2 {
    font-size: 48px;
  }

  .award-wrap {
    font-size: 23px;
    justify-content: flex-start;
  }
  
  .award-wrap .logo {
    width: 175px;
  }
  
  .award-wrap .award-info {
    flex: 1;
  }

}


@media (min-width:1024px) {

  .hero-section {
    font-size: 34px;
  }

  .content-section-bg {
    font-size: 22.437px;
    padding: 112px 0 143px 0;
  }

  .tactical-service-section {
    font-size: 22px;
  }

  .tactical-service-section ul li {
    margin-bottom: 41px;
  }

  .the-solution-right-part {
    font-size: 22px;
  }

  .choose-option h2 {
    font-size: 47.5px;
  }

  .choose-option {
    font-size: 32px;
  }
}

@media (min-width: 1280px) {
  .table-wrap {
    padding: 0 34px;
    color: #58595B;
    overflow: unset;
  }

  .table-holder td {
    width: 172px;
    padding: 0 15px;
  }

  .table-holder table {
    font-size: 19.678px;
  }

  .title-badge {
    font-size: 18px;
    margin-top: -20px;
  }

  .table-holder .title {
    margin-bottom: 38px;
  }

  .table-holder td span {
    padding: 16px 15px 20px;
  }
}


/*Styles of Block Simple Steps*/

.block-simple-steps {
  background: linear-gradient(to right, #3072b8 0%, #3173b8 100%);
  padding: 40px 0;
}

.block-simple-steps .desktop-only {
  display: none;
}

.block-simple-steps .mobile-only {
  display: block;
}

.block-simple-steps .left-content {
  margin-bottom: 40px;
}

.block-simple-steps .left-content h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.block-simple-steps .left-content h3 strong {
  display: block;
  font-weight: 900;
  margin-top: 6px;
}

.block-simple-steps .btn-wrap {
  margin-top: 60px;
  text-align: center;
}

.block-simple-steps .right-content ul {
  counter-reset: section;
  padding-left: 0;
}

.block-simple-steps .right-content ul li {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  color: #ffffff;
  list-style-type: none;
  position: relative;
  z-index: 3;
  padding-left: 52px;
  padding-bottom: 52px;

}

.block-simple-steps .right-content ul li:last-child {
  padding-bottom: 0;
}

.block-simple-steps .right-content ul li:last-child::after {
  display: none;
}

.block-simple-steps .right-content ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #3072b8;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  font-size: 16px;
  font-weight: 700;
  counter-increment: section;
  content: counter(section) ".";
  z-index: 2;
  padding-left: 2px;
}

.block-simple-steps .right-content ul li::after {
  position: absolute;
  content: '';
  top: 0;
  left: 15px;
  width: 3px;
  height: 100%;
  background: #ffffff;
  z-index: 1;
}


@media(min-width: 768px) {
  .block-simple-steps {
    padding: 60px 0;
  }

  .block-simple-steps .left-content h3 {
    font-size: 28px;
  }

  .block-simple-steps .btn-wrap {
    margin-top: 90px;
  }

  .block-simple-steps .right-content ul li {
    font-size: 22px;
  }
}

@media(min-width: 992px) {
  .block-simple-steps {
    padding: 83px 0;
  }

  .block-simple-steps .desktop-only {
    display: block;
  }

  .block-simple-steps .mobile-only {
    display: none;
  }

  .block-simple-steps .left-content {
    margin-bottom: 0;
  }

  .block-simple-steps .left-content h3 {
    font-size: 32px;
  }

  .block-simple-steps .btn-wrap {
    margin-top: 118px;
    text-align: left;
  }

  .block-simple-steps .right-content ul li {
    padding-left: 70px;
    padding-bottom: 78px;
  }

  .block-simple-steps .right-content ul li::before {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .block-simple-steps .right-content ul li::after {
    left: 18px;
  }
}

/* Card Team section - 2025/04/08 */

.ss-team-members .row {
  display: flex;
  flex-wrap: wrap;
}

.ss-team-members .row .col {
  margin-bottom: 30px;
}

.ss-team-members .card-team {
  height: 100%;
  position: relative;
  text-align: center;
  transition: all .3s;
  -webkit-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, .2);
  -moz-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, .2);
  -ms-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, .2);
  -o-box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, .2);
  box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, .2);
}

.ss-team-members .card-team .card-team__info {
  padding: 20px 16px;
}

.ss-team-members .card-team .card-team__title {
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  color: #3072b8;
  line-height: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.ss-team-members .card-team .card-team__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  margin: 0 auto;
  transition: all .3s;
  display: inline-block;
  background-color: #3072B8;
}

.ss-team-members .card-team .card-team__designation {
  color: #757575;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
}

.ss-team-members .card-team .card-team__media {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: 50%;
}

.ss-team-members .card-team .card-team__media:after {
  content: "";
  display: block;
  padding-bottom: 85%;
  background: transparent;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .8s ease;
}

.ss-team-members .card-team .card-team__media blockquote {
  font-size: 14px;
  position: absolute;
  top: 50%;
  opacity: 0;
  margin: 0;
  color: #fff;
  padding: 20px;
  border-left: 0px;
  visibility: hidden;
  transform: translateY(0%);
  background-color: transparent;
  transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.ss-team-members .card-team:hover .card-team__media blockquote {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.ss-team-members .card-team:hover .card-team__media:after {
  background-color: rgba(37, 42, 49, .7);
}

.ss-team-members .card-team:hover .card-team__title::before {
  width: 50px;
}

.ss-team-members .card-team .stretched-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.ss-team-members .card-team .card-team__socialLinks {
  margin-top: 20px;
  padding-top: 16px;
  background-color: #00689F;
}

.ss-team-members .card-team .card-team__socialLinks .social-team {
  top: 0px;
  float: none;
  width: 100%;
  padding-left: 0;
}

/*SS two new pages*/
/* Banner section */
.banner {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 50%;
  z-index: -1;
}

.banner h1,
.banner .h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
  margin-top: 0;
}

.banner h2,
.banner .h2 {
  margin-top: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

.banner .cta-wrapper {
  margin-top: 34px;
}

.banner .cta-wrapper .btn {
  color: #757575;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  text-transform: none;
}

.banner .cta-wrapper .btn:hover {
  color: #fff;
}
.d-none {
  display: none;
}
@media (min-width: 1024px) {
  .banner {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: top center;
    background-size: cover;
  }
  .banner h1,
  .banner .h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 60px;
  }

  .banner h2,
  .banner .h2 {
    color: #fff;
    font-size: 34px;
    line-height: normal;
  }

  .banner .cta-wrapper .btn {
    font-size: 18px;
  }
  .problem-section h3 {
    font-size: 22px;
  }
}
.banner .banner-heading {
  max-width: 395px;
}
.footer-v2 {
  background: #fff;
}
.page-template-template-security-operations .breadcrumbs,
.page-template-template-security-technology-consulting .breadcrumbs {
  display: none;
}

/* Security Technology Consulting Page */

.page-security h2,
.page-security .h2,
.footer-v2 h2,
.footer-v2 .h2 {
  font-weight: 700;
  font-size: 25px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 18px;
}

.page-security h3,
.page-security .h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 18px;
}

.page-security figure {
  margin: 0;
  display: flex;
}

.page-security p {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.blue-color {
  color: #215c9b;
}

.page-security .problem-section strong {
  display: block;
}

.page-security .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.page-security .row .col-md-6 {
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 1023px) {
  .page-security.security-consulting .blue-content-section .row .left-content {
    width: 42%;
    margin-right: auto;
  }

  .page-security.security-consulting .blue-content-section .row .right-content {
    width: 36%;
    margin-left: auto;
  }

  .page-security.security-consulting figure {
    justify-content: end;
  }
}

.page-security.security-consulting .blue-content-section .row {
  justify-content: space-between;
}

@media (min-width: 767px) {
  .page-security h2,
  .page-security .h2 {
    font-size: 42px;
    line-height: normal;
  }
  .page-security p {
    font-size: 18px;
    line-height: 26px;
  }
  .page-security h3,
  .page-security .h3 {
    font-weight: 800;
    font-size: 36px;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .d-sm-block {
    display: block;
  }
}
@media (min-width: 1023px) {
  .page-security .row .col-md-5 {
    width: 33.33%;
  }
  .page-security .row .col-md-6 {
    width: 50%;
  }
  .page-security h2,
  .page-security .h2 {
    font-size: 52px;
    line-height: 60px;
  }
}

.problem-section {
  background-color: #3072b8;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding: 40px 0;
}

.solution-section .row {
  justify-content: end;
}

.solution-section {
  padding: 45px 0;
  position: relative;
}

.solution-section .left-media,
.footer-v2 .left-media {
  position: static;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.solution-section .left-media figure {
  margin: 0;
  max-width: 496px;
}

.security-consulting .solution-section .left-media {
  width: 45%;
}

@media (min-width: 576px) {
  .solution-section .left-media,
  .footer-v2 .left-media {
    max-width: 60%;
  }
}
@media (min-width: 767px) {
  .solution-section .left-media,
  .footer-v2 .left-media {
    max-width: 50%;
  }
}

.content-wrapper strong,
.content-wrapper a {
  font-weight: 800;
  color: #3072b8;
}
.blue-content-section strong {
  font-weight: 800;
}
.intro-section {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}

.security-consulting .intro-section {
  padding: 70px 0;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    270deg,
    rgba(48, 114, 184, 0) 0%,
    rgba(48, 114, 184, 0.7) 36.98%,
    #3072b8 62.97%,
    #3072b8 100%
  );
}

.intro-section .top-info {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

@media (min-width: 1023px) {
  .intro-section .top-info {
    font-size: 24px;
  }
}

.intro-section .icon-list {
  padding-top: 24px;
  padding-left: 0;
  max-width: 720px;
}

.icon-list li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 28px;
}

.icon-list li svg {
  position: absolute;
  inset: 0;
  width: 17px;
  height: 19px;
  content: "";
}

.intro-section .btn-wrapper {
  margin-top: 50px;
}

.security-consulting .problem-section .header-title h2 {
  margin-bottom: 18px;
}

.security-consulting .heading-wrapper .top-heading {
  margin-bottom: 18px;
}

@media (max-width: 1023px) {
  .security-consulting .benifit-section .heading-wrapper {
    margin-bottom: 30px;
  }
}

.security-consulting .btn-wrapper .btn {
  color: #757575;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
}

.security-consulting .benifit-section .heading-wrapper p {
  color: #757575;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.security-consulting .btn-wrapper .btn:hover {
  color: #fff;
}

@media (min-width: 1023px) {
  .security-consulting .problem-section {
    padding: 70px 0;
  }
  .security-operations .problem-section {
    padding: 56px 0;
  }

  .security-operations .solution-section {
    padding: 93px 0;
  }
  .security-consulting .solution-section {
    padding: 75px 0;
  }

  .security-consulting .btn-wrapper .btn {
    font-size: 18px;
  }

  .security-consulting .benifit-section .heading-wrapper p {
    font-size: 20px;
    line-height: 30px;
  }

  .solution-section .left-media {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }

  .content-wrapper {
    max-width: 615px;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .problem-section {
    padding: 40px 0;
  }
}

.benifit-section {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.benifit-section .column-gap {
  margin-bottom: 50px;
}

.security-operations .benifit-list-wrapper ul li:last-child {
  padding-bottom: 0;
}

.benifit-section .benifit-list-wrapper .row {
  margin-left: -45px;
  margin-right: -45px;
}

.benifit-section .benifit-list-wrapper .row .col-md-6 {
  padding-left: 45px;
  padding-right: 45px;
}

@media (max-width: 1023px) {
  .benifit-section .benifit-list-wrapper .row .left-col li:last-child {
    margin-bottom: 24px;
    border-bottom: 1px solid #808285;
  }
}

.benifit-list-wrapper {
  border-radius: 20px;
  border: 1px solid rgba(48, 114, 184, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}

.security-consulting .benifit-list-wrapper {
  max-width: 931px;
  margin-left: auto;
  margin-right: auto;
}

.benifit-list-wrapper li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #808285;
}
.benifit-list-wrapper li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.benifit-list-wrapper li svg {
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  content: "";
}
@media (min-width: 1023px) {
  .security-consulting .benifit-section {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .security-operations .benifit-section {
    padding: 74px 0;
  }
}

.blue-content-section {
  background-color: #3072b8;
  color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.security-consulting .blue-content-section p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

@media (min-width: 1023px) {
  /* .blue-content-section .row {
        margin-left: -40px;
        margin-right: -40px;
    } */

  /* .blue-content-section .row .col-md-6 {
        padding-left: 40px;
        padding-right: 40px;
    } */
  .blue-content-section {
    padding: 60px 0;
  }
}

/* Page Security Operations */
.page-security .header-title p:last-child {
  margin-bottom: 0;
}

.page-security .solution-section .row {
  flex-direction: column-reverse;
}

.page-security .solution-section .left-media {
  margin-bottom: 0;
  max-width: 100%;
}

@media (min-width: 1023px) {
  .security-operations .solution-section .content-wrapper {
    max-width: 451px;
  }

  .page-security .intro-section .heading-wrapper {
    max-width: 586px;
  }
}

.security-operations .solution-section .content-wrapper .blue-color {
  font-weight: 700;
}

.security-operations .solution-section .top-content p {
  margin-bottom: 0;
}

.security-operations .top-heading {
  font-weight: 700;
  margin-bottom: 5px;
}

.security-operations .benifit-section .heading-wrapper strong {
  font-weight: 600;
}

.security-operations .small-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
.security-operations .intro-section {
  padding: 80px 0;
}

@media (min-width: 1023px) {
  .security-operations .small-heading {
    font-size: 24px;
  }
}

@media (max-width: 1023px) {
  .page-security .content {
    margin-bottom: 30px;
  }
}
.page-security .content {
  margin-left: auto;
}

.security-operations .left-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.security-operations .benifit-list-wrapper ul {
  padding-left: 0;
}

.security-operations .benifit-list-wrapper {
  max-width: 100%;
  padding: 30px;
}
.security-operations .benifit-list-wrapper li {
  border-bottom: 0;
  margin-bottom: 0;
}

.page-security .left-media figure {
  height: 100%;
  max-width: 100%;
}
.page-security .left-media figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: right;
}

.security-operations .btn-wrapper .btn {
  color: #757575;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.security-operations .btn-wrapper .btn:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .page-security .solution-section {
    padding-bottom: 0;
  }
}

@media (min-width: 1023px) {
  .page-security .benifit-list-wrapper {
    padding-left: 30px;
    padding-right: 80px;
  }
  .security-operations .btn-wrapper .btn {
    font-size: 18px;
  }
}

/* Footer Css */

.footer-v2 {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-v2 h3,
.footer-v2 .h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 24px;
}

.footer-v2 .left-media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.footer-v2 .left-media {
  position: static;
}
@media (min-width: 1023px) {
  .footer-v2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-v2 .left-media {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .footer-v2 h3,
  .footer-v2 .h3 {
    font-size: 36px;
  }
}

.footer-v2 figure {
  margin: 0;
}
.footer-v2 .left-media figure {
  margin: 0;
  margin-left: auto;
}

.footer-v2 .left-media figure img {
  width: 100%;
  object-fit: cover;
}

.footer-v2 .heading-wrapper {
  margin-bottom: 30px;
}

.footer-v2 .heading-wrapper p {
  color: #757575;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

@media (min-width: 1023px) {
  .footer-v2 .heading-wrapper p {
    color: #757575;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
  }
  .footer-v2 .heading-wrapper {
    margin-bottom: 104px;
  }
}