/*
    font-family: 'Istok Web', sans-serif;
    font-family: 'Montserrat', sans-serif;

*/
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

a {
  color: #e76025;
  text-decoration: none;
}

a:hover {
  color: #e76025;
  text-decoration: none;
}

.font-md {
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.text-red {
  color: #e76025;
}

.hand {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e76025;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #21df41;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: inline;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: #e76025;
}

#header .logo img {
  max-height: 45px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-social-links a {
  color: #a0a0a0;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #e76025;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}
.text-bold {
  font-weight: bold;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-link {
  color: #000 !important;
  text-transform: uppercase;
  padding: 7px 15px !important;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-link:hover {
  color: #e76025 !important;
}
.nav-link.active {
  color: #e76025 !important;
}

.dropdown-item {
  font-size: 0.9rem;
}
.dropdown-item:hover {
  color: #e76025 !important;
}

.navbar-collapse {
  flex-grow: 0;
}

.mega-menu {
  padding: 30px 50px;
  background-color: #f5f5f5;
  border-top: 0;
}
.mega-menu h6 {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.mega-menu ul {
  margin-left: 0;
  padding-left: 0;
}
.mega-menu ul li {
  list-style-type: none;
  padding: 1px 10px;
}
.mega-menu ul li:hover {
  background-color: #f1f1f1;
}
.mega-menu ul li a {
  color: #000;
  font-size: 0.9rem;
}
.mega-menu ul li a:hover {
  color: #e76025;
}

@media all and (min-width: 992px) {
  .dropdown-menu {
    width: 14rem;
  }
  .mega-submenu {
    left: 100%;
    top: 0;
    min-width: 25rem;
  }
  .ktm-mega-menu {
    position: static;
  }
  .mega-menu {
    left: 0;
    right: 0;
    width: 100%;
  }
  .dropdown-menu li {
    position: relative;
  }
  .dropdown-menu .submenu {
    display: none;
    left: 100%;
    top: 0;
  }
  .dropdown-menu > li:hover > .submenu,
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  /*  .navbar ul {
     display: none;
   } */
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #e76025;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #e76025;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

.carousel-one {
  background-image: linear-gradient(to right top, #6a01e5, #4121c5, #1d26a2, #00247e, #001e59, #1a1d54, #261d4e, #2d1e49, #51215b, #7a1e65, #a41366, #cb045e);
}

.carousel-two {
  background-image: linear-gradient(to right, #ff00cc, #cd27c8, #9a33be, #6836ae, #333399);
}

.carousel-three {
  background-image: linear-gradient(to right top, #73b2f0, #6495dc, #5c78c6, #585bad, #563d91, #4f3083, #482476, #411668, #351b67, #291e65, #1b2162, #0b225e);
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 120px;
  top: 70px;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  padding: 20px;
  color: #fff;
}

#hero .carousel-grapic {
  padding-left: 20px;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.3rem;
  font-weight: 700;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#hero .btn-get-started:hover {
  background: white;
  color: #000;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
  border: solid 3px #9a9a9a;
  position: relative;
}
#hero .carousel-indicators li::before {
  content: " ";
  width: 12px;
  height: 12px;
  border-radius: 50px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #FFF;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #e76025;
  border-color: #e76025;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 35%;
  }
  #hero .carousel-grapic {
    width: 28%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  #hero .carousel-content p {
    font-size: 15px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 77px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f8fc;
}

.our-services {
  background: url(../img/ourservices.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.our-services:before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(143, 51, 12, 0.9);
}

.home-industries {
  padding: 150px 0;
  background: url(../img/ourservices.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.home-industries:before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(210, 75, 17, 0.9);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e76025;
  bottom: 0;
  left: calc(50% - 25px);
}

.aforv-section-title h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fc4a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0;
  letter-spacing: 1px;
  z-index: 1;
}
.aforv-section-title h4:after {
  position: absolute;
  content: "";
  right: -62px;
  top: 8px;
  height: 2px;
  width: 50px;
  background: #fc4a1a;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 15px 15px;
}
.aforv-section-title h4 h2 {
  font-size: 38px;
  font-weight: 800;
  margin-top: 0;
  line-height: 1.2;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #e76025;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

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

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

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  width: 100%;
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  position: relative;
  border: solid 1px #e5e5e5;
}
.services .icon-box img {
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.services .icon-box h3 {
  color: #000 !important;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}
.services .icon-box:hover {
  /* img {
    transform: scale(1.1);
  } */
  /*   &::before {
      transform: scale(1, 1);
      opacity: 1;
    } */
}
.services .icon-box:hover .know-more {
  color: #e76025;
  background-color: #f1f1f1;
  transition: all 0.3s ease-in-out;
}
.services .icon-box::before {
  position: absolute;
  content: "";
  z-index: 1;
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #e76025;
  transition: 0.5s;
  opacity: 0;
  transform: scale(0.5, 1);
}
.services .icon-box .card {
  overflow: hidden;
}
.services .icon-box.industries-box {
  padding-bottom: 20px !important;
}
.services .icon-box .know-moreBox {
  margin-top: 25px;
  margin-bottom: 15px;
}
.services .icon-box .know-more {
  padding: 7px 10px;
  line-height: 1rem;
  color: #333;
  border: solid 1px #ccc;
  border-radius: 50%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #e76025;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #e76025;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.services .iconbox-purple i {
  color: #540375;
}

.services .iconbox-purple:hover .icon i {
  color: #fff;
}

.services .iconbox-purple:hover .icon path {
  fill: #540375;
}

.services .iconbox-pink2 i {
  color: #E93B81;
}

.services .iconbox-pink2:hover .icon i {
  color: #fff;
}

.services .iconbox-pink2:hover .icon path {
  fill: #E93B81;
}

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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #e76025;
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  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: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #e76025;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #57e76f;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e76025;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e76025;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.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: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 800;
  font-size: 38px;
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

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

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #e76025;
}

/* .about-us .content p:last-child {
  margin-bottom: 0;
} */
/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #e76025;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #e76025;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #e76025;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #e76025;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #e76025;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #e76025;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #e76025;
}

.pricing .featured h3 {
  color: #fff;
  background: #e76025;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #e76025;
  color: #fff;
}

/*--------------------------------------------------------------
# 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;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.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: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #e76025;
}

.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;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #e76025;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

/* .contact .info:hover i {
  background: $primary;
  color: #fff;
} */
.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
  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: #e76025;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #e76025;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e76025;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #e76025;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e76025;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #1ed33c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e76025;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e76025;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #e76025;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e76025;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #1ecf3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #e76025;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #e76025;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e76025;
  background: #e76025;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}
#footer .footer-logo {
  width: 120px;
  margin-bottom: 20px;
  opacity: 0.4;
}
#footer .text-light {
  color: #c2c2c2 !important;
}
#footer h5 {
  font-size: 1rem;
}

#footer .footer-top {
  padding: 60px 0 15px 0;
  background: #000000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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: #a4a4a4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 0 10px;
  display: inline-block;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  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: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e76025;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #e76025;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #898888;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e76025;
  color: #fff;
  text-decoration: none;
}

.home-industries h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0;
  letter-spacing: 1px;
  z-index: 1;
}
.home-industries h4::before {
  position: absolute;
  content: "";
  right: -62px;
  top: 9px;
  height: 2px;
  width: 50px;
  background: white;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 15px;
}
.home-industries h4::after {
  position: absolute;
  content: "";
  left: -62px;
  top: 9px;
  height: 2px;
  width: 50px;
  background: white;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 15px;
}

.servides-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #e76025;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0;
  letter-spacing: 1px;
  z-index: 1;
}
.servides-section h4::before {
  position: absolute;
  content: "";
  right: -62px;
  top: 9px;
  height: 2px;
  width: 50px;
  background: #e76025;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 15px;
}
.servides-section h4::after {
  position: absolute;
  content: "";
  left: -62px;
  top: 9px;
  height: 2px;
  width: 50px;
  background: #e76025;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 15px;
}
.servides-section .ind-thumd {
  border-radius: 5px;
}
.servides-section h3 {
  font-size: 2rem;
}

h2 {
  font-weight: 800;
  font-size: 38px;
}

.accordion-button {
  background: #efefef;
  font-weight: bold;
  font-size: 1.1rem;
}
.accordion-button span {
  padding: 3px;
  margin-right: 10px;
  border: solid 1px #eed4d4;
  background: #fff;
  color: #888;
  font-size: 0.8rem;
  border-radius: 50%;
}
.accordion-button:focus {
  border: 0;
  box-shadow: 0 !important;
  outline: 0;
}

.accordion-button:not(.collapsed) {
  background: rgb(230, 100, 100);
  background: linear-gradient(29deg, rgb(230, 100, 100) 0%, rgb(251, 166, 166) 100%);
  color: #fff;
}
.accordion-button:not(.collapsed)::after {
  color: #fff;
}

.accordian-img-frame {
  margin: 15px 0 25px 0;
  padding: 10px;
  border: solid 5px #f7eded;
  border-radius: 5px;
  width: auto;
  display: inline-block;
}
.accordian-img-frame .accordian-img {
  max-width: 140px;
}

.float-left {
  float: left;
}

.accordion-body {
  padding-bottom: 60px;
  padding-top: 60px;
  margin-bottom: 2px;
  background: url(../../assets/img/accordian-bg.jpg);
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: contain;
}
.accordion-body .continue-arrow {
  width: 50px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  border: 0;
  display: block;
  margin-top: 30px;
  transition: 0.5s;
  background-image: linear-gradient(to right, #3494E6 0%, #EC6EAD 51%, #3494E6 100%);
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
}
.accordion-body .continue-arrow:hover {
  background-position: right center;
  /* i {
    margin-left: 5px;
  } */
}

.btn-grad {
  /* background-image: linear-gradient(to right, #3494E6 0%, #EC6EAD  51%, #3494E6  100%); */
  background-color: white;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #e76025;
  border: solid 1px #ffe3d7;
  border-radius: 0;
  display: block;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
  background-color: #e76025;
}

.image_accordian .accordion {
  width: 100%;
  height: 660px;
  overflow: hidden;
  margin: 0 auto;
}
.image_accordian .accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
.image_accordian .accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 16.666%;
  height: 660px;
  background-repeat: no-repeat;
  background-position: bottom;
  transition: all 500ms ease;
}
.image_accordian .accordion ul li::before {
  content: "";
  width: 150px;
  height: 100px;
  position: absolute;
  background: url("../img/slide/dots.png") no-repeat;
  opacity: 0.5;
  bottom: 5px;
  left: 10px;
}
.image_accordian .accordion ul li::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  background: url("../img/slide/image-slider-bg.png") no-repeat;
  background-size: contain;
  opacity: 0.5;
  top: 5px;
  left: 0px;
  opacity: 0.2;
}
.image_accordian .accordion ul li.active {
  width: 60%;
}
.image_accordian .accordion ul li.active .mini-content {
  margin-bottom: 297px;
  display: none;
}
.image_accordian .accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.image_accordian .accordion ul li div a {
  display: block;
  height: 660px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  font-family: Open Sans, sans-serif;
  transition: all 200ms ease;
}
.image_accordian .accordion ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  transform: translateX(-20px);
  transition: all 400ms ease;
}
.image_accordian .accordion ul li div a h2 {
  font-family: Montserrat, sans-serif;
  text-overflow: clip;
  font-size: 65px;
  text-transform: uppercase;
  margin-bottom: 2px;
  top: 160px;
}
.image_accordian .accordion ul li div a h5 {
  font-size: 1.1rem;
  top: 160px;
}
.image_accordian .accordion ul li div a p {
  top: 160px;
  font-size: 1.2rem;
  margin-top: 10px;
}
.image_accordian .accordion ul li div a .mini-content {
  position: absolute;
  opacity: 1;
  bottom: 25%;
  left: 20%;
  text-align: left;
  font-size: 1.2rem;
  transform: rotate(-90deg);
}
.image_accordian .accordion ul li div a lottie-player {
  margin: 20% auto 0 auto;
}
.image_accordian .accordion ul li:nth-child(1) {
  background-color: #421d68;
}
.image_accordian .accordion ul li:nth-child(2) {
  background-color: #2f154c;
}
.image_accordian .accordion ul li:nth-child(3) {
  background-color: #1569cd;
}
.image_accordian .accordion ul li:nth-child(4) {
  background-color: #04439f;
}
.image_accordian .accordion ul:hover li {
  width: 8%;
}
.image_accordian .accordion ul:hover li:hover, .image_accordian .accordion ul li.active {
  width: 80%;
}
.image_accordian .accordion ul:hover li:hover a, .image_accordian .accordion ul li.active a {
  background: rgba(0, 0, 0, 0.4);
}
.image_accordian .accordion ul:hover li:hover a *, .image_accordian .accordion ul li.active a * {
  opacity: 1;
  transform: translateX(0);
}
.image_accordian .accordion ul:hover li:hover .mini-content, .image_accordian .accordion ul li.active .mini-content {
  opacity: 0;
}
.image_accordian .accordion ul:hover li:hover::after, .image_accordian .accordion ul li.active::after {
  width: 80%;
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  .image_accordian body {
    margin: 0;
  }
  .image_accordian .accordion {
    height: auto;
  }
  .image_accordian .accordion ul li, .image_accordian .accordion ul li:hover, .image_accordian .accordion ul:hover li, .image_accordian .accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    transition: none;
  }
}
.image_accordian .about {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #666;
}
.image_accordian .about a {
  color: blue;
  text-decoration: none;
}
.image_accordian .about a:hover {
  text-decoration: underline;
}

.submenu-underline {
  border-bottom: solid 1px #dedede;
  padding-bottom: 5px;
}

.industries-box {
  display: flex;
  float: left;
  padding: 10px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  transition: all 2ms ease;
  background-color: white;
}
.industries-box:hover {
  border: solid 1px #f1a381;
}
.industries-box p {
  font-size: 0.9rem;
  line-height: 1rem;
  margin-bottom: 0;
}
.industries-box .ind-thumd {
  width: 80px;
  display: inline-block;
  margin-right: 10px;
}
.industries-box .contact-div {
  border-left: solid 1px #e6e6e6;
  display: inline-block;
  padding-left: 10px;
}
.industries-box .contact-div h5 a {
  color: #4d4643 !important;
  font-size: 1rem;
}
.industries-box .contact-div h5 {
  margin-bottom: 5px !important;
}

.carddesign__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.carddesign__card {
  width: calc(33.3% - 0.7rem);
  color: white;
}

.carddesign__blog {
  background-color: #1c1c33;
  padding: 2.5rem 3rem;
  position: relative;
  font-size: 0.9rem;
}
.carddesign__blog:hover {
  background-color: #e76025;
}
.carddesign__blog:hover:nth-child(1)::after {
  border-color: #e76025;
  border-bottom: solid 18px transparent;
  border-top: solid 18px transparent;
}
.carddesign__blog:hover:nth-child(3)::after {
  border-color: #e76025;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent;
}
.carddesign__blog:hover:nth-child(5)::after {
  border-color: #e76025;
  border-bottom: solid 18px transparent;
  border-top: solid 18px transparent;
}

.carddesign__card:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 35px;
  right: -36px;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: solid 20px #1c1c33;
  border-bottom: solid 18px transparent;
  border-top: solid 18px transparent;
}

.carddesign__card:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 35px;
  border-top: solid 20px #1c1c33;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
}

.carddesign__card:nth-child(5) {
  position: relative;
}
.carddesign__card:nth-child(5):hover:nth-child(5)::after {
  border-color: #e76025;
  border-bottom: solid 18px transparent;
  border-top: solid 18px transparent;
}

.carddesign__card:nth-child(5)::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 35px;
  border-right: solid 20px #1c1c33;
  border-bottom: solid 18px transparent;
  border-top: solid 18px transparent;
  left: -36px;
  top: 50%;
  transform: translate(50%, -50%);
}

.svg-img {
  position: relative;
  margin-left: 150px;
  margin-top: 30px;
}
.svg-img .box-one {
  width: 220px;
  padding: 80px 50px;
  background: #e76025;
  border-radius: 5px;
  position: relative;
  z-index: 5;
}
.svg-img .box-one::before {
  width: 57px;
  height: 57px;
  content: "";
  background-color: rgba(231, 96, 37, 0.7);
  bottom: -21px;
  left: -20px;
  position: absolute;
  border-radius: 5px;
}
.svg-img .box-two {
  width: 180px;
  margin-top: -50px;
  margin-left: 174px;
  padding: 45px;
  border-radius: 5px;
  z-index: 10;
  position: relative;
  background-color: rgba(0, 0, 0, 0.9);
}
.svg-img .shape-left {
  width: 60px;
  height: 60px;
  background: url("../img/shape-6.png");
  background-size: cover;
  position: absolute;
  left: -36px;
  top: -37px;
}
.svg-img .shape-right {
  width: 60px;
  height: 60px;
  background: url("../img/shape-6.png");
  background-size: cover;
  position: absolute;
  left: 220px;
  top: 69px;
}
.svg-img .ring {
  width: 118px;
  height: 100px;
  background: url("../img/ring.png");
  background-size: cover;
  position: absolute;
  left: 200px;
  top: 130px;
}

.lets-connect {
  padding: 40px 0;
  background: white;
  border-bottom: solid 1px #fff;
  /*   .link {
      text-decoration: underline;
      color: white;
      &:hover {
        text-decoration: none;
      }
    } */
}
.lets-connect h3 {
  font-weight: 600;
}
.lets-connect .icon {
  font-size: 3.5rem;
  color: #e76025;
}

.footer-ul {
  margin: 0 auto;
}
.footer-ul ul {
  margin: 0;
  padding: 0;
}
.footer-ul ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0 7px;
  line-height: 1rem;
  border-right: solid 1px #2d2d2d;
}
.footer-ul ul li:last-child {
  border-right: none;
}
.footer-ul ul li a {
  color: #7a7a7a;
  text-decoration: none;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}
.footer-ul ul li a:hover {
  text-decoration: underline;
  color: white;
}

.copyright {
  color: #7a7a7a;
}

.footer-small {
  font-size: 0.78rem;
}

.copy {
  border-top: solid 1px #361202;
}

.footer-top .bi {
  margin-top: 5px;
  float: right;
  color: #666;
}

.pl-0 {
  padding-left: 0 !important;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.f-menu-title {
  width: 90px;
  padding: 3px 10px;
  margin-right: 10px;
  color: #c8c7c7;
  background-color: #111;
}

.f-links {
  width: calc(100% - 90px);
}

.btn-primary {
  background-color: #e76025;
  border-color: #e76025;
}
.btn-primary:hover {
  background-color: #c34a16;
  border-color: #c34a16;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  border-radius: 0;
}

.inner-herosection {
  width: 100%;
  height: 227px;
  margin-top: 37px;
  padding-top: 100px;
  text-align: center;
  color: white;
  background-image: url(../img/service.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  background-attachment: fixed;
  position: relative;
  z-index: 9;
}
.inner-herosection.industries-healthcare {
  background-image: url(../img/industries/health-care.jpg);
}
.inner-herosection::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(1, 7, 43, 0.8);
}
.inner-herosection .slide-content {
  position: relative;
  z-index: 99;
  font-size: 0.9rem;
}
.inner-herosection .slide-content h1 {
  color: white;
  font-size: 2.2rem;
}
.inner-herosection .slide-content .disable {
  opacity: 0.6;
}

.our-approach .services-title h5 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #e76025;
  position: relative;
}
.our-approach .services-title h5::after {
  position: absolute;
  top: 12px;
  right: -30px;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #e76025;
}
.our-approach .service-single-items {
  margin-bottom: 50px;
}
.our-approach .service-single-items h3 {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px !important;
  margin-bottom: 30px;
}
.our-approach .service-single-items h3::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 60px;
  background: #999;
  bottom: -15px;
  left: 0;
}
.our-approach .service-single-items p {
  line-height: 1.4rem;
}
.our-approach .service-single-items .service-content-inner {
  padding-left: 20px;
  padding-right: 20px;
}
.our-approach .service-single-icon {
  width: 200px;
  float: left;
  margin-top: 5px;
}

/* .our-approach {
  .a-card {
    width: 200px;
    margin-right: 10px;
    padding: 11px;
    display: inline-block;
    text-align: center;
    float: left;
    .image {
      padding: 30px;
    }
    h5 {
      font-size: 1.11rem;
      text-transform: uppercase;
      &.one-h5 {
        color: #f9ad3d;
      }
      &.two-h5 {
        color: #1a9fa8;
      }
      &.three-h5 {
        color: #f55f51;
      }
      &.four-h5 {
        color: #1487b4;
      }
      &.five-h5 {
        color: #48a882;
      }
      &.six-h5 {
        color: #fd7e2c;
      }
    }
    p {
      font-size: 0.77rem;
      line-height: 0.95rem;
    }
  }
} */
.os-italic {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

/*  .service-box {
   text-align: center;
   padding: 0 12px;
   &:hover {
     .square-figure {
       transform: rotate(0deg);
       transition: all linear .35s;
       background-color: $primary;
       border-color: $primary;
         i {
           transform: rotate(0deg);
           transition: all linear .35s;
           color: #ffffff;
       }
   }

   }
   .square-figure {
     width: 100px;
     height: 100px;
     border: 2px solid #cccccc;
     transform: rotate(45deg);
     border-radius: 7px;
     text-align: center;
     position: relative;
     margin: 0 auto;
     transition: all linear .35s;
     display: flex;
     flex-direction: column;
     justify-content: center;
      i {
       display: block;
       transform: rotate(-45deg);
       color: $primary;
       font-size: 2.5rem;
       transition: all linear .35s;
   }
 }
     figcaption {
       margin-top: 40px;
       h5 {
         //text-transform: uppercase;
         font-size: 1.11rem;
       }
   }
 } */
.common-title span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #e76025;
  position: relative;
}
.common-title span::after {
  position: absolute;
  top: 15px;
  right: -30px;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #e76025;
}

.blog-content {
  position: relative;
  background-color: #FCF3F3;
  border-radius: 5px;
  padding: 36px;
  color: #071311;
  height: 333px;
  width: 370px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 20px;
}
.blog-content:hover {
  background-color: transparent;
  color: #ffffff;
}
.blog-content .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 100%;
  background-color: #fcd5d5;
  border: solid 3px #fff;
  font-size: 2.4rem;
  line-height: 75px;
}
.blog-content p {
  font-size: 0.87rem;
}

.blog-content::after {
  content: "";
  position: absolute;
  background: url(../img/cloud-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: 0.5s;
  z-index: -1;
}

.blog-content:hover {
  background-color: transparent;
  color: #ffffff;
}
.blog-content:hover .icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-content:hover::after {
  left: 0 !important;
}

.our-services .services-title h5 {
  font-size: 1.01rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #f5cbb8;
  margin: 0 0 16px;
  position: relative;
  left: 53px;
}
.our-services .services-title h5:before {
  position: absolute;
  content: "";
  top: 10px;
  left: -53px;
  height: 1px;
  width: 35px;
  background: #f5cbb8;
}

.service-box {
  padding: 36px 15px 36px 30px;
  background-color: #fff;
  border: 0;
  height: 100%;
  border-radius: 3px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-box:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  background: url(../img/servicebox-bg.png);
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}
.service-box:hover:hover .em-service-icon1 img {
  filter: brightness(0) invert(1);
}
.service-box:hover:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.service-box:hover .em-service-icon1:after {
  background: #FF784E;
}
.service-box:hover .em-service-title h3 {
  color: white;
}
.service-box:hover .service-bar {
  background: #fff;
}
.service-box:hover .em-service-text p {
  transition: 0.5s;
  color: #FFF;
}
.service-box:hover .service-button a:before {
  transform: scale(1);
}
.service-box:hover .service-button a {
  color: #fff;
  border: 0;
}
.service-box .service-box-inner {
  transition: 0.4s;
}
.service-box .em-service-icon1 {
  font-size: 35px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.service-box .em-service-icon1 img {
  width: 60px;
}
.service-box .em-service-icon1:after {
  position: absolute;
  content: "";
  top: 10px;
  left: 13px;
  height: 58px;
  width: 58px;
  background: #f6f5f5;
  border-radius: 100%;
  z-index: -1;
  transition: 0.5s;
}
.service-box .em-service-title h3 {
  margin: 10px 0 20px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.5s;
  color: #232323;
}
.service-box .service-bar {
  background: #ff3c00;
  height: 2px;
  width: 64px;
  position: relative;
  border-radius: 30px;
  left: 0;
  right: 0;
  margin: 0 auto 19px;
  transition: 0.5s;
}
.service-box .em-service-text p {
  transition: 0.5s;
  color: #232323;
}
.service-box .service-button a {
  display: none;
  padding: 8px 18px 8px 24px;
  font-size: 15px;
  border-radius: 22px;
  background-color: #ffffff;
  color: #232323;
  border: 1px solid rgba(35, 35, 35, 0.1);
  display: inline-block;
  margin-top: 11px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.service-box .service-button a:before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF3B00;
  border-radius: 30px;
  transform: scale(0);
  transition: 0.5s;
}
.service-box .service-button {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.list-items {
  padding-left: 40px;
}
.list-items li {
  list-style-type: none;
  position: relative;
  margin-bottom: 10px;
}
.list-items li::before {
  position: absolute;
  font-family: "Bootstrap-icons";
  content: "\f26f";
  left: -27px;
  top: 5px;
  color: #e76025;
}

.industries.insurance-bg {
  background-color: #f5f5f5;
}
.industries .card {
  height: 100%;
  padding: 15px 20px;
  background: #020832;
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.industries .card:hover {
  background-image: linear-gradient(to left top, #e76025, #d8561e, #c94d17, #ba4310, #ab3a09);
}
.industries p {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.industries .icon {
  width: 70px;
  margin-top: 25px;
  margin-bottom: 20px;
}
.industries h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.font-regular {
  font-weight: 500;
}

.industries .p-d {
  position: relative;
  background-image: url("../img/industries/product-Development.jpg");
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% !important;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
.industries .p-d:hover {
  background-size: 130% !important;
}
.industries .p-d.support {
  background-image: url("../img/industries/support.jpg");
}
.industries .p-d.data-analytics {
  background-image: url("../img/industries/data-enalysis.jpg");
}
.industries .p-d.technology {
  background-image: url("../img/industries/technology.jpg");
}
.industries .p-d::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.industries .industries-card {
  color: #fff;
  height: 100%;
  text-align: left;
  border: solid 1px white;
  padding: 40px;
  background-color: #ffffff;
  transition: all 0.4s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.industries .industries-card .card-content {
  position: relative;
  z-index: 1;
}
.industries .industries-card p {
  color: #fff;
  line-height: 1.7;
}
.industries .industries-card h3 {
  font-weight: 500;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  color: #fff;
}
.industries .industries-card:hover {
  border-color: #eeded7;
  box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.25);
  /* .product-icon {
    border-color: $primary;
    color: white;
  } */
}
.industries .industries-card .product-icon {
  width: 100px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.btn {
  border-radius: 0 !important;
}

.btn-connect {
  width: 250px;
}

.ourproject-slideOne {
  background-color: #ffede5;
  height: 300px;
}

.ourproject-slideTwo {
  background-color: #fbefff;
  height: 300px;
}

.ourproject-slideThree {
  background-color: #f0efec;
  height: 300px;
}

.carousel-indicators [data-bs-target] {
  background-color: #e76025;
}

.testimonials ul li {
  margin-bottom: 8px;
}
.testimonials ul li::marker {
  color: #e76025;
}

.cutting-Edge .card {
  height: 100%;
  border-radius: 0 !important;
}
.cutting-Edge .card .icon {
  width: 70px;
  margin: 10px 0 30px 0;
}

.swiper-container {
  /* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
}
.swiper-container .swiper {
  width: 100%;
  height: 90%;
}
.swiper-container .swiper-slide {
  width: 24% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px !important;
  padding-bottom: 40px;
}
.swiper-container .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-container .swiper-pagination-bullet {
  background: #fff;
}

.navbar-toggler {
  color: #333 !important;
}/*# sourceMappingURL=style.css.map */