/**
* Template Name: Gp
* Updated: Aug 30 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "poppins";
  color: #444444;
}

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

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

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

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

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

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #ffc451;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  opacity: 0.8;
  background: linear-gradient(121deg, #006DC8 0%, #40A6FC 100%);
}
#header.header-scrolled1,
#header.header-inner-pages {
  opacity: 0.8;
  background: linear-gradient(121deg, #006DC8 0%, #40A6FC 100%);
}

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

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

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

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

/* header1 */



/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# 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 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.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 {
  color: #ffc451;
}

.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 ease;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

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

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

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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: #151515;
}

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

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

.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 {
  background-color: #ffc451;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  opacity: 0.8;
  background: linear-gradient(121deg, #006DC8 0%, #40A6FC 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  /* text-align: center; */
}

#hero h1 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffffff;
  font-style: italic;
  font-size: 37px;
  font-family: 'Poppins';
}
.hero-txt{
  color: #fff;
  font-size: 19px;
  font-family: 'Poppins';
}
.hero-txt1 {
  color: #000;
  font-size: 16px;
  font-family: 'Poppins';
}
.hero-txt2 {
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins';
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-family: 'Poppins';
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

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

#hero .icon-box h3 a:hover {
  color: #ffc451;
}
.hero-btn {
  border-radius: 10px;
  background: #64C800;
  border: none;
}
#hero .icon-box:hover {
  border-color: #ffc451;
}
.hero-btn:hover{
   border-radius: 10px;
    background: #64C800;
    border: none;
    box-shadow: 3px 2px 5px #accd85;
}
.her-span{
  color: #000000 !important;
  font-size: 43px !important;
  font-style: normal !important;
}
.her-span1{
  color: #fff !important;
  font-size: 43px !important;
  font-style: normal !important;
}
.mmm{
    margin: 0;
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 41px !important;
    color: #000 !important;
    font-family: "Poppins", sans-serif;
}
.mmm1{
  font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 52px !important;
    color: #fff !important;
}
.or-head{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-align: center;
    font-family: 'Poppins';
}
.or-part {
  border: 2px solid #C6C6C6;
  background: #FFF;
  border-radius:16px;

}
.mb-or{
    border-radius:16px;
}
.or-part1:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.or-part:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.menu-li {
  color: #000;
  font-size: 15px;
  
}
.menu-li1 {
  color: #000;
  font-size: 16px;
  margin: 0 0px 17px 0;
}
.order-det{
  padding: 0px 25px 0 25px;
}
.how-head{
color: #000;
text-align: center;
font-family: Poppins;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 64px
}
.how-img:hover {
  transform: scale(1.05);
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
    .tab-icon {
    position: absolute !important;
    left: 81% !important;
}
  .ledd{
    width: 100% !important;
    height: auto;
  }
  .fbb{
    margin: 0 !important;
  }
  .recbox{
    text-align: center !important;
  }
    .marketttt{
    margin: 0 !important;
    }
    .foot-c{
        margin:0 !important;
    }
    .round1 {
    position: absolute !important;
    left: 8% !important;
    top: 6% !important;
}
.round2 {
    position: absolute;
    right: 8% !important;
    top: 11% !important;
}
.moon {
    position: absolute;
    right: 5% !important;
    top: 115% !important;
}
    .frms{
        padding:10px !important;
    }
.company{
    margin: 0 !important;
}
.social{
    margin: 0 !important;
}
.geo{
    margin: 0 !important;
}
.product{
    margin: 0 !important;
}
.support{
    margin: 0 !important;
}
    .sec-title{
        font-size:24px !important;
    }
    .testimonials .swiper-pagination {
  margin-top: -85px;
  position: relative;
}
  .pr-img{
    padding: 15px !important;
  }

  .toddle {
    margin: 0 0 0px 25px !important;
    border: none !important;
    color: #000 !important;
    font-weight: 600 !important;
}

  .tabpanel__tablabel{
    margin: 0 !important;
  }

  .aorrowpp{
    display: none;
  }

  .portfolio #portfolio-flters li{
    margin: 0 !important;
  }
  #hero {
    height: 60vh;
  }

  #hero h1 {    
      font-size: 22px;
      line-height: 36px;
 
  }
  #hero h1 span {
    color: #ffffff;
    font-style: italic;
    font-size: 27px;
}
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 27px 0 46px 0;
}

.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

.loc {
  margin: 0px 6px 0px 0px;
}
.menu-mg1 {
  border-radius: 16px !important;
  background: linear-gradient(111deg, #83C214 0%, #B9BC17 100%);
  padding: 21px 0 15px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.menu-mg2 {
  border-radius: 16px !important;
  background: linear-gradient(111deg, #8314B5 0%, #BF0E99 100%);
  padding: 21px 0 15px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.menu-mg {
  border-radius: 16px !important;
  padding: 21px 0 15px 0;
  background: linear-gradient(111deg, #F5912F 0%, #FAC05A 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.menu-mg3 {
  border-radius: 16px !important;
  padding: 21px 0 15px 0;
  background: linear-gradient(111deg, #C42051 0%, #FE1676 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
}
.menu-mg1:hover {
  border-radius: 16px !important;
  background: linear-gradient(111deg, #83C214 0%, #B9BC17 100%);
  padding: 21px 0 15px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  transform: scale(1.1);
}
.menu-mg2:hover {
  border-radius: 16px !important;
  background: linear-gradient(111deg, #8314B5 0%, #BF0E99 100%);
  padding: 21px 0 15px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  transform: scale(1.1);
}
.menu-mg:hover {
  border-radius: 16px !important;
  padding: 21px 0 15px 0;
  background: linear-gradient(111deg, #F5912F 0%, #FAC05A 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  transform: scale(1.1);
}
.menu-mg3:hover {
  border-radius: 16px !important;
  padding: 21px 0 15px 0;
  background: linear-gradient(111deg, #C42051 0%, #FE1676 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.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 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  margin: 0 52px 0px 0;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
    border-bottom: 7px solid transparent;
    border-image: linear-gradient(0.25turn, rgb(12 12 12), rgb(71 71 72), rgb(131 130 133 / 97%));
    border-image-slice: 4;


}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

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

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

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

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

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


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  /* background: url("../img/testimonials-bg.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
}



.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  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 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(255 248 248 / 40%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

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

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

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  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: #ffc451;
}

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

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

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

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

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

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

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

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

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
.ccc:hover {
  transform: scale(1.2);
}
.clients-slider .swiper-slide{
  width: 133px!important;
  margin-right: 55px !important;
}
.sec-1 {
  background: #86DFFF;
  padding: 36px 35px 37px 36px;
  border-radius: 16px !important;
}
.sec-2 {
  background: #B0EB8F;
  padding: 36px 35px 37px 36px;
  border-radius: 16px !important;
}
.sec-para{
  color: #000;
  font-size: 13px;
}
.sec-btn{
  background: #86dfff;
    border: 1px solid #000;
    padding: 7px 7px 7px 9px;
    color: #000;
}
.sec-btn1{
  background: #B0EB8F;
    border: 1px solid #000;
    padding: 7px 7px 7px 9px;
    color: #000;
}
.sec-title {
  color: #000;
  font-weight: 500;
  font-family: 'Poppins';
  font-size: 26px;
}
.sec-btn1:hover {
  background: #000;
  border: 1px solid #000;
  padding: 7px 7px 7px 9px;
  color: #b0eb8f;
}
.sec-btn:hover {
  background: #000;
  border: 1px solid #000;
  padding: 7px 7px 7px 9px;
  color: #86dfff;
}
.sec-btn3 {
  background: #bebfff;
  border: 1px solid #000;
  padding: 7px 7px 7px 9px;
  color: #000;
}
.sec-3 {
  background: #bebfff;
  padding: 36px 35px 37px 36px;
  border-radius: 16px !important;
}
.sec-btn3:hover {
  background: #000;
  border: 1px solid #000;
  padding: 7px 7px 7px 9px;
  color: #bebfff;
}
.sec-2:hover{
  background: #B0EB8F;
    padding: 36px 35px 37px 36px;
    border: none;
    box-shadow: 3px 2px 5px #48513d;
}
.sec-3:hover{
  background: #bebfff;
  padding: 36px 35px 37px 36px;
  border: none;
  box-shadow: 3px 2px 5px #5c5c78;
}
.sec-1:hover{
  background: #86dfff;
  padding: 36px 35px 37px 36px;
  border: none;
  box-shadow: 3px 2px 5px #66828c;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.clent-header {
    color: #000;
    text-align: center;
    font-weight: 800;
    font-size: 29px;
    border-bottom: 1px solid #000;
    width: 232px;
    padding: 0 0 12px 0;
    font-family: 'Poppins';
   
}
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #000;
  border-bottom: 1px solid #222222;
  padding: 20px 0px 0px 25px;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

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

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  margin: 0 0 0px 10px;
  font-size: 12px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}
.fi-li a{ 
  margin: 0 !important;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#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: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.manage-sec{
  padding: 31px;
  border-radius: 16px;
  border: 1px solid #DCDCDC;
  background: #FFF;
}
.img-sec{
  align-self: center;
  text-align: left;
}
.tabpanel__tab:checked + .tabpanel__tablabel {
  color: #000;
  border-bottom: 7px solid transparent;
    border-image: linear-gradient(0.25turn, rgb(12 12 12), rgb(71 71 72), rgb(131 130 133 / 97%));
    border-image-slice: 4;
}
.tabpanel__tablabel {
  color: #444 !important;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 11px 0 0;
    font-family: 'Poppins';
}
.tabpanel__tablabel:hover {
  cursor: pointer;
}

.tabpanel__panel {
  display: none;
}
.tabpanel__panel > *:first-child {
  margin-top: 0;
}
.tabpanel__panel > *:last-child {
  margin-bottom: 0;
}
.tabpanel__panel > * + * {
  margin-top: 24px;
}

#tabpanel__tab-11:checked ~ .tabpanel__panels #tabpanel__panel-11,
#tabpanel__tab-12:checked ~ .tabpanel__panels #tabpanel__panel-12,
#tabpanel__tab-13:checked ~ .tabpanel__panels #tabpanel__panel-13,
#tabpanel__tab-14:checked ~ .tabpanel__panels #tabpanel__panel-14,
#tabpanel__tab-15:checked ~ .tabpanel__panels #tabpanel__panel-15{
  display: block;
  position: relative;
  top: 0px;
}
@media screen and (max-width: 600px) {
  .tabpanel {
    flex-direction: column !important;
    text-align: center !important;
  }
  .tabpanel .tabpanel__tablabel {
    padding: 24px 36px;
  }
  .tabpanel .tabpanel__tablabel + .tabpanel__tab + .tabpanel__tablabel {
    margin-top: 6px;
  }
  .tabpanel .tabpanel__tab:checked ~ .tabpanel__panels {
    order: 1;
  }
  .tabpanel .tabpanel__tab:not(:checked) + .tabpanel__tablabel {
    order: initial;
  }
  .tabpanel #tabpanel__tab-1 + .tabpanel__tablabel {
    order: 1;
  }
  .tabpanel #tabpanel__tab-1:checked ~ .tabpanel__panels {
    order: 1;
  }
  .tabpanel #tabpanel__tab-2 + .tabpanel__tablabel {
    order: 2;
  }
  .tabpanel #tabpanel__tab-2:checked ~ .tabpanel__panels {
    order: 2;
  }
  .tabpanel #tabpanel__tab-3 + .tabpanel__tablabel {
    order: 3;
  }
  .tabpanel #tabpanel__tab-3:checked ~ .tabpanel__panels {
    order: 3;
  }
  .tabpanel #tabpanel__tab-4 + .tabpanel__tablabel {
    order: 4;
  }
  .tabpanel #tabpanel__tab-4:checked ~ .tabpanel__panels {
    order: 4;
  }
  .tabpanel #tabpanel__tab-5 + .tabpanel__tablabel {
    order: 5;
  }
  .tabpanel #tabpanel__tab-5:checked ~ .tabpanel__panels {
    order: 5;
  }
  .tabpanel #tabpanel__tab-6 + .tabpanel__tablabel {
    order: 6;
  }
  .tabpanel #tabpanel__tab-6:checked ~ .tabpanel__panels {
    order: 6;
  }
  .tabpanel .tabpanel__panel {
    padding: 0 12px 12px 12px;
  }
}
@media screen and (min-width: 601px) {
  .tabpanel {
    flex-direction: column;
  }
  .tabpanel .tabpanel__tablabel {
    flex: 0 1 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .tabpanel .tabpanel__tablabel + .tabpanel__tab + .tabpanel__tablabel {
    margin-left: 6px;
  }
  .tabpanel .tabpanel__panel {
    padding: 12px;
  }
  .tabpanel .tabpanel__panels {
    flex: 1 1 100%;
  }
}
.tabpanel button, input, optgroup, select, textarea {
    display: none;
}
.aorrowpp{
  float: right;
    position: absolute;
    top: 45%;
    right: 54%;
}
.ppmmm{
  font-size: 51px
}

th {
  background: #dddddd !important;
  text-align: center;
}
td {
  font-size: 14px;
  text-align: center;
}
.tic-cir{
  font-size: 22px;
  color: green;
}
.tab-name{
  text-align: start;
}
.wr-cir{
  font-size: 22px;
  color: #ff0202;
}
.tab-head{
  font-size: 25px;
    align-self: center;
    padding: 11px 0 0 0;
    color: #000000;
    font-weight: 600;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #000;
  font-weight: 600;
  border-bottom: 7px solid transparent !important;
  border-image: linear-gradient(0.25turn, rgb(5 123 177), rgb(27 161 223), rgb(12 174 203 / 97%)) !important;
  border-image-slice: 4 !important;
}
.toddle{
  margin: 0 0 0px 83px; 
    border: none !important;
    color: #000 !important;
   font-weight: 600 !important;
}
.pr-img{
  border: 2px solid #7f7979;
  padding: 74px;
}


/* Float four columns side by side */
.columnss {
  float: left;
  width: 20%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding */
.img-cards {margin: 0 -5px;}

/* Clear floats after the columns */
.img-cards:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .columnss {
    width: 100%;
    display: block;
    margin-bottom: 120px !important;
  }
}
.hero-btn1{
  border-radius: 64px;
  border: 2px solid #64C800;
  color: #fff;
  background: none;
  padding: 7px 25px 7px 25px;

}
.hero-btn1:hover{
  border-radius: 64px;
  border: 2px solid #64C800;
  color: #fff;
  background: none;
  box-shadow: 3px 2px 5px #accd85;
}

.counter
{
    text-align: center;
}

.counter-count
{
    font-size: 50px;
    font-weight: bold;
    position: relative;
    color: #006DC8;
    text-align: center;
    display: inline-block;
}
.count {
  border-radius: 16px;
  background: #FFF;
}
.sign {
  font-size: 37px;
  font-weight: 700;
  color: #006dc8;
}
.count-h {
  color: #000;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 51px;
}
.miis-para {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.miss {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}
.mee-tee {
  border-radius: 16px;
  border: 2px solid #DCDCDC;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.company{
    margin: 0 0 0 68px;
}
.social{
    margin: 0 0 0 26px;
}
.geo{
    margin: 0 0 0 39px;
}
.product{
    margin: 0 0 0 27px;
}
.support{
    margin: 0 0 0 69px
}
.mee-head {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    font-family: 'Poppins';
}
.mee-desig {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: 'Poppins';
}
.mee-li{
    list-style-type: none;
    margin: 5px;
}
.sp-plus{
    margin: 0px 0 0 86px;
}
/* Style the counter cards */
/* contact */
.miss1 {
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  color: #000;
}
.h-sp {
  color: #006DC8;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.form-control{
    border: none;
    border-bottom: 1px solid #cccccc;
    font-size: 14px;
    font-family: 'Poppins';
    padding: 10px;

}
.frms{
  border-radius: 24px;
border: 2px solid #DCDCDC;
background: #FFF;
padding: 20px;
}
.bbtn {
  color: #fff;
  border: none;
  background: blue;
  font-family: 'Poppins';
  border-radius: 10px;
  background: #006DC8;
    padding: 9px 15px 9px 15px;
}
.moon{
    position: absolute;
    right: 28%;
    top: 110%;
}
.round2 {
    position: absolute;
    right: 34%;
    top: 22%;
}
.round1 {
    position: absolute;
    left: 34%;
    top: -2%;
}
.foot-c{
       margin: 0 0 0 92px;
    }
    .marketttt{
        margin: 0 0 0 48px;
    }
    .new-tab{
      padding: 25px 0 49px 0px;
    }
    .ordr-menu{
      height: 160px;
      padding: 10px;;
    }
    .cls {
      background: #484646;
      color: #fff;
      padding: 10px;
      border-radius: 12px;
  }
  .con-im {
    margin: 0 17px 2px 2px;
}
  .con-tit {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    font-family: 'Poppins';
}
.con {
  border-radius: 16px;
  border: 2px solid #DCDCDC;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.con-mail {
  font-size: 17px;
  font-weight: 500;
  color: #4c4e4f;
}
.con-phone {
  font-size: 17px;
  font-weight: 500;
  color: #4c4e4f;
}
.con-watsapp {
  font-size: 17px;
  font-weight: 500;
  color: #4c4e4f;
  margin-bottom: 8px;
}
.con-sp{
  margin: 0 15px 0 0;
}
.con-icon{
  font-size: 21px;
  color: #4c4e4f;
  font-weight: 500;
}
.show{
  z-index: 999;
  display: none;
}
.show .overlay{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.66);
  position: absolute;
  top: 0;
  left: 0;
}
.show .img-show{
  width: 600px;
  height: 400px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  overflow: hidden
}
.img-show span{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
}
.img-show img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.kiok-img{
  background: #EEF1F7;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 35px;
  }
.svf{
  background: linear-gradient(0.25turn, rgb(67 67 67), rgb(71 71 72), rgb(76 74 74 / 97%));
  padding: 4px 4px 7px 4px;
  
}
.svf:hover{
  background: linear-gradient(0.25turn, rgb(67 67 67), rgb(71 71 72), rgb(76 74 74 / 97%));
  padding: 4px 4px 7px 4px;
  
}
.svfp{
  margin: -18px 0 0 0;
}
.svf-icon{
  font-size: 6px;
  color: red;
}
.clent-header1 {
  color: #000;
  text-align: center;
  font-weight: 800;
  font-size: 29px;
  border-bottom: 1px solid #000;
  width: 191px;
  padding: 0 0 12px 0;
  font-family: 'Poppins';
}
.fbb{
  margin: 0 0 0 118px;
}
.ledd{
  width: 54%;
  height: 435px;
}
.fdfs {
    margin: 0 0 0 17px;
}
.howdoes {
    margin: -126px 0 0 0;
    font-size: 12px;
}
.tab-icon {
    position: absolute ;
    left: 22% ;
}