body {
  font-family: "Poppins", sans-serif;
  color: #083c54;
}
:root{
  --orangecolor1:#f67d14;
  --orangecolor2:#f57c13;
  --orangetext3:#f67d14;
}
a {
  color: #f67d14;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.txtcolor1{color: var(--orangecolor1);}
.bgcolor1{background: var(--orangecolor1);}
.txtcolor2{color: var(--orangecolor2);}
.bgcolor2{background: var(--orangecolor2);}
.graybg-f3f3f3{background: #f3f3f3;}
.p-t-b-100{padding-top: 100px;padding-bottom: 100px;}
.btn-warning{background-color: var(--orangecolor1);border-color:var(--orangecolor1);color: #fff;}
.orangetext{color: var(--orangetext3);}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f67d14;
  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: #083c55;
  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 {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

.header-social-links {
  margin: 0 0 0 30px;
}
.header-social-links .btn-warning{background-color: var(--orangecolor1);border-radius: 20px;color: #fff;border-color:var(--orangecolor1)}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #093b56;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,.navbar .dropdown a.active {
  color: #f67d14;
}

.navbar ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #f57d13;
  border-bottom: 2px solid #f57d13;
  transform: scaleY(2);
  opacity: 0;
  transition: 0.3s;
}
.navbar ul li a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f57d13;
  transform: scale(0);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.navbar ul li a:hover {
  color: #fff;
}
.navbar ul li a:hover:before {
  transform: scaleY(1);
  opacity: 1;
}
.navbar ul li a:hover:after {
  transform: scaleY(1);
  opacity: 1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #003651;
}

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

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

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #364146;
  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(32, 38, 41, 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: #364146;
}

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

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

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

/*--------------------------------------------------------------
# carousal Section
--------------------------------------------------------------*/
.main-carousal {
  width: 100%;
  /*background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;*/
  margin-top: 70px;
  padding: 60px 0;
  background-color: #083c54;
}

.main-carousal h1 {
  margin: 0 0 50px 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

.main-carousal h2 {
  margin-bottom: 50px;
  font-size: 22px;
}

.main-carousal .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background: #f67d14;
}

.main-carousal .btn-get-started:hover {
  background: #008bd1;
}

.main-carousal .hero-img {
  text-align: center;
}

.main-carousal .hero-img img {
  width: 80%;
}
.main-carousal .btn-outline-warning{border-color: var(--orangecolor1);background-color: var(--orangecolor1);border-radius: 25px;color: #fff;padding: 10px 30px;}
.main-carousal .btn-outline-warning:hover{background-color: var(--orangecolor1);}
.main-carousal .learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.main-carousal .learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--orangecolor1);
  border-radius: 1.625rem;
}
.main-carousal .learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.main-carousal .learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.main-carousal .learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.main-carousal .learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.main-carousal .learn-more:hover .circle {
  width: 100%;
}
.main-carousal .learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.main-carousal .learn-more:hover .button-text {
  color: #fff;
}

@media (min-width: 1024px) {
  .main-carousal {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  .main-carousal h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .main-carousal h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f3f3f3;
  /* background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(181,177,176,1) 0%, rgba(243,243,243,1) 100%); */
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #627680;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 0 0 50px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .about .container {
    padding: 30px;
  }
}

.about .content h3 {
  font-weight: 600;
  font-size: 36px;
  color: #083c54;
  font-family: "Poppins", sans-serif;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

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

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-bottom: 40px;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #576971;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link:hover {
  background: #fafbfb;
}

.features .nav-link:hover h4 {
  color: #364146;
}

.features .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid #f67d14;
  background: #fafbfb;
}

.features .nav-link.active h4 {
  color: #f67d14;
}

.features .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.features .tab-content {
  text-align: right;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin: 0;
  /* background: url(../img/service-bg.png) no-repeat top center / 100%; */
  background: #fff;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-top: 8px solid #083c55;
  border-radius: 0 0 25px 25px;
}

.services .icon-box a{
  color: #083c54;
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--orangecolor2);
  height: 50px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 16px;
  margin-bottom: 0;
  padding: 0 10px;
  min-height: 145px;
}
.topbaner-bg1{background: url(../img/data-migration-banner-img.png) no-repeat center center;background-size: cover;padding: 150px 0;margin: 70px 0 0}
.dm-banner{background: url(../img/dm_banner.png) no-repeat center center;background-size: cover;padding: 150px 0;margin: 70px 0 0}
.graphic-banner{background: url(../img/ui_ux_banner.png) no-repeat center center;background-size: cover;padding: 150px 0;margin: 70px 0 0}
.creative-banner{background: url(../img/creative_banner.png) no-repeat center center;background-size: cover;padding: 150px 0;margin: 70px 0 0}
.digital-banner{background: url(../img/digital_banner.png) no-repeat center center;background-size: cover;padding: 150px 0;margin: 70px 0 0}
.innerpage-title{font-size: 48px;font-weight: 700;color: #fff;}
.inner-services{background: #f3f3f3;}
.innr-serv-card{
    padding: 0;
    width: 100%;
}
.innr-serv-card h4{font-weight: 600}
.title1{font-size: 34px;font-weight: 600;}
.title2{font-size: 24px;font-weight: 600;}
.serv-content ul{list-style: none;margin: 0;padding: 0px;}
.workprs-icon img{width:78px;}



.pramotion{padding: 50px 0;margin: 100px 0 0;position: relative;background: #f8a861 url(../img/promotion-bg-shape.jpg) no-repeat center center;color: #fff;overflow: inherit;}
.promotion-img{position: absolute;top: -95px;right: 10%;z-index: 9;}
.promotion-img img{width: 275px;}
.project-btn{background: #083c55;font-weight: 700;color: #fff;border-radius: 5px;padding: 10px 20px;font-size: 20px;}
.project-btn:hover{background-color: #0a4d6c;color: #fff;}
.graphic-bg{padding: 50px 0; /*background: url(../img/service-bg.jpg) center top;background-size: cover;*/}

.grpahic-card{box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;background: #fff url(../img/shape1.png) no-repeat right top / 50%;padding: 30px;margin: 0 0 30px;min-height: 635px;}
.grpahic-card h3{margin: 20px 0 25px;width: 200px;}
.innr-serv-card a{color: #003651;}
.innr-serv-card a:hover,.innr-serv-card a.active{color: #f67d14;}
/*.about-page-section1{background: url(../img/shape-2.png) no-repeat 0px 300px / 100%;}*/
@media (max-width: 767px){
  .services .icon-box{background-size: 100%;height: 370px;padding: 70px;}
  .promotion-img img{width: 220px;}
  .grpahic-card{min-height: auto;}
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{padding-top: 0}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #f67d14;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  background: #f67d14;
  border-radius: 5px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #f67d14;
  border: 1px solid #f67d14;
  background: #fff;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #364146;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #364146;
  font-size: 14px;
  text-transform: uppercase;
}

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

.portfolio .portfolio-wrap .portfolio-links a {
  color: #f67d14;
  margin: 0 2px;
  font-size: 24px;
  display: inline-block;
  transition: 0.3s;
  background: #eaf8ff;
  border-radius: 50px;
  line-height: 0;
  padding: 6px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
  background: #f67d14;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# 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 #f67d14;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(54, 65, 70, 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;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 30px 0 60px;
}

.cta h3 {
  font-weight: 600;
  font-size: 36px;
  color: #083c54;
  font-family: "Poppins", sans-serif;
}

.cta p {
  color: #576971;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #f67d14;
}

.cta .cta-btn:hover {
  background: #008bd1;
}
.workprocess-card{
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  padding: 30px 0;
  width: 100%;
}
.workprocess-card h4{font-weight: 600;font-size: 20px;}

@media (min-width: 1024px) {
  .cta {
    background-attachment: fixed;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.team .section-title{
  margin-left: 225px;
}
.testimonials-slider{
  margin-top: 25px;
  margin-left: 225px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d8dee1;
  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 {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f4f6f7;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f67d14;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f67d14;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: url("../img/services-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0 20px;
  position: relative;
}
.team h3{
  font-weight: 600;
  font-size: 36px;
  color: #083c54;
  font-family: "Poppins", sans-serif;
}
/*.team::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9;
}*/
.industries-lft-img{
  position: absolute;
  left: 0;
  width: 540px;
  bottom: 0;
}
.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  text-align: left;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 77%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 10px 0;
  color: #364146;
  max-height: 40px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

/* .team .member:hover .member-info {
  max-height: 300px;
} */

.team .member h4 {
  font-weight: 700;
  font-size: 16px;
  color: #083c55;
  position: relative;
  padding-bottom: 0px;
  top: 0px;
  padding-left: 15px;
}

.team .member h4::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 30px;
  background: #f67d14;
  bottom: -6px;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #627680;
}

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

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

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

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

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

.clients .client-logo img {
  max-width: 50%;
  filter: grayscale(100);
}

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

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 2px solid #e9ecee;
}

.pricing h3 {
  font-weight: 400;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 400;
  color: #777777;
}

.pricing h4 {
  font-size: 36px;
  color: #f67d14;
  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: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

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

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

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

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

.pricing .btn-buy {
  background: #f67d14;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing .featured {
  background: #f67d14;
  border-color: #f67d14;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-buy {
  background: #fff;
  color: #f67d14;
}

.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: #f67d14;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #e3e7e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #f67d14;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #007ab7;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

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

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  background: #083c55;
  width: 100%;
  border: 2px solid #e9ecee;
  border-radius: 3px;
}
.contact .info a{color: #fff;}
.contact .info i {
  font-size: 20px;
  color: #083c55;
  float: left;
  width: 44px;
  height: 44px;
  background: #f2f4f5;
  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: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.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: #f67d14;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f67d14;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  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: 3px;
  box-shadow: none;
  font-size: 14px;
  background: #e0eaf3;
  border-color: #e0eaf3;
}

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

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

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

.contact .php-email-form input[type=submit]:hover {
  background: #083c55;
}

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

  100% {
    transform: rotate(360deg);
  }
}
.contact-logowrap h2{color: #fff;}

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

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

.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: #4c5c63;
  content: "/";
}

.ui-ux-content .nav-link{
  text-align: left;
  margin-bottom: 10px;
  background: #f5f5f5;
  color: #083c55;
  font-weight: 500;
  border-radius: 3px;
}
.ui-ux-content .nav-pills .nav-link.active{background: #083c54;}
.ui-ux-content .tab-content>.tab-pane{padding-left: 5px;}
.list-unstyled .bi-check-lg{color: #f67d14;}
.list-unstyled li{padding-bottom: 12px;}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #083c54;
  padding: 0 0 30px 0;
  color: #364146;
  font-size: 14px;
}

.footer .footer-top {
  background: #083c54;
  padding: 55px 0 0px 0;
}

.footer .footer-top .footer-info {
  margin-bottom: 0px;
}

.footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #f67d14;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

.footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f67d14;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.footer .footer-top .social-links a .s-icon {
  position: relative;
  color: #fff;
  transition: .5s;
  z-index: 3;
}
.footer .footer-top .social-links a:hover .s-icon {
  color: #fff;
  transform: rotateY(360deg);
}
.footer .footer-top .social-links a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

.footer .footer-top .social-links a:hover:before {
  top: 0;
}

.footer .footer-top .social-links a:nth-child(1):before{
  background: #55acee;
}

.footer .footer-top .social-links a:nth-child(2):before{
  background: #3b5999;
}

.footer .footer-top .social-links a:nth-child(3):before {
  background: #dd4b39;
}

.footer .footer-top .social-links a:nth-child(4):before {
  background: #dd4b39;
}


.footer .footer-top h4 {
  font-size: 30px;
  font-weight: 600;
  color: #f67d14;
  position: relative;
  padding-bottom: 10px;
}

.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: #f67d14;
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
  display: none;
}

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

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

.footer .footer-top .footer-links ul a {
  text-decoration: none;
  display: block; 
  line-height: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #ff5e00, #ff7011 50%, #fff 10%);
  background-size: 200% 100%;
  background-position: -100%;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.footer .footer-top .footer-links ul li a:before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: var(--orangecolor1);
  transition: all 0.3s ease-in-out;
}
.footer .footer-top .footer-links ul li a:hover {
  background-position: 0%;
}
.footer .footer-top .footer-links ul li a:hover:before {
  width: 100%;
}

/* .footer .footer-top .footer-links ul a:hover {
  color: #f67d14;
} */

.footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e3e7e9;
}

.footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

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

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

.footer .copyright {
  text-align: center;
  padding-top: 15px;
  color: #fff;
}

.footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}
@media(max-width: 767px){
  .footer .footer-top .footer-info{
    margin-bottom: 30px;
    padding: 0 25px;
  }
  .footer .footer-top .footer-links{
    padding: 0 30px;
  }
}


/* whatsapp icon */

.whatsapp_icon_div{
  position: fixed;
  bottom: 60px;
  right: 10px;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateX(0);} 
  40% {-webkit-transform: translateX(-8px);}
  60% {-webkit-transform: translateX(-5px);}
}
 
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-moz-transform: translateX(0);}
  40% {-moz-transform: translateX(-8px);}
  60% {-moz-transform: translateX(-5px);}
}
 
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-o-transform: translateX(0);}
  40% {-o-transform: translateX(-8px);}
  60% {-o-transform: translateX(-5px);}
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
  40% {transform: translateX(-8px);}
  60% {transform: translateX(-5px);}
}