
 /* ----------New panels CSS---------- */


/* Grid Layout */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Card Base */
.card.box-card {
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  margin-top: 40px;
  padding: 0;
  box-shadow: 0 1px 20px rgba(0,0,0,.07);
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

/* Hover Effect */
.card.box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* Card Image */
.box-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Body */
.box-card .card-body {
  padding: 1rem 1.25rem;
  flex-grow: 1;
}

.box-card .card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  position: relative;
  line-height: 22px;
  padding: 0 5px 10px;
}
.box-card .card-title::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  margin: 0 auto;
  height: 2px;
  background: #7394a5;
  content: "";
}

.box-card .card-text {
  padding: 0 5px;
  margin: 0;
  color: #686c76;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}

/* Card Footer */
.box-card .card-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #dee2e6;
  font-size: 0.9rem;
  color: #6c757d;
}



/* ---Feature Card */
.card.feature-card {
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  margin-top: 40px;
  padding: 0;
  box-shadow: 0 1px 20px rgba(0,0,0,.07);
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

/* Hover Effect */
.card.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* Card Image */
.feature-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Body */
.feature-card .card-body {
  padding: 1rem 1.25rem;
  flex-grow: 1;
}

.feature-card .card-title {
  text-align: center;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  background: #fff;
  width: 100%;
  height: 110px;
  padding-top: 15px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.feature-card .card-title::after {
  content: "";
  left: -50%;
  position: absolute;
  right: -50%;
  height: 100%;
  z-index: -1;
  bottom: -30px;
  border-radius: 0 0 50% 50%;
  -webkit-border-radius: 0 0 50% 50%;
  box-shadow: 0 0 20px 2px rgba(0,0,0,.07);
  -webkit-box-shadow: 0 0 20px 2px rgba(0,0,0,.07);
  -moz-box-shadow: 0 0 20px 2px rgba(0,0,0,.07);
  -ms-box-shadow: 0 0 20px 2px rgba(0,0,0,.07);
  -o-box-shadow: 0 0 20px 2px rgba(0,0,0,.07);
  transform: translate(0,-40px);
  -webkit-transform: translate(0,-40px);
  -moz-transform: translate(0,-40px);
  -ms-transform: translate(0,-40px);
  -o-transform: translate(0,-40px);
}

.feature-card .card-text {
  padding: 0 5px;
  margin: 0;
  color: #686c76;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}

/* Card Footer */
.feature-card .card-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #dee2e6;
  font-size: 0.9rem;
  color: #6c757d;
}

.features-icon-blcok {
  width: 77px;
  height: 77px;
  line-height: 72px;
  position: relative;
  margin: -39px auto 0;
  padding: 0;
  text-align: center;
  border-radius: 50%;
  border: 2px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  background: #fff;
  z-index: 3;
  float: none;
  font-size: 38px;
}

.feature-card:first-child .features-icon-blcok {
    border-color: #9c27b0;
    color: #9c27b0
}

.feature-card:nth-child(2) .features-icon-blcok {
    border-color: #3f51b5;
    color: #3f51b5
}

.feature-card:nth-child(3) .features-icon-blcok {
    border-color: #f44336;
    color: #f44336
}

.feature-card:nth-child(4) .features-icon-blcok {
    border-color: #00bcd4;
    color: #00bcd4
}

.feature-card:nth-child(5) .features-icon-blcok {
    border-color: #795548;
    color: #795548
}

.feature-card:nth-child(6) .features-icon-blcok {
    border-color: #607d8b;
    color: #607d8b
}

.feature-card:nth-child(7) .features-icon-blcok {
    border-color: #03a9f4;
    color: #03a9f4
}

.feature-card:nth-child(8) .features-icon-blcok {
    border-color: #673ab7;
    color: #673ab7
}

/* FAQ Section */
.faq-content .panel-group .panel {
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.faq-content .panel-default>.panel-heading {
    padding: 0;
    background: #fff;
    border: none;
    border-radius: 0
}

.faq-content .panel-default>.panel-heading a {
    padding: 25px 0 25px 50px;
    font-size: 20px;
    color: #666;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.faq-content .panel-default>.panel-heading a.accordion-toggle.collapsed {
    border-bottom: 1px solid #ccc
}

.faq-content .panel-default>.panel-heading a.accordion-toggle {
    border-bottom: none
}

.faq-content .panel-default>.panel-heading a i {
    position: absolute;
    left: 0;
    top: 28px;
    font-size: 13px;
    color: #000
}

.faq-content .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: 0;
    border-bottom: 1px solid #ccc;
    padding: 0 0 25px 50px;
    font-size: 16px;
    color: #9e9e9e;
    line-height: 30px
}

.faq-content .panel-body p {
    font-size: 16px;
    color: #9e9e9e;
    line-height: 30px
}

.faq-content .panel-body img {
    float: right;
    padding-left: 15px;
    padding-bottom: 10px
}

/* LGB Section*/

.lgb-section-second {background-image: url("https://www.ncrypted.com/images/thumbnails/footer-map-bg.jpg"); background-repeat: no-repeat; background-size: cover; background-position: center center;}


.common-section {margin: 30px 0;}
.testimonials-section .owl-controls {display: none !important;}
.testimonials-gallery-latest {float: left; width: 100%;}
.testimonials-gallery-latest .left-quotes {
  position: absolute;
  left: -55px;
  top: 20px;
}
.testimonials-gallery-latest .right-quotes {
  position: absolute;
  right: -55px;
  bottom: 20px;
}

.testimonials-content {
  padding: 0 60px;
  width: 100%;
  position: relative;
}
.testimonials-slider {position: relative;}
.testimonials-gallery-latest p {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  position: relative;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .faq-content .panel-default > .panel-heading a {padding: 15px 0 15px 25px;font-size: 16px;}
  .faq-content .panel-default > .panel-heading a i {top: 17px;}
}
@media (max-width: 559px) {
  .testimonials-gallery-latest .left-quotes {
    width: 18px;
    left: -26px;
  }
   .testimonials-gallery-latest .right-quotes {
    width: 18px;
    right: -26px;
  }
  .testimonials-gallery-latest p {
    font-size: 14px;
    line-height: 22px;
  }
  .testimonials-gallery-latest .testimonials-content {padding: 0 20px;}
}