/**
* Template Name: Arsha - v2.1.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;

}

a {
  color: #47b2e4;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: ;
  background:#000!important;
  padding: 10px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.get-started-btn:hover {
  background: #31a9e1;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  margin-top:15px;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #37517e;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 5px;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
    -webkit-filter: none;
  filter: none;
  
}

.cliens img:hover {

  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 30%;
	float:left;
	
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 0px 0px 0 0px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  /font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  margin-bottom:5%;
  width:100%;
}

.services .icon-box:hover{
	  background: #fff;
	  border:solid 1px #47b2e4;

}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box:hover .icon i{
	color:#47b2e4;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}	

.services .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
    color:#fff;

}
.services .icon-box:hover p {
  color:#47b2e4;

}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgb(2 15 37 / 0.9), rgb(2 15 37 / 0.9)), url(../img/cta-bg.jpg) fixed center center;
  background-size: cover;
  padding: 50px 0;
}

.cta h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
margin-bottom:5%;
text-align:center;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #47b2e4 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.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: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .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: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #eee;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#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: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  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 .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align:center;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}









.flexall {display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;}

#g360_logoslider {width:100%;max-width:1140px;overflow:hidden;height:120px;}

#g360_logoslider ul {position:relative;left:0;list-style-type:none;width:auto;}

#g360_logoslider ul.ease {
-webkit-transition: left .6s ease-in-out;
  -moz-transition: left .6s ease-in-out;
  -o-transition: left .6s ease-in-out;
  transition: left .6s ease-in-out;}

#g360_logoslider li {float:left;width:auto;margin:0;padding:5px}


figure.logo {width:90%;height:auto;}
figure.logo img {width:auto;max-width:100%;}
	
	
	
.agrawal_heading {
	text-align:center;	
}	
	
	.agrawal_group1 h4 {
    border: dashed #3d4d6a;
    width: 76%;
    /* height: 83%; */
    text-align: center;
    padding: 27% 5%;
	margin-top:20%;
    border-radius: 50%;
}



	.agrawal_group1 h4:hover{
		background:#eee;
		border:solid 3px #47b2e4;
	}
	
	.content p{
		text-align:justify;
	}
	
	
	
	
	.icon_box1{
  background: linear-gradient(#020f25, #020f25), url(../img/oem.jpg);
  background-position:center;
	}
	
		.icon_box2{
  background: linear-gradient(#020f25, #020f25), url(../img/automobile.jpg);
  background-position:center;
	}
	
		.icon_box3{
  background: linear-gradient(#020f25, #020f25), url(../img/industrial.jpg);
  background-position:center;
	}
	
		.icon_box4{
  background: linear-gradient(#020f25, #020f25), url(../img/hardware.jpg);
  background-position:center;
	width: 70%;
    text-align: left;
    margin-left: 36%;
	}
	
		.icon_box5{
  background: linear-gradient(#020f25, #020f25), url(../img/three.jpg);
  background-position:center;
	width: 70%;
    text-align: left;
    margin-right: 36%;
	}






	#btn{
		border: 2px solid #fff;
		padding: 10px 15px;
		color: #000;
		cursor: pointer;
		position: relative;
		overflow: hidden;
		font-size: 24px;
		font-family: sans-serif;
		transition: all .5s;
		border-radius:5px;
		margin:10px 5px;
		
		

				
}

	#btn:before{
			width: 100%;
			height: 100%;
			content: '';
			margin: auto;
			position: absolute;
			top:  0%;
			left: 0%;
			background: #47b2e4;
			transition: all .5s;
			z-index: -1;
			
		}
	#btn:after{
			width: 100%;
			height: 100%;
			content: '';
			margin: auto;
			position: absolute;
			top:  0%;
			left: 0%;
			background: #fff;
			transition: all .5s;
			z-index: -1;
			
	}
	#btn:hover{
		color: #ffff;
		background:#47b2e4;
		border: 2px solid #47b2e4;

	}
	#btn:hover:before{			
			transform: rotateX(90deg);

	}
	#btn:hover:after{
			transform: rotateY(90deg);

	}
	
	.gallery_bth {
		background:#47b2e4;
		clear:both;
		color:#fff;
		border-radius:5px;
		text-align:center;
		border:none;
		padding:10px 30px;
	}
	
	.gallery_bth a {color:#fff;}
	.gallery_bth:hover {
		background:#3d4d6a;
	}
	

.owl-dots{
  text-align: center;
}

.owl-dot {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: #222222 !important;
  opacity: 0.8;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-dot.active {
  background-color: #FF170F !important;
}



/* ignore the code below */


.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}

.single-logo  img{
	width:70%!important;
}



		.contact_section{
  background: linear-gradient(rgb(55 81 126), rgb(55 81 126)), url(../img/banner.jpg);
  background-position:center;
  height:400px;
	}
	
	.contact_heading h1{
		color:#fff;
		margin-top:10%;
	}
	
	
	.contact_heading ul{padding:0px;}
	.contact_heading li{
		float:left;
		color:#fff;
		padding:0px 10px;
		list-style:none;	
	}
	



@media(max-width:480px){
	#btn {
		width:100%;
		text-align:center;
    margin-left: 2%!important;
	}
	.button_section br{display:none!important;}
	.single-logo img {
		margin-left:15%;
	}
	.bottom_bth {margin-left:auto!important;}

.icon_box5 {
	margin-right:0%;
	width:100%!important;
}
.icon_box4 {
	margin-left:0%;
	width:100%!important;
}
}



.about_section {
	background:#f3f5fa;
 }

.agrawal_about1 {
	background:#fff;
	padding:20px 20px;
	box-shadow:0 5px 25px 0 rgba(214, 215, 216, 0.6);
}


.agrawal_about h2{
	font-weight:bold;
	margin-bottom:20px;
	
}


.agrawal_about p{
	color:#777;
    text-align: justify;
}

















.sectionClass {
  padding: 20px 0px 50px 0px;
  position: relative;
  display: block;
  width:100%;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
   text-align: center;
 }
/*
.projectFactsWrap .item:nth-child(1){
  background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2){
  background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3){
  background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4){
  background: rgb(23, 44, 66);
}*/

.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color:#fff;
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}


.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
}

/* AUTHOR LINK */






.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.about-me-img img {
}


.authorWindow{
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper{
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}






.counter {
	text-align:center;
	
}



.counter h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.counter h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.counter h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}




.valuse_heading h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.valuse_heading h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.valuse_heading h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
	text-align:center;
    color: #37517e;
}



.number_counter {
	background:#f0f1f6;
	
}


.vision_box {
	background:#fff;
	height:200px;
	padding:30px 20px;
	box-shadow:0 5px 25px 0 rgba(214, 215, 216, 0.6);

}

.mission_box {
	background:#fff;
	height:200px;
	padding:30px 20px;
	box-shadow:0 5px 25px 0 rgba(214, 215, 216, 0.6);

}



.bottom_bth {
	margin-left:10%!Important;
}



@media(max-width:480px){

#portfolio-flters {
	display: unset!important;
	padding:0px;
}

.portfolio #portfolio-flters li {
	/padding:10px 10px;
	/width:80%;
	background:#3d4d6a;
	color:#fff;
	border-radius:0px;
	margin:5px 0px;
	
	}
}













/* tabs cod  start*/


.grid {
  --timing: .3s;
  --curr: 0;
  --gutter: 5px;
  display: grid;
  grid: auto / auto 1fr;
  gap: 10px 10vmin;
  margin:  3rem auto;
  padding: 20px;
  max-width: 600px;
}

.btns {
  display: grid;
  place-content: start;
  gap: var(--gutter);
  perspective: 200px;
  transform-style: preserve-3d;
}

.btns::after {
  content: '';
  grid-row: 1;
  grid-column: 1;
  background: rebeccapurple;
  border-radius: 6px;
  z-index: -1;
  transform: translateY(calc(var(--curr) * 100% + (var(--curr) * var(--gutter))));
  transition: var(--timing) transform cubic-bezier(.5, 0, .5, 1);
  will-change: transform;
}

button[aria-selected="true"] {
  color: #fff;
}

button {
  font-weight: 700;
  padding: 7px 12px;
  grid-column: 1;
  grid-row: var(--i, 0);
  border: 0;
  width: 100%;
  background: transparent;
  outline: none;
  cursor: pointer;
  transition: .3s color cubic-bezier(.5, 0, .5, 1);
  user-select: none;
}


/* SCENES */
[data-scene] {
  grid-area: 1 / 2;
  padding: 20px;
  transition: var(--timing);
  color: #222d40;
  transition:
    var(--timing) opacity,
    var(--timing) visibility;
  will-change: opacity;
  overflow: hidden;
  outline: none;
}

button:focus,
[data-scene]:focus {
  outline: 1px dashed #222d40;
  outline-offset: 2px;
}

.grid::before {
  content: '';
  grid-area: 1 / 2;
  /*background: #fff repeating-linear-gradient(45deg, #ccc2 0 2px, transparent 0 12px);
  border: 10px solid #fff;*/
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
  z-index: -1;
}

.grid::after {
  content: '';
  grid-area: 1 / 2;
  place-self: end;
  width: 45%;
  height: 60%;
  background: radial-gradient(circle at 50%, rebeccapurple 2px, transparent 0 10px) 100% 100% / 10px 10px round round;
  margin: 0 -30px -30px 0;
  z-index: -2;
}

[data-state="section1"] [data-scene]:not([data-scene="section1"]),
[data-state="section2"] [data-scene]:not([data-scene="section2"]),
[data-state="section3"] [data-scene]:not([data-scene="section3"]) {
  --tY: .25rem;
  --op: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

[data-scene] > * {
  transition: var(--timing) cubic-bezier(.5,2,.5,.8);
  transform: translateY(var(--tY, 0));
  opacity: var(--op, 1);
}

[data-scene] > :nth-child(1) {
  transition-delay: calc(var(--timing) / 2 + .05s);
}

[data-scene] > :nth-child(2) {
  transition-delay: calc(var(--timing) / 2 + .1s);
}



/* tabs cod  end*/






.logo_heading h2{
	color:#37517e;
	margin-top:20px;
}








.slider {
  margin: 0 auto;
  max-width: 100%;

}

.slide_viewer {
  height: 550px;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background: #000;
  padding:7% 0%;
  	height:550px;

}

.slide:nth-of-type(2) {
  background: #37517e;
    padding:7% 0%;
	height:550px;

}

.slide:nth-of-type(3) {
  background: #37517e;
    padding:7% 0%;
		height:550px;


}

.slide:nth-of-type(4) {
  background: #37517e;
    padding:7% 0%;
		height:550px;


}

.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

a.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: #fff;
  cursor: pointer;
}

.directional_nav {
  /height: 250px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  color:#fff;
  top: -260px;
}

.previous_btn {
  bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}



.slider_text {
	display:flex!important;
	float:left;
}





.slider_text.flex-column h1{
	    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
	margin-left:10%;
	margin-top:10%;
	
}


.slider_text.flex-column h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
	margin-left:12%;

}




.slider_text img{
	margin-top:3%;
	margin-left:29%;
	
}

.slider_text {
	text-align:center;
}

.next_btn svg{
	color:#fff;
}

.previous_btn {margin-left:-8%;}
.next_btn {margin-right:-6%;}




@media(max-width:480px){
	.slide_viewer {
		height:450px;
	}
	.slide:nth-of-type(1) {
		height:450px;
	}
	
	.slide:nth-of-type(2) {
		height:450px;
	}
	
	.slide:nth-of-type(3) {
		height:450px;
	}
	
	.slide:nth-of-type(4) {
		height:450px;
	}	
	
	.slider_text.flex-column h1 {
		margin-top:27%;	
	}
	.slider_text img{
		margin-top:30%!Important;
		margin-left:0%;
	}
.contact_heading h1 {
	margin-top:30%;
	font-size:27px;
}



	
	.agrawal_about p {
		text-align:justify;
	}
	.agrawal_about h2 {
	margin-bottom: 10px;
    font-size: 30px;
	margin-top:10px;
	} 
	.sectionClass {
		padding:0px;
	}
	
	.vision_box {
		margin-bottom:20px;
	}
	.achieve_text  {
		text-align:center;
	}
	.achieve_text h2{
		font-size:30px;
	}
	
	.align-items-stretch button {
		    padding: 10px 15px!important;
			    margin-top: 5%!important;
	}

	.align-items-stretch button a{
				color:#020f25;

		}
	
	.portfolio-img img{
		width:100%;
	}
	
	.section-title img {
		margin-top:8%!important;
		width:49%;
	} 
	
.section-title span{
	    margin: 0px 3px!important;
		    padding: 5px 10px!important;
}
	.slider_text.flex-column h1 {
    font-size: 34px;
    line-height: 43px;
    text-align: center;
	margin-left:0px;
	}
	
	.slider_text.flex-column h2 {
		text-align:center;	
		font-size:20px;
	margin-left:0px;
	margin-bottom:20px;

	}
	.directional_nav {
		display:none;
	}
.n_box {
	height: 180px!important;
}
}





.oem_section {
	background:#f3f5fa;
}


.oem_box{
	background:#fff;
	padding:20px 15px;
}


.oem_box p{
	text-align:justify;
}

.oem_box h2{
	font-weight:bold;
	
}


.align-items-stretch button{
	padding: 10px 20px;
    background: #fff;
    text-align: left;
    width: 45%;
    margin-top: 12%;
	border-radius:5px;
	
}	
		

.align-items-stretch:hover button{
	background:#47b2e4;
	color:#fff;
}



.align-items-stretch:hover button a{
	color:#fff;
}




.section-title span{
	padding:10px 20px;
	background:#2c3e5d;
	border-radius:30px;
	margin-bottom:10px!important;
	color:#fff;
	margin:0px 10px;
}


.contact_heading p{
	color:#fff;	
	padding:0px
}



.job_post h6{color: #040404;}
.job_post p{color: #040404;}
.section-title h3 {
    font-size: 32px;
    font-weight: bold;
    
    margin-bottom: 10px;
    padding-bottom: 0px;
    position: relative;
    color: #37517e;
	margin-top:50px;

}

.section-title img{
	margin-top:3%;
	    border: solid 1px #ddd;

}



.owl-dots button{
	display:none;
}


.section-title .single-logo img{
	margin-top:20%!Important;
}




.section-title strong{
	color:#37517e;
}

#why-us {
	    background: linear-gradient(to top, #fff 0%, #f3f5fa 100%);

}






.about_line {
	text-align:	center;
	padding-bottom:40px;
	font-weight:bold;
}



.fadeInUpBig.animated p{
	font-size:30px;
}



.align-items-stretch img{
	border:solid 1px #3d4d6a;
	padding:10px;
}



#portfolio {
	margin-top:10%;
}

#contact {
	margin-top:10%;
}


#why-us {
	margin-top:2%;
}


	









.page-header h1 {
  font-size: 3.26em;
  text-align: center;
  color: #000;
  text-shadow: 1px 1px 0 #3c4c69;
}

/** timeline box structure **/
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #47b2e4;
  left: 50%;
  margin-left: -1.5px;
}

.tldate {
  display: block;
  width: 200px;
  background: #414141;
  border: 3px solid #212121;
  color: #ededed;
  margin: 0 auto;
  padding: 3px 0;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 11px rgba(0,0,0,0.35);
}

.timeline li {
  margin-bottom: 25px;
  position: relative;
    margin-left: 220px;
    width: 60%;
	text-align:center;
}

.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}
.timeline li:after {
  clear: both;
}
.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}

/** timeline panels **/
.timeline li .timeline-panel {
  width: 42%;
  float: left;
  background: #3d4d6a;
  border: 1px solid #47b2e4;
  padding: 20px;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/** panel arrows **/
.timeline li .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline li .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #3d4d6a;
  border-right: 0 solid #3d4d6a;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline li .timeline-panel.noarrow:before, .timeline li .timeline-panel.noarrow:after {
  top:0;
  right:0;
  display: none;
  border: 0;
}

.timeline li.timeline-inverted .timeline-panel {
  float: right;
}

.timeline li.timeline-inverted .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline li.timeline-inverted .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}


/** timeline circle icons **/
.timeline li .tl-circ {
  position: absolute;
  top: 23px;
  left: 50%;
  text-align: center;
  background: #3c4c69;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-left: -16px;
  border: 3px solid #47b2e4;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: ;
  font-weight:bold;
}


/** timeline content **/

.tl-heading h4 {
  margin: 0;
  color: #c25b4e;
}

.tl-body p, .tl-body ul {
  margin-bottom: 0;
}

.tl-body > p + p {
  margin-top: 5px;
}

/** media queries **/
@media (max-width: 991px) {
  .timeline li .timeline-panel {
    width: 44%;
  }
}

@media (max-width: 700px) {
  .page-header h1 { font-size: 1.8em; }
  
  ul.timeline:before {
    left: 40px;
  }
  
  .tldate { width: 140px; }

  ul.timeline li .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }

  ul.timeline li .tl-circ {
    top: 22px;
    left: 22px;
    margin-left: 0;

  }
  ul.timeline > li > .tldate {
    margin: 0;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}








.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #47b2e4;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}



.menu_button{
	background: #47b2e4;
    padding: 5px 15px;
 	margin-left:90%;
	}


.menu_button1{
	background: #47b2e4;
    padding: 5px 15px;
 	margin-left:100%;
	margin-top:10px;
	}



.logo_page img{
	margin:10px 30px;

}





.continental_heading img{
	width:80%;
	margin-top:55px;
	margin-left:9%;
}






.section-title span{
	float:;
	
}


.continental span{
	border-radius:4px;
	margin-top:5%;
}

.continental h3{
	margin-top:5%;
}







  nav div {
      color: white;
      font-size: 2rem;
      line-height: 60px;
      position: absolute;
      top: 0;
      left: 2%;
      visibility: hidden;
  }
  .visible-title {
      visibility: visible;
  }

 
 .careers_heading h1{
	 margin-top:8%;
	 color:#000;
	 text-align:center;
 	 margin-bottom:5%;
 }
 
 
	
	
	
	.post_details li{
		list-style:none;
		text-decoration:none;
	}
	
	.job_post ul{
		padding:0px 10px;
 	}
	
	.post_details h6{
		margin-top:8%!important;
		font-weight:bold;
	}
	
	.job_post span{
		font-weight:bold;
	}
	
	.job_post {
		background:#fff;
	  box-shadow: 5px 2px 24px 10px #eee;
		padding :10px 20px;
		border:solid 1px #eee;	
		margin-bottom:20px;
	}
	
	
	
	.continental img{
		margin-top:10%;
		width:30%;
		margin-bottom:2%;
		border:none;
	}
	
	
	
	@media(max-width:480px){
		.menu_button {
			margin-left:50%;
		}

		#continental {
			margin-top:15%;
		}
		.continental img {
			Width:80%	
		}
		
		#why-us {
			margin-top:6%;
		}
		
		#portfolio {
		margin-top:25%;
	}
	.careers_heading h1 {
		font-size:35px;
		margin-top:25%;
	}
	.contact_section {
		height:300px;
	}
	
	#contact {
		margin-top:25%;
	}
	.logo_page img {
		    margin: -10px 5px;
	}
	.section-title span {
    float: ;
	display:inline-block
}
	
}
	
	
	
.home_header{
	height:100px;
}




.text-center img {
    margin-top: 2%;
    z-index: 9999;
}		
		
 
		
		
	.about_line h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}

.about_line h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.about_line h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}


.footer-contact a{
	color:#000;
}


.phone p a{
	color:#6182ba;
}

.email p a{
	color:#6182ba;
}


@media(max-width:480px){
	.text-center img {
	margin-top: 25%!Important;
    margin-left: -2%;
	}
	.menu_button1 {
		margin-left:83%;
	}
}




.highlight {
    font-weight: bold;
    background: #172c428a;
    color: #fff;
    padding: 10px;
}


.amont_images img{
	width:100%;
 	border-top:solid 5px #000;
}


.amont_images {
	margin:0px;
	padding:0px;
}


.depo_image img{
	width:100%;
}


.depo_image {
	margin:	0px;
	padding:0px;
	border-top:solid 5px #000;
 }





/* enuuiry form css */

@import "https://fonts.googleapis.com/css?family=Raleway";
* { box-sizing: border-box; }
 
 #enquiry { 
  -webkit-user-select: none; /* Chrome/Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  margin: 4em auto;
  width: 100px; 
  height: 30px; 
  line-height: 30px;
  background: teal;
  color: white;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
}

#enquiry:hover { background: #122648;border:solid 1px #122648; }
#enquiry:active { background: #444; }

#contactForm { 
  /display: none;
	z-index:1111;
  border-top: 3px solid #47b2e4;
border-bottom: 3px solid #47b2e4;
  padding: 2em;
  width: 100%;
  text-align: left;
  /background: #fff;
  /position: fixed;
  /top:50%;
  /left:50%;
  /transform: translate(-50%,-50%);
  /-webkit-transform: translate(-50%,-50%)
  
}

input, textarea { 
  margin: .8em auto;
  font-family: inherit; 
  text-transform: inherit; 
  font-size: inherit;
  
  display: block; 
  width: 280px; 
  padding: .4em;
}
textarea { height: 150px; resize: none; }

.formBtn { 
  width: 140px;
  display: inline-block;
  
  background: #122648;
  color: #fff;
  font-weight: 100;
  font-size: 1.2em;
  border: none;
 }







#enquiry {
    height: 40px;
    border: solid 3px #47b2e4;
    background: #47b2e4;
    width: 120px;
    line-height: 32px;
    -webkit-transform: rotate(-90deg);
    font-weight: 600;
    color: white;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    text-align: center;
    font-size: 20px;
    position: fixed;
    right: -40px;
    top: 30%;
    font-family: "Roboto", helvetica, arial, sans-serif;
    z-index: 999;
}





.amont_bottom {
	background:#000;
	text-align:center;
	color:#fff;
	padding:10px 0px;
}


.depo_bottom {
	text-align:center;
	background:#000;
	color:#fff;
	padding:10px 0px;
}

.depo_bottom li{
	display:inline-block;
	text-decoration:none;
	list-style:none;
	margin-right:10px;
 	border-right:solid 1px #fff;	
	padding:0px 6px;
}


.depo_bottom ul{
	margin-left:-20px;
}




@media(max-width:480px){
	.amont_images img {
		border:none;
	}
	
	.depo_image {
		border:none;
	}
.amont_images {
	margin-top:0%!important;
}
.depo_images {
margin-top:0%!important;
}
}


 
.depo_image  {
	margin-top:7%;
}


.amont_images  {
	margin-top:7%;
}



.agrawal_about img{
	margin-top:12%;
}



.justify-content-center {
    box-shadow: 10px 10px 24px 10px #f1eded;
    padding: 10px 20px;

}





	

.companies_section {
	margin-top:7%;
}	
	
	.first_brand1 {
		margin-bottom:20px;
		padding-right:0px;
 	}
	
	
	
		.first_brand2 {
		margin-bottom:20px;
		padding-left:0px;
	}
	
	.first_brand1 img{
		width:100%;
		border-top:solid 2px #000;

	}
		.first_brand2 img{
		width:100%;
		border-top:solid 2px #000;

	}
	
	




	.border_img img{
     width: 30%;
	margin-bottom:30px;
	}
	
	

	
	.companies_section2 {
	//background:#47b2e44a;

	}
	
	
	
	@media(max-width:480px){
		.first_brand2 {
			padding-left:15px;
		}
		.first_brand1 {
			padding-right:15px;
			margin-bottom:0px;	
			
		}

        .border_img img {
            width: 100%;
             margin-top: 0%!important;
		margin-bottom:20px;
        }

	.companies_section {margin-top:25%;}

	.agrawal_group_logo_img img{width:49%; padding:10px!important;}
	.agrawal_group_logo_img {text-align:left!important;}

	.projectFactsWrap .item:nth-child(1) {height:240px!important;}

	.section {padding:40px 10px!important;}

	
	.depo_buttons {
		float:left;
		width:50%;
	}

.number_counter_bg {height:250px;}
	

	}
	



#about {background: #0080bb;}


.values_heading h2{
color: #ffffff;
    /font-family: Freestyle Script!important;
 font-family:revert ;
font-size:50px;
 
}

.values_heading p{color:#fff;}

.values_heading strong {color:#fff!important;font-size:20px;}




.values_heading h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 3px;
    background: #fff;
    bottom: 1px;
    left: calc(50% - 60px);
}


.values_heading h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: #0c1d37;
    bottom: 0;
    left: calc(50% - 20px);
}


.agrawal_group_logo_img img{
			padding:10px 30px;
		}
		.agrawal_group_logo_img {text-align:center;}
		
		.agrawal_group_logo_img h2{
			font-weight:bold;
			text-align:center;
			color:#020f25;
			margin-bottom:30px;
		}







 .depo_buttons {background:#000!important;padding-bottom:20px;}
 
 
 .depo_buttons button{
	 background:#fff;
	     border: 5px double #47b2e4;
 }
 
 
 .depo_buttons button:hover{
	 background:#47b2e4;
	 color:#fff;
 }
 
 
 



 .number_counter_bg {
	 background:#122233;
	 padding:50px 0px;
	 margin-bottom:30px;
	 border-radius:10px;
 }
 
 .number_counter_bg:hover{
	 background:#47b2e4;
 }
 
 
 
 
 
 .number_counter_bg h1{
	 font-size:50px;
	 color:#fff;
 }
 

.automobile_logo img{
margin-left:20px;
}



#contactForm input{width:100%!important;}

#contactForm textarea {width:100%!important;}

.google_map {margin-top:5%;}




@media(max-width:480px){
	.timeline li {
	margin-left:0%;
	width:100%;
}
.atul_full_size_img {
margin-top:50px;
}
 	.number_counter_bg h1 {
		font-size:40px;
}
.fadeInUpBig.animated p {
		font-size:20px;
}

}







 .atul_full_size_img {
	 border-bottom:solid 5px #000;
margin-top:7%;
 }
 
 
 
 
 .logo_bg_color {
	 background:#c5ecff;
	 text-align:center;
	 
 }
 
 .location_atul {
	 background:#005177;
	 color:#fff;
	 padding:20px 30px;

	 
 }
 
 

 
 .location_atul h6{
	 font-weight:bold;
	 font-size:20px;
 }
