:root{
	--primary-color			: #207795;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #1E7694;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Manrope", sans-serif;
}
* {
	box-sizing: border-box;
  }
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1500px;
}
.container-fluid {
    width: 100%;
    padding: 0 160px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 160px 0;
}
h1{
    font-size: 96px;
    line-height: 96px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
}
h2{
    font-weight: 600;
    font-size: 48px;
    line-height:60px;
    color:var(--text-color);
    margin-bottom: 32px;
    text-transform: capitalize;
    letter-spacing: 0;
}
h3{
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h5{
    font-size:22px;
    line-height: 24px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
p{
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 48px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color:var(--primary-color);
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #fff;
	transition: all 0.3s linear;
	background-color: #919191;
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
.outer-menu {
    padding: 0;
    height: 140px;
    max-height: 140px;    
    padding:24px 0;
}
.outer-menu ul li{
    margin:0 12px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 22px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:var(--text-color);
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: #1E7694;
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 100px !important;
  max-height: 100px !important;
  background-color:#fff!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
}
.is-sticky .outer-menu {
  padding: 12px 0;
  height: 100px;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: 72px;
  width: auto;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  padding:0;
  margin-top: 100px;
}
.hero-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  padding: 396px 0 224px;
}
.hero-section h1 {
  margin:0 auto 27px;
  color: var(--white-color);
  letter-spacing: -0.03em;
  text-transform: capitalize;
  font-size: 80px;
  line-height: 80px;
  font-weight: 600;
}
.hero-section p {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 35px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: 0;
}
.hero-content {
  max-width: 850px;
  text-align: left;
  margin: 0;
}
.hero-content .common-btn {
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  padding: 16px 32px;
  color: #000;
}
.arrow-up {
  background: url(../images/arrow-up.svg) no-repeat center center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}


/* about  */

.about-section {
  position: relative;
  padding: 80px 0 120px;
  background-color: #fefefe;
}
.about-title {
  position: relative;
  font-weight: 600;
  font-size: 40px;
  line-height: 20px;
  border-bottom: #9D9B9B solid 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.about-title span {
  background-color: #fff;
  padding-right: 40px;
}
.about-content {
    display: flex;
    padding: 0;
    gap: 56px;
    align-items: flex-start;
}
.about-text h2.about-heading {
    font-weight: 800;
    color: #04281C;
    font-weight: 800;
    font-size: 58px;
    line-height: 72px;
    text-transform: none;
    text-align: left;
    margin-bottom: 30px;
}
.about-logo {
  align-items: center;
}
.about-name {
  font-size: 50px;
  font-weight: 800;
  line-height: 85px;
  color: #6A6054;
  margin-bottom: 0;
  letter-spacing: -4px;
}
.about-stats {
    position: relative;
    border-radius: 40px;
    overflow:hidden;
}
.stats-container {
    background: #C8FFED;
    border-radius: 40px;
}
.stats-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding:30px 32px 40px 32px;
    gap: 32px;
}
.stat-item {
    text-align: center;
    width: calc(50% - 28px);
}
.stat-number {
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
    text-transform: capitalize;
    margin-bottom: 6px;
    color: var(--text-color);
}
.stat-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    color: #646464;
}
.about-image,
.about-text {
  position: relative;
  width: calc(50% - 40px);
}
.about-img {
  border-radius:40px;
}
.about-logo {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
.about-details {
  margin-top: 40px;
  margin-bottom: 0;
}

/* services-section */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h4,
.industries-content h4,
.action-content h4,
.contact-content h4,
.testimonials h4,
.mission-content h4 {
  font-weight: 500;
  color: #1E7694;
  padding-bottom: 10px;
  display: table;
  border-bottom: #1E7694 solid 2px;
  margin: 0 auto 24px;
  text-transform: capitalize;
}
.section-header h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header p {
  max-width: 1330px;
  margin: 0 auto;
  color: #646464;
}
.product-section {
  position: relative;
  padding: 120px 0;
}
.product-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
}
.product-list-item {
  padding: 16px;
  border: 1px solid #B9B9B9;
  border-radius: 24px;
  width: calc(25% - 12px);
}
.product-image {
  margin-bottom: 24px;
}
.product-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}
.product-list-item h4 {
  font-weight: 700;
  margin-bottom: 5px;
}
.product-list-item p {
  font-size: 20px;
  line-height: 24px;
  color: #646464;
  margin-bottom: 5px;
}
.product-list-item ul li {
  list-style: disc;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #646464;
}
.product-list-item .common-btn {
  width: 100%;
  margin-top: 24px;
  font-size: 18px;
}
.arrow-up-white {
  background: url(../images/arrow-up-white.svg) no-repeat center center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
.border-btn {
  padding: 16px 32px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 12px;
  color:#000;
  margin: 56px auto 0;
  display: table;
}
.border-btn:hover,
.border-btn:focus {
  background-color: #fff;
  color: #000;
  border: 1px solid var(--accent-color);
}

/* industries */

.industries-section {
  padding: 80px 0;
  background: #F5F5F5;
}
.industries-wrap,
.action-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}
.industries-content,
.action-content {
  width: calc(40% - 32px);
}
.industries-content p,
.action-content p {
  margin-bottom: 24px;
}
.industries-content p:last-of-type,
.action-content p:last-of-type {
  margin:0;
  font-size: 20px;
}
.industries-list,
.action-list {  
  width: calc(60% - 32px);
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.action-list {
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}
.industry-item,
.action-item {
  width: calc(50% - 12px);
  text-align: center;
}
.industry-item img {
  border-radius: 24px;
  margin-bottom: 16px;
}
.industry-item img {
  border-radius: 24px;
  margin-bottom: 16px;
}
.action-item img {
  border-radius: 24px;
  margin-bottom: 0;
  height: 100%;
}
.industry-item  h5 {
  margin: 0;
}
.industries-content h4,
.action-content h4 {
  margin: 0 0 24px;
}
.industries-content h2,
.action-content h2 {
  text-transform:uppercase;
  max-width: 720px;
  margin-bottom: 16px;
}
.action-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 8px);
}
/*  testimonials */
.testimonials {
  background: #E2F2F7;
}
.testimonials h4 {
  margin: 0 0 30px;
}
.section-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonials h2 {
  max-width: 672px;
  margin: 0 0 0;
  text-transform: uppercase;
}
.testimonials p {
  max-width: 1290px;
  margin: 0 0 30px;
  color: #646464;
}
.section-title  p {
  max-width: 769px;
  margin: 0;
  color: #373737;
}
/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
   background: #FFFFFF;
  border-radius: 32px;
  padding: 16px 32px 16px 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  overflow: hidden;
  gap: 16px;
}
.testimonial-image {
  width: calc(47.5% - 8px);
  margin-right: 0;
}
.testimonial-text {
  width: calc(52.5% - 8px);
  background: url(../images/quote.svg) no-repeat top 5px left;
  padding-top: 60px;
}
.testimonial-card img {
  border-radius: 16px;
  margin-bottom: 0;
  object-fit: cover;
  width: auto;
  height: 100%;
}

/* Text */
.testimonial-text p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 10px !important;
  color: #646464;
}
.testimonial-author,
.testimonial-location {
  text-align: right;
  font-size: 22px;
  line-height: 24px;
  color: #646464;
  font-weight: 600;
}
.testimonial-location p {
  font-size: 22px;
  color: #646464;
  font-weight: 600;
  margin: 0 !important;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top: -70px;
  z-index: 10;
  background-color: #DCDCDC;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 8px;
  text-align: center;
  font-size: 0;
  border: none;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background-image: url(../images/arrow-right-slider.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(0%) sepia(83%) saturate(7432%) hue-rotate(8deg) brightness(113%) contrast(87%);
}
.testimonial-slider .slick-next::before {
  transform: rotate(180deg);
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
}
.testimonial-slider .slick-next {
  right: 0;
}


/* cta  */

.cta-section {
  padding: 120px 0;
}
.cta-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top; 
  border-radius: 32px;
  text-align: center;
  padding: 132px 120px 103px;
  min-height: 558px;
  display: flex;
  align-items: center;
}
.cta-content {
  max-width: 570px;
  margin: 0;
  text-align: left;
}
.cta-img h2{
font-weight: 800;
font-size: 48px;
line-height: 48px;
color: #FFFFFF;
margin-bottom: 12px;
text-transform: none;
}
.cta-img p {
font-weight: 600;
font-size: 20px;
line-height: 24px;
color: #FFFFFF;
max-width: 660px;
margin: 0 0 26px;
}
.cta-img .common-btn {
  background-color: #fff;
  color: #000;
  padding: 16px 40px;
  font-size: 16px;
}
/* contact */

  .contact-section {
     position: relative;
     padding: 120px 0;
     background: #F4F4F4;
  } 
  .contact-image {
      width: 100%;
      object-fit: cover;
      border-radius: 16px;
  }
  .contact-info {
    margin-top:30px;
  }
  .contact-contact-info {
    padding:40px 30px;
    margin: 10px;
  }
   .contact-content {
      flex: 1;
      margin-left: 32px;
      padding: 32px 0 0;
  }
  .contact-content h4 {
    margin:0 0 10px;
  }
  .contact-title {
      margin-bottom: 10px !important;
      text-transform: uppercase;
  }
  .contact-page-section .contact-title {
    max-width: 575px;
  }
  .contact-description {
      color: #373737;
  }
  .contact-form,
  .contact-content form {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }
  .form-row {
      display: flex;
      gap: 32px;
  }
  .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
  }
  .form-label {
      font-size: 16px;
      line-height: 16px;
      font-weight: 700;
      text-transform: capitalize;
      color: rgba(0, 0, 0, 0.5);
      margin-bottom: 8px;
  }
  .required {
      color: #ff0000;
  }
  .form-input,
  .contact-content input[type="text"],
  .contact-content input[type="email"],
  .contact-content input[type="tel"],
  .contact-content select,
  .contact-content textarea {
      background-color: #ffffff !important;
      border: none !important;
      border-radius: 8px !important;
      padding: 17px 16px !important;
      font-size: 20px !important;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      outline: none;
      width: 100%;
  }
  .contact-content .form-group p {
    margin: 0 !important;
  }
  .form-input:focus {
      outline:none;
      color: #000000;
  }
  .phone-input {
      display: flex;
      align-items: center;
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
  }
  .country-picker {
      display: flex;
      align-items: center;
      gap: 8px;
      padding:17px 16px;
      cursor: pointer;
      position: relative;
  }
  .country-picker::after {
    position: absolute;
    top: 50%;
    right:0;
    content: "";
    width: 1px;
    height: 32px;
    background-color: #7E7E7E;
    transform: translate(0, -50%);
  }
  .country-flag {
      width: 24px;
      height: 24px;
  }
  .dropdown-arrow {
      width: 12px;
      height: 12px;
  }
  .phone-number {
      flex: 1;
      border: none;
      background: transparent;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      width: 100%;
  }
  .phone-number:focus {
      outline: none;
      color: #000000;
  }
  .dropdown-input {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: url(../images/arrow-down.svg) no-repeat right 15px center #fff;
      /* background-color: #f7f7f7; */
      border: none;
      border-radius: 8px;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      cursor: pointer;
      appearance: none;
  }
  .dropdown-input:focus {
      outline:none;
  }
  .contact-content .textarea {
      min-height: 134px;
      resize: vertical;
  }
  .contact-content .submit-btn {
      background-color: #1E7694;
      color: #ffffff;
      padding: 20px 40px;
      border-radius: 16px;
      border: none;
      font-size: 24px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      text-transform: capitalize;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background-color 0.3s ease;
      margin-top: 24px;
      width: 100%;
  }
  .submit-btn:hover {
      background-color: #333333;
  }
  .submit-btn img {
      width: 24px;
      height: 24px;
  }
    .contact-content form p {
      margin: 0 !important;
    }
.contact-page-section {
   padding-top: 224px;
}
.contact-details {
  background: #EDEDED;
  border-radius: 24px;
  margin-top: 56px;
  padding: 24px;
}
.contact-details h4 {
  margin-bottom: 10px;
}
.contact-details .contact-address,
.contact-details .contact-email,
.contact-details .contact-phone {
  padding: 16px;
}
.contact-details .contact-address,
.contact-details .contact-email{
  border-right: 2px solid #848484;
  height: 100%;
}
.contact-details p {
  font-size: 20px;
  line-height: 28px;
  color: #646464;
  margin-bottom: 16px;
}
.contact-details .contact-address p {
  margin-bottom: 0;
}
   /* Footer */
  .footer {
      background-color: #1E7694;
      color: #ffffff;
      padding: 96px 0;
  } 
  .footer h3 {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 64px;
    max-width: 350px;
    opacity: 0.6;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-title {
      font-size: 24px;
      font-weight: 700;
      line-height: 28px;
      text-transform: capitalize;
      color: #ffffff;
      margin-bottom: 15px;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#fff;
      text-decoration: none;
      margin-bottom: 7px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5;
  }
    .footer-link a {
      color:#DBDBDB;
    }
  .footer-link:hover,
  .footer-section li a:hover {
      color: #ffffff;
  }
  .footer-logo {
    position: relative;
  }
   .footer-logo img {
    margin-bottom: 40px;
   }
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#DFDFDF;
      border-top: 1px solid #919191;
      padding: 16px 0;
      opacity: 0.7;
      margin-top: 48px;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#DFDFDF;
     margin: 0;
     text-align: right;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }
  .footer .social-icon ul li a {
    background:rgba(255, 255, 255, 0.7);
  }

  /* inner banner */

  .inner-hero-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 295px 141px;
    border-radius: 32px;
  }
  .inner-hero-content h1 {
    font-weight: 800;
    font-size: 126px;
    line-height: 116px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
  }
  .inner-hero-section {
    padding:60px 0 0;
  }

  /* About page */

  .about-page-section,
  .blog-details-section {
    position: relative;
    padding-top: 224px;
  }
  .about-page-section h2,
  .service-page-section h2 {
    text-align: center;
    margin-bottom: 20px;
  } 
  .about-page-content {
    padding-left: 62px;
  }
  .about-page-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #646464;
    margin-bottom: 0;
  } 
  .about-page-section h3 {
    color: #1E7694;
    margin-bottom: 24px;
  }
  .about-page-text {
    align-items: center;
  }
    .about-page-img img {
      width: 100%;
      border-radius: 24px;
    }
  .mission-section {
    padding: 120px 0;
    position: relative;
  }
  .mission-image {
    padding-right: 48px;
  }
  .mission-image img {
    border-radius: 24px;
    width: 100%;
  }
  .mission-content h4 {
    margin:0 0 24px;
  }
  .mission-content h2 {
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .mission-content p {
    font-size: 20px;
    line-height: 32px;
    color: #646464;
    margin-bottom: 0;
  }
  .mission-content p span {
    color: #1e7694;
  }
  

/* Contact page */

.contact-page-section {
  position: relative;
  padding: 64px 0;
}
.contact-info h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.contact-info p {
  color: #383838;
  line-height: auto;
  opacity: 0.5;
  margin-bottom: 13px;
}
.contact-info p a {
  color: #383838;
}
.social-icon ul li {
  margin: 0;
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.social-icon ul li a {
  width: 44px;
  height: 44px;
  background: #444444;
  border-radius: 44px;
  font-size: 20px;
  color: #1E7694;
  display: block;
  text-align: center;
  line-height: 41px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background: #646464;
   color: #fff;
}
.contact-info p {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.contact-info p span:first-child {
  width: 17%;
}
.contact-info p span:last-child {
  width: 83%;
  padding-left: 10px;
}
.contact-page-section {
  padding-top: 224px;
}
/* testimonial page */

.review-list-item {
  background: #FCFCFC;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 40px 24px 24px;
  gap: 32px;
  margin-bottom: 24px;
}
.review-list-item:last-child {
  margin-bottom: 0;
}
.review-image {
  overflow: hidden;
  border-radius: 24px;
  width: 25%;
}
.review-list-item .review-image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}
.review-content {
  background: url(../images/quote.svg) no-repeat left top;
  padding: 106px 0;
  position: relative;
  width: 75%;
}
.review-content::after {
  background: url(../images/quote.svg) no-repeat left top;
  content: "";
  width: 100px;
  height: 100px;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  position: absolute;
}
.review-content p {
  margin-bottom: 16px;
  color: #646464;
}
.review-content .testimonial-author {
  font-size: 20px;
}
.review-content .testimonial-location {
  font-size: 18px;
}

/* gallery */

.gallery-page-section {
  padding:224px 0 120px
}
.gallery-page-section .section-header {
  margin-bottom: 32px;
}
.gallery-list {
  column-count: 4;
  column-gap: 4px;
}
.gallery-list-item {
  break-inside: avoid;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-list-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.gallery-page-section {
  text-align: center;
}

/* blog */

.product-section {
  position: relative;
  padding: 120px 0;
}
.blog-section,
.product-details-section {
  padding-top: 224px;
}
.blog-section .section-header {
  margin-bottom: 32px;
}
.blog-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-list-item {
  padding: 16px;
  border: 1px solid #B9B9B9;
  border-radius: 24px;
  width: calc(33.3% - 12px);
}
.blog-image {
  margin-bottom: 24px;
}
.blog-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}
.blog-list-item h4 {
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 8px;
}
.blog-list-item p {
  font-size: 20px;
  line-height: 24px;
  color: #646464;
  margin-bottom: 20px;
}
.blog-list-item .common-btn {
  width: 100%;
  margin-top: 24px;
}
.product-image-2,
.product-image-3 {
  width: calc(50% - 11px);
}
.product-image-1 img  {
  border-radius: 24px;
}
.product-image-2 img,
.product-image-3 img  {
  border-radius: 8px;
}
.product-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.product-details-img {
  width: calc(38% - 24px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.product-overview {
  width: calc(62% - 24px);
}
.product-overview h4 {
  margin-bottom: 6px;
}
.product-overview h5,
.product-features h5 {
  margin-bottom: 6px;
  color: #1E7694;
  text-transform: capitalize;
}
.product-overview ul li,
.feature-details ul li {
    font-size: 20px;
  line-height: 32px;
  list-style: disc;
  color: #646464;
  margin-top: 0;
}
.product-overview  p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  color: #646464;
}
.product-overview .common-btn {
  height: 50px;
  font-size: 18px;
  padding: 16px 32px;
  margin-top: 20px;
}
.product-features {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.features-list {
  width: calc(38% - 32px);
}
.features-list table {
  border:none;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.features-list table tr:last-child {
  border-radius: 0 0 12px 12px;
}
.features-list table th {
  padding: 12px 10px;
  background: #8E8E8E;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.features-list table td {
  border: 1px solid #E5E5E5;
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.feature-details {
  width: calc(62% - 32px);
}
.feature-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0px;
  gap: 16px;
  margin-top: 32px;
}
.feature-box {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 16px;
  background: #FFFFFF;
  border: 2px solid #CFCFCF;
  border-radius: 24px;
}
.feature-box h5 {
  margin: 0;
  color: #1E7694;
}
.feature-box p {
  margin: 0;
  color: #505050;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}
.blog-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.blog-details-img {
  width: calc(40% - 15px);
}
.blog-details-img img {
  width: 100%;
  border-radius: 24px;
}
.blog-details-text {
  width: calc(60% - 15px);
}

.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color: #000 !important;
    color: var(--white-color);
    border-radius: 8px !important;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}
  .wpcf7-spinner {
    display: none;
  }
  /* media query */
 
  @media only screen and (max-width: 1800px){	
    .container-fluid {
      padding: 0 120px;
    }     
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }
    .hero-image {
      padding: 370px 0 200px;
    }
    .hero-section h1 {
      font-size: 70px;
      line-height: 70px;
    }
    .hero-section p {
      font-size: 30px;
      line-height: 34px;
    }
    .hero-content {
      max-width: 700px;
    }
    section {
      padding: 140px 0;
    }    
  }
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    .hero-image {
      padding: 340px 0 180px;
    }
    h1 {
      font-size: 60px;
      line-height: 56px;
    }
    h2 {
      font-size: 46px;
      line-height: 56px;
    }
    p {
      font-size: 22px;
      line-height: 30px;
    }   
     .hero-section h1 {
      font-size: 60px;
      line-height: 60px;
    }
     .hero-section p {
      font-size: 26px;
      line-height: 28px;
    }
    .hero-content {
      max-width: 600px;
    }   
    section {
      padding: 120px 0;
    } 
    .section-title p {
      max-width: 740px;
    }   
    .testimonials {
      padding-top: 100px;
      padding-bottom: 80px;
    } 
    .testimonial-content {
      padding: 15px 15px 25px;
    }
    .contact-section {
      padding: 100px 0;
    }
    .contact-title {
      margin-bottom: 30px;
    }
    .contact-content .submit-btn { 
      margin-top: 15px;
    }  
    .footer {
      padding: 80px 0 50px;
    }  
    .cta-img {
      padding: 112px 80px 80px;
      min-height: 500px;
    }
    .footer h3 {
      font-size: 38px;
      line-height: 38px;
      margin-bottom: 50px;
    }
    .footer-title {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-link,
      .footer-section li a {
      font-size: 20px;
    }
    .footer-section li {
      margin-bottom: 5px;
    } 
    .product-section {
      padding: 100px 0;
    }  
    .section-header {
      margin-bottom: 46px;
    }
    .industries-content h2, .action-content h2 {
      max-width: 442px;
    }
    .about-page-section,
    .blog-section, .product-details-section, .contact-page-section,
     .blog-details-section {
      padding-top: 200px;
    }
    .gallery-page-section {
    padding: 200px 0 100px;
  }
    .about-page-content {
      padding-left: 50px;
    }
    .mission-image {
      padding-right: 40px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    } 
    .mt-64 {
      margin-top: 30px;
    }    
    .hero-image {
      padding: 260px 0 140px;
    }
    h4 {
      font-size: 22px;
    }   
    h5 {
      font-size: 20px;
    } 
    .product-list-item p {
      font-size: 18px;
      line-height: 24px;
    }
    .product-list-item ul li {
      font-size: 16px;
    }
    .product-list-item .common-btn {
      margin-top: 20px;
    }
    .section-title p {
      max-width: 670px;
    }
  }
  @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }
    .outer-menu {
      padding: 20px 0;
      height: 110px;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }
    .hero-image {
      padding: 220px 0 120px;
    }
    .section-header {
      margin-bottom: 36px;
    }
    h1 {
      font-size: 54px;
      line-height: 50px;
      margin-bottom: 25px;
    }
     h2 {
      font-size: 44px;
      line-height: 54px;
    }
    p,
    .blog-details ul li {
      font-size: 20px;
      line-height: 28px;
    }
    .hero-section h1 {
      font-size: 56px;
      line-height: 56px;
    }
     .hero-section p {
      font-size: 22px;
      line-height: 26px;
     }
      .hero-content {
        max-width: 500px;
      }
    .industries-content p, .action-content p {
        margin-bottom: 20px;
      }
      .testimonial-text p {
        font-size: 18px;
        line-height: 28px;
      }
      .testimonial-author, .testimonial-location p {
        font-size: 18px;
        line-height: 22px;
      }
    section,
    .testimonials,
    .cta-section,
    .mission-section {
      padding: 90px 0;
    }
   .industries-content p:last-of-type, .action-content p:last-of-type {
    font-size: 18px;
   }      
    .testimonial-content {
      padding: 15px 15px;
    }  
    .contact-section {
      padding: 90px 0;
    }
    .footer {
      padding:70px 0 20px;
    }    
    .footer h3 {
      font-size: 34px;
      line-height: 34px;
      margin-bottom: 40px;
      max-width: 310px;
    }    
     .about-content {
      gap: 40px;
    }
     .inner-hero-img {
        padding: 200px 141px;
     }
    
    .cta-img {
      min-height: 450px;
      padding: 90px 60px 60px;
    }
    .about-page-content {
      padding-left: 40px;
    }
    .mission-image {
      padding-right: 30px;
    }
     .about-page-section,
     .blog-section, .product-details-section, .contact-page-section,  .blog-details-section,
      .blog-details-section {
      padding-top: 130px;
    }
    .gallery-page-section {
    padding: 130px 0 90px;
  }
    .mission-content p,
    .about-page-content p {
      font-size: 18px;
      line-height: 30px;
    }
    .product-details {
      gap: 40px;
    }
    .product-overview ul li, .feature-details ul li {
      font-size: 18px;
      line-height: 30px;
    }
    .feature-box {
      gap:10px;
    }
    .features-list table td {
      font-size: 15px;
    }
    .features-list table th {
      font-size: 16px;
    }
    .product-overview p {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 15px;
    }
    .product-features {
      gap: 50px;
    }
    .product-details-img {
      width: calc(38% - 20px);
    }
    .product-overview {
      width: calc(62% - 20px);
    }
    .product-overview ul li, .feature-details ul li {
      font-size: 16px;
      line-height: 28px;
    }
    .features-list {
      width: calc(38% - 25px);
    }
    .feature-details {
      width: calc(62% - 25px);
    }
    .border-btn {
      padding: 10px 32px;
      font-size: 20px;
    }
    .blog-list-item p {
      font-size: 18px; 
    }
    .contact-details p {
      font-size: 18px;
      line-height: 26px; 
    }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }   
     h1 {
      font-size: 52px;
      line-height: 50px;
      margin-bottom: 25px;
    }
    .hero-image {
      padding: 200px 0 100px;
    }
    .product-list-item {
      padding: 10px;
    }
    h4 {
      font-size: 21px;
      line-height: 28px;
    } 
    .border-btn {
      margin: 40px auto 0;
    }
    .section-title p {
      max-width: 560px;
    }
    .footer-link, .footer-section li a {
      font-size: 18px;
    }
  }
  @media only screen and (max-width: 1200px){	
    .outer-menu ul li a {
      font-size: 15px;
      line-height: 15px;
    }   
    .outer-menu {
      padding: 12px 0;
      height: 80px;
    }
     .hero-image {
      padding: 200px 0 120px;
    }
    h1 {
      font-size: 48px;
      line-height: 48px;
      margin-bottom: 20px;
    }
    h2 {
    font-size: 40px;
    line-height: 50px;
  }
  h3 {
    font-size: 28px;
    line-height: 32px;
  }
    p {
      font-size: 18px;
      line-height: 26px;
    }    
    
    section,
    .product-section,
    .testimonials, .cta-section,
    .industries-section,
    .contact-section,
    .mission-section {
      padding: 70px 0;
    }
    .contact-content .submit-btn {
      padding: 16px 40px;
      font-size: 20px;
    }
   .footer {
    padding: 50px 0 20px;
  }
     .hero-section h1 {
      font-size: 50px;
      line-height: 50px;
    }    
    .hero-section p {
      font-size: 20px;
      line-height: 26px;
    }
     .hero-content {
      max-width: 500px;
    }
    .hero-section {
      margin: 0;
    } 
    .common-btn, .appointment-btn {
      font-size: 18px;
      height: 50px;
      padding: 10px 30px;
    }
    .hero-content .common-btn {
      padding: 16px 26px;
    }
    .product-list-item {
      width: calc(50% - 12px);
    }
     .product-list-item p {
    font-size: 16px;
    line-height: 24px;
  }
   .industries-content p:last-of-type, .action-content p:last-of-type {
    font-size: 16px;
  }
  h5 {
    font-size: 18px;
  }
   .section-title p {
    max-width: 520px;
  }
    .testimonial-text p {
    font-size: 16px;
    line-height: 24px;
  }
    .testimonial-author, .testimonial-location p {
    font-size: 16px;
    line-height: 20px;
  }
   .cta-img {
    min-height: 400px;
    padding: 70px 30px 40px;
  }
    .about-page-section,
    .blog-section, .product-details-section, .contact-page-section,
     .blog-details-section {
    padding-top: 110px;
  }
  .gallery-page-section {
    padding:110px 0 70px;
  }
   .about-page-content {
    padding-left: 20px;
  }
    .about-page-section h3,
    .mission-content h4 {
    margin-bottom: 15px;
  }
  .mission-image {
    padding-right: 15px;
  }
   .product-overview p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .product-details {
    gap: 30px;
  }
  .product-features {
    gap: 30px;
  }
    .features-list table td {
    font-size: 14px;
  }
  .features-list table th {
    font-size: 15px;
  }
   .product-details-img {
    width: calc(38% - 15px);
  }
   .product-overview {
    width: calc(62% - 15px);
  }
   .features-list {
    width: calc(38% - 15px);
  }
   .feature-details {
    width: calc(62% - 15px);
  }
  .product-details-section h2 {
    margin-bottom: 20px;
  }
  .blog-list-item p {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-details p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  }
    @media only screen and (max-width: 1100px){	
      .navbar-brand img {
        height: 60px;
        width: auto;
      }
      .industries-wrap, .action-wrap {
        gap: 40px;
      }
      .form-row {
      gap: 20px;
    }
    .footer-logo img {
      margin-bottom: 40px;
      height: 60px;
    }
    .social-icon ul li {
      margin-right: 20px;
    }
      .footer-title {
    font-size: 20px;
    line-height: 24px;
  }
   .footer-link, .footer-section li a {
    font-size: 16px;
  }
  .footer-copyright {
  font-size: 14px;
  margin-top: 30px;
  }
  .industries-content, .action-content {
  width: calc(40% - 20px);
}
.industries-list, .action-list {
  width: calc(60% - 20px);
}
.gallery-list {
  column-count: 3;
}
    }
  @media only screen and (max-width: 991px){
    .main-header {
      top: 0;
    }
    .is-sticky .outer-menu {
      padding: 12px 0;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 0;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--accent-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--accent-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
   .blog-details h3,
   .gallery-page-section h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	}  
  .hero-image {
    padding: 150px 0 80px;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section, .product-section, .testimonials, .cta-section, .industries-section, .contact-section,
  .mission-section {
    padding: 50px 0;
  }
   h1 {
    font-size: 40px;
    line-height: 42px;
  }
    h2 {
    font-size: 36px;
    line-height: 36px;
  }
   .hero-section h1 {
    font-size: 48px;
    line-height: 48px;
  }
   .hero-section p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .industries-content, .action-content {
    width: 100%;
  }
  .cta-img {
    min-height: 350px;
    padding: 50px 15px 50px;
  }  
  .cta-img h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .cta-img p {
    font-size: 18px;
  }

   .contact-section {
    padding: 60px 0;
  }
 
  .menu-logo {
    display: block;
  }  
  .contact-info h2 {
      font-size: 36px;
  }
  .social-icon {
    margin-top: 20px;
  }
  .contact-page-section .contact-title {
    max-width: 100%;
  }
  .review-image {
    width: 60%;
  }
  .blog-list .col-md-4 {
    width: 50%;
  } 
  .align-right {
    margin-bottom: 30px;
    float: none;
  }
  .contact-info p span:first-child {
    width: 12%;
  }

  .map .col-md-6 {
    width: 100%;
  }
  .map .col-md-6:last-child {
    margin:20px 0 0;
  } 
  
    .about-image, .about-text {
      width: 100%;
    }  
      .about-section h2 {
    margin-bottom: 30px;
  }
  .about-image {
    margin-top: 30px;
  }
  .about-logo {
    height: 60px;
  }
   .gallery-image img {
    height: 350px;
  }
 .footer .col-md-4,
  .footer .col-md-3,
    .footer .col-md-2 {
    width: 50%;
  }
   .footer .col-md-4:first-child,
    .footer .col-md-2:nth-child(2) {
      margin-bottom: 20px;
   }
   .inner-hero-section {
      padding: 40px 0 0;
    }
    .service-list-item {
      width: 49%;
    }
    .product-list-item {
    width: calc(50% - 8px);
  }
  .industries-list, .action-list {
  width: 100%;
  }
   .action-list { 
    order: 2;
   }
  .section-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
  }
  .testimonials h4 {
  margin: 0 0 20px;
}
.contact-content {
  margin-left: 0;
}
  .section-header {
    margin-bottom: 30px;
  }
    .about-page-section,
    .blog-section, .product-details-section, .contact-page-section,  .blog-details-section {
    padding-top: 100px;
  }
  .gallery-page-section {
    padding: 100px 0 60px;
  }
  .about-page-text .col-md-6,
  .mission-section .col-md-6 {
    width:100%;
  }
   .about-page-content {
    padding-left: 0;
    padding-top: 20px;
  }
  .mission-image {
    padding-right: 0;
    padding-bottom: 20px;
  }
   .product-details-img,
   .product-image-1,
   .product-image-1 img,
   .product-image-2 img, .product-image-3 img,
   .product-overview,
   .features-list,
   .feature-details {
    width: 100%;
  }
  .blog-list-item {
    width: calc(50% - 8px);
  }
  .contact-details .contact-address, .contact-details .contact-email {
    border-bottom: 2px solid #848484;
    height: auto;
    border-right: none;
  }
}
@media only screen and (max-width: 767px){
  .outer-menu {
    padding: 12px 0;
    height: 68px;
  }
  .hero-image {
    padding: 150px 0 70px;
  }
  p, .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  h1 {
    font-size: 36px;
    line-height: 38px;
  }
  h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .hero-section h1 {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 40px;
  } 
   .about-section h2 {
    margin-bottom: 20px;
  }
  .footer-brand-logo {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 300px;
  }
 .footer,
 .hero-section {
    padding: 0;
  }
   .hero-image {
    padding: 100px 0 50px;
    border-radius: 0;
  }
    .footer {
    padding: 40px 0 10px;
    border-radius: 0;
  }
  
  .footer-copyright {
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 15px; 
  } 
  .about-logo {
    height: 48px;
  }
    .about-section {
    padding: 40px 0;
  }
  .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
    top: -46px;
  }
  .map iframe {
    height: 280px !important;
  }
  .blog-details-img {
  border-radius: 16px;
  margin-bottom: 0;
}
.navbar-brand {
  max-width: 175px;
}
.contact-contact-info  {
  margin: 0;
}
 .contact-contact-info .contact-info p span:first-child {
    width: 15%;
  }
   .cta-img h2 {
    font-size: 36px;
    line-height: 36px;
  }
  .cta-img {
    min-height: 300px;
    padding: 50px 15px 50px;
  }
   section {
    padding: 40px 0;
  }
    .contact-section {
    padding: 40px 0;
  }
  .footer-copyright {
    margin-top: 30px;
  }
  .footer-link, .footer-section li a {
    font-size: 16px;
  }
   .mission-content p, .about-page-content p {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-list-item {
    padding: 12px;
  }
  .gallery-list {
    column-count: 2;
  }
  .contact-page-section {
    padding-top: 80px;
  }
  .blog-details-img,
  .blog-details-text {
    width: 100%;
  }
}
@media only screen and (max-width: 600px){   
  .hero-image {
    padding: 100px 0 30px;
    border-radius: 0;
  }
    .hero-section h1 {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 36px;
  }
  .hero-content {
    max-width: 400px;
  }
 .section-header h4, 
 .industries-content h4, 
 .action-content h4, 
 .contact-content h4, 
 .testimonials h4, 
 .mission-content h4 {
  margin-bottom: 15px;
 }
  h4 {
    font-size: 19px;
    line-height: 21px;
  }
  .form-input,
  .phone-number,
  .dropdown-input{
    padding: 12px 16px;
    font-size: 16px;
  }
  .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
    top: auto;
    bottom: -55px;
  }
   h1{
    font-size: 30px;
    line-height: 35px;
  }
  h2 {
    font-size: 28px;
    line-height: 28px;
  }
  h3 {
    font-size: 24px;
    line-height: 24px;
  }
   
  .contact-info p span:first-child {
  width: 15%;
}
.form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content textarea,
.contact-content select {
  font-size: 16px !important;
}

  .social-icon ul li a {
  width: 40px;
  height: 40px;
  }
   
    .is-sticky .outer-menu {
      height: 60px;
      padding: 8px 0;
    }
    .is-sticky {
      height: 60px !important;
    }
      .product-list-item p {
    font-size: 14px;
    line-height: 21px;
  }
    .product-list-item ul li {
    font-size: 14px;
  }
  .product-list-item .common-btn {
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
  }
    .common-btn, .appointment-btn {
    font-size: 16px;
    height: 46px;
    padding: 10px 30px;
  }
  .testimonials {
    padding-bottom: 80px;
  }
  .cta-img h2 {
    font-size: 30px;
    line-height: 32px;
  }
   .cta-img p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .cta-img {
    min-height: 275px;
    padding: 40px 15px 40px;
  }
   .footer-logo img {
    margin-bottom: 20px;
    height: 40px;
  }
  .social-icon ul li {
    margin-right: 5px;
  }
  .product-details-section h2 {
    margin-bottom: 15px;
  }
  .feature-box {
    width: 100%;
  }
  .blog-list-item {
    width: 100%;
  }
}
@media only screen and (max-width: 500px){
    .navbar-brand img {
      height: 40px;
      width: auto;
    }
    .hero-image {
      padding: 80px 0 30px;
      border-radius: 0;
    }
    .section-header {
      margin-bottom: 25px;
    }
    .product-list-item {
      width: 100%;
    }
     .border-btn {
    margin: 30px auto 0;
  }
   .hero-section h1 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 34px;
  }
   h1, h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
   }
   p, .hero-section p {
    font-size: 15px;
    line-height: 24px;
  } 
   .industries-content p:last-of-type, .action-content p:last-of-type {
    font-size: 14px;
    line-height: 20px;
  }
  .industries-content p, .action-content p {
    margin-bottom: 15px;
  }
  .industries-wrap, .action-wrap {
    gap: 20px;
  }
  .industries-list, .action-list {
    gap: 10px;
  }
  .industry-item img {
    border-radius: 16px;
    margin-bottom: 5px;
  }
  .industry-item, .action-item {
  width: 100%;
  text-align: center;
}
.testimonial-image {
  width: calc(47.5% - 8px);
  margin-right: 0;
  display: none;
}
.testimonial-text {
  width: 100%;
}
   h5 {
    font-size: 16px;
  }
    .cta-img h2 {
    font-size: 26px;
    line-height: 26px;
  }
    .cta-img p {
    font-size: 14px;
    line-height: 18px;
  }
   p, .hero-section p {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-description {
    margin-bottom: 20px;
  }
  .form-row {
    display: block;
  }
  .form-group {
    margin-bottom: 15px;
  }
   .contact-content .submit-btn {
    margin-top: 0;
  }
   .contact-section,
   .blog-details-section,
   .map {
    padding-bottom: 40px;
  }
  .form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content select, .contact-content textarea {
    padding: 13px 16px !important;
  }
   .footer h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
    max-width: 236px;
  }
  .footer-link,
  .footer-section li a {
    font-size: 16px;
  }
  .contact-form,
  .contact-content form {
    gap: 0;
  }
  .contact-content .submit-btn {
    padding: 15px 40px;
    font-size: 18px;
  }
 
  .form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content textarea,
  .contact-content select {
  font-size: 14px !important;
}

.outer-menu {
    padding: 6px 0;
    height: 54px;
  }
   .contact-contact-info .contact-info p span:first-child {
    width: 21%;
  }
   .footer .col-md-3 {
    width: 100%;
  }
  .footer-logo {
    text-align: left;
    margin-top: 20px;
    }
    .footer-logo img {
  margin-left: 0;
  margin-bottom: 20px;
}

    .cta-img h2 {
    font-size: 30px;
    line-height: 30px;
  }
   .cta-img {
    min-height: auto;
    padding: 40px 15px;
  }
  .footer .col-md-4, .footer .col-md-3, .footer .col-md-2 {
    width: 100%;
    margin-bottom: 20px;
  }
   .footer-copyright {
    margin-top: 10px;
  }
   .designed {
    text-align: center;
    margin-top: 5px;
  }
  .footer-title{
    margin-bottom: 8px;
  }
   .about-page-section,
   .blog-section, .product-details-section, .contact-page-section,
    .blog-details-section {
    padding-top: 80px;
  }
  .gallery-page-section {
    padding: 80px 0 40px;
  }
  .mission-section {
    padding-bottom: 0;
  }
  .product-overview p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .product-overview ul li, .feature-details ul li {
    font-size: 14px;
    line-height: 23px;
  }
   .features-list table th {
    font-size: 14px;
  }
  .feature-box p {
    font-size: 14px;
  line-height: 16px;
  }
  .blog-image {
    margin-bottom: 15px;
  }
  .blog-list-item .common-btn {
    margin-top: 15px;
  }
  .gallery-list {
    column-count: 1;
  }
  .contact-details .contact-address, .contact-details .contact-email, .contact-details .contact-phone {
    padding: 16px 0;
  }
  .contact-details p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 400px){
 
   .contact-info p span:first-child {
    width: 100%;
    display: block;
  }
  .contact-info p {
    display: block;
  }
  .contact-info p span:last-child {
    width: 83%;
    padding-left: 0;
    display: block;
  }
   .hero-section h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 32px;
  }
  .common-btn, .appointment-btn {
    font-size: 14px;
    padding: 12px 18px;
  }
  
}