body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  position: relative; }
  body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  body.offcanvas-menu:before {
    opacity: 1;
    visibility: visible; }

p {
  color: #b3b3b3;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Inter", sans-serif;
 }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }



 
		  
		  
		  
		  
		  
/* Navbar */		  

nav{
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #ffffff00;
  z-index: 99;
}
nav .navbar{
  height: 100%;
    max-width: 1050px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    background: #fff;
    padding: 0 30px;
    border-radius: 18px;
	box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #20467e;
    font-size: 18px;
    font-weight: 600;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  padding-inline-start: 0px;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #ffffff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
	width: 250px;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #20467e;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

.logo{
    width: 250px;
}

.links{
	padding-inline-start: 40px;
}

.links a:hover{
	color: #20467e;
    text-decoration-line: underline !important;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px !important;
}

.carousel-caption h3{
	font-size:60px;
	font-weight:800;
}
.carousel-caption p{
	font-size:18px;
	font-weight:normal;
	color:#fff;
}
.border-btn,.border-btn:hover{
	border-radius: 10px;
    padding: 10px 15px 10px 15px;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
	font-size:18px;
	font-weight:normal;
}
#dna-home-01{
	padding:50px 0px;
}
.dna-consulting-engineers-box img{
	position: absolute;
    z-index: 1;
    margin: 0 0 0 75px;
	border-radius:20px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.dna-consulting-engineers-box {
	margin-top: auto;
    margin-bottom: auto;
    display: inline-block;
}
.bg-color-box{
	background: #20467e;
    padding-left: 20%;
    padding-right: 10%;
    padding-top: 6%;
    padding-bottom: 4%;
}
.dna-section-title{
	color:#fff;
	font-size:36px;
	font-weight:700;
}
.dna-body{
	font-size:18px;
	font-weight:normal;
	color: #fff;
}
.mb{
	margin-bottom:5px;
}

#dna-home-02{
	padding:50px 0px;
	background-image: url(../img/services-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.dna-body-tagline {
    font-size: 22px;
    font-weight: normal;
    color: #fff;
}
.services-icon-box{
	padding:20px;
	background:#fff;
	text-align:center;
	border-radius:20px;
	color: #20467e;
	margin: 20px;
	height: 362px;
}
.services-icon-box img{
	padding-bottom:15px;
	width:100px !important;
	display:block;
	margin:auto;
}
.services-icon-box p{
	color: #20467e;
	font-size: 18px;
	font-weight:normal;
}
.services-icon-box h5{
	font-weight:700;
	color: #20467e;
}
.advantages-box{
	padding:20px;
	background:#fff;
	border-radius:20px;
	color: #20467e;
	margin: 20px;
	height: 270px;
}
.advantages-box p{
	color: #20467e;
	font-size: 22px;
	font-weight:normal;
}
.advantages-box h3{
	font-size: 34px;
	font-weight:700;
	color: #20467e;
}
#dna-home-03{
	padding:50px 0px;
}
.dna-section-title-blue{
	    color: #20467e;
	font-size:36px;
	font-weight:700;
}


.hovereffect-box{
	padding:15px;
}
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
  background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 35%;
  left: 0;
  padding: 3em;
  text-align: left;
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-40px,0,0);
  transform: translate3d(-40px,0,0);
}

.hovereffect h3 {
  text-transform: uppercase;
  color: #fff;
  position: relative;
  font-size: 30px;
  background-color: transparent;
  padding: 15% 0 10px 0;
  text-align: left;
}

/*
.hovereffect .overlay:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #fff;
  content: '';
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-20px,0,0);
  transform: translate3d(-20px,0,0);
}
*/

.hovereffect .blog-link, .hovereffect p {
  color: #FFF;
  opacity: 1;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(0,0,0);
  font-size:18px;
}

.hovereffect:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect:hover .overlay:before,
.hovereffect:hover .blog-link, .hovereffect:hover p {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
#dna-home-04{
	padding:50px 0px;
	background-image: url(../img/testimonials-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#owl-all-testimonials p{
	color: #fff;
	font-size: 18px;
	font-weight:normal;
}
#owl-all-testimonials h5{
	color: #fff;
	font-size: 22px;
}
#owl-all-testimonials .item{
	padding-left:15px;
	padding-right:15px;
}
#dna-home-05{
	padding:50px 0px;
	background-image: url(../img/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#dna-home-05 h5{
	color: #fff;
	font-size: 26px;
}
#dna-home-05 p{
	color: #fff;
	font-size: 22px;
}
.footer-links{
	list-style:none;
	padding-inline-start: 0px;
}
.footer-links li{
	float:left;
	padding-right: 25px;
	color:#fff;
	font-size: 22px;
	font-weight: 300;
}
.footer-links a,a:hover{
	color:#fff;
	font-size: 22px;
	font-weight: 300;
}
.footer-social-links{
	list-style:none;
	padding-inline-start: 0px;
}
.footer-social-links li{
	float:left;
	padding-right: 25px;
	color:#fff;
	font-size: 22px;
	font-weight: 300;
}
.footer-social-links a,a:hover{
	color:#fff;
	font-size: 22px;
	font-weight: 300;
}
.social-links{
	display: flex;
    justify-content: center;
}

#abc{
	background:#eb8a22;
	padding:50px 0px 100px 0px;
}

@media (min-width: 320px) and (max-width: 480px) {
	.dna-consulting-engineers-box img {
    position: relative;
    z-index: 1;
    margin: 0px 0px 15px 0px;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
	}
	.bg-color-box {
		background: #20467e;
		padding: 50px 20px;
	}
	.advantages-box {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    color: #20467e;
    margin: 20px;
    height: auto;
	}
	nav {
    top: 0px;
	height: 85px;
	}
	nav .navbar {
		border-radius: 0px;
	}
	#demo{
		margin-top:85px;
	}

	.carousel-caption {
		top: 50%;
	}
	.carousel-caption h3 {
		font-size: 16px;
		font-weight: 800;
	}

	.border-btn, .border-btn:hover {
		padding: 4px 6px 4px 6px;
		font-size: 14px;
	}
		.footer-links {
    padding-bottom: 50px;
	}
}
@media (min-width: 480px) and (max-width: 660px) {
		.dna-consulting-engineers-box img {
    position: relative;
    z-index: 1;
    margin: 0px 0px 15px 0px;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
	}
	.bg-color-box {
		background: #20467e;
		padding: 50px 20px;
	}
		.advantages-box {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    color: #20467e;
    margin: 20px;
    height: auto;
	}
		nav {
    top: 0px;
	height: 85px;
	}
	nav .navbar {
		border-radius: 0px;
	}
	#demo{
		margin-top:85px;
	}
	.carousel-caption {
		top: 50%;
	}
	.carousel-caption h3 {
		font-size: 16px;
		font-weight: 800;
	}

	.border-btn, .border-btn:hover {
		padding: 4px 6px 4px 6px;
		font-size: 14px;
	}
		.footer-links {
    padding-bottom: 50px;
	}
}
@media (min-width: 660px) and (max-width: 768px) {
		.dna-consulting-engineers-box img {
    position: relative;
    z-index: 1;
    margin: 0px 0px 15px 0px;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
	}
	.bg-color-box {
		background: #20467e;
		padding: 50px 20px;
	}
		.advantages-box {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    color: #20467e;
    margin: 20px;
    height: auto;
	}
		nav {
    top: 0px;
	height: 85px;
	}
	nav .navbar {
		border-radius: 0px;
	}
	#demo{
		margin-top:85px;
	}
	.carousel-caption {
		top: 50%;
	}
	.carousel-caption h3 {
		font-size: 16px;
		font-weight: 800;
	}

	.border-btn, .border-btn:hover {
		padding: 4px 6px 4px 6px;
		font-size: 14px;
	}
	.footer-links {
    padding-bottom: 50px;
	}
}