
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font:  "Roboto", sans-serif;
  --nav-font: "Roboto",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #0f394c; 
  --accent-color: #49b5e7; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}


:root {
  --nav-color: #444444;  
  --nav-hover-color: #49b5e7; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #49b5e7; 
}


.light-background {
  --background-color: #f5fbff;
  --surface-color: #ffffff;
}

.grey-background{ --background-color: #f9fbfb}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #fed71a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  
}

.scroll-top i {
  font-size: 24px;
  color: #0b2261;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 62px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color:#585c5f
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.proj {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.proj h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
}

.proj p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.proj .cta-btn {
  background: #fed71a;
  color: #000;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 35px;
  border-radius: 3px;
  transition: 0.5s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj .cta-btn:hover {
  background: #0b2261;
  color: var(--contrast-color);
}

.proj .cta-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .proj h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .proj p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .proj .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  border-radius: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

		
h2{font-size:1.7rem}		

   .navbar {
      background: #fafcff;
      padding-top: 0;
      padding-bottom: 0;
      box-shadow: 1px 3px 4px 0 #adadad33;
    }

    .navbar-light .navbar-brand {
      color: #2196F3;
    }

    .navbar-light .navbar-nav .nav-link {
      color: #5c768d;
    }

    .navbar-light .navbar-brand:focus,
    .navbar-light .navbar-brand:hover {
      color: #1ebdc2; color:#000
    }

    .navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover {
      color: #1ebdc2; color:#000
    }

    .navbar-light .navbar-nav .nav-link {
      padding-top: 22px;
      padding-bottom: 22px;
      transition: 0.3s;
      padding-left: 24px;
      padding-right: 15px;
      font-size: 15px;
	  text-transform:uppercase;
	  font-family: "Roboto",  sans-serif
    }

    .navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover {
      background: #caedf5;

    }

    .dropdown-item:focus,
    .dropdown-item:hover {
      color: #000;
      text-decoration: none;
      background-color: #caedf5 !important;
	  	  border-radius:2px
    }

    .sm-menu {
      border-radius: 0px;
      border: 0px;
      top: 97%;
      box-shadow: rgba(173, 173, 173, 0.2) 1px 3px 4px 0px;
    }

    .dropdown-item {
      color: #3c3c3c;
      font-size: 15px;
	  padding-left:0px
    }

    .dropdown-item.active,
    .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: #2196F3;
    }

    .navbar-toggler {
      outline: none !important;
    }

    .navbar-tog {
      color: #1ebdc2;
    }

    .megamenu-li {
      position: static;
    }
   .sm-menu{  background: #fafcff;}
    .megamenu {
	  background: aliceblue;
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      padding: 15px;
    }

    .megamenu h6 {
      margin-left: 21px;
    }

    .megamenu i {
      width: 20px;
    }
	#mobile_nav{flex-grow:0}
   .logo img{max-height:60px} .heading-nav h4{font-size:17px; margin-top:10px; font-weight:bold; margin-bottom:5px} .sm-menu h3{font-size:20px; text-transform:uppercase; color:#5c768d}
   
.megamenu{padding:15px 60px} .navbar-img:hover{background:#caedf5; border-radius:10px;  transition: 0.3s; }
.navbar-img h2{font-size:14px; } .img-fluid {border-radius:5px} .sm-menu{padding-bottom:100px}
.project-sec h3, p{text-align:left} .project-sec h3 {font-size:21px; margin-top:30px}

.resourcePlanning{width:100%; margin-bottom: 30px;}
.resourcePlanning ul{margin:0;padding:0;display:flex; justify-content:space-between; flex-wrap:wrap}
.resourcePlanning ul > li img{width:100%;margin-bottom:16px;}
.resourcePlanning ul > li { box-shadow:0 2px 8px #e6e3e3;border:#fff solid 1px;list-style:none; width:48%; box-sizing:border-box;border-radius:0 0 4px 4px; padding:15px 15px 20px 15px; margin-top:30px }
.resourcePlanning ul > li:hover{border:#ededed solid 1px; box-shadow:0 5px 20px #e1e1e1;}
.resourcePlanning ul > li p{margin:10px 0;color: rgb(29, 29, 29); text-align: justify;} 
.resourcePlanning li {color:#476179; text-align: justify;}
.resourcePlanning .box-heading {font-size:21px}
.Detail-heading {text-align:center; }


.aboutSec { box-shadow:0 2px 8px #e6e3e3;border:#fff solid 1px;list-style:none; width:32%; box-sizing:border-box;border-radius:10px; padding:15px 15px 20px 15px; margin-top:30px; background:#fff }
.aboutUsBox{margin: 0; padding: 0; display: flex; justify-content: space-between; flex-wrap: wrap}
.aboutUs h2{text-align:center} .aboutUs{background:#f9fbfb; padding:40px}
.aboutSec p{text-align:justify} .aboutSec h3{font-size:21px}
.aboutSec img{width:100%; border-radius:50%; margin-bottom:20px; margin-top:10px}
.aboutSec li{text-align:left}

.IndustriesSec{width:100%; margin-bottom: 30px;}
.IndustriesSec ul{margin:0;padding:0;display:flex; justify-content:space-between; flex-wrap:wrap}
.IndustriesSec ul > li img{width:100%;margin-bottom:16px;}
.IndustriesSec ul > li { box-shadow:0 2px 8px #e6e3e3;border:#fff solid 1px;list-style:none; width:32%; box-sizing:border-box;border-radius:0 0 4px 4px; padding:15px 15px 20px 15px; margin-top:30px }
.IndustriesSec ul > li:hover{border:#ededed solid 1px; box-shadow:0 5px 20px #e1e1e1;}
.IndustriesSec ul > li p{color: rgb(29, 29, 29); text-align: justify;} 
.IndustriesSec li a{color:#476179; text-align: justify;}
.IndustriesSec .box-heading {display:block; padding-bottom:10px}


.blogSec{width:100%; margin-bottom: 30px;}
.blogSec ul{margin:0;padding:0;display:flex; justify-content:space-between; flex-wrap:wrap}
.blogSec ul > li img{width:100%;margin-bottom:16px;}
.blogSec ul > li { box-shadow:0 2px 8px #e6e3e3;border:#fff solid 1px;list-style:none; width:32%; box-sizing:border-box;border-radius:0 0 4px 4px; padding:15px 15px 20px 15px; margin-top:30px }
.blogSec ul > li:hover{border:#ededed solid 1px; box-shadow:0 5px 20px #e1e1e1;}
.blogSec ul > li p{color: rgb(29, 29, 29); } 
.blogSec li a{color:#476179;}
.blogSec .box-heading {display:block; padding-bottom:10px; font-size:19px; text-align:left}
.r-more{color:#476179; font-weight:bold}

.Tecxed-location {
    text-align: center;
}

.title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.location-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.loaction-tab {
    background-color: #f3f8ff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

.loaction-tab:hover{transform: translateY(-5px);}

.loaction-tab h3 {text-align:center}

.loaction-tab img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
    text-align:center;
	border-radius:5px;
	margin-top:7px
}

.loaction-tab h3 {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 10px;
	font-weight:600;
}

.loaction-tab p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
	text-align:center
}

.loaction-tab a {
    color: #13477f;
    text-decoration: none;
}

.loaction-tab a:hover{background:#caedf5!important;}

#footer { background: #6c757d; padding: 0 0 15px 0; color: #fff; font-size: 14px; margin-top:40px}
#footer .footer-top { background: #f9fbfb; border-top: 1px solid #d8e0e4; border-bottom: 1px solid #67839c; padding: 60px 0 30px 0; color:#000}
#footer .footer-top .footer-info {margin-bottom: 30px;}
#footer .footer-top .footer-info h3 { font-size: 24px; margin: 0 0 20px 0; padding: 2px 0 2px 0; line-height: 1; font-weight: 700;}
#footer .footer-top .footer-info p { font-size: 14px; line-height: 24px; margin-bottom: 0; font-family: sans-serif; color: #000;}
#footer .footer-top .social-links a { font-size: 18px; display: inline-block; background: #e7c107; color: #000; line-height: 1; padding: 8px 0; margin-right: 4px;
  border-radius: 50%; text-align: center; width: 36px; height: 36px; transition: 0.3s;}
#footer .footer-top .footer-info img{margin-bottom:15px}
#footer .footer-top .social-links a:hover { background: #428bca; color: #000; text-decoration: none;}
#footer .footer-top h4 {font-size: 16px; font-weight: 600; color: #000; position: relative; padding-bottom: 12px; padding-left:7px}
#footer .footer-top .footer-links {margin-bottom: 30px;}
#footer .footer-top .footer-links ul {list-style: none; padding: 0; margin: 0;}
#footer .footer-top .footer-links ul i {padding-right: 2px; color: #c8d2d3; font-size: 18px; line-height: 1;}

#footer .footer-top .footer-links ul li {padding: 5px 0; display: flex; align-items: center;}
#footer .footer-top .footer-links ul li:first-child { padding-top: 0;}
#footer .footer-top .footer-links ul a {color: #000; transition: 0.3s; display: inline-block; line-height: 1;}
#footer .footer-top .footer-links ul a:hover {color: #9eccf4;}
#footer .footer-top .footer-newsletter form {margin-top: 30px; background: #000; padding: 6px 10px; position: relative; border-radius: 4;}
#footer .footer-top .footer-newsletter form input[type=email] { border: 0; padding: 4px; width: calc(100% - 110px);}

#footer .footer-top .footer-newsletter form input[type=submit] { position: absolute; top: 0; right: 0; bottom: 0; border: 0;
  background: none; font-size: 16px; padding: 0 20px; background: #428bca; color: #fff; transition: 0.3s; border-radius: 4;}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {background: #5295ce;}
#footer .copyright {text-align: center; padding-top: 15px;}
.ISO-certified a {color:#e7c107}

.section-title h2:before, .section-title h2:after{content: "";
    width: 40px;
    height: 2px;
    background: #e7c107;
    display: inline-block;}
.section-title h2:after{margin: 0 0 10px 10px;}
.section-title h2:before{margin:0 10px 10px 0}
.aboutSec h3{margin-bottom:15px}


.breadcrumbs {
  padding: 8px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "»";
}



.contact .info-box {color: #444; text-align: center; box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); padding: 20px 0 30px 0; margin-bottom: 30px; width: 100%; border-radius:7px}
.contact .info-box i { font-size: 30px; color: #e7c107; border-radius: 50%; padding: 8px; border: 2px dotted #000;}
.contact .info-box h3 { font-size: 20px; color: #666; font-weight: 700;margin: 10px 0;}
.contact .info-box p { padding: 0; line-height: 24px; font-size: 14px; margin-bottom: 0; text-align:center }


.proj-btn a {border:1px solid #e7c107; padding: 7px 18px; border-radius:21px; color:#0f394c}
.proj-btn a:hover{background: #e7c107; color: #000;}
.detail-title{text-align:center; text-transform:uppercase; margin-bottom:40px}
.detail-title p{text-transform:initial; margin-top:20px; text-align:justify}
.detail_page img{width:100%; border-radius:8px}
.const-right h3{font-size:20px} .blog-img img{margin-bottom:20px; width:70%} .blog-img h2{margin-bottom:20px}
.read-more-blog a{font-size: 16px;}
.blogPost h3{font-size:22px} .blogPost img{width:100%; border-radius:5px; height:200px}
.box-style{cursor:pointer;background-image:linear-gradient(to top,#e3f4f4,#fff 80%);border:#b2d1d1 solid 1px}

.DetailIndex{width:100%;float:left; margin-bottom: 30px;}
.DetailIndex ul{margin:0;padding:0;display:flex; flex-wrap:wrap}
.DetailIndex li img{width:100%;margin-bottom:16px;}
.DetailIndex li{ margin-right:35px; margin-bottom:35px; box-shadow:0 2px 8px #e6e3e3;border:#fff solid 1px;list-style:none; width:30%; box-sizing:border-box;border-radius:0 0 4px 4px; padding:20px 20px 30px 20px;}
.DetailIndex li:hover{border:#ededed solid 1px; box-shadow:0 5px 20px #e1e1e1;}
.DetailIndex li p{margin:16px 0;color: rgb(29, 29, 29);} .DetailIndex li a{color:#476179; text-align: justify;}
.D-heading{font-size: 18px;}

.whatsapp-button {
    padding-top: 7px;
    background-color: #455a64;
    margin-bottom: 10px;
    width: 300px;
    padding-bottom: 8px;
    display: block;
	color:#fff;
	float:right; border-radius:8px
}

.whatsapp-button img{width:40px;}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

@media (max-width:600px){
.resourcePlanning ul> li{margin-bottom:15px; width:100%; margin-right: 0px;}
.IndustriesSec ul > li{margin-bottom:15px; width:100%; margin-right: 0px;}
.aboutSec {width:100%}
.blogSec ul > li {width:100%}
.location-cards{flex-direction: column;} 
.section-title h2{font-size:20px}
.DetailIndex li{margin-bottom:24px; width:100%; margin-right: 0px;} .latestBlogBox li{margin-bottom:24px; width:100%; margin-right: 0px;}
.whatsapp-button{float:none}
}